Merth nerdsniped me (didn't take very long, fortunately) with this question earlier:
Quote:
I wonder if we could query for the biggest necro post.
And by if we could, I actually mean, I wonder if Tari would do that for me 😄

That seemed like a moderately interesting query to construct against our database (see the end of this post for the query), so here are Cemetech's top 10 necroposts:
  1. At number 10, Merth updated his binsprite.html sprite editing tool in late 2024, after the last comments in 2013.
  2. Domino 464 made the first reply to a review of a Gamecube game in 2016, 11 years after the topic was created.
  3. Rank 8 goes to Kerm, for a 12-years-later update on the MobileTunes 3 converter tool, reporting on some work I did on it.
  4. Potatoman1234 commented on an cryptic error code from TI-connect about 11 years after the fact, in what looks like some useful answers to a question that never got a definitive answer.
  5. Rank 6 goes to darkwater4213 asking for some advice on backing up computers, in a thread that continues to lack any more modern advice (there are others with better advice to today's readers).
  6. De2290 made a joke about vaporware in relation to a math utillity program from 2006 to claim rank 5.
  7. Benryves' Nostromo engine has been without any commentary since 2011, but rat_yt took the opportunity in 2023 to ask if it could be made to work on a CE calculator.
  8. CDI gave us a blast from the past in 2023, showing some work on updating an old TI-BASIC game concept they first posted about in 2010, but this time thinking about targeting it to the Game Boy instead.
  9. Mcdonalds_lover_32 basically reponded "lol" to a jokes thread in February, breaking 14 years of restful repose.
  10. The number one most-necro of posts is one of mine! "Pronouncing 'Cemetech'" sat fallow from late 2007 all the way until I reported on my work to improve the pronunciation guide on our site frontpage in early 2024.

I'm actually a little surprised by how on-topic these responses are overall, and it's cool to see that people are able to derive value from (and continue to contribute to!) discussions that happened more than 10 years ago on our site.


The SQL query I ran against our database to find these posts:

Code:
WITH most_necro AS (
  SELECT
    post_time - LAG(post_time) OVER (PARTITION BY topic_id ORDER BY post_time) AS delta,
    post_id
  FROM forum_posts
  ORDER BY delta DESC
)
SELECT post_id FROM most_necro LIMIT 10;
This is the sort of thing that I think many people (especially those who aren't so familiar with useful SQL constructs) would write in their programming language of choice by iterating over all post rows, whereas it's an excellent application for window functions (LAG() with partition/ordering) to let the database do all of the work.
That's really cool! I agree it's cool to see that people are getting value from the posts! When I first started here we were a bit more strict about necro posts, but I kind of like as time goes by and new people are able to add their thoughts that we're a little softer on it. It helps contribute to the overall diversity of thought and that's always good.

Also, cool SQL query! I definitely would've gone the program-it-in-something-I-know route. Cool to learn something new!
I'll see all of you in a bit over 18 years, to follow up on this post.

Then we'll append a new list, I guess?
I remember when Mcdonald's_lover_32 responded to the "lol" topic:)
merthsoft wrote:
That's really cool! I agree it's cool to see that people are getting value from the posts! When I first started here we were a bit more strict about necro posts, but I kind of like as time goes by and new people are able to add their thoughts that we're a little softer on it. It helps contribute to the overall diversity of thought and that's always good.


I think it is funny how many forums have rules about necro posts but then also get angry at members who post repeat questions/topics without searching. If you want people to search old topics/questions first, then necro posting is going to happen because they will pull up an old but relevant thread for their problem and raise it there.
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement