1
Show Posts
This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.
Messages - Quivis
2
General Discussion / Re: Converting score to jpg?
Use google to find the tools.
3
General Discussion / OT: Simple killfilter for the forum...
You know _why_ this would be useful, don't you?. Right, to keep your blood pressure down.
// ==UserScript==
// @name NWC Forum Kill Filter
// @namespace http://
// @description Simple killfilter
// @include https://forum.noteworthycomposer.com/*
// ==/UserScript==
var nodes = document.evaluate(
//which href nodes in the document contain a title?
"//a[@title]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
//search through them...
for (var i = 0; i < nodes.snapshotLength; i++) {
var node = nodes.snapshotItem(i);
// ...for our culprit...
if (node.innerHTML.indexOf('user_name') > -1) {
//...and set culprit's article visibility to 'none' and you don't have to see him/her/it anymore.
node.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.
parentNode.parentNode.parentNode.style.display = "none";
}
}
http://greasemonkey.mozdev.org/
Comments are respectfully ignored.
Have a nice day...
4
General Discussion / OT: User styles in Forum...
Anyone else fed up with all that color that is virtually impossible to read? The worst I saw was yellow on yellow. I guess they thought it was, well, "funny".
I wrote this Greasemonkey script to remove all those stupid color combinations, so now they can color everything in yellow on yellow if they want to. All I see is black on white, as it should be:
// ==UserScript==
// @name NWC Forum background monger
// @namespace http://
// @description Removes stupid user styles on NWC forum
// @include https://forum.noteworthycomposer.com/*
// ==/UserScript==
var spans, thisSpan;
spans = document.getElementsByTagName("span");
for (var i = 0; i < spans.length; i++) {
if (spans.hasAttribute("style")) {
spans.setAttribute("style", "background-color: white; color: black; font: 100% arial;");}}
You need Firefox and the Greasemonkey extension to use it.
Comments are respectfully ignored. Use it or don't. I don't give a you-know-what.
Have a nice day...