Pages:
Author

Topic: Need Someone To Count Potential Activity (Read 1546 times)

full member
Activity: 210
Merit: 100
April 26, 2015, 01:02:47 PM
#40
I recommend you @Quickseller .Can say that he is an expert on it. Cost a little expensive , but you will be assured with his service .
My price works out to $1.74 worth of Bitcoin. I don't think that is very expensive, especially considering that giving a firm activity amount the account can reach will likely allow the account to sell for a higher then otherwise price.

Yes, I see. a little costs for that but the value of the account may be increases.
full member
Activity: 350
Merit: 118
That surely is a great idea. I was just going to lock the thread but now I decided to keep it open for views on Mt.Gox's suggestion. I personally am looking forward for a program which can calculate Potential Activity, and try making it web based Wink

Here's my attempt at a Java-based pseudocode version:

Code:
int currenttime = getCurrentTime(); // method to get current time
int starttime = x;
int timesincestart = currenttime - starttime; // gets number of seconds since starttime (aka. x)
int noofactivityperiods = timesincestart / 1210000; calculates no. of activity periods

array activityperiods[noofactivityperiods];
int counter = 0;
while counter <= noofactivityperiods{


**/
{
import "http://bitcointalk.org/index.php?action=profile;u=" + userid + ";sa=showPosts"

activityperiods[counter] = counter;

}

counter++ **/
} // creates array with

Well at least I tried. Cry

EDIT: It's way more difficult than I thought. For Java, you would use a scanner object to parse through the posts and then assign each post with a timestamp in unix time. Then you would put these into an arraylist (e.g. 1 = 334827182, 2 = 334899838...). You would then have to parse through the arraylist and sort posts into ANOTHER arraylist containing boolean entries. Then you would count up the boolean entries and multiply by 14 to get the potential activity.

It's actually pretty advanced-level stuff, unfortunately.

EDIT 2: Those comment tags are there because I gave up halfway through typing it since I couldn't figure out how to manipulate the scanner object to navigate through the pages.

Can you run it on a site? A web based activity calculator will be a real help for the community.
And is the code working?



That's just pseudocode. With a little bit of effort (e.g. importing objects), you could probably turn it into something compilable and executable within a browser window but right now, it can only count the number of activity periods assuming someone posted at least once in every single activity period. There would need to be a way to assign "true" or "false" (i.e. boolean) values to each activity period and then count the instances that "true" appears and multiply this number by 14. That sounds easy but when you're parsing the results of not just one but an arbitary number of .html documents and in reverse order combined with sanitizing inputs correctly and converting timestamps to unix time (although I suppose there are libraries available for this) then the problem quickly becomes very messy.

TL;DR: I completely underestimated the complexity. The code is really only half complete. Someone here with more programming expertise than me could probably do it.
sr. member
Activity: 280
Merit: 250
That surely is a great idea. I was just going to lock the thread but now I decided to keep it open for views on Mt.Gox's suggestion. I personally am looking forward for a program which can calculate Potential Activity, and try making it web based Wink

Here's my attempt at a Java-based pseudocode version:

Code:
int currenttime = getCurrentTime(); // method to get current time
int starttime = x;
int timesincestart = currenttime - starttime; // gets number of seconds since starttime (aka. x)
int noofactivityperiods = timesincestart / 1210000; calculates no. of activity periods

array activityperiods[noofactivityperiods];
int counter = 0;
while counter <= noofactivityperiods{


**/
{
import "http://bitcointalk.org/index.php?action=profile;u=" + userid + ";sa=showPosts"

activityperiods[counter] = counter;

}

counter++ **/
} // creates array with

Well at least I tried. Cry

EDIT: It's way more difficult than I thought. For Java, you would use a scanner object to parse through the posts and then assign each post with a timestamp in unix time. Then you would put these into an arraylist (e.g. 1 = 334827182, 2 = 334899838...). You would then have to parse through the arraylist and sort posts into ANOTHER arraylist containing boolean entries. Then you would count up the boolean entries and multiply by 14 to get the potential activity.

It's actually pretty advanced-level stuff, unfortunately.

EDIT 2: Those comment tags are there because I gave up halfway through typing it since I couldn't figure out how to manipulate the scanner object to navigate through the pages.

