Skip to content
  • Ways to find RSS feeds

    Solved General
    5
    4 Votes
    5 Posts
    26 Views

    @phenomlab thanks Mark, very valuable information as always.

  • Want to use Sudonix themes ?

    Chitchat
    69
    33 Votes
    69 Posts
    2k Views

    @cagatay

    @cagatay said in Want to use Sudonix themes ?:

    I know that you also update your own css and js along with nodebb’s updates

    I do update the CSS and JS here, but it’s not in line with NodeBB releases. All of the code I have written will work with prior releases, with the exception of Chat Threading, which requires a specific hook not present in some early versions. Again, this would still work, but not at full capacity.

    @cagatay said in Want to use Sudonix themes ?:

    mine is old one when we first set it up

    It’s not “old” - it just isn’t the latest code. In fact, the code running on your website is not advertised anywhere else, so in fact, is newer than the Git links in this post.

    @cagatay said in Want to use Sudonix themes ?:

    I would like to your help to use your current css and js codes if its possible?

    Possible, yes, but not yet. There are still some bugs in the code branch I’m using here, and I don’t want to introduce complexities into your installation - particularly when I know they exist, and you’d be left with issues that your users then have to put up with.

  • Ch..ch..ch..ch..changes!

    Announcements
    7
    7 Votes
    7 Posts
    54 Views

    @DownPW said in Ch..ch..ch..ch..changes!:

    Do you think you’ll share the code for this new theme selector so we can test it ? or are you keeping it as your own code?

    No, the intention is to share it once I have it stable. There’s a couple of bugs I need to fix before release.

  • Arch Server Progress

    Chitchat
    10
    6 Votes
    10 Posts
    76 Views

    @Madchatthew Feel free to post the issues here 🙂

  • PC Imaging

    Windows
    12
    4 Votes
    12 Posts
    36 Views

    I remember one time, one of the guys I was working with was working on a PC. He has done some things with it and when he plugged it in and turned it on, there was an actual flame jet shooting out of one of the chips. I never saw anyone unplug a PC faster than that LOL. Of course the customer ended up just buying a new PC at that point. They had the option of getting a new motherboard but chose not to.

  • Which email client do you use?

    Discussion
    53
    22 Votes
    53 Posts
    791 Views

    @Madchatthew I’m in the same boat. We live in a mobile-first world these days, and any software vendor not rapidly adopting that mantra is going to find themselves out of business.

  • Layout Issues/Transparency

    Solved Bugs
    5
    2 Votes
    5 Posts
    22 Views

    @phenomlab said in Layout Issues/Transparency:

    Does it work properly now?

    Yes, it does 🙂

  • 24H2 Official ISO Don't support custom wim file

    Unsolved Windows
    18
    0 Votes
    18 Posts
    61 Views

    @DownPW thought that would be the case, but wanted to check. I guess the only “real” way (temporarily) around this issue is to issue 23H2 version to the machines, and upgrade them to 24H2.

    Not ideal, but a “workaround” for the time being.

  • 121 Votes
    178 Posts
    17k Views

    The 2024 Nobel prize for physics has been awarded to two scientists who laid “the foundation” for artificial intelligence - although one of them recently warned the technology could be the end of humanity.

    https://news.sky.com/story/nobel-physics-prize-awarded-to-godfather-of-ai-who-warned-the-technology-could-end-humanity-13230231

  • Crypto Currency and FTX

    Security
    14
    7 Votes
    14 Posts
    889 Views

    Something of an update here. Good news that some people will get their hard earned investment back, but certainly not everyone

    https://www.bbc.co.uk/news/articles/c0qz3dg21vqo

  • Nord VPN renewal

    Chitchat
    16
    12 Votes
    16 Posts
    190 Views

    Cheers Mark, I’ll have a look at this tomorrow.

  • Recall to take screenshots every 2 seconds

    Blog
    13
    9 Votes
    13 Posts
    402 Views

    @phenomlab said in Recall to take screenshots every 2 seconds:

    Not that it matters to me - my laptop runs KDE Neon

    That is a really nice distro.

  • configure ghost and wordpress combo

    Moved Solved WordPress
    9
    7 Votes
    9 Posts
    69 Views

    @Madchatthew I’d always post for the reasons I stated above. It’s useful information and could save someone else the headache.

  • NodeBB Twitter / X embeds

    Let's Build It
    16
    16 Votes
    16 Posts
    291 Views

    @OT Not seen this personally. Are you using the latest commit?

  • Planned sunset of NTFY plugin

    Pinned Announcements
    6
    8 Votes
    6 Posts
    71 Views

    @phenomlab said in Planned sunset of NTFY plugin:

    Those of you who regularly visit the NodeBB forums have problably noticed this

    Interesting my friend, long may NodeBB & Sudonix continue to thrive 😬.

  • Adding a banner to chat messages

    Tips
    37
    17 Votes
    37 Posts
    2k Views

    Looks very interesting Mark, I’m going to attempt to add this to my forum tomorrow 🤝.

  • Fancybox zoom

    Unsolved Customisation
    2
    0 Votes
    2 Posts
    43 Views

    @DownPW Technically, it should be possible with the addition of the below

    Toolbar: { display: { left: ["infobar"], middle: [ "zoomIn", "zoomOut", "toggle1to1", "rotateCCW", "rotateCW", "flipX", "flipY", ], right: ["slideshow", "thumbs", "close"], }, },

    Meaning your code block becomes

    function fancybox() { if (top.location.pathname !== '/login') { $(document).ready(function() { $('a').not('.forum-logo').not(".avatar").not(".emoji").not(".bmac-noanimate").each(function() { $('a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".webp"], a[href*=".svg"]').addClass("noanimate"); }); }); Fancybox.bind( 'a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".webp"], a[href*=".svg"]', { Toolbar: { display: { left: ["infobar"], middle: [ "zoomIn", "zoomOut", "toggle1to1", "rotateCCW", "rotateCW", "flipX", "flipY", ], right: ["slideshow", "thumbs", "close"], }, }, } ); } }

    Note, that you just need to add/remove the elements in the toolbar you do not need. Obviously, zoomIn and zoomOut are the ones you are specifically interested in. However, if Fancybox detects that the image has already been zoomed as far as possible, then this will not work. You’d need an external library such as zoom.js to add this functionality, or perhaps simpler

    https://www.jacklmoore.com/zoom/

    A good example of how you’d make these two independent libraries work together is below

    https://codepen.io/ezra_siton/pen/VgrjKw

    It’s worth nothing that this specific code is based on Fancybox 3, so may need to be refactored to work with the latest version 5.

  • Which Browser The Best!

    Chitchat
    35
    14 Votes
    35 Posts
    2k Views

    Nope, need time 😉

  • Network Security Monitoring

    Learning
    7
    3 Votes
    7 Posts
    140 Views

    @phenomlab I will check those out. Thanks for sharing. I appreciate it!

  • Studying

    Learning
    5
    1 Votes
    5 Posts
    628 Views

    @JAC I am curious too as to which route you chose. It has been a little more than a couple of years.