Built ResumeTrust AI: A MERN + Gemini Tool to Catch Fake Resume Skills 🛡️💻
Vinay Pandey has developed ResumeTrust AI, a tool designed to identify exaggerated resume skills by comparing them with candidates' GitHub activity. The application utilizes a MERN stack and Gemini API, featuring optimizations for data privacy and security. It aims to enhance the hiring process by ensuring the authenticity of candidate skills.
- ▪ResumeTrust AI cross-references candidate skills with live GitHub activity.
- ▪The tool includes a 24-hour cache to optimize API credit usage.
- ▪It employs in-memory PDF parsing for data privacy and immediate deletion.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3959431) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Vinay Pandey Posted on May 30 Built ResumeTrust AI: A MERN + Gemini Tool to Catch Fake Resume Skills 🛡️💻 #webdev #ai #gemini #showdev Hey developers! I built ResumeTrust AI to solve the issue of exaggerated resumes by cross-referencing candidate skills with their live GitHub activity natively. ⚙️ Key Backend Optimizations: 24-Hour Cache: Uses findOneAndUpdate to cache results and save Gemini API credits.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).