Comments by jk- on scripts

22 comments

Comment on:
Rapidshare Download Delay Bypass

Oct 4, 2008

Xavier Robin: Try reloading a few times with POST data. It is the invisible server-side delay.

edit: may be wrong about javascript needed, it could have just been the delay which made me think this (by the time I temporarilay allowed rapidshare via NoScript the delay might have been gone) .

Comment on:
Yahoo Fantasy Football Free Stats

Sep 12, 2008

It will only alter the StatTracker button on the Team-view pages. I just tested it and I don't see any problem.

Comment on:
Hotlinking of Unlisted Scripts Disabled

Jan 27, 2008

An interim solution that is, until you create an even bigger problem: "the karma system".

Comment on:
Script Reviews

Jan 27, 2008

Any community-oriented review system will only be abused in my opinion.

The answer seems simple:
1. Block multiple scripts with the same @name.
2. Force userscripts to have @include set

If you create a system where a user can have "more weight", those with the fake accounts will simply boost the point total of whichever fake accounts they wish to make into "heavyweights".

Every site that institutes a "karma" system, (or a "you'll get a cookie if you wag your tail when I say so" system) has these problems and quite frankly, it's the type of thing that these brainless kids on orkut would probably want.

Comment on:
Reddit - downvote Ron Paul stories

Dec 18, 2007

Could the haters be sore that Dr. Paul raises 6 million dolla`s in one day, shattering any previous record by any other candidate?

Comment on:
Yahoo Football Weather Forecasts

Dec 15, 2007

Good idea Glenn, I'll give it a try.

cool, those links are a good idea.

Comment on:
YouTube Video Downloader

Sep 4, 2007

cool, seems to work.

There is a "d" character at the end of the script though, looks like a typo?

I replaced it with a ";"

And I removed the greasemonkey reference from the user agent header... no need for google to know that :)

Comment on:
Yahoo Fantasy Sports 2-Week Filter

Aug 31, 2007

Yea, it won't show until the season starts and there are stats to display (it only is created if there is a "Last Week" option already there).

Comment on:
Yahoo Fantasy Sports Home Button Remover

Aug 30, 2007

cool
You could also do it with css:
#yspnav.navlist > ul > li:first-child {display:none!important}

Comment on:
Yahoo Fantasy Player Search

May 26, 2007

cool, it was a little too small for me unfocused so I doubled the pixel widths and added some css to center it over the green row (it was off-center with 1440 res.).

Comment on:
4shared download delay bypass

Apr 14, 2007

hmm, seems to be working for me with and without javascript enabled. Can you post the link that it wasn't working with? I'll check it out.

Fixed, added "?source" to the request. As for the *.userscripts.org well it's just a habbit.

Comment on:
Yahoo Fantasy Football Free Stats

Nov 26, 2006

the script actually grabs the entire stat row which encompasses the individual TDs (which contain the stat data).

I don't know if this will do salary cap but you might want to check it out:
http://statfink.sourceforge.net/

Comment on:
Yahoo Fantasy Football Free Stats

Nov 25, 2006

It'd be possible to do Loogie but more difficult since you'd be dealing with individual table data values. I don't pay much attention to my salary cap team so I probably won't be making it. It would also be nice to calculate fantasy stats with this script but again it'd be a lot more work.

Comment on:
Yahoo Fantasy Basketball

Nov 19, 2006

this is great.. excellent work.

To get it to work only on my team page I removed the (funtion(){CODE_HERE}); that wrapped the script and replaced it with:
if (location.href.match(/^http\:\/\/basketball\.fantasysports\.yahoo\.com\/nba\/\d{1,7}\/\d{1,2}$/i)) {CODE_HERE};

Comment on:
Turboupload D/L Time Delay Bypass

Oct 10, 2006

This works again, no need to block javascript anymore.

matt: if you replace the 'yspfooter' instances in the last line of code with 'team-nav' that should probably do it.

Comment on:
Turboupload D/L Time Delay Bypass

Jun 10, 2006

javascript must be blocked for turboupload.com for it to work (i.e. with the NoScript extension)

Comment on:
Yahoo Fantasy MLB Game Log Link

Apr 4, 2006

DavidNYC: Yes the graphic should be displaying on any page with players.. on the league's front page next to the player moves, on your team next to all your players, and on all the pages with player links.

It should be just to the right of the player's name before that news link that shows up when a player has news.

Nice, I've got so many extensions installed that it takes a long time to spawn a window and tabmixplus doesn't open the yahoo player links in a new tab for some reason. I'll definetly be using this from now on. Good work!

Comment on:
Yahoo Fantasy NBA Game Log Link

Mar 21, 2006

this is rather useful for fantasy players however I just noticed that the altered link adds a ;_ylt= string which, in effect, tracks everyone who uses this script. I'm sure this is inadvertant but anyone who uses this should remove the ;_ylt= and the alphanumeric string that follows...

Change
gameLogLink.setAttribute("href",thisElement.href + "/gamelog;_ylt=ApYJKdp6FNp5fW6L.uu5WWCkvLYF")

to

gameLogLink.setAttribute("href",thisElement.href + "/gamelog")