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'; diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index bd115c0a..8c111df4 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -5,25 +5,34 @@ services: 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: + - PORT=3000 - NODE_ENV=development + - JWT_SECRET=fakeDevelopmentSecret + - MONGO_URI=mongodb://root:rootPass@ch-mongo-dev:27017/ch-testdb - DATABASE_URL=postgres://codehammers:ch-dev@postgres:5432/ch-dev-database - 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 + # 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: - postgres + - ch-mongo-dev + command: npm run dev-ts + postgres: image: codehammers/postgres-dev:latest container_name: codehammers-postgres @@ -35,7 +44,26 @@ services: - postgres-data:/var/lib/postgresql/data ports: - '5432:5432' + + ch-mongo-dev: + image: mongo + container_name: ch-mongo-dev + restart: always + ports: + - 27017:27017 + environment: + - 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/mongo-dev-init/:/docker-entrypoint-initdb.d + - mongo-dev-volume:/data/db + command: mongod --quiet --logpath /dev/null volumes: node_modules: client_node_modules: postgres-data: + mongo-dev-volume: 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 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 { 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 + } +] 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 diff --git a/server/controllers/imageController.ts b/server/controllers/imageController.ts index 05edd370..ed16da38 100644 --- a/server/controllers/imageController.ts +++ b/server/controllers/imageController.ts @@ -11,6 +11,13 @@ 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) { + console.log('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) { return res.status(400).send('No file uploaded.'); } diff --git a/server/controllers/profileController.ts b/server/controllers/profileController.ts index 0ce0b137..b6ac8bd1 100644 --- a/server/controllers/profileController.ts +++ b/server/controllers/profileController.ts @@ -134,6 +134,12 @@ const getAllProfiles = async (req: Request, res: Response, next: NextFunction) = message: { err: 'There were no profiles to retrieve' }, }); } else { + // 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); + } + const processedProfiles = await Promise.all( profiles.map(async (profile) => { if (profile.profilePhoto) { @@ -174,6 +180,12 @@ const getProfileById = async (req: Request, res: Response, next: NextFunction) = message: { err: 'An error occurred during profile retrieval' }, }); } + // 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); + } + if (profile.profilePhoto) { const presignedUrl = s3.getSignedUrl('getObject', { Bucket: process.env.BUCKET_NAME, 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);