MU Soapbox

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Muxify
    • Mustard
    1. Home
    2. WTFE
    3. Topics
    • Profile
    • Following 3
    • Followers 3
    • Topics 3
    • Posts 1138
    • Best 415
    • Controversial 9
    • Groups 3

    Topics created by WTFE

    • WTFE

      A useful little script for USB IDs
      Code • vid code generation usb pid rexx • • WTFE

      2
      1
      Votes
      2
      Posts
      209
      Views

      Tyche

      @WTFE This brings back memories. I used to write REXX applications for IBM's TSO. 🙂

    • WTFE

      So not only is there no "ignore" feature...
      Suggestions & Questions • • WTFE

      31
      0
      Votes
      31
      Posts
      9820
      Views

      Ninjakitten

      Since I actually have someone I want to ignore now, here's a slight update of the script to fix the bit that I see broke with the new version of the forum. It's still not fancy, but it does a basic job. Works in Firefox with Greasemonkey, probably works in Chrome with Tampermonkey but I've not tested that.

      // ==UserScript== // @name Go Away // @namespace MSB // @include http://musoapbox.net/* // @version 2.0 // @run-at document-end // @grant none // ==/UserScript== 'use strict'; (function ($) { // Users you want to ignore var users = ["Name1","Name2","NameN"]; // Threads you want to ignore var threads = ["Thread1","Thread2","ThreadN"]; // Ignore threads started by ignored users? (true or false) var hideStartedBy = true; function cleanUsers() { $.each(users,function(index,value) { $('li[data-username="'+value+'"]').css('display','none'); $('span[data-original-title="'+value+'"]').closest('.card').css('display','none'); }); } function cleanThreads() { $.each(threads,function(index,value) { $('meta[content="'+value+'"]').parent('li.row').css('display','none'); }); if (hideStartedBy) { $.each(users,function(index,value) { $('.pull-left div[data-original-title="'+value+'"]').closest('li[component="category/topic"]').css('display','none'); }); } } cleanUsers(); cleanThreads(); $(window).on('action:ajaxify.end', function(data) { cleanUsers(); cleanThreads(); }); $(window).on('action:posts.loaded', function(data) { cleanUsers(); }); $(window).on('action:topics.loaded', function(data) { cleanUsers(); cleanThreads(); }); })(jQuery)
    • WTFE

      Am I missing something about the "unread" thing?
      Suggestions & Questions • • WTFE

      10
      0
      Votes
      10
      Posts
      2820
      Views

      TNP

      Regarding that popup box when there's a thread with new posts., one of two things are likely to happen for me when I mouse over it. The first is, my cursor will change (to a hand? I don't recall at the moment and have no new posts to test it on). It'll change to say there's an active link under here and if I click, I will /mostly/ always end up on the first unread post.

      However sometime the cursor won't change and if I click on the box there's no telling where the hell in the thread I'll end up. By paging back then ahead, I can usually get the correct cursor.

      But even then it doesn't always work right especially if the new post is on a brand new page. And sometimes the page won't load and be completely greyed out.

      tl;dr - Be happy it works at all.

    • 1 / 1