Chess
A student from India has developed a fully playable chess game featuring an AI opponent. The project is available for free on Netlify, along with its source code. The creator is seeking feedback on the AI's performance and any potential bugs users may encounter.
- ▪The chess game can be played live at a provided link.
- ▪The source code for the game is available for free on Netlify.
- ▪The developer is asking for feedback on improving the AI and reporting bugs.
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 === 3945166) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Sagnik Manna Posted on May 22 Chess #gamedev #webdev #ai #showdev html Hey everyone! 👋 I'm a student from India, and I've been spending my free time learning how to build web applications. Today, I want to share my project: a fully playable Chess Game with an AI Opponent! 🎮 Play the live game here: https://chess-with-ai-opponent.netlify.app/ I have deployed the full source code for free on Netlify.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).