Skip to content
View bkenol's full-sized avatar

Block or report bkenol

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

Pinned Loading

  1. Audio-Player Audio-Player Public

    This is a simple music player that allows you to play any of the songs that are displayed on the screen.

    JavaScript

  2. AudioVision AudioVision Public

    JavaScript

  3. bkenol.github.io bkenol.github.io Public

    My Repository

    HTML

  4. Online-Music-Trivia Online-Music-Trivia Public

    This is a multiplayer trivia game that uses multiple screens.

    JavaScript

  5. pong-web-app pong-web-app Public

    This is a pong web app made using socket.io.

    JavaScript

  6. Word Guesser (Hangman) Word Guesser (Hangman)
    1
    
                  
    2
    
                  
    3
    var words = ["BOTTLE", "CLIP", "RULER", "BOWL", "SANITATION", "CANCER"];
    4
    var rand = Math.floor(Math.random() * 5);
    5
    var wordArr = words[rand].split("");