Digg autobury submissions

By pwlin Last update Oct 12, 2009 — Installed 554 times. Daily Installs: 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1

Archived Comments (locked)

Subscribe to Archived Comments 39 posts, 11 voices

Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
Bhima User

Right... I had no idea what a profile was, so I googled it. Mozilla has a page describing how to deal with them (as the "profile" does not appear on the main surface of the Firefox GUI): http://support.mozilla.com/en-US/kb/Managing+pr...

As a side note Mozilla figured out what OS and what version of Firefox I was using and displayed the correct info... That is pretty clever :)

Now I am not using Digg Lite and I've learned something important: Always turn off scripts which could interfere while testing!

 
pwlin Script's Author

By 'clean profile' I meant a new Firefox profile! It's always good to test these stuff with a new Firefox profile so you know there are no interferences with other scripts as in this case.

I tried to find an easy solution so it works with Digg Lite but I have to change so many logic. Can you please not hide Digg's footer? Just comment the line with 'this.addCSS( "#footer { display: none; }" );' in Digg Lite. Sorry about that.

 
Bhima User

I am using the Current version of Firefox (it updates itself and I just go along with the flow). What do you mean by clean profile? Should I make a new user and test from there?

D'oh! I am such an idiot! On Firefox I also have the script "Digg Lite" running which hides the footer. I wonder is there an easy way to replace the footer that Digg has with the Autobury infobar?

Below is the code from Digg Lite... that's a very simple thing.