Can you run it on a site? A web based activity calculator will be a real help for the community.
And is the code working?

full member
Activity: 350
Merit: 118
That surely is a great idea. I was just going to lock the thread but now I decided to keep it open for views on Mt.Gox's suggestion. I personally am looking forward for a program which can calculate Potential Activity, and try making it web based Wink

Here's my attempt at a Java-based pseudocode version:

Code:
int currenttime = getCurrentTime(); // method to get current time
int starttime = x;
int timesincestart = currenttime - starttime; // gets number of seconds since starttime (aka. x)
int noofactivityperiods = timesincestart / 1210000; calculates no. of activity periods

array activityperiods[noofactivityperiods];
int counter = 0;
while counter <= noofactivityperiods{


**/
{
import "http://bitcointalk.org/index.php?action=profile;u=" + userid + ";sa=showPosts"

activityperiods[counter] = counter;

}

counter++ **/
} // creates array with

Well at least I tried. Cry

EDIT: It's way more difficult than I thought. For Java, you would use a scanner object to parse through the posts and then assign each post with a timestamp in unix time. Then you would put these into an arraylist (e.g. 1 = 334827182, 2 = 334899838...). You would then have to parse through the arraylist and sort posts into ANOTHER arraylist containing boolean entries. Then you would count up the boolean entries and multiply by 14 to get the potential activity.

It's actually pretty advanced-level stuff, unfortunately.

EDIT 2: Those comment tags are there because I gave up halfway through typing it since I couldn't figure out how to manipulate the scanner object to navigate through the pages.
sr. member
Activity: 280
Merit: 250
This is a tricky work, a minute or an hour can make a difference in potential activity. You must know the exact time when the forum activity updates.

Well if someone wants some kind of information that requires some level of work to get and would only be beneficial to him then it should be expected that he would pay for such research. I am surprised that so many people were willing to count how much potential activity the OP has for free, although I am fairly certain that a number of people that responded on here did not actually check lol.

I could probably write a Python script that calculates activity by parsing through the user's post history and storing the results in an array. The forum uses Unix time to calculate activity periods which are 1,210,000 seconds long. A new activity period begins when 1374560000 % 1210000 == 0 is true. It will probably take a couple of days to write but I might do it if there is enough interest.
That surely is a great idea. I was just going to lock the thread but now I decided to keep it open for views on Mt.Gox's suggestion. I personally am looking forward for a program which can calculate Potential Activity, and try making it web based Wink
full member
Activity: 350
Merit: 118
This is a tricky work, a minute or an hour can make a difference in potential activity. You must know the exact time when the forum activity updates.

Well if someone wants some kind of information that requires some level of work to get and would only be beneficial to him then it should be expected that he would pay for such research. I am surprised that so many people were willing to count how much potential activity the OP has for free, although I am fairly certain that a number of people that responded on here did not actually check lol.

I could probably write a Python script that calculates activity by parsing through the user's post history and storing the results in an array. The forum uses Unix time to calculate activity periods which are 1,210,000 seconds long. A new activity period begins when 1374560000 % 1210000 == 0 is true. It will probably take a couple of days to write but I might do it if there is enough interest.
legendary
Activity: 2828
Merit: 1222
Just looking for peace
Approx. 455. You get 14 activity biweekly. Which means in theory, you get 1 / day. You are account is 455 days old. So it's +/- 455 in activity.
http://www.timeanddate.com/date/durationresult.html?d1=25&m1=01&y1=2014&d2=25&m2=4&y2=2015
But the activity is only counted or added to your account if you post in that pre-decided 14 day period , and he missed alot of them

Then how does he expect us to work it out? Only he knows in which periods he posted in. This is a useless thread then.

Some of us workout a table decreasing 14 days and then making a list of days on which the activity jump took place , we can go to his profile and check his post history and see the dates he posted on , out of 455 days( 32 jumps) , he missed 13 and successfully got 19 , so his potential activity is 266 . Not much hard , anyone can calculate it !
hero member
Activity: 742
Merit: 500
Approx. 455. You get 14 activity biweekly. Which means in theory, you get 1 / day. You are account is 455 days old. So it's +/- 455 in activity.
http://www.timeanddate.com/date/durationresult.html?d1=25&m1=01&y1=2014&d2=25&m2=4&y2=2015
But the activity is only counted or added to your account if you post in that pre-decided 14 day period , and he missed alot of them

