Possible LES UI Improvement?

edited December 2023 in General

Outside of all the awesomeness here there's one thing that's just been driving me crazy. There's no way to tell when a post was originally posted without clicking to see the first post.

I was thinking something along the lines of this:

Nothing special, but enough to indicate whether something is fresh or rotten. So you can look at that list right there and and see @Ympker wished us a Merry Christmas two days late* and @not_oles is there necroposting a thread from 2009!!!**

More specifically, It'd help differentiate whether a provider is running a current sale/special/limited offer and if it's likely still active or not. Sale from October on the front page today? Probably not active. Christmas special? Yeah, that sounds right, but when it was posted 3 years ago, not so much.

*added for dramatic effect
**also added for dramatic effect

.
  1. Would this be of value to you?31 votes
    1. Yes
      41.94%
    2. Yes (but in lowercase)
      12.90%
    3. Debian please.
      45.16%

Comments

  • havochavoc OGContent Writer

    Better approach imo is just to hard-lock stuff that is super old.

    The new clueless will create new threads anyway

    Thanked by (2)host_c crunchbits
  • FrankZFrankZ Moderator

    Where is the required "debian please" poll option ?

    Thanked by (1)bikegremlin

    I am currently traveling in mostly remote areas until sometime in April 2024. Consequently DM's sent to me will go unanswered during this time.
    For staff assistance or support issues please use the helpdesk ticket system at https://support.lowendspirit.com/index.php?a=add

  • edited December 2023

    @FrankZ said:
    Where is the required "debian please" poll option ?

    Right there :)

    Thanked by (2)host_c FrankZ
  • host_chost_c Hosting Provider

    Host-C - VPS Services Provider - AS211462

    "If there is no struggle there is no progress"

  • FrankZFrankZ Moderator
    edited December 2023

    @don_keedic said:

    @FrankZ said:
    Where is the required "debian please" poll option ?

    Right there :)

    Thank you, I've voted now.
    Your a lucky guy. Every time in the past when I've tried to edit a poll it deletes the poll.

    Thanked by (2)don_keedic bikegremlin

    I am currently traveling in mostly remote areas until sometime in April 2024. Consequently DM's sent to me will go unanswered during this time.
    For staff assistance or support issues please use the helpdesk ticket system at https://support.lowendspirit.com/index.php?a=add

  • edited December 2023

    @FrankZ said:

    @don_keedic said:

    @FrankZ said:
    Where is the required "debian please" poll option ?

    Right there :)

    Thank you, I've voted now.
    Your a lucky guy. Every time in the past when I've tried to edit a poll it deletes the poll.

    I think it may have axed the results! Forgot to view before I tried to get all sneaky sneaky on you.

    Thanked by (2)FrankZ bikegremlin
  • bikegremlinbikegremlin ModeratorOGContent Writer
    edited December 2023

    Complains about the UI, yet uses the damn dark mode...

    @FrankZ - can I? Pleeease?

    :)

    On a more serious note, I'm not sure if that's possible to do with Vanilla.

    Xenforo (my tutorial link) does it nicely - shows the nick & avatar of the thread starter and the latest replier (is that the word), along with the dates.

    But LES works great on a technical level and migrating to a completely different platform would probably be too much work for questionable gains (if any, really).

    Relja

    Thanked by (2)FrankZ skorous

    Relja of House Novović, the First of His Name, King of the Plains, the Breaker of Chains, WirMach Wolves pack member
    BikeGremlin's web-hosting reviews

  • FrankZFrankZ Moderator

    @don_keedic said:

    @FrankZ said:

    @don_keedic said:

    @FrankZ said:
    Where is the required "debian please" poll option ?

    Right there :)

    Thank you, I've voted now.
    Your a lucky guy. Every time in the past when I've tried to edit a poll it deletes the poll.

    I think it may have axed the results! Forgot to view before I tried to get all sneaky sneaky on you.

    Yep, that is what happens. It's a Vanilla feature.

    Thanked by (1)crunchbits

    I am currently traveling in mostly remote areas until sometime in April 2024. Consequently DM's sent to me will go unanswered during this time.
    For staff assistance or support issues please use the helpdesk ticket system at https://support.lowendspirit.com/index.php?a=add

  • bikegremlinbikegremlin ModeratorOGContent Writer

    @FrankZ said:

    @don_keedic said:

    @FrankZ said:

    @don_keedic said:

    @FrankZ said:
    Where is the required "debian please" poll option ?

    Right there :)

    Thank you, I've voted now.
    Your a lucky guy. Every time in the past when I've tried to edit a poll it deletes the poll.

    I think it may have axed the results! Forgot to view before I tried to get all sneaky sneaky on you.

    Yep, that is what happens. It's a Vanilla feature.

    Probably to prevent fixing the elec... the polls.

    Amateurs...

    Thanked by (1)FrankZ

    Relja of House Novović, the First of His Name, King of the Plains, the Breaker of Chains, WirMach Wolves pack member
    BikeGremlin's web-hosting reviews

  • I use this userscript. It's not a date, but it's better than not showing anything.

    // ==UserScript==
    // @name         LES - Show Threads Number
    // @version      2023
    // @match        https://lowendspirit.com/discussions
    // @match        https://lowendspirit.com/categories/*
    // @icon         https://icons.duckduckgo.com/ip2/lowendspirit.com.ico
    // @grant        none
    // ==/UserScript==
    
    (function () {
        'use strict';
    
        document.querySelectorAll('div.Title[role=heading]').forEach(div => {
            const a = div.querySelector('a');
    
            if (!a) return;
    
            const num = a.href.split('/')[4];
            const spanElement = document.createElement('span');
            spanElement.style.fontSize = 'x-small';
            spanElement.textContent = num;
    
            div.insertBefore(spanElement, div.firstChild);
        });
    })();
    
    Thanked by (2)bikegremlin crunchbits
  • pnqpnq
    edited December 2023

    I wrote a JavaScript for Lowndtalk, but I rarely use LowndSpirit, So I did not write scripts for LowendSpirit.

    Thanked by (1)don_keedic
  • @pnq said:
    I wrote a JavaScript for Lowndtalk, but I rarely use LowndSpirit, So I did not write scripts for LowendSpirit.

    methinks this will work here too

    youtube.com/watch?v=k1BneeJTDcU
    All of my VMs: https://nodecheck.net/s/otusibrc/

  • https://i.imgur.com/F0U51WR.png> @pnq said:

    I wrote a JavaScript for Lowndtalk, but I rarely use LowndSpirit, So I did not write scripts for LowendSpirit.

    I have written something similar 🧐

    Thanked by (1)don_keedic
  • I thought it was ‘Debian, thx’?

  • FrankZFrankZ Moderator
    edited December 2023

    @Nekki said:
    I thought it was ‘Debian, thx’?

    I say please, you say thx. Sounds right to me

    I am currently traveling in mostly remote areas until sometime in April 2024. Consequently DM's sent to me will go unanswered during this time.
    For staff assistance or support issues please use the helpdesk ticket system at https://support.lowendspirit.com/index.php?a=add

Sign In or Register to comment.