Skip to content
View JWOverschot's full-sized avatar

Block or report JWOverschot

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

Hi there 👋

Pinned Loading

  1. JWOverschot.github.io JWOverschot.github.io Public

    HTML

  2. Intro-Tour Intro-Tour Public

    Forked from SimonDamminga/Intro-Tour

    Eerstejaars rondleiding tour

    PHP

  3. vernederlandst vernederlandst Public

    A site that literally translates from a language to dutch.

    JavaScript

  4. discord-bot discord-bot Public

    A bot for discord

    JavaScript

  5. adventure-game adventure-game Public archive

    Forked from jopdewinter/adventure-game

    A point & click Javascript adventure game

    JavaScript 1

  6. Calculates total watch time in minut... Calculates total watch time in minutes of an IMBD list per page in minutes. When there are more than one page you have to calculate per page and add up the number yourself
    1
    var movieDuration = document.getElementsByClassName('runtime');
    2
    var totalMinutes = 0;
    3
    
                  
    4
    for (var i = 0; i < movieDuration.length; i++) {
    5
    	totalMinutes += parseInt(movieDuration[i].innerText.split(" min")[0]);