Then how does he expect us to work it out? Only he knows in which periods he posted in. This is a useless thread then.
legendary
Activity: 2828
Merit: 1222
Just looking for peace
Approx. 455. You get 14 activity biweekly. Which means in theory, you get 1 / day. You are account is 455 days old. So it's +/- 455 in activity.
http://www.timeanddate.com/date/durationresult.html?d1=25&m1=01&y1=2014&d2=25&m2=4&y2=2015
But the activity is only counted or added to your account if you post in that pre-decided 14 day period , and he missed alot of them
hero member
Activity: 742
Merit: 500
Approx. 455. You get 14 activity biweekly. Which means in theory, you get 1 / day. You are account is 455 days old. So it's +/- 455 in activity.
http://www.timeanddate.com/date/durationresult.html?d1=25&m1=01&y1=2014&d2=25&m2=4&y2=2015
legendary
Activity: 2828
Merit: 1222
Just looking for peace
To not tell this requirement to anyone was also a requirement , you both can't pass the test either now Cheesy
Anyways , @QuickSeller Congrats on Being Dark Green Grin
Well if someone wants some kind of information that requires some level of work to get and would only be beneficial to him then it should be expected that he would pay for such research. I am surprised that so many people were willing to count how much potential activity the OP has for free, although I am fairly certain that a number of people that responded on here did not actually check lol.

Yeah i agree that it requires work but it's nice sometimes to do things for free Cheesy , 0.007 or ~ that amount of btc , doesn't really make a difference .
Yea it is roughly a dollar worth of bitcoin, but ideally the person I am doing the work for will be satisfied with my performance and send some kind of a tip. Also the small amount requested prevents freeloaders from taking advantage of your skills.

I wouldn't have done it but i know the guy , he is on my whatsapp too , just know him because i was going to buy some recharge's form him but didn't .
Let's not spam and go off-topic here . I think he found his answer.
copper member
Activity: 2996
Merit: 2374
To not tell this requirement to anyone was also a requirement , you both can't pass the test either now Cheesy
Anyways , @QuickSeller Congrats on Being Dark Green Grin
Well if someone wants some kind of information that requires some level of work to get and would only be beneficial to him then it should be expected that he would pay for such research. I am surprised that so many people were willing to count how much potential activity the OP has for free, although I am fairly certain that a number of people that responded on here did not actually check lol.

Yeah i agree that it requires work but it's nice sometimes to do things for free Cheesy , 0.007 or ~ that amount of btc , doesn't really make a difference .
Yea it is roughly a dollar worth of bitcoin, but ideally the person I am doing the work for will be satisfied with my performance and send some kind of a tip. Also the small amount requested prevents freeloaders from taking advantage of your skills.
legendary
Activity: 2828
Merit: 1222
Just looking for peace
To not tell this requirement to anyone was also a requirement , you both can't pass the test either now Cheesy
Anyways , @QuickSeller Congrats on Being Dark Green Grin
Well if someone wants some kind of information that requires some level of work to get and would only be beneficial to him then it should be expected that he would pay for such research. I am surprised that so many people were willing to count how much potential activity the OP has for free, although I am fairly certain that a number of people that responded on here did not actually check lol.

Yeah i agree that it requires work but it's nice sometimes to do things for free Cheesy , 0.007 or ~ that amount of btc , doesn't really make a difference .
copper member
Activity: 2996
Merit: 2374
To not tell this requirement to anyone was also a requirement , you both can't pass the test either now Cheesy
Anyways , @QuickSeller Congrats on Being Dark Green Grin
Well if someone wants some kind of information that requires some level of work to get and would only be beneficial to him then it should be expected that he would pay for such research. I am surprised that so many people were willing to count how much potential activity the OP has for free, although I am fairly certain that a number of people that responded on here did not actually check lol.
legendary
Activity: 2828
Merit: 1222
Just looking for peace
Thanks everyone for your support and effort and especially louis and bugmenot.

So am I right that Sr member is 240 activity? How much is hero?

480 activity. Smiley

