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
Kagankakao/README.md

👋 Hello, I'm Kağan!

Welcome to my GitHub profile! I am a dedicated software engineering student and an enthusiast in Data Science, AI & ML. I am eager to share my projects and collaborate with fellow developers.

🚀 About Me

  • 🌱 I have successfully completed several projects utilizing PyTorch for computer vision, and I am currently expanding my skill set by learning Torchaudio for an upcoming major project.
  • 💼 I aspire to work for innovative software companies abroad.

🔧 Technologies & Tools

  • Programming Languages: Python, SQL
  • Frameworks: PyTorch, Flask
  • Libraries: Pandas, Matplotlib, NumPy
  • Development Tools: Visual Studio Code, PyCharm, Git, GitHub

📈 My Projects

  • KEGOMODORO - Pomodoro Timer Application
    A Pomodoro timer that helps you manage time effectively.
    Features:

    • Countdown timer
    • Floating window
    • Integration with Pixela for tracking time management in website
  • My Website
    A blog platform built with Flask and SQLAlchemy, enabling users to create posts and comments. Ideal for personal blogging and learning web development basics.
    Features:

    • User-generated posts
    • Comment functionality
    • Easy-to-use interface
  • My-AI-Journey
    A repository focused on the development and exploration of AI & ML techniques, featuring projects, code, and resources that document my learning journey.

📺 My YouTube Channel

Check out my YouTube channel for tutorials, project walkthroughs, and coding tips:
👉 Kegan__ on YouTube

📫 Get in Touch

I invite you to explore my repositories, and I look forward to potential collaborations and engaging discussions!

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 1

  2. My-AI-Journey My-AI-Journey Public

    A repository focused on the development and exploration of AI & ML techniques, featuring projects, code, and resources that document my learning journey.

    Jupyter Notebook

  3. My-Website My-Website Public

    "My Website" is a blog platform built with Flask and SQLAlchemy, allowing users to create posts and engage through comments. This template is designed as an easy-to-use blog where users can contrib…

    CSS

  4. 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
  5. Snake Game, Python, OOP Snake Game, Python, OOP
    1
    from turtle import Turtle
    2
    import random
    3
    
                  
    4
    
                  
    5
    class Food(Turtle):