Skip to content
View Kagankakao's full-sized avatar
:octocat:
Focusing
:octocat:
Focusing

Block or report Kagankakao

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

Pinned Loading

  1. KEGOMODORO KEGOMODORO Public

    KEGOMODORO is a Pomodoro timer application that helps you manage work and break periods efficiently. It features a customizable countdown timer, pause/resume functionality, and a floating window fo…

    Python

  2. Turtle Corssing Game, Python, OOP Turtle Corssing Game, Python, OOP
    1
    from turtle import Turtle
    2
    import random
    3
    
                  
    4
    COLORS = ["red", "orange", "yellow", "green", "blue", "purple"]
    5
    STARTING_MOVE_DISTANCE = 5
  3. Snake Game, Python, OOP Snake Game, Python, OOP
    1
    from turtle import Turtle
    2
    import random
    3
    
                  
    4
    
                  
    5
    class Food(Turtle):