Tanmay Bhansaliadvance-tic-tac-toe.hashnode.dev·Nov 3, 2024Day 2: Building a Customizable Tic Tac Toe with Socket.io - Set Your Own Board Size and Play Online!Welcome to Day 2 of building our customizable Tic Tac Toe game! After setting up the Pass & Play mode, I’m diving into Connect & Play — a feature that lets players connect remotely and play in real-time from separate devices. Today’s focus is on impl...Discuss·10 likestic tac toe
Vedant Thavkarveddevopsblog.hashnode.dev·Mar 3, 2024Streamlining TIC TAC TOE Deployment with GitHub Actions: A Comprehensive GuideIn today’s software development landscape, efficiency and automation are paramount. GitHub Actions emerges as a pivotal tool, empowering developers to streamline workflows and enhance collaboration seamlessly. In this guide, we’ll walk through the pr...Discuss·23 likes·429 readsDevopstic tac toe
Aryan Palpython-blogs-by-aryan.hashnode.dev·Feb 20, 2024Tic Tac Toe In Python!?PROJECT-0️⃣1️⃣ TIC TAC TOE (in python without any external module) THIS IS MY FIRST PYTHON PROJECT, AND I WANTED TO PRESERVE IT FOREVER IN MY BLOG POST. THIS WAY, IT MAY ALSO HELP OTHER PEOPLE WHO READ THIS BLOG POST. I KNOW I COULD HAVE USED GITHUB...Discuss·1 like·45 readscoding
Rupak Shrestharupaks.hashnode.dev·Feb 8, 2024TerraTicTac: Containerized Tic-Tac-Toe Game Hosted on AWS ECS with Terraform for IacCreate a new repository and launch a github Code-spaces Rebuilding Codespace container with Terraform and AWS Docker comes pre-installed, or else you can add Docker as well. Rebuild the container: Checking whether everything is install...Discuss·50 readsTerraform
Namya Shahbigsmoke.hashnode.dev·Dec 20, 2023Python Projects for Intermediate DifficultyWeb Scraper Build a web scraper using libraries like BeautifulSoup and requests. Scrape data from a website (e.g., news articles, product details) and extract relevant information. 2. Bank Account Manager Create a program to manage bank accounts...Discussbank account manager
Ezhill Rageshblog.ragesh.live·Nov 21, 2023Building a Smart Tic-Tac-Toe AI: The Minimax ApproachGetting Started In one of our engaging AI/ML classes, our professor dived into the world of the minimax algorithm, illustrating its prowess with examples from chess and various games. Intrigued by its potential, I couldn’t help but think about how th...DiscussReact
Ja'afar Zakariyajaafardev.hashnode.dev·Oct 12, 2023Project 2: Tic-Tac-Toe with PythonLet's make a tic-tac-toe game using Python. We won't be using any GUI or game engine to make this, to keep it as simple as possible, it will exist only in the console. Let's begin. A normal tic-tac-toe game has 3 rows and 3 columns with 9 cells for t...Discuss·31 readstic tac toe
Abderahmane Katebabderahmane-kateb.hashnode.dev·Sep 25, 2023Mastering React Native: Learning and Creating Tic-Tac-Toe 📚🎮Hello and welcome to a new day of my journey in learning React Native. Today, I came up with a new project that I've been working on while following the guidance of Professor Hitesh Choudhary. I've learned several things and improved in various aspec...DiscussReact Native
Haocheng Linhaochengcodedev.hashnode.dev·Sep 23, 2023Creating a 9x9 Tic Tac Toe Game with PygameWelcome to this tutorial! Today, we learn how to create an enhanced version of the classic Tic Tac Toe game. Instead of the traditional 3x3 grid, we will design a more challenging 9x9 version and use Pygame, a library in Python for game design. Prer...DiscussPython
Haocheng Linhaochengcodedev.hashnode.dev·Sep 22, 2023Creating Tic Tac Toe with AI using Pygame and Minimax AlgorithmIn this tutorial, we will create a game of Tic Tac Toe where you can play against a computer AI. The AI will be built using the minimax algorithm, ensuring that the AI will always make the optimal move. Let's get started! Setup Firstly, make sure you...DiscussPython