Skip to content
  • Text Messaging App

    General texting messages
    37
    24 Votes
    37 Posts
    5k Views
    @phenomlab sure, it’s https://proton.me/family
  • iOS 18 - Inspired by Fisher-Price?

    Chitchat ios iphone upgrade
    25
    2
    18 Votes
    25 Posts
    3k Views
    Nice review. I would like to see the new 2a plus compared to the s23 plus and s23 ultra. The price on the nothing phone is so much better. You could get 2 nothing phones and almost 3 for the same price as a samsung phone. The performance on the 2a plus looks really promising if the graphs are true.
  • IT tools

    General tools
    2
    4 Votes
    2 Posts
    438 Views
    @phenomlab That is an amazing page! Thanks for sharing that. Corentin did a great job with it.
  • Who uses Flarum?

    Chitchat flarum forum
    22
    7 Votes
    22 Posts
    3k Views
    @Madchatthew I use it here. It is faster, but not sure if that extends to build times.
  • 1 Votes
    22 Posts
    4k Views
    @DownPW Very tiring. Seems to happen more often than not.
  • Test of youtube embeds

    Solved Configure nodebb
    14
    11 Votes
    14 Posts
    2k Views
    @phenomlab Perfect!!! Many thanks.
  • Planned sunset of NTFY plugin

    Pinned Announcements push nodebb ntfy
    7
    1
    8 Votes
    7 Posts
    1k 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.
  • Ways to find RSS feeds

    Solved General rss feed
    5
    4 Votes
    5 Posts
    819 Views
    @phenomlab thanks Mark, very valuable information as always.
  • PC Imaging

    Windows imaging deployment
    12
    4 Votes
    12 Posts
    1k 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.
  • Layout Issues/Transparency

    Solved Bugs bug reply transparent
    5
    2
    2 Votes
    5 Posts
    731 Views
    @phenomlab said in Layout Issues/Transparency: Does it work properly now? Yes, it does
  • Crypto Currency and FTX

    Security crypto finance
    14
    1
    7 Votes
    14 Posts
    3k 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
  • configure ghost and wordpress combo

    Moved Solved WordPress ghost wordpress nginx
    9
    7 Votes
    9 Posts
    2k Views
    @Madchatthew I’d always post for the reasons I stated above. It’s useful information and could save someone else the headache.
  • Fancybox zoom

    Unsolved Customisation fancybox zoom image
    2
    1
    0 Votes
    2 Posts
    563 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 browser opera mozilla
    35
    14 Votes
    35 Posts
    6k Views
    Nope, need time
  • Network Security Monitoring

    Learning security network server
    7
    3 Votes
    7 Posts
    1k Views
    @phenomlab I will check those out. Thanks for sharing. I appreciate it!
  • Studying

    Learning studying
    5
    1 Votes
    5 Posts
    1k Views
    @JAC I am curious too as to which route you chose. It has been a little more than a couple of years.
  • 8 Votes
    5 Posts
    1k Views
    This is so true! You can see this all over social media as well. Someone makes a mistake or has a bad day and it blows up like crazy and all the good things they are doing or who they are is all forgotten. This happens with being an employee as well. Although management try to cover it up by doing the, hey you are doing a great job blah blah blah, but you need to do better with blah blah blah.
  • 3 Votes
    2 Posts
    1k Views
    Very great
  • Note Taking App

    Discussion notetaking opensource
    13
    4 Votes
    13 Posts
    2k Views
    @Madchatthew A simple PWA would probably suffice in the meantime
  • Opening links in nodebb widget

    Solved Configure nodebb
    6
    4 Votes
    6 Posts
    2k Views
    A more efficient way of including this would be to not over complicate it and leverage a standard iframe (providing the CSP headers of the remote site permit this) like below <iframe src="https://www.classmarker.com/online-test/start/?quiz=gag66aea7922f0a5" width="700" height="800"></iframe> This works first time every time on your site as intended.