-
Noticed overflow on dashboard, profile page, and misaligned button in game room
-
Would like to add a python script for a GUI Tic Tac Toe Game
-
# Programming Ideas
## Absolute Beginner
1. **Print Your Name**: A program that simply prints "Hello, [Your Name]!" to the console.
```python
name = "eternalxlks"
print(f"Hello, {name}")
```
…
-
board 에 작성할경우 10포인트, pds_game 에 작성할경우 50 포인트 부여하는것으로 적용함
+------+-----------------+-------+------------------------------------------------+
| 8 | post | 10 | 게시판 글 작성 (일 10회) …
-
Not sure if it make sense to add since it is a web game that you can run locally but [the game is open-source](https://github.com/mystery-o-matic/mystery-o-matic.github.io). If you think it fits, let …
-
![Screenshot 2024-10-20 085523](https://github.com/user-attachments/assets/89e08ea2-8bf0-41ad-9560-6fe560110936)
The Tic Tac Toe game's user interface appears overly compact on larger screens, …
-
-
3d Chess in Unity
Project Abstract
This document proposes a 3d chess game. The game features two players each taking turns to
move pieces on a board. The game concludes when the piece labeled as “k…
-
I wanted to run this example from the readme:
```
const var score = 5!
after ("click") { score = score + 1! }
print(await next score)!
```
and first got an error that "click" is an invalid e…
-
```import pygame
# 初始化一个空白的棋盘
board = [" " for _ in range(9)]
# 定义一个函数来绘制棋盘
def display_board():
print(board[0] + " | " + board[1] + " | " + board[2])
print("---------")
print(b…