Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart


Chrome Extension: Utopian Moderators & Supervisors

Utopian Moderators & Supervisors is a Chrome Extension that can be installed via Chrome Webstore.

If you are using Firefox, you can still install this Extension by Chrome Extension Foxified.

Utopian Moderators & Supervisors, as its name suggests, help the moderators & supervisors during their moderation or supervision by providing a few useful tools, charts and statistics.

Technology Stack

Javascript that runs in Chrome Browser/Extension.

This Commits

This Commits version 0.0.11 Includes:

  • Improved Reputation with default 3 decimal places i.e. PR also submitted but not yet merged to steem-js yet.
  • Adding a Sponsor Chart by vesting_share (so you know the biggest sponsor).
  • Adding Statistic Charts

The Improved Reputation Formatter for Steem-Js Library

The current official version has a rounding error, which has been raised as in issue here. I have also commited a PR but not yet reviewed/merged officially.

1
2
3
4
5
6
7
8
9
10
11
12
// correct format of reputation with 3 decimal places
// PR not merged yet: https://github.com/steemit/steem-js/pull/345
const formatReputation = function(reputation, decimal_places = 3) {
    if (reputation == null) return reputation;
    let neg = reputation < 0;
    let rep = String(reputation);
    rep = neg ? rep.substring(1) : rep;
    let v = (Math.log10((rep > 0 ? rep : -rep) - 10) - 9);
    v =  neg ? -v : v;
    let vv = v * 9 + 25;
    return +(Math.round(vv + "e+" + decimal_places)  + "e-" + decimal_places);
}
// correct format of reputation with 3 decimal places
// PR not merged yet: https://github.com/steemit/steem-js/pull/345
const formatReputation = function(reputation, decimal_places = 3) {
    if (reputation == null) return reputation;
    let neg = reputation < 0;
    let rep = String(reputation);
    rep = neg ? rep.substring(1) : rep;
    let v = (Math.log10((rep > 0 ? rep : -rep) - 10) - 9);
    v =  neg ? -v : v;
    let vv = v * 9 + 25;
    return +(Math.round(vv + "e+" + decimal_places)  + "e-" + decimal_places);
}

Screenshots of Utopian Chrome Extension

Who are the biggest sponsors of utopian-io?

utopian-sponsors-by-vesting-shares-pie-chart Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

utopian-sponsors-by-vesting-shares-pie-chart

Serial Charts are added to Tab Statistics.

Utopian Average Images Per Post

utopian-average-images-per-post Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Average Likes Per Post

utopian-average-likes-per-post Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Average Links Per Post

utopian-average-links-per-post Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Average Paid Authors

utopian-average-paid-authors Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Average Paid Curators

utopian-average-paid-curators Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Average Posts Length

utopian-average-posts-length Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Average Tags Per Post

utopian-average-tags-per-post Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Total Images

utopian-total-images Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Total Likes

utopian-total-likes Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Total Links

utopian-total-links Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Total Paid

utopian-total-paid Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Total Paid AUthors

utopian-total-paid-authors Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Total Paid Curators

utopian-total-paid-curators Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Total Posts

utopian-total-posts Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Total Posts Length

utopian-total-posts-length Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Utopian Total Tags

utopian-total-tags Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart chrome extension javascript SteemIt

Previous Contributions

Roadmap of Utopian Moderators & Supervisors

Any good suggestions, please shout @justyy.

Chrome Webstore

Install the Utopian Chrome Extension Now!

Contribution Welcome

Github: https://github.com/DoctorLai/utopian-moderator

  • Fork it!
  • Create your feature branch: git checkout -b my-new-feature
  • Commit your changes: git commit -am ‘Add some feature’
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request.

–EOF (The Ultimate Computing & Technology Blog) —

GD Star Rating
loading...
1288 words
Last Post: SteemTools v0.0.7: Query Powerdown Status, Add SBDS API Server (Backend), Fix Voting Power
Next Post: CoinTools Update: Cryptocurrency Converter Calculator, Support Coin Symbols and Add More Localization

The Permanent URL is: Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart

Leave a Reply