6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

クソアプリAdvent Calendar 2024

Day 10

ChatGPTはクソアプリをどう作るか

Posted at

さっそくChatGPT先生にクソアプリの作成を依頼してみる。

スクリーンショット 2024-12-17 21.10.18.png

kusoge.py
import pyxel

class KusogeApp:
    def __init__(self):
        pyxel.init(160, 120)  # Window size: 160x120
        self.message = ""  # Message starts empty
        pyxel.run(self.update, self.draw)

    def update(self):
        if pyxel.btnp(pyxel.KEY_SPACE):  # Check if SPACE key is pressed
            self.message = "Nothing happens!"

    def draw(self):
        pyxel.cls(0)  # Clear screen with black
        pyxel.text(40, 50, "Press SPACE key!", 7)  # Display white text
        if self.message:  # Display message if not empty
            pyxel.text(40, 70, self.message, 8)  # Display yellow text

KusogeApp()

スクリーンショット 2024-12-17 21.10.34.png

まって。コードのファイル名「kusoge.py」にしてきた。やるなぁ!

スクリーンショット 2024-12-17 21.20.00.png

スクリーンショット 2024-12-17 21.09.06.png

スペースキーを押してみる。

スクリーンショット 2024-12-17 21.09.19.png

スクリーンショット 2024-12-17 21.13.32.png

「クソすぎる」とのこと、最高の称号です!

だと?ChatGPT先生はユーモアあって凄いな。

ん、今気づいた。最後の文字・・・。

スクリーンショット 2024-12-17 21.23.02.png

6
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?