Skip to content
  • 87 Votes
    123 Posts
    10k Views

    @crazycells yes, sadly, we live in a world where racism is present in all walks of life, not excluding the Internet where it is arguably the worst purely because of the ability to remain anonymous and hide behind a keyboard.

    If this is what large scale language models are using for enrichment, then it’s no wonder we’ve landed up here.

  • 1 Votes
    3 Posts
    16 Views

    @phenomlab yes, it is 🙂 thanks a lot…

  • 1 Votes
    2 Posts
    11 Views

    @crazycells yes, this might be because of another plugin I have active that calculates the total votes across a topic. Will need to check

  • 7 Votes
    8 Posts
    47 Views

    @crazycells hmm. That’s odd. I haven’t made any changes from recollection but I could be wrong. I’ll need to check.

  • CSS border gradients

    Blog
    10
    2 Votes
    10 Posts
    48 Views

    ah f5 need 🙂

  • Bug Report

    Solved Bugs
    23
    11 Votes
    23 Posts
    531 Views

    @crazycells Thanks for the comments. Yes, I take privacy very seriously, and would much rather users of this site have control over their own content.

  • 20 Votes
    49 Posts
    2k Views

    @cagatay Those are in /admin/extend/widgets/brand header. Look inside the HTML widget that is there, and you’ll find

    <div class="socialicons"> <a class="btn-ghost p-2" href="https://github.com/phenomlab" rel="noreferrer noopener"><i style="color: #333;background: #ffffff; width: 26px" class="fa fa-2x fa-github-square"></i></a> <a class="btn-ghost p-2" href="https://linkedin.com/in/phenomlab" rel="noreferrer noopener"><i style="color: #0077B5;background: #ffffff; width: 26px" class="fa fa-2x fa-brands fa-linkedin-square"></i></a> <a class="btn-ghost p-2" href="https://twitter.com/phenomlab" rel="noreferrer noopener"><i style="color: #1DA1F2;background: #ffffff; width: 26px" class="fa fa-2x fa-twitter-square"></i></a> <!-- <a class="btn-ghost p-2" href="https://www.facebook.com/sudonixtech" rel="noreferrer noopener"><i style="color: #4268B2;background: #ffffff; width: 26px" class="fa fa-2x fa-facebook-square"></i></a> --> </div>

    Remove that block and save.

  • 48 Votes
    104 Posts
    2k Views

    https://github.com/phenomlab/harmony-card-view/commit/62181e4e941a5e3abb4f1de506dad463c605800d

  • 6 Votes
    13 Posts
    50 Views

    @phenomlab yes, search page is fixed 🙂 thanks 👍

  • 50 Votes
    146 Posts
    16k Views

    Updated git for above change

    https://github.com/phenomlab/nodebb-harmony-threading/commit/14a4e277521d83d219065ffb14154fd5f5cfac69

  • 18 Votes
    47 Posts
    3k Views

    @phenomlab yes, exactly 😄 that would do a good cleaning to the internet from the booty pics 🤣

  • 3 Votes
    30 Posts
    342 Views

    @DownPW any update?

  • 1 Votes
    1 Posts
    65 Views

    Reddit users have been reacting with deep gloom to the firm saying it plans to sell shares to the public.

    The “beginning of the end”, “good while it lasted”, and “they ruined it”, are just some of the comments made by Redditors, as they are known, since the announcement on Thursday.

    The company has said its plans are “exciting” and will offer the business opportunities for growth.

    However many users worry the move will fundamentally change the website.

    Reddit, which was founded almost twenty years ago, is an online forum where users can post questions and comment on topics that interest them.

    Source - BBC News

    https://www.bbc.co.uk/news/business-68372755

    Whilst I have my own views surrounding this (it’s something I’ve seen before elsewhere where an IPO and rounds of fundraising were attempted) and this fell flat on its face - to the point where the community and ultimately, the brand folded as a result., I think this is certainly worthy of discussion. Think what you may of Reddit, but it’s one of the oldest and largest forums on the planet.

    There is also the distinct possibility that the IPO is a step in the direction of attempting to make the platform more appealing to investors - in the form of potentially a sell off.

  • 2 Votes
    3 Posts
    137 Views

    Just had a look through the new Free NGINX website, which looks like an 80’s throwback and that it was created using a ZX Spectrum 🙂

    https://freenginx.org

    Love the sarcastic note…

    image.png

  • 1 Votes
    1 Posts
    82 Views

    Security experts have urged Android users to delete five apps from their phones immediately over fears they are infected with malware.

    Samsung Galaxy phones are particularly at risk from the nasty bug called Anatsa, which is a banking trojan.

    It is capable of performing actions on a victim’s phone without them knowing, including taking money from their bank account.

    The apps, which had been available on the Google Play Store, are:

    Phone Cleaner – File Explorer PDF Viewer – File Explorer PDF Reader – Viewer & Editor Phone Cleaner: File Explorer PDF Reader: File Manager

    Article courtesy of Life Hacker

    https://lifehacker.com/tech/delete-these-android-malware-apps-asap

  • 26 Votes
    63 Posts
    3k Views

    @sebmegag hi. Welcome aboard! I’ve tried this on both iPhone and Android and it works fine. Did you double check the config you have?

  • 1 Votes
    3 Posts
    141 Views

    You might want to also review this post

    https://sudonix.org/topic/389/mongodb-backup-script

  • 15 Votes
    27 Posts
    1k Views

    For anyone else coming here and is struggling to get pm2 to work with Umami (as I did - it started, but never seemed to work after a reboot which is pretty useless), you can use the below. Obviously, change the parts noted inside the [brackets]. Follow the below instructions:

    Instructions

    Open a terminal and create a new systemd service file:

    sudo nano /etc/systemd/system/umami.service

    Add the following content to the file:

    [Unit] Description=Umami Analytics Server After=network.target [Service] Type=simple User=[umami user] WorkingDirectory=[path to umami] ExecStart=/usr/local/bin/node [path to umami]/node_modules/.bin/next start Restart=on-failure [Install] WantedBy=multi-user.target

    Replace [umami user] with the username of the user that should run the Umami service, and [path to umami] with the actual path to your Umami installation.

    Save the file and exit the editor.

    Reload the systemd manager configuration:

    sudo systemctl daemon-reload

    Enable the Umami service to start on boot:

    sudo systemctl enable umami.service

    Start the Umami service:

    sudo systemctl start umami.service

    You can check the status of the service with:

    sudo systemctl status umami.service

    This systemd service file will ensure that Umami starts automatically when the system boots, and it will restart the service if it fails. Remember to adjust the WorkingDirectory and ExecStart paths according to where Umami is installed on your system, and ensure that Node.js is installed and accessible at /usr/bin/node (or adjust the path to Node.js as necessary).

  • 2 Votes
    4 Posts
    144 Views

    @DownPW This won’t be the first time that Amazon and others like them are being bought to account. I recall seeing a documentary on the TV recently where they sent in a reporter with secret cameras to film the strict regimen and constant threat of being fired for not meeting targets that workers are placed under.

    The surveillance just takes this to a whole new level in my view and it’s like being placed under a microscope for constant scrutiny. This goes well beyond the surveillance placed on prisoners!

  • nodebb error logs

    Bugs
    6
    4 Votes
    6 Posts
    157 Views

    I just wanted to ask because I don’t have much knowledge about the new installation.
    Thank you for the explanatory answer.