Skip to content
Open navbar menu
Sign UpLog In
Profile icon

remarkablemark

@remarkablemark
https://b.remarkabl.org/mark
🌎
GitHub
YouTube
Website
  • replit clicker

    Cover page
    Made with HTML, CSS, JS
    Recent comments (16)
    ZacharyEtienne3
    ZacharyEtienne3
    6 months ago

    var numClicks = prompt("How many times should the button be clicked? (You can change delay variable in code, make greater or less depending on pc speed)");

    if (numClicks === null || numClicks === undefined || isNaN(numClicks)) { alert("ERR: Clicks value is undefined or null."); throw new Error("Invalid clicks value"); }

    numClicks = Math.abs(parseFloat(numClicks)); numClicks = Math.round(numClicks);

    var delay = 0.005; var estimatedTime = delay * numClicks;

    alert("Clicking the button " + numClicks + " times will take approximately " + estimatedTime + " seconds.");

    var button = document.getElementById("button");

    var clickCount = 0; var clickInterval = setInterval(function() { if (clickCount >= numClicks) { clearInterval(clickInterval); return; } button.click(); clickCount++; }, delay * 1000);

    IsaiahNegron
    IsaiahNegron
    10 months ago

    It not working

    Jellied
    Jellied
    2 years ago

    Very cool - I have reached 10 million REPLs >:)

  • inversion

    Cover page
    Made with Node.js

    Inversion is a platformer where 2 players must come together to win.

    Recent comments (1)
    remarkablemark
    remarkablemark
    2 years ago

    Inversion

    Inversion

    Inversion is a 2D platformer puzzle game where two players must come together to win.

    This game was made during the Global Game Jam 2022, in which the theme was duality. The game was bootstrapped from phaser-platformer. Read the blog post.

    Play the game on:

    Credits

  • Phaser Template

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
All Repls