site new answers and boards have the threads as <li> and a greasemonkey script would typically search through all these and hide the <li> which have a link in them to a hidden thread.
i'd put a link next to these list items that'd hide the thread in question. unhiding it would be more difficult.
search results are different, bookmarks are different, recent posts are different. but, i'd argue, all those are places you'd want to see 'hidden threads' - you've potentially gone looking for them. (and could help with the unhiding)
blog view isn't and would have to be a special case.
― koogs, Friday, 12 October 2012 17:21 (thirteen years ago)
can we get a button to suggest that a poster be banned
― Randy Carol (darraghmac), Friday, 12 October 2012 19:46 (thirteen years ago)
- how is the functionality invoked? 'Hide this Thread' link similar to (and perhaps in the same place as) 'Remove Bookmark from this Thread'- how do you unhide a thread? go to 'Hidden threads' link in menu bar (between 'Bookmarks' and 'My Recent Posts')- is there a limit on the number of threads you can hide? same as bookmarks, i.e. I assume no- is this functionality invokable on a batch of threads or only one at a time? one at a time- what happens if you hide a thread you have previously bookmarked? user must remove bookmark in order for 'Hide this Thread' to appear in the thread- are hidden threads removed from search results for threads/posts? no- are hidden threads removed from blog view? yes- can a user follow a link in another thread to a hidden thread, or should the hidden thread always appear as if it has been deleted? the former- are hidden threads filtered out of all locations (New Questions, Site New Answers, board answers) or are they left in some locations? filtered out of those locations but appear in search results- if you post to a thread, then hide it, should that post appear when clicking "My Recent Posts"? yes
v0.10
― Autumn Almanac, Friday, 12 October 2012 20:26 (thirteen years ago)
wait
- how is the functionality invoked? 'Hide this Thread' link similar to (and perhaps in the same place as) 'Remove Bookmark from this Thread'http://www.csromania.com/images/updated.gif - how do you unhide a thread? go to 'Hidden threads' link in menu bar (between 'Bookmarks' and 'My Recent Posts'), check threads to be unhidden, click 'Unhide Selected Threads' (exactly as removing bookmarks works now)- is there a limit on the number of threads you can hide? same as bookmarks, i.e. I assume no- is this functionality invokable on a batch of threads or only one at a time? one at a time- what happens if you hide a thread you have previously bookmarked? user must remove bookmark in order for 'Hide this Thread' to appear in the thread- are hidden threads removed from search results for threads/posts? no- are hidden threads removed from blog view? yes- can a user follow a link in another thread to a hidden thread, or should the hidden thread always appear as if it has been deleted? the former- are hidden threads filtered out of all locations (New Questions, Site New Answers, board answers) or are they left in some locations? filtered out of those locations but appear in search results- if you post to a thread, then hide it, should that post appear when clicking "My Recent Posts"? yes
v0.11
― Autumn Almanac, Friday, 12 October 2012 20:33 (thirteen years ago)
if i can suggest a revision:
- how is the functionality invoked? 'Hide this Thread' link similar to (and perhaps in the same place as) 'Remove Bookmark from this Thread' - how do you unhide a thread? go to 'Hidden threads' link in menu bar (between 'Bookmarks' and 'My Recent Posts'), check threads to be unhidden, click 'Unhide Selected Threads' (exactly as removing bookmarks works now)- is there a limit on the number of threads you can hide? same as bookmarks, i.e. I assume no- is this functionality invokable on a batch of threads or only one at a time? one at a timehttp://www.csromania.com/images/updated.gif - what happens if you hide a thread you have previously bookmarked? thread is removed from list of bookmarked threads for the user and hidden simultaenously (the previous option would result in some confusion when people get disgusted with a thread they had previously bookmarked and can't quickly locate the "Hide this Thread" link)- are hidden threads removed from search results for threads/posts? no- are hidden threads removed from blog view? yes- can a user follow a link in another thread to a hidden thread, or should the hidden thread always appear as if it has been deleted? the former- are hidden threads filtered out of all locations (New Questions, Site New Answers, board answers) or are they left in some locations? filtered out of those locations but appear in search results- if you post to a thread, then hide it, should that post appear when clicking "My Recent Posts"? yes
v0.12
― Thanks WEBSITE!! (Z S), Friday, 12 October 2012 20:41 (thirteen years ago)
I resisted that because then you've got 'Remove Bookmark from this Thread' *and* 'Hide this Thread' on the same screen, and it started to feel a bit cluttered at that point. one way to get around that might be to stick the 'Hide this Thread' link somewhere else on the page
― Autumn Almanac, Friday, 12 October 2012 20:46 (thirteen years ago)
In lieu of a "preview" function, it'd be great if at least the font that posts appear in when being composed was changed to whichever one posted posts actually end up appearing in. The font that the "new world" stylesheet uses, for one, is leagues more readable than the way the words appear in the little box when trying to bang out a post
― dell (del), Tuesday, 16 October 2012 15:09 (thirteen years ago)
i) hide bookmarks (can some kind someone not whack a quick gmonkey script together for this)
ii) "view previous page" on long threads
these are the only two proper issues, gtfo with "hide thread" and similar prissynesses
― r|t|c, Tuesday, 16 October 2012 16:13 (thirteen years ago)
soundcloud / vimeo etc embeds might be nice too but no biggie
― r|t|c, Tuesday, 16 October 2012 16:14 (thirteen years ago)
there is already a 'view previous page'
― just1n3, Tuesday, 16 October 2012 16:15 (thirteen years ago)
Why would you want to hide a bookmark, RTC? Wouldn't you just remove it?
― Tim, Tuesday, 16 October 2012 16:16 (thirteen years ago)
not a bookmark, all of them
idk i don't use the feature religiously and oh it's ever such a chore seeing them at the top of every page
― r|t|c, Tuesday, 16 October 2012 16:22 (thirteen years ago)
― just1n3, Tuesday, 16 October 2012 17:15 (3 minutes ago) Bookmark
lol oh yeah wait i knew that... ok there was some other minor irritation in this vein but i forget now, nm
― r|t|c, Tuesday, 16 October 2012 16:23 (thirteen years ago)
Not using bookmarks = disgusting savagery I'm afraid. I am very disappointed in you.
― Tim, Tuesday, 16 October 2012 16:29 (thirteen years ago)
easy to hide bookmarks in greasemonkey:
// ==UserScript==// @name Hide ilx bookmarks// @namespace http://localhost// @description Hide ilx bookmarks from new answers pages// @include http://www.ilxor.com/ILX/NewAnswersControllerServlet*// @include http://ilxor.com/ILX/NewAnswersControllerServlet*// @include http://www.ilxor.com/ILX/SiteNewAnswersControllerServlet// @include http://ilxor.com/ILX/SiteNewAnswersControllerServlet// @version 1// @grant none// ==/UserScript==document.getElementsByClassName("bookmarks")[0].style.display="none";
document.getElementsByClassName("bookmarks")[0].style.display="none";
― ledge, Wednesday, 17 October 2012 09:55 (thirteen years ago)
stylish would be a better tool, for that, i think. less of a sledgehammer if all you're going to do is change one style attribute of one element.
but i think the idea was to add a button that collapsed them until uncollapsed. would mean inserting said button and the code that that button executed. and remembering the state.
― koogs, Wednesday, 17 October 2012 10:27 (thirteen years ago)
The Bookmarks page has a "Delete all Bookmarks" link, fyi.
― Andrew Farrell, Wednesday, 17 October 2012 10:47 (thirteen years ago)
it wasn't about deleting them though, was about not having them at the top there, all the time, taking up space.
did try a stylesheet which had them all in a div floating right. didn't get far with it though.
― koogs, Wednesday, 17 October 2012 11:09 (thirteen years ago)
There is a divide on ilx between people who use bookmarks to mark specific messages within a thread and people who use bookmarks to alert them when threads they've already completely read have resurfaced.
― sorcery is in the gutter (how's life), Wednesday, 17 October 2012 11:10 (thirteen years ago)
and people who never use bookmarks for anything
― some dude, Wednesday, 17 October 2012 11:20 (thirteen years ago)
That's right, some dude. Some people don't use bookmarks at all.
― sorcery is in the gutter (how's life), Wednesday, 17 October 2012 11:22 (thirteen years ago)
lol
― caek, Wednesday, 17 October 2012 11:30 (thirteen years ago)
Wish I could be like that. Why did I link to a thread about "Matt Taibbi"? Who's that? Who gives a shit? There's a thread in there called Penis. No way am I clicking that. "Which fictional character is your hero and why?" ttthhhhppppppppt. I have horrible bookmarking habits.
― sorcery is in the gutter (how's life), Wednesday, 17 October 2012 11:32 (thirteen years ago)
Think of it as having faith in the ability of ILX to turn threads around!
― Andrew Farrell, Wednesday, 17 October 2012 11:33 (thirteen years ago)
thanks ledge! i am not fussy about a toggle so if that works then that'll do me fine
(btw if it has any bearing when i said gmonkey script i was only gonna whack it into chrome?)
― r|t|c, Wednesday, 17 October 2012 11:36 (thirteen years ago)
kip in 2012
There is something about view previous page that's a little off but fecked if i can remember what.
― the oft-posited third fisherman (darraghmac), Wednesday, 17 October 2012 11:37 (thirteen years ago)
people who use bookmarks to alert them when threads they've already completely read have resurfaced.
? Why would you use a bookmark for that when the open-circle thingy indicates it already?
― Una Stubbs' Tears (Trayce), Wednesday, 17 October 2012 11:37 (thirteen years ago)
... idk about that, only been testing in firefox. And I forgot to make it work on thread pages, add these two lines in the comment section at the top for that:
// @include http://www.ilxor.com/ILX/ThreadSelectedControllerServlet*// @include http://ilxor.com/ILX/ThreadSelectedControllerServlet*
And here's a version with fancy toggle, but it doesn't always work when you refresh...
// ==UserScript==// @name Hide ilx bookmarks// @namespace http://tom.ledger.name// @description Hide ilx bookmarks from new answers pages// @include http://www.ilxor.com/ILX/NewAnswersControllerServlet*// @include http://ilxor.com/ILX/NewAnswersControllerServlet*// @include http://www.ilxor.com/ILX/SiteNewAnswersControllerServlet// @include http://ilxor.com/ILX/SiteNewAnswersControllerServlet// @include http://www.ilxor.com/ILX/ThreadSelectedControllerServlet*// @include http://ilxor.com/ILX/ThreadSelectedControllerServlet*// @version 1// @grant GM_setValue// @grant GM_getValue// ==/UserScript==var bm = document.getElementsByClassName("bookmarks")[0];bm.style.marginBottom=0;var elem = document.createElement("a");elem.setAttribute("style", "margin-left: 2%;");elem.setAttribute("href", "#bmhide");elem.innerHTML = "hide bookmarks";elem.addEventListener("click", toggle);bm.parentNode.insertBefore(elem, bm.nextSibling);if (GM_getValue("hidden")) hide();function toggle(){ if (GM_getValue("hidden")) { show(); GM_setValue("hidden", false); } else { hide(); GM_setValue("hidden", true); }}function hide(){ bm.style.display="none"; elem.innerHTML="show bookmarks";}function show(){ bm.style.display="block"; elem.innerHTML="hide bookmarks";}
var bm = document.getElementsByClassName("bookmarks")[0];bm.style.marginBottom=0;var elem = document.createElement("a");elem.setAttribute("style", "margin-left: 2%;");elem.setAttribute("href", "#bmhide");elem.innerHTML = "hide bookmarks";elem.addEventListener("click", toggle);bm.parentNode.insertBefore(elem, bm.nextSibling);if (GM_getValue("hidden")) hide();
function toggle(){ if (GM_getValue("hidden")) { show(); GM_setValue("hidden", false); } else { hide(); GM_setValue("hidden", true); }}
function hide(){ bm.style.display="none"; elem.innerHTML="show bookmarks";}
function show(){ bm.style.display="block"; elem.innerHTML="hide bookmarks";}
― ledge, Wednesday, 17 October 2012 11:39 (thirteen years ago)
xp
The open circle is very small and I really only get to the ophthalmologist maybe once every presidential administration.
― sorcery is in the gutter (how's life), Wednesday, 17 October 2012 11:39 (thirteen years ago)
i use bookmarks for the odd rolling tv show thread when i might not watch something same time as everyone else, otherwise a football or music thread i am on here enough to follow it as it goes (and i happily accept this is disgusting savagery in the grand scheme of life)
― r|t|c, Wednesday, 17 October 2012 11:40 (thirteen years ago)
Real answer: if I'm away from ilx for a day or two, the open circle thingy will slip back down sna along with the thread, but a bookmark alert will stay there until I do something about it.
― sorcery is in the gutter (how's life), Wednesday, 17 October 2012 11:40 (thirteen years ago)
hl my eyesight is shot to shit and I manage it fine but i donno.
― Una Stubbs' Tears (Trayce), Wednesday, 17 October 2012 11:41 (thirteen years ago)
but tbf, I dont heavily read ilx. I dont real ILM at all, and the rest I skim, so.
I browse individual boards/sna maybe twice a month these days
― turn left onto bisexual woman (Autumn Almanac), Wednesday, 17 October 2012 11:54 (thirteen years ago)
without bookmarks I'd probably give up
people who use bookmarks to alert them when threads they've already completely read have resurfaced.? Why would you use a bookmark for that when the open-circle thingy indicates it already?
Because then if you don't look at ILX for a day and the thread gets revived you get an alert even if it's fallen off Site New Answers?
Also because the open-circle indicator expires every so often, or occasionally they all get reset. Plus if you click on loads of threads but only bookmark a select few it's like the next level up of might-be-interesting.
― still small voice of clam (a passing spacecadet), Wednesday, 17 October 2012 12:04 (thirteen years ago)
think koogs is otm in that the toggle version would need to remember the last state
honestly though i don't need more than v1 cos i know what handful of threads i have bookmarked and it's nothing to go to the bookmarks page from the link at the top and hit them from there
v1 is working fine for me although if i'm being a tart then perhaps there is a distraction in that i see the bookmarks for a halfsec first before they get chomped (then again i have five zillion tabs open over four windows and havent deleted cache in forever so i probably shouldnt be testing right now)
thanks again!
― r|t|c, Wednesday, 17 October 2012 12:06 (thirteen years ago)
(i have 26 *pages* of bookmarks fwiw)
― koogs, Wednesday, 17 October 2012 12:10 (thirteen years ago)
ledge's bookmark hider does maintain state, using GM_setValue / getValue. which, iirc, stores them in firefox settings - you can see them in about:config.
are gm script methods distinct from those in the original html or can you have a clash if you use the same method names?
― koogs, Wednesday, 17 October 2012 12:33 (thirteen years ago)
Would much rather have view last 100 messages than view previous page.
― fun loving and xtremely tolrant (Billy Dods), Wednesday, 17 October 2012 12:49 (thirteen years ago)
are gm script methods distinct from those in the original html
they are, yup.
― ledge, Wednesday, 17 October 2012 12:59 (thirteen years ago)
Stuck at the doctor's yesterday, I started browsing the Zing app that's still signed in under my old username. Holy shit bookmarks. So many threads I used to tune into that, somehow, I've lived without in the past year.
― pplains, Wednesday, 17 October 2012 14:00 (thirteen years ago)
the other thing is that you still get the hollow circle for threads you don't care about any more (if you ever did). with bookmarks they are only things you are still interested in, or you'd've deleted the bookmark.
that said, i do find hitting 'bookmark' is an automatic response when i get to the bottom of a thread, any thread.
― koogs, Wednesday, 17 October 2012 14:04 (thirteen years ago)
the other thing is that you still get the hollow circle of friends you don't care about any more (if you ever did).
misread this ;_;
― turn left onto bisexual woman (Autumn Almanac), Wednesday, 17 October 2012 20:00 (thirteen years ago)
no limit to display name length
^important idea
― --bob marley (lag∞n), Friday, 19 October 2012 15:48 (thirteen years ago)
beta HideThreads script here, using a bunch of code from ledge's thing upthread and the kilzor script:
http://www.koogy.clara.co.uk/ilx/HideThreads.user.js
there's a new link at bottom of threads to hide / unhide.
threads are removed from lists ie SiteNewAnswers, NewAnswers, SiteNewQuestions only.
will still be visible in Search Results and Blog View (blog view is wildly different from the above. so whilst it's easy enough to find a blocked thread in blog view, it's hard to tell where it ends as it's just a mixed list of h3, span, p and br, there needs to be a div or something around each thread, a single thing to hide.)
hiding a thread won't remove it from bookmarks. Removing it from bookmarks will remove it from bookmarks.
― koogs, Friday, 19 October 2012 17:12 (thirteen years ago)
^ developed on linux / greasemonkey / firefox.
― koogs, Friday, 19 October 2012 17:14 (thirteen years ago)
I need Greasemonkey to load that script into Firefox, correct?
― sleeve, Saturday, 27 October 2012 00:00 (thirteen years ago)
yes
― koogs, Saturday, 27 October 2012 10:37 (thirteen years ago)
what about something that's like flag post but you flag posts you think are really great and then after the poster accumulates enough 'great posts' they get a yellowcard that says "X ppl think you're pretty cool"
― Mordy, Saturday, 27 October 2012 21:26 (thirteen years ago)