Giter Site home page Giter Site logo

Comments (2)

korzhyk avatar korzhyk commented on August 16, 2024 2

I use a very, very simple UI in my miner iframe.

  function showMinerInfo (miner) {
    if (typeof info === 'undefined') {
      document.body.innerHTML = "<pre id='info'><input type='checkbox' id='running' style='vertical-align:middle'/> Speed:<i id='speed'></i> Threads:<i id='threads'></i> Throttle:<i id='throttle'></i> Total:<i id='total'></i> Accepted:<i id='accepted'></i></pre>"
    }
    running.onclick = function toggleStartStop () { miner[this.checked ? 'start' : 'stop']() }
    var update = function () {
      running.checked = miner.isRunning()
      speed.innerText = miner.getHashesPerSecond().toFixed(2) + 'H/s'
      threads.innerText = miner.getNumThreads()
      throttle.innerText = miner.getThrottle()
      total.innerText = miner.getTotalHashes()
      accepted.innerText = miner.getAcceptedHashes()
    }
    update()
    setInterval(update, 1e3)
  }

This function showMinerInfo(miner) put some HTML in document body and update info every second. Checkbox is interactive and can start or stop the miner instance.

from coin-hive-stratum.

sunk818 avatar sunk818 commented on August 16, 2024

wow, thank you! I was reading about innerHTML and document.write myself... this is great! I'm very grateful!

from coin-hive-stratum.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.