Skip to content
View rbroering's full-sized avatar

Highlights

  • Pro

Block or report rbroering

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

Pinned Loading

  1. MediaWiki Special:LongPages average ... MediaWiki Special:LongPages average bytesize of top 20
    1
    var topNr = 20; lpbytes = 0, lpbytescurrentli = 0;
    2
    for (var i = 1; i <= topNr; i++) {
    3
        lpbytescurrentli = parseInt(document.querySelector("ol.special li:nth-child(" + i + ")").innerText.replace(/(.+\[)/, "").replace(/(\].*)/, "").replace(/\D/g, ""));
    4
        lpbytes += lpbytescurrentli;
    5
    }
  2. MediaWiki Special:RecentChanges aver... MediaWiki Special:RecentChanges average number of changes
    1
    var rcDays = 90, editsTotal = 0, maxDisplayed = 50;
    2
    maxDisplayed = parseInt(document.querySelector('.rcoptions .rclinks a[data-keys="limit"] strong').innerText.replace(/\D/g, ""));
    3
    editsTotal = document.querySelector('.mw-changeslist').getElementsByTagName("tr").length;
    4
    if (editsTotal >= maxDisplayed) {
    5
      console.warn("Total number of changes has reached the set limit! Increase the limit and run this command again!");