Recent posts by LouCypher

Subscribe to Recent posts by LouCypher 208 posts found

Sep 3, 2008
LouCypher 208 posts

Topic: The Banana Bar / Google Chrome

About Google Chrome

 
Aug 25, 2008
LouCypher 208 posts

Topic: Userscripts.org discussion / Spam and malware

What about captcha? They're not human aren't they?

What about one new topic per user per day restriction?

That'll be good too, only the problem is it's using multiple accounts
http://userscripts.org/users/64120
http://userscripts.org/users/64121
http://userscripts.org/users/64122
http://userscripts.org/users/64123
http://userscripts.org/users/64124
http://userscripts.org/users/64126
http://userscripts.org/users/64128
http://userscripts.org/users/64129
http://userscripts.org/users/64130

 
Jul 18, 2008
LouCypher 208 posts

Topic: Userscripts.org discussion / Spam and malware

Let's vote for these:

  • clean up forum
    There should be a group of moderators who cleanup the forum and expand the forum maybe. The forum is so cluttered that I don't like coming there.

  • Implement "flag as spam" in the forums
    This would hopefully eliminate the need for the "Spam and malware" topic. Also, a better system to actually follow through and remove spam (eg. I've personally had spam in comments of one of my scripts for weeks, I flagged it and posted on the forums and it's still not been removed - http://userscripts.org/scripts/show/9580#commen...).

 
Jul 18, 2008
LouCypher 208 posts

Topic: Userscripts.org discussion / Spam and malware

http://userscripts.org/users/59879
http://userscripts.org/users/59879/comments

 
Jun 18, 2008
LouCypher 208 posts

Topic: Ideas and script requests / Auto accept greasemonkey script?

You're welcome.

 
Jun 18, 2008
LouCypher 208 posts

Topic: Ideas and script requests / Auto accept greasemonkey script?

shenmuz wrote:

...but I don't know what I should change

Then don't!

 
Jun 13, 2008
LouCypher 208 posts

Topic: The Banana Bar / Greasemonkey version 0.8 has been released

From Greasespot, the official Greasemonkey blog:

At long last, the new version of Greasemonkey is available. Get Greasemonkey 0.8.0 from addons.mozilla.org.

The most important change for this release is full compatibility with Firefox 3.0. There is also a new feature that allows modularization of user scripts that comes in four pieces: @resource, @require, GM_getResourceURL, and GM_getResourceText. Follow those links to learn how they work. Also:

  • GM_xmlhttpRequest now includes the finalUrl property.

  • Internal code quality improvements

  • New attractive graphics by Pak-Kei Mak

Finally, there is a set of reported issues that are yet to be resolved. Version 0.8.1 is planned, but we feel 0.8.0 is a strong enough improvement to be worth releasing, for Firefox 3.0 compatibility. Enjoy!

 
Jun 11, 2008
LouCypher 208 posts

Topic: Ideas and script requests / [Request] Plain text to clickable link

 
Jun 11, 2008
LouCypher 208 posts

Topic: Script development / setAttribute not working?

So the namedItem would only bring one?

In that case, use document.evaluate (see getRadio function)

var form = document.getElementsByName("form")[0];
form.addEventListener("submit", checkRadio, false);

function checkRadio() {
  var alo = getRadio("autologin", this);
  var fav = getRadio("favicon", this);

  for (var i = 0; i < alo.snapshotLength; i++) {
    saveRadio(alo.snapshotItem(i), "autologin");
  }

  for (var j = 0; j < fav.snapshotLength; j++) {
    saveRadio(fav.snapshotItem(j), "favicon");
  }
}

function getRadio(aStrName, aForm) {
  return document.evaluate(".//input[@name='" + aStrName + "']",
                           aForm, null, 6, null);
}

function saveRadio(aRadio, aPrefName) {
  if (aRadio.checked) {
    GM_setValue(aPrefName, aRadio.value);
    return;
  }
}

 
Jun 9, 2008
LouCypher 208 posts

Topic: Script development / need credits

WOW!!1 IT WORKED! THANX DOB <3

 
Jun 5, 2008
LouCypher 208 posts

Topic: Ideas and script requests / Friendster Private Photo Album

http://userscripts.org/forums/2/topics/2455.

 
Jun 4, 2008
LouCypher 208 posts

Topic: Script development / HTML editor HELPP PlZZ

yeshwanth wrote:

..m doin a project...

It's not free, of course.

 
Jun 4, 2008
LouCypher 208 posts

Topic: Ideas and script requests / NEED SCRIPT THAT BYPASS FILTERS!!

Go to attrition.org. They might help you.

 
Jun 1, 2008
LouCypher 208 posts

Topic: Script development / Is there a limit to the size of a user script?

You can't access (r/w) local files from GM scripts. That's for security reason.

 
May 30, 2008
LouCypher 208 posts

Topic: Ideas and script requests / friendster private photo

Read the mailing list.

 
May 28, 2008
LouCypher 208 posts

Topic: Script development / need a script

Click Next until you find it.

 
May 28, 2008
LouCypher 208 posts

Topic: Script development / need a script

http://userscripts.org/scripts

 
May 28, 2008
LouCypher 208 posts

Topic: Script development / how to play sound from pc speaker

I remember on old computer you can use ASCII character 7 (echo ^G (ctrl+g) in DOS) to sound a beep. Looks like it's not working now. Perhaps the function is interrupted by the sound card driver?

 
May 28, 2008
LouCypher 208 posts

Topic: Userscripts.org discussion / Spam and malware

http://userscripts.org/users/54161/comments

 
May 28, 2008
LouCypher 208 posts

Topic: Script development / Orkut changes url, scripts stopped working

vikysaran wrote:

You can only write // @include http://www.orkut.*

What if you go to www.orkut.ishavingamassage.com?

 
May 28, 2008
LouCypher 208 posts

Topic: Script development / washingtontimes.com messes with text selection color

Just add

::-moz-selection{
  background:#6374AB !important;
  color:#fff !important;
}

onto your user style (note the !important), as the link in Mikado's post suggests.

 
May 28, 2008
LouCypher 208 posts

Topic: Script development / Orkut changes url, scripts stopped working

Didn't you read my email?

You can use the magic TLD as top level domain

http://wiki.greasespot.net/Include_and_exclude_rules
http://wiki.greasespot.net/Magic_TLD

// @include http://www.orkut.tld/*
// @exclude http://www.orkut.tld/Privacy.aspx
// @exclude http://www.orkut.tld/About.aspx

 
May 27, 2008
LouCypher 208 posts

Topic: Ideas and script requests / !!!!!!....Need Script.....!!!!!!!

That would be $200.00 per line of code.

 
May 21, 2008
LouCypher 208 posts

Topic: Userscripts.org discussion / Spam and malware

and http://userscripts.org/users/53510 with http://userscripts.org/forums/2/topics/2397

 
May 15, 2008
LouCypher 208 posts

Topic: Ideas and script requests / forum autoposting

Exactly. Especially _IF_ it ...

... is for a forum made by me...im de owner and the administrator.