Recent posts by Arvid

Subscribe to Recent posts by Arvid 116 posts found

Dec 7, 2007
Arvid 116 posts

Topic: Userscripts.org discussion / Flagging Content Feature

The point of flagging is to make the admins review that script and remove it if it is malicious.

 
Dec 5, 2007
Arvid 116 posts

Topic: Userscripts.org discussion / Spam and malware

Could be a spammer, could just be annoying.
http://userscripts.org/users/39125/comments

 
Dec 5, 2007
Arvid 116 posts

Topic: Userscripts.org discussion / Spam and malware

Spammer?
http://userscripts.org/users/39022/posts

 
Dec 3, 2007
Arvid 116 posts

Topic: Userscripts.org discussion / Spam and malware

Spammer cheng:
http://userscripts.org/users/36707
proof:
http://userscripts.org/users/36707/posts
also spammed here:
http://userscripts.org/articles/3-searching-use...

 
Dec 2, 2007
Arvid 116 posts

Topic: Script development / How to install script?

You need to install Greasemonkey first.

 
Dec 2, 2007
Arvid 116 posts

Topic: Userscripts.org discussion / Why can't you stop all this scrap all nonsense?

How about we make us.o parse new scripts, look for links to orkut communities and automatically send emails notifying orkut admins of abuse and spamming from those specific orkut communites? Could be overkill.

 
Dec 2, 2007
Arvid 116 posts

Topic: Userscripts.org discussion / Why can't you stop all this scrap all nonsense?

Thanks for clearing up this stuff D3Death. Hopefully we can resolve this situation soon.

 
Dec 1, 2007
Arvid 116 posts

Topic: Script development / Checking the last char in URL

Try:
edit: woops, seems like you fixed it.

 
Dec 1, 2007
Arvid 116 posts

Topic: Userscripts.org discussion / Why can't you stop all this scrap all nonsense?

Created a feed with Yahoo Pipes for new scripts which does not contain "orkut" or "scrap" in title or description. Seems to be working fine. Hope you enjoy it :)

 
Nov 30, 2007
Arvid 116 posts

Topic: Ideas and script requests / Tag yourself in a photo

Not related to greasemonkey.

 
Nov 30, 2007
Arvid 116 posts

Topic: Userscripts.org discussion / RSS feed for script comments

Whoa! Nice feature, been waiting for it like forever :) Glad to see you've got the memory leaks under control.

 
Jun 3, 2007
Arvid 116 posts

Topic: Script development / itunes and greasemonkey issues

Try contacting the author.

 
Jun 1, 2007
Arvid 116 posts

Topic: Script development / Autovoter with POST data problem

I tried the script out. Seems like you missing some commas. Check it out:

    GM_xmlhttpRequest({
    headers: {'User-Agent': 'Mozilla/4.0 (compatible) Greasemonkey',
    'Accept': 'application/atom+xml,application/xml,text/xml' //missing comma here!
    'Content-Type': 'application/x-www-form-urlencoded'} //missing comma here!
    method: 'POST',
    url: 'http://www.ddboard.com/forum/threadrate.php',
    data: 'vote=5&s=' + bbsessionhash + '&t=' + random_num + '&page=1',
    });

This could have been prevented by a quick peek in the javascript console. Or Firebug, whatever you prefer. Don't know if you're script is working as it's supposed to now, but at leasts it's running.

 
Jun 1, 2007
Arvid 116 posts

Topic: Script development / Changing colspan="16" value to "17"

Well, you'll have to give us more details. On what page? How does your code look like right now? It should be as easy as setAttribute('colspan', '17') if you have selected the correct nodes with XPath.

 
Jun 1, 2007
Arvid 116 posts

Topic: Script development / Autovoter with POST data problem

Try removing the Accept-header. Other than that, I don't know really. Try watching the XHR in Firebug or Tamper Data and see if it looks strange or so.

 
Jun 1, 2007
Arvid 116 posts

Topic: Script development / Autovoter with POST data problem

Read here. Specifically this:


data
a string, the body of the HTTP request. Optional, defaults to an empty string. If you are simulating posting a form (method == 'POST'), you must include a Content-type of 'application/x-www-form-urlencoded' in the headers field, and include the URL-encoded form data in the data field.

 
May 31, 2007
Arvid 116 posts

Topic: Script development / itunes and greasemonkey issues

You should probably point out which script you are using.

 
May 31, 2007
Arvid 116 posts

Topic: Script development / Script not adding stuff onload, not onDOMContentLoaded

This can be interesting. There is probably no easy solution for your problem. You could try to block the google analytics js with adblock though.

 
May 29, 2007
Arvid 116 posts

Topic: Ideas and script requests / Forum Post Minimizer

Well, it still depends on which forum it is. If you couldn't find it for the specific forum you're needing this for, there probably isn't a script that does this.

 
May 28, 2007
Arvid 116 posts

Topic: Ideas and script requests / Forum Post Minimizer

Yes, but it totally depends on which forum it is.

 
May 23, 2007
Arvid 116 posts

Topic: Script development / Add line after a specific <div>

Nice script banana! Been looking for something like that for a long time :)

 
May 23, 2007
Arvid 116 posts

Topic: Script development / Including external utility functions

Just to clear this up: greasemonkey devs and volunteers have been working a lot on adding this feature, but there's a lot of disagreement on how it should work. Some day it'll probably be included.

 
May 22, 2007
Arvid 116 posts

Topic: Script development / For in Loop

I'm not really sure what you want but here's some strategies:

var arr = [1,2,3,4];
arr.forEach(function(value, index, array) {
GM_log(value + " == " + array[index]);
});
var obj = {a: 1, b: 2, c: 3};
for (key in obj) {
GM_log("the key " + key + " in obj has the value: " + obj[key]);
}

 
May 22, 2007
Arvid 116 posts

Topic: Ideas and script requests / gmail a page to a friend

Check out the script for that gmail-mailto. It would be really easy to write in greasemonkey too!

 
May 22, 2007
Arvid 116 posts

Topic: Script development / Including external utility functions

You could XHR the script source and eval it. pretty ugly though.