Welcome, Anonymous (Profile, Private Messages)
Having trouble signing into the forums? Please [ logout ] and log back in.
 Log inLog in 
SEARCH:     » Advanced Search

Shutterstock Photographer Forum Forum Index : Cameras / Scanners / Software :
Firefox extension for the stats maniacs
Page Previous  1, 2, 3, 4, 5, 6 ... 9, 10, 11  Next
 
Post new topic    Reply to topic
Author Message
Bob Ainsworth


Joined: 22 Apr 2005
Posts: 499
Location: Oklahoma

Post Posted: Tue May 23, 2006 2:38 pm     Reply with quote

swimpuppy wrote:
Wow! This sounds really cool and I wanna try it. But I'm using Internet Explorer and don't wanna download Firefox just to check downloads as of right now. Has anyone used the extension with IE (if it's even possible)?


IE 7 has this ability along with tabs.
It's in beta right now, but so far it looks good.
Hopefully they can get a hold on their security issues.
I use FF and IE about 50/50, I have a lot of video plug-in issues with FF and have to revert back to IE a lot.
mariotomic


Joined: 15 Mar 2006
Posts: 8
Location: Novi Sad, Serbia

Post Posted: Tue May 23, 2006 2:45 pm     Reply with quote

Hey Ingus,

I hope you don't mind me tweaking your ext a bit? :)

I've reduced it's size by a third.

Here it is.
ingus


Joined: 20 Jul 2005
Posts: 58

Post Posted: Tue May 23, 2006 2:59 pm     Reply with quote

mariotomic wrote:
Hey Ingus,

I hope you don't mind me tweaking your ext a bit? :)

I've reduced it's size by a third.

Here it is.


No, I don't mind :)
lilcrazyfuzzy


Joined: 29 Nov 2005
Posts: 12926
Location: 50°46′31″N 6°4′58″E

Post Posted: Tue May 23, 2006 3:32 pm     Reply with quote

htjostheim wrote:
Hey Ingus. I an a programmer myself. Mostly java and C++. How did you make the Firefox plugin?


the extension's code itself is javascript
the extension is an archive with a couple of different things bundled inside,

see: http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/
lilcrazyfuzzy


Joined: 29 Nov 2005
Posts: 12926
Location: 50°46′31″N 6°4′58″E

Post Posted: Tue May 23, 2006 3:33 pm     Reply with quote

mariotomic wrote:
Hey Ingus,

I hope you don't mind me tweaking your ext a bit? :)

I've reduced it's size by a third.

Here it is.


eh, how come i can't? it doesn't want to install when i modify it.
Is there anything to change in the installation file when modifying it?
vonora


Joined: 11 Dec 2005
Posts: 116
Location: New York

Post Posted: Tue May 23, 2006 3:51 pm     Reply with quote

Works fine on Mac. Thanks a million!!!
thesupe87


Joined: 07 Feb 2006
Posts: 858
Location: arenacreative.com

Post Posted: Tue May 23, 2006 4:06 pm     Reply with quote

im restarting firefox right now to try it out! thanks so much :)
thesupe87


Joined: 07 Feb 2006
Posts: 858
Location: arenacreative.com

Post Posted: Tue May 23, 2006 4:16 pm     Reply with quote

It works aWeSOME!! I don't mean to be a PITA - maybe you can get some payment from SS for the time it takes for you to program this little extension, but it would be sweet if it also showed your daily cash - as well as the total for the month. Anyone up to it? ;)
aron


Joined: 18 Feb 2006
Posts: 9

Post Posted: Tue May 23, 2006 4:16 pm     Reply with quote

This is really great !
How about adding a way to view the amount of dollars and downloads today, in addition to the whole month ?
mariotomic


Joined: 15 Mar 2006
Posts: 8
Location: Novi Sad, Serbia

Post Posted: Tue May 23, 2006 4:28 pm     Reply with quote

Ingus,

I tried extending this ext to make it show overall (unpaid) eranings and total dls, but for some reason it fails to fetch it.

In order to precisely define which numbers I need to be fetched I had to "quote" text that follows, but I'm not sure if it's supposed to be done that way. I'm sure you'll get what I'm talking about after downloading it from here

http://www.putfwd.com/index/putfwd-dl-action/id.19396/type.xpi

You can reach me at mario mnkey mariotomic.com I'd like to help this ext grow :)
leaf


Joined: 24 Oct 2004
Posts: 255
Location: Norway

Post Posted: Tue May 23, 2006 5:43 pm     Reply with quote

and how about a cash register sound each time our earnings go up :)

tyler
---------------------------------
Microstock Group
A meeting place for microstock photographers
johncarleton


Joined: 05 Oct 2005
Posts: 2
Location: San Jose, CA

Post Posted: Tue May 23, 2006 6:32 pm     Reply with quote

sweeeeeeeeeeeeeet! :)
yuripanda


Joined: 29 Oct 2005
Posts: 342
Location: North Carolina

Post Posted: Tue May 23, 2006 9:14 pm     Reply with quote

For someone (like me) who checks SS obsessively every few minutes, this is FANTASTIC!!! Thank you!!
ingus


Joined: 20 Jul 2005
Posts: 58

Post Posted: Wed May 24, 2006 1:01 am     Reply with quote

mariotomic wrote:
Ingus,

I tried extending this ext to make it show overall (unpaid) eranings and total dls, but for some reason it fails to fetch it.

In order to precisely define which numbers I need to be fetched I had to "quote" text that follows, but I'm not sure if it's supposed to be done that way. I'm sure you'll get what I'm talking about after downloading it from here

http://www.putfwd.com/index/putfwd-dl-action/id.19396/type.xpi

You can reach me at mario mnkey mariotomic.com I'd like to help this ext grow :)


The tricky part here is that there are line breaks and tabs between the html

The regexps you can use are:
Code:

            var dlr = new RegExp('([0-9]+)</b></td>(\t|\r|\n)*</tr>(\t|\r|\n)*</table>(\t|\r|\n)*<br>(\t|\r|\n)*<div class="greenbox">', 'gm');
            var dl = dlr.exec(text);
            alert(dl[1]);
            var ernr = new RegExp('Total Unpaid Earnings([^<]+)</td>(\t|\r|\n)*<td class="datacell"><b>[^0-9]+([0-9]+\.[0-9]+)', 'gm');
mateimiruna


Joined: 20 Dec 2005
Posts: 671

Post Posted: Wed May 24, 2006 1:21 am     Reply with quote

ingus wrote:

Code:

            var dlr = new RegExp('([0-9]+)</b></td>(\t|\r|\n)*</tr>(\t|\r|\n)*</table>(\t|\r|\n)*<br>(\t|\r|\n)*<div class="greenbox">', 'gm');
            var dl = dlr.exec(text);
            alert(dl[1]);
            var ernr = new RegExp('Total Unpaid Earnings([^<]+)</td>(\t|\r|\n)*<td class="datacell"><b>[^0-9]+([0-9]+\.[0-9]+)', 'gm');


OMG! That's martian language to me! LOL
 
Display posts from previous:   
Post new topic   Reply to topic Page 5 of 11 All times are GMT - 5 Hours
Page Previous  1, 2, 3, 4, 5, 6 ... 9, 10, 11  Next

 


Shutterstock Forum for Contributors