Skip to content

New "services" page

Announcements

Related Topics
  • ANNOUCEMENT: New NTFY Server

    Announcements
    9
    7 Votes
    9 Posts
    691 Views

    @crazycells that’s as good a test as any 🙂

  • New Code Repository

    Announcements
    2
    3 Votes
    2 Posts
    382 Views

    @phenomlab very nice and useful idea

    Bravo Xd GIF

  • 10 Votes
    15 Posts
    448 Views

    @dave1904 there isn’t one currently, but I can easily put something together

  • 24 Votes
    49 Posts
    3k Views

    @crazycells You should be able to upvote more now as I’ve located the hard coded function in the plugin responsible for this and changed it from

    maxVotesPerUser(reputation) { let MIN = 5, MAX = 50; let calculatedVotesPerUser = Math.floor(reputation / 10); if (calculatedVotesPerUser < MIN) { calculatedVotesPerUser = MIN; } else if (calculatedVotesPerUser > MAX) { calculatedVotesPerUser = MAX; } return calculatedVotesPerUser; },

    to

    maxVotesPerUser(reputation) { let MIN = 5, MAX = 500; let calculatedVotesPerUser = Math.floor(reputation / 50); if (calculatedVotesPerUser < MIN) { calculatedVotesPerUser = MIN; } else if (calculatedVotesPerUser > MAX) { calculatedVotesPerUser = MAX; } return calculatedVotesPerUser; },

    It appears that the upvote limit is 10% of your reputation by default.

  • New Twitter handle

    Announcements
    4
    5 Votes
    4 Posts
    416 Views

    Off course 😉

  • New blog section added

    Announcements
    1
    0 Votes
    1 Posts
    472 Views
    No one has replied
  • New "quote" feature added

    Announcements
    12
    3 Votes
    12 Posts
    912 Views

    @phenomlab Inquiring minds will be curious. See my reply in the “Miscellany” thread, eh? 👍

  • Platform development diary

    Announcements
    9
    1 Votes
    9 Posts
    763 Views

    It’s been a while since I checked in here. Plenty going on - mostly around rectifying small pockets of resistance between light and dark modes, plus the addition of new features such as an enhanced reputation system and the ability to create polls. Plus, there are several changes going on under the hood which are completely transparent to users or the operation of the platform.

    However, some changes mean that the platform does need to be restarted for code changes to stick and function correctly. I tend to do this during non busy periods, but sometimes, it’s unfortunately inevitable. The good news is that in most cases, a full restart takes only 20 seconds.

    More to come