btw, you will have a time when you get 476 and still Sr... Wink

Edit: 960 for Legendary, 1920 for Global mod and 3840 for VIP. 
And if you wait long enough you also get to be the administrator or the founder.. Grin
jk

Lol thanks.. My aim is the Administrator one.. xD
Theymos beware am coming xD

I think one of the requirements to become an admin is to be able to count how much activity an account should have. If you can't do that without help then I don't think you can pass the test.
To not tell this requirement to anyone was also a requirement , you both can't pass the test either now Cheesy
Anyways , @QuickSeller Congrats on Being Dark Green Grin


by my counting your potential activity is ~280
and it will add extra 14 on 28 april
I can bet it's 266 and will be 280 on 28th april after adding 14 , so it'll be 280 on 28th , not now .



Hehe!! I am fine, if not Administrator, I will have an eye on VIP Wink Tongue
BTW, Let's see how much activity I have the potential of. Will lock the thread till then and when I reach the point when my activity stops increasing I will unlock and leave a reply with the result.

Thanks to everyone for your effort and work. Thanks for being nice community members Wink Smiley

-Rony

Buddy , that was just a joke , you can't become a mod , Admin or VIP with great activity .
Also the Legendary lies anywhere between 755 - 1030 , which is different for different people and no one knows it!
https://bitcointalksearch.org/topic/m.1861412
sr. member
Activity: 294
Merit: 250
This is a tricky work, a minute or an hour can make a difference in potential activity. You must know the exact time when the forum activity updates.
sr. member
Activity: 280
Merit: 250
Thanks everyone for your support and effort and especially louis and bugmenot.

So am I right that Sr member is 240 activity? How much is hero?

480 activity. Smiley

btw, you will have a time when you get 476 and still Sr... Wink

Edit: 960 for Legendary, 1920 for Global mod and 3840 for VIP. 
And if you wait long enough you also get to be the administrator or the founder.. Grin
jk

Lol thanks.. My aim is the Administrator one.. xD
Theymos beware am coming xD

I think one of the requirements to become an admin is to be able to count how much activity an account should have. If you can't do that without help then I don't think you can pass the test.
To not tell this requirement to anyone was also a requirement , you both can't pass the test either now Cheesy
Anyways , @QuickSeller Congrats on Being Dark Green Grin


by my counting your potential activity is ~280
and it will add extra 14 on 28 april
I can bet it's 266 and will be 280 on 28th april after adding 14 , so it'll be 280 on 28th , not now .



Hehe!! I am fine, if not Administrator, I will have an eye on VIP Wink Tongue
BTW, Let's see how much activity I have the potential of. Will lock the thread till then and when I reach the point when my activity stops increasing I will unlock and leave a reply with the result.

Thanks to everyone for your effort and work. Thanks for being nice community members Wink Smiley

-Rony
legendary
Activity: 2828
Merit: 1222
Just looking for peace
Thanks everyone for your support and effort and especially louis and bugmenot.

So am I right that Sr member is 240 activity? How much is hero?

480 activity. Smiley

btw, you will have a time when you get 476 and still Sr... Wink

Edit: 960 for Legendary, 1920 for Global mod and 3840 for VIP. 
And if you wait long enough you also get to be the administrator or the founder.. Grin
jk

Lol thanks.. My aim is the Administrator one.. xD
Theymos beware am coming xD

I think one of the requirements to become an admin is to be able to count how much activity an account should have. If you can't do that without help then I don't think you can pass the test.
To not tell this requirement to anyone was also a requirement , you both can't pass the test either now Cheesy
Anyways , @QuickSeller Congrats on Being Dark Green Grin


by my counting your potential activity is ~280
and it will add extra 14 on 28 april
I can bet it's 266 and will be 280 on 28th april after adding 14 , so it'll be 280 on 28th , not now .

full member
Activity: 196
Merit: 100
https://dadice.com the #1 dice site
by my counting your potential activity is ~280
and it will add extra 14 on 28 april

I counted it 280 too. Im just a little confused on one post if its posted on a different period. The time posted is almost in between periods
hero member
Activity: 635
Merit: 500
BlasterKVs the king of xbox modding
by my counting your potential activity is ~280
and it will add extra 14 on 28 april
Pages:
Jump to: