Skip to content

Mobile-friendly view for journey

Announcements

Related Topics
  • Planned sunset of NTFY plugin

    Pinned Announcements
    7
    8 Votes
    7 Posts
    189 Views

    Iā€™ve noticed that Iā€™m the only one subscribed to the push notifications on this site. If you were using NTFY previously, and have noticed that youā€™ve not had any alerts for a while, itā€™s because this feature has been disabled.

    Youā€™ll now need to use the push notification to replace NTFY as mentioned in the first post.

  • ANNOUCEMENT: New NTFY Server

    Announcements
    9
    7 Votes
    9 Posts
    712 Views

    @crazycells thatā€™s as good a test as any šŸ™‚

  • Theme retirement

    Announcements
    21
    16 Votes
    21 Posts
    1k Views

    I relented somewhat here and added another swatch - one I missed, which was previous called ā€œblackoutā€. This specific one has been adapted to work on the new theming engine, but the others have been reclassified, and renamed to suit.

    image.png

    As a result, the theme you might have had will probably be reflecting something else, so you (might) need to change your themes accordingly. The changes are as follows

    Light -> No Change
    Cloudy -> Is now the old ā€œDimā€
    Dim -> Is now the old ā€œDarkā€
    Dark -> Now a new theme based on the revamped ā€œBlackoutā€

  • Clustering for NodeBB enabled

    Announcements
    22
    16 Votes
    22 Posts
    473 Views

    @Madchatthew True. I think this is the reason as to why most Open Source projects are abandoned because they are not sustainable in the long-term.

  • 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.

  • Do you need a degree to succeed?

    Moved Blog
    5
    5 Votes
    5 Posts
    508 Views

    @qwinter very well put. Great points and I can certainly align with these. I personally donā€™t see no university as a barrier to progression. My old boss said that heā€™d take preference with anyone who had a degree because of their ā€œability to think logicallyā€ (I kid you not). I said ā€œwell, you hired me and I donā€™t have a degreeā€¦ā€.

    He paused for a moment realising that heā€™d literally dug himself a hole and fell in it. He then said ā€œah yes, but youā€™re an exceptionā€.

    ā€œExceptionā€ or not - itā€™s still a bigoted reasoning mechanism, and elitist to put it mildly. Class distinction springs to mind here.

  • 1 Votes
    3 Posts
    445 Views

    @downpw Iā€™m inclined to agree with the self-development - and the point you make about the lack of certification being seen as a barrier to enter professions.

    @downpw said in Experience vs Certification - who wins?:

    Because even without experience, if you have an iron will, you can be better than someone who has certification. With more work and effort, certainly, but does it matter?

    This is an interesting statement because I knew of several people years ago whom obtained MCSE accreditation, but had never sat in front of a real-life scenario before where they had to fix something - hence, the term, ā€œPaper MCSEā€. Essentially, this involves reading a book, then going to do the exam. Some people have that capability where they can retain a bulk load of information, and use that to easily pass an exam - yet have no practical experience.

    To me, itā€™s easy to identify these people. They can give you a text-book answer, but have no ability to prove it physically.

  • Fancybox now used for image handling

    Announcements
    16
    6 Votes
    16 Posts
    982 Views

    And it seems to be less conflicting!