You are viewing a single comment's thread.

view the rest of the comments →

0
14

[–] fusir 0 points 14 points (+14|-0) ago  (edited ago)

This has general Voat truth to it. Being a Voater requires more posting and less lurking. You cannot be low energy and have a community survive.

Post Post Post.

It's not bad to copy the best from their subreddit. Make sure there is nothing there that isn't hear of worth.

Here is an optional userscript. It sorts a reddit page by new so the bottom are things that are liked enough they've withstood time and lasted on the front page. The top are things that are new to the front page and ideal to interact with.

// ==UserScript==
// @name Reddit new sort page
// @namespace Reddit Sort
// @match https://www.reddit.com/r/*
// // @grant none
// ==/UserScript==

(function sortall () {
 $('.stickied').remove();
 var sitetable = $('#siteTable');
 var children = sitetable.find('.thing.link').toArray();
 console.log(children.length);
 var sorted = children.sort(function(a,b) {
  if(!a.datetime) {
   console.log('miss a');
   a.datetime = parseInt($(a).attr('data-timestamp'));
   console.log('just got',a.datetime)
  }
  else {
   console.log('hit a');
  }
  if(!b.datetime) {
   console.log('miss b');
   b.datetime = parseInt($(b).attr('data-timestamp'));
  }
  else {
   console.log('hit b');
  }
  console.log(b.datetime,a.datetime);
  return b.datetime-a.datetime;
 });
 sorted.forEach(function(i) {
  sitetable.append($(i));
 });
})();