ANNOUCEMENT: New NTFY Server

Announcements

  • 24 Votes
    61 Posts
    174 Views

    @dave1904 said in Create a self-hosted instance of NTFY:

    We got this working. I’m not sure if it was on my buddys end.

    Here the steps:

    Add new sub in ntfy app with the private ID and using another server (ntfy.mydomain.com) In settings also use the ntfy url as default Server add the upstream-base-url: “https://ntfy.sh” property in server.yaml and restart ntfy

    thanks for the update! 👍

  • 5 Votes
    4 Posts
    58 Views

    You are very awesome! Thanks @phenomlab

    feel free to delete this topic 🙂

  • 3 Votes
    2 Posts
    53 Views

    @phenomlab very nice and useful idea

    Bravo Xd GIF

  • 7 Votes
    3 Posts
    76 Views

    @DownPW Yes, this is the general idea. I’m also in the process of putting together a welcome message to be displayed when a new user registers so they can explore all of the services on offer.

  • 7 Votes
    3 Posts
    91 Views

    happy new year all 😉

  • 24 Votes
    49 Posts
    911 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.

  • 5 Votes
    4 Posts
    215 Views

    Off course 😉

  • 0 Votes
    1 Posts
    157 Views

    I’m excited to announce that a new blog section has been added 😛 The blog is actually using Ghost and not NodeBB, and also sits on it’s own subdomain of https://content.sudonix.com (if you ever fancy hitting it directly).

    We’ve moved all the blog articles out of the existing category here, and migrated them to the Ghost platform. However, you can still comment on these articles just like they were part of the root system. If you pick a blog article whilst logged in

    7e61c35b-2304-4c06-bda2-34da52252e1a-image.png

    Then choose the blog article you want to read

    7ca5089e-cf7e-4050-b951-5426fd1c6ec3-image.png

    Once opened, you’ll see a short synopsis of the article

    1bc086b4-5968-4e81-bc47-70de263b2275-image.png

    Click the link to read the rest of the post. Scroll down to the bottom, and you’ll see a space where you can provide your comments ! Take the time to read the articles, and provide your own feedback - I’d love to hear it.

    3f712e7c-475d-42d4-a5ca-b4becff6cc2e-image.png

    The blog component is not quite finished yet - it needs some polish, and there’s a few bugs scattered here and there, but these will only manifest themselves if a certain sequence of events is met.