Go back
Thread finder!!

Thread finder!!

Site Ideas

Vote Up
Vote Down

How are we supposed to find a thread in a bunch of 10,000 (or more!!) threads?? Recommend this to support the ultimate idea of all time!!! :o

Vote Up
Vote Down

Originally posted by chess kid1
How are we supposed to find a thread in a bunch of 10,000 (or more!!) threads?? Recommend this to support the ultimate idea of all time!!! :o
Try the Search Forums option.

Vote Up
Vote Down

Originally posted by chess kid1
How are we supposed to find a thread in a bunch of 10,000 (or more!!) threads?? Recommend this to support the ultimate idea of all time!!! :o
If you're using Firefox and Greasemonkey, there's a script to implement a "bookmark" system which you can grab at:

http://members.shaw.ca/ouroboros/RHP/

Vote Up
Vote Down

Originally posted by ouroboros
If you're using Firefox and Greasemonkey, there's a script to implement a "bookmark" system which you can grab at:

http://members.shaw.ca/ouroboros/RHP/
javascript:void(0);

Vote Up
Vote Down

Originally posted by Daemon Sin
Try the Search Forums option.
It sucks.

Vote Up
Vote Down

Originally posted by stocken
javascript:void(0);
Sorry? Are you commenting on my programming style or did you encounter a bug?

1 edit
Vote Up
Vote Down

Originally posted by ouroboros
Sorry? Are you commenting on my programming style or did you encounter a bug?
I'm saying that's the URL given for my bookmark link. It doesn't do a whole
lot. I could be missing something imperative here (as I often do), so I
thought if I post the javascript URL, perhaps you could tell me to get the
correct script somewhere or help me understand it.

(No, I would never comment on someone's programming style unless
we're working on the same project and need to adapt the same style for
clarity.)

Vote Up
Vote Down

Originally posted by stocken
I'm saying that's the URL given for my bookmark link. It doesn't do a whole
lot. I could be missing something imperative here (as I often do), so I
thought if I post the javascript URL, perhaps you could tell me to get the
correct script somewhere or help me understand it.

(No, I would never comment on someone's programming style unless
we're working on the same project and need to adapt the same style for
clarity.)
If you have the script installed, there should be a 'Bookmark' link beside the 'Recommend' link on each post. Clicking that link will add the thread to your bookmarks. As well, threads where you post will also be added to your bookmarks.

In your forum toolbar (the light blue one), you should also see a new section labelled 'My Bookmarks' next to the 'Recommended' link. Clicking on that will display everything that you have bookmarked.

This doesn't solve the problem of searching through threads but it let's you keep an eye on threads that you are interested in.

1 edit
Vote Up
Vote Down

Originally posted by ouroboros
If you have the script installed, there should be a 'Bookmark' link beside the 'Recommend' link on each post. Clicking that link will add the thread to your bookmarks. As well, threads where you post will also be added to your bookmarks.

In your forum toolbar (the light blue one), you should also see a new section labelled 'My Bookmarks' next to the ' ng through threads but it let's you keep an eye on threads that you are interested in.
Aaaah, I thought it was supposed to add the page to the browser bookmarks
(which would have been kinda silly considering you can just do that
yourself then - but I'm often silly). So, the javascript link: javascript:void(0)
is altered by the script after the page has loaded? I see how it works
now.

Thanks.

And I know you've probably heard it so many times you can puke, but you're
doing a great job with those greasy scripts of yours. Keep it up. πŸ™‚

1 edit
Vote Up
Vote Down

Originally posted by stocken
So, the javascript link: javascript:void(0)
is altered by the script after the page has loaded?
Actually, no. The click is handled by catching the "click" event with a listener that does all the work. The href doesn't take you anywhere. So to prevent the browser from either re-loading the current page or being sent somewhere else, "javascript:void(0);" basically tells the browser not to do anything.

Further, the listener actually clears the currently loaded page, and loads a completely new page in its place. However, you'll note that the URL of the page does not change. Firefox still believes that you are on the page that you were when you clicked the 'My Bookmarks' button. So you might encounter some "weirdness" when clicking some of the regular links afterward.

When you click the "bookmark" link, there really isn't any feedback.

Vote Up
Vote Down

Originally posted by ouroboros
Actually, no. The click is handled by catching the "click" event with a listener that does all the work. The href doesn't take you anywhere. So to prevent the browser from either re-loading the current page or being sent somewhere else, "javascript:void(0);" basically tells the browser not to do anything.

Further, the listener actually clears the cur ...[text shortened]... afterward.

When you click the "bookmark" link, there really isn't any feedback.
You just made me curious. I think I'll have a closer look at that script. I take
it you're using DOM to rebuild the page, and a cookie to store the
bookmarks? πŸ™‚

Vote Up
Vote Down

Originally posted by stocken
You just made me curious. I think I'll have a closer look at that script. I take
it you're using DOM to rebuild the page, and a cookie to store the
bookmarks? πŸ™‚
Yes, DOM to rebuild but using the Firefox preference system to manage the bookmarks.

Vote Up
Vote Down

Originally posted by ouroboros
...but using the Firefox preference system to manage the bookmarks.
Excellent! I can see you're using hidden preferences for a lot of things
(about:config). Javascript just got fun again. πŸ˜€

Oh, firefox. This beautiful, beautiful beast.

Vote Up
Vote Down

Originally posted by Nordlys
It sucks.
That's an understatement.

1 edit
Vote Up
Vote Down

Originally posted by stocken
Excellent! I can see you're using hidden preferences for a lot of things
(about:config). Javascript just got fun again. πŸ˜€

Oh, firefox. This beautiful, beautiful beast.
If you're interested, jump into the extension development. I consider the GM scripts as dead development now that I'm working on the extension.

Firefox is definitely very, very cool!