Skip to content
View Psychevus's full-sized avatar
🛸
🛸
  • Svalbard Global Seed Vault

Block or report Psychevus

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. WebSocket-ChatApp WebSocket-ChatApp Public

    Real-time chat app using Python, Django, and Redis.

    Python

  2. python-scikit-learn python-scikit-learn Public

    implementing a simple machine learning model using scikit-learn in Python

    Python

  3. GSMArenaDB GSMArenaDB Public

    Java

  4. MaterialTabs MaterialTabs Public

    Forked from neokree/MaterialTabs

    Custom Tabs with Material Design effects

    Java

  5. This Python script converts images t... This Python script converts images to ASCII art. The resulting ASCII art is saved as a text file. The script processes all .jpg, .jpeg, and .png files in the current directory, excluding a file named image.jpg.
    1
    import os
    2
    import cv2
    3
    
                  
    4
    DEFAULT_WIDTH = 900
    5
    DEFAULT_HEIGHT = 900
  6. This is a Python implementation of t... This is a Python implementation of the classic Tic-Tac-Toe game that can be played in the terminal. The game allows two players to take turns and place their markers (either 'X' or 'O') on a 3x3 grid. The game checks for a winner after each move and announces the winner if there is one. If the grid is full and there is no winner, the game ends in a tie.
    1
    import os
    2
    import time
    3
    
                  
    4
    class TicTacToe:
    5
        def __init__(self):