init: function() {
// hide the page footer
if( this.config.hide_footer ) {
this.addCSS( "#footer { display: none; }" );
this.addCSS( "#contents { padding-bottom: 0; }" );

 
pwlin Script's Author

Bhima, I tested it with a fresh Firefox 3 profile and infobar is showing. What version of Firefox are you using? Please test it with a clean profile and let me know if it works. Thanks for trying out.

 
Bhima User

Wow, that was fast. And marvelous. Now it works as before on my Mac using Safari (with Greasekit) but using Firefox the Autobury Infobar does not appear (but the burying is still going on)

 
pwlin Script's Author

I fixed the issue, Bhima. Please check if it still works in Safari.

 
Bhima User

Well... once again Digg rolls out a series of upgrades and thus the script no longer works

 
Pasta2000 User

In both copies of the script, show_infobar was set to true. Not having this working is not a big deal to me so don't worry about this bug since it sounds like it is just me and my set up.

I don't hammer Digg too hard. There are a few things I have done to prevent this. The 'bury_interval' in one copy of the script is set to 22 and is set to 7 in the other. Also, I have customized the default view of Digg to a few categories so that I am not blindly doing a bury across all of Digg. Lastly, I remain positively active so that my account isn't seen as just doing buries.

To answer your last part - calculate how long do you need to stay on a page so all the bury requests can take place - Maybe a second. Two seconds max. There usually isn't much to bury on the pages i am viewing unless I do a deliberate search.

Thanks much. Keep up the good work.

 
pwlin Script's Author

There is another variable on line 27 of the script:
show_infobar : true ,
if that's set to false, you won't see the info bar. Maybe you changed that somehow. Other than that, unfortunately I can't reproduce this bug to tell you where the problem is.

Now i just need to make sure I don't get banned for using scripts.
Try not to hammer Digg and set your 'bury_interval' on something high. If you really won't see the info bar, calculate how long do you need to stay on a page so all the bury requests can take place.

 
Pasta2000 User

@pwlin

Correct, I do not get the "info bar" at all. This is not an issue outside of testing this out. Thanks for the info on how to check this with Firebug. Because of that tip, I can see that this is working correctly with the script installed twice. I can see that the 14 code for the script that buries things as inaccurate. I can also see the 16 code for things that are a general bury.

Thanks Much Again. Now i just need to make sure I don't get banned for using scripts.

 
pwlin Script's Author

@Pasta2000

I just don't get the report of what it 
had done or is doing (never did show)
You mean you never get that 'info bar' at the bottom of every page which shows the progress of burying? That's pretty strange! You should always see it.
To check if this is burying DIGGs correctly, 
is there an easy way to tell after something is 
buried how it was buried? 
You can check that with Firebug extension. Enable Firebug and its "Show XMLHttpRequests" option, go to Digg site and open Firebug console.
You should see bury requests one by one appearing on the console. Expand one of the requests and click on "Post" tab. There is a line like:
token=xxxxxxxx&id=xxxxxx&code=xx
the number in "code" is what Digg uses for recognizing what kind of bury it is.
for example "code=14" means inaccurate.
Other numbers used by Digg are:
16 : general bury
8: duplicate
15: wrong topic
12: OK, this is lame

 
Pasta2000 User

So far it looks to be working as expected. Things I want buried get buried. I just don't get the report of what it had done or is doing (never did show). I suspect that is because of how I have my FF3 set up. I also installed the script a second time under a new name. One copy of the script is for users that I do a "bury". the other copy is for keywords (or in my case submitted web sites) that bury as "inaccurate". I did learn in doing this not to leave variable list empty ( //ig; ) because it reads it as a comment and the script doesn't work then. I just put in something so odd that it should find nothing to bury.

To check if this is burying DIGGs correctly, is there an easy way to tell after something is buried how it was buried?

Thanks for the updating this so quickly.

 
pwlin Script's Author

@Pasta2000
I added a 'bury_type' variable at the beginning of the script.
use the following numbers to indicate the type of your buries:
for general bury, use 1
for duplicate story, use 2
for spam, use 3
for wrong topic, use 4
for inaccurate, use 5
for OK, this is lame, use 6
This is a global variable though, meaning it works for ALL the users/keywords.
Right now implementing it on a per user/keyword basis will destroy the simplicity and robustness of the script so i hope you still enjoy this added feature.
Please let me know if there are any bugs.

 
Pasta2000 User

What would it take to change the script to "Bury as Inaccurate"? I ask because some if the places that are DUGG are complete BS. A plain Bury isn't good enough. - May I suggest updating the script so that one can choose how something can get buried. Thanks

 
pwlin Script's Author

@smaulz:
i don't use this script daily but just tested it again on a fresh ff3 profile and it works. You should see an info bar at the bottom of every page like this screenshot: http://i265.photobucket.com/albums/ii202/pwlin/...

The user names should be added as a regular expression like: /user1|user2|user3/ig

Also Digg is sometimes slow so you may need to change 'var bury_interval' to something higher. 15 would be ok.

 
JB088 User

ATTENTION: Anyone who hates spammers on Digg, please visit the following page that I have set up to fight spammers, 'smear artists', and the rest of the scum on Digg. Help our community out by leaving a comment with any user(s) you think should be added to this list!

http://jeremybuff.wordpress.com/smear-artists/

 
smaulz User

This working for anyone? Just found it and installed, edited the blacklist, and don't see any results. Has Digg done another redesign or something that I missed?

 
Bhima User

Excellent! Now it works well with greasekit and Safari on all the Digg pages.

 
pwlin Script's Author

Bhima: Thanks for reporting the problem, I have fixed most of the issues with Digg's new design. Please let me know if there are still bugs.

yellowriver: I'm sorry but this script doesn't autobury comments. It only works with posts. I've been busy a while back writing the parts for autoburying comments but then Digg changed the design and I had to rewrite a lot of stuff and there were some real projects waiting for me so I never finished that part. I'll be back on it as soon as there is some free time.

 
Bhima User

Well... the new Digg changes interfere with the autobury script. Some pages work and some don't. Pity that.

 
yellowriver User

-----

How can this be modified to auto bury comments by user or is there a version availble?

Thanks..

 
Bhima User

I don't use a lot of greasekit scripts but I use this one everyday.

One more observation: keywords which are made up of multiple words do not work in the way I expect or understand. Some get buried some don't.

Anyway, thanks for the update.

 
pwlin Script's Author

Bhima, it's great that this script still works! I just fixed a small issue. Sorry for not updating in a long time because I've been busy with other things but I have your requests in my mind and will add them gradually.

 
Bhima User

Well, it's been a while since I've started using this script. And I have the following comments:

This script works on Safari also (via greasekit).
I wish it was easier to add keywords or Usernames (the pipe isn't on my keyboard).
I wish it was possible to easily check if a user has been disappeared... many of the users I add went away, presumably for violating Diggs rules.

I really, really wish there was a comment autobury script (digg comment enhancer script is also nice)

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel