Skip to content
View Ved-programmer's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report Ved-programmer

Report abuse

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

Report abuse

Pinned Loading

  1. TypingPro TypingPro Public

    A typing game made with python and pygame. Shows information like words per minute and typing accuracy. Can be used for typing practice or used as a typing test.

    Python 5

  2. PAFAT PAFAT Public

    PAFAT stands for Personal Assistant for A Timathon. PAFAT can do various tasks like brightness controlling, music playing, and notifying for breaks.

    Python 3

  3. Run-Time-Visualizer Run-Time-Visualizer Public

    This Run Time Visualizer is made with python, it visualizes different run times of algorithms with different sizes of inputs.

    Python 3

  4. ved-programmer.github.io ved-programmer.github.io Public

    HTML 3

  5. A-Tech-City-Adventure A-Tech-City-Adventure Public

    A Tech City Adventure is a game which starts with a fictional scenario of building a space city and you explore different planets in search for components to build it with.

    JavaScript 3 2

  6. Compact Calculator by Ved The Pro Compact Calculator by Ved The Pro
    1
    from tkinter import *
    2
    from math import *
    3
    root, WIDTH, HEIGHT = Tk(), 872, 630
    4
    root.geometry(f"{WIDTH}x{HEIGHT}");root.title("Ved The Pro Calculator")
    5
    calculationStringFrame = Frame(root);calculationStringFrame.place(x = 0, y = 0, width = WIDTH, height = 100)