Skip to content
View shotadft's full-sized avatar
💭
School Report And Work Report. I has overwork?
💭
School Report And Work Report. I has overwork?

Highlights

  • Pro

Block or report shotadft

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
shotadft/README.md

Hi 👋, I'm Shotadft!

Shotadft Logo

I am a student at N High School in Japan. I do programming as a hobby.
Also like Pokémon, especially Meowscarada and Pikachu!

Using Languages

My Using Languages

Using FrameWorks

My Using FrameWorks

Using Tools and Devices

My Skills

Github Stats

My Profile GitHub stats Top Langs

Github Trophy

trophy

Pinned Loading

  1. KanaConverter KanaConverter Public

    This is a library that converts Roman letters to both hiragana and katakana and vice versa.

    Kotlin 1

  2. VecPosLib VecPosLib Public

    This is a library that enables vector calculations in Python.

    Python

  3. 超汎用的なロガークラス 超汎用的なロガークラス
    1
    from enum import Enum
    2
    
                  
    3
    
                  
    4
    class Color(Enum):
    5
        RESET = "\033[0m"
  4. バイナリをBMP形式の画像に変換するだけの関数。https://x.co... バイナリをBMP形式の画像に変換するだけの関数。https://x.com/McDonaldsJapan/status/1971530192137990518 解読の為に作った
    1
    from PIL import Image
    2
    import numpy as np
    3
    
                  
    4
    def binary_to_image(bin: str, width: int, height: int):
    5
        data = np.array([int(b) * 0xFF for b in bin], dtype=np.uint8)