Author

Topic: [∞ YH] solo.ckpool.org 1% fee solo mining USA/DE 251 blocks solved! - page 415. (Read 1514501 times)

legendary
Activity: 1274
Merit: 1000
I just use the "reloadevery" add-on in firefox.

I wasn't familiar with that add-on, I'll take a look, but still means I would need to leave FF up all day instead of a command prompt.
legendary
Activity: 4592
Merit: 1851
Linux since 1997 RedHat 4
legendary
Activity: 910
Merit: 1000
i like it like this:
-ck
legendary
Activity: 4088
Merit: 1631
Ruu \o/
I just use the "reloadevery" add-on in firefox.
legendary
Activity: 1274
Merit: 1000
I really don't understand the point of this script at all.  How difficult is it to click a link and see the stats on the web?  Instead, you're going to install a whole bunch of python libraries and run a command line script.  What's the value add in doing this?

It will update itself, I don't have to keep refreshing.

I don't need to keep a web browser open all day.

I like to learn how to do stuff.
legendary
Activity: 910
Merit: 1000
also windows...

$ wget -qO - http://solo.ckpool.org/users/1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | tr -d '" {}' | tr "," "\n"
hashrate1m:55.7T
hashrate5m:54.7T
hashrate1hr:44.2T
hashrate1d:5T
hashrate7d:786G
lastupdate:1428615238
workers:117
bestshare:726322442.48476458

just needs that auto refresh..
having fun while waiting that big hit..
legendary
Activity: 4592
Merit: 1851
Linux since 1997 RedHat 4
On linux this one line will get the stats and put them on separate lines Smiley
Code:
wget -qO - http://solo.ckpool.org/users/1address | tr -d '" {}' | tr "," "\n"

e.g.
Code:
wget -qO - http://solo.ckpool.org/users/1BigHit9xDAjVS3bJn7XNxQc3iRDiSABeZ | tr -d '" {}' | tr "," "\n"

Code:
hashrate1m:0
hashrate5m:0
hashrate1hr:0
hashrate1d:0
hashrate7d:0
lastupdate:1428611878
workers:0
bestshare:0.0

Of course you could write a script of a few lines to format the numbers.
legendary
Activity: 910
Merit: 1000
I really don't understand the point of this script at all.  How difficult is it to click a link and see the stats on the web?  Instead, you're going to install a whole bunch of python libraries and run a command line script.  What's the value add in doing this?

fun..
and most of users here know how to setup those: install a whole bunch of python libraries
and its not bad thing to learn more
just like people had to learn how to use mingw and fight all the deps to compile own wallet...
legendary
Activity: 1344
Merit: 1024
Mine at Jonny's Pool
I really don't understand the point of this script at all.  How difficult is it to click a link and see the stats on the web?  Instead, you're going to install a whole bunch of python libraries and run a command line script.  What's the value add in doing this?
legendary
Activity: 910
Merit: 1000
anywhere you want( and if problems check your environment path has
C:\Python27\;C:\Python27\Scripts;

------------
i like its desing  better this way:

Stats for       : 1BigHit9xDAjVS3bJn7XNxQc3iRDiSABeZ
Hashrate 1m : 6.09TH/s
Hashrate 5m : 4.86TH/s
Hashrate 1d  : 1.52TH/s
Hashrate 7d  : 259GH/s
Net. Diff.      : 49446390688.241
Best share    : 89458871.251

------------
time zones and daylight saving messing things up with lastupdate value, hope someone could fix it
legendary
Activity: 1274
Merit: 1000
you need python, and rest you play with cmd
https://www.python.org/downloads/windows/

you need python version 2.x for windows if your os is windows

https://www.python.org/downloads/release/python-279/

install python (don't forget to select the option for the path)

download and extract the zipfile from github

https://github.com/yqons/solo-mining-stats/archive/master.zip

run cmd

cd C:\Python27\Scripts

run...

easy_install-2.7.exe datetime
easy_install-2.7.exe requests
easy_install-2.7.exe python-dateutil
easy_install-2.7.exe colorama

put your BTC address in the addr.txt file

double click check.py

that's all  Wink


Many thanks to you both!

One final question, where do I need to extract the zipfile, to the \Python27\Scripts directory?
newbie
Activity: 57
Merit: 0

Can you (or anyone else) please help a non-coder noob out, how do I use your script?  There's only 3 steps for how to use, step 1 is simple (put address in text file), but I do not understand step 2, what "pip install datetime requests dateutil.relativedelta colorama" means.  For step 3, my computer does not know what to do with a .py file type.  Do you have more detailed instructions, step by step, explaining exactly what to do?  Thanks.

you need python version 2.x for windows if your os is windows

https://www.python.org/downloads/release/python-279/

install python (don't forget to select the option for the path)

download and extract the zipfile from github

https://github.com/yqons/solo-mining-stats/archive/master.zip

run cmd

cd C:\Python27\Scripts

run...

easy_install-2.7.exe datetime
easy_install-2.7.exe requests
easy_install-2.7.exe python-dateutil
easy_install-2.7.exe colorama

put your BTC address in the addr.txt file

double click check.py

that's all  Wink



legendary
Activity: 910
Merit: 1000
https://github.com/yqons/solo-mining-stats

Updated:
-Changed the "layout", Added Network Difficulty (Net. Diff.: )
-Address check on the pool
-Updated and improved the loop
-Fix for the users that already found the last block on the pool "blocks.txt"



Can you (or anyone else) please help a non-coder noob out, how do I use your script?  There's only 3 steps for how to use, step 1 is simple (put address in text file), but I do not understand step 2, what "pip install datetime requests dateutil.relativedelta colorama" means.  For step 3, my computer does not know what to do with a .py file type.  Do you have more detailed instructions, step by step, explaining exactly what to do?  Thanks.

you need python, and rest you play with cmd
https://www.python.org/downloads/windows/
legendary
Activity: 1274
Merit: 1000
https://github.com/yqons/solo-mining-stats

Updated:
-Changed the "layout", Added Network Difficulty (Net. Diff.: )
-Address check on the pool
-Updated and improved the loop
-Fix for the users that already found the last block on the pool "blocks.txt"



Can you (or anyone else) please help a non-coder noob out, how do I use your script?  There's only 3 steps for how to use, step 1 is simple (put address in text file), but I do not understand step 2, what "pip install datetime requests dateutil.relativedelta colorama" means.  For step 3, my computer does not know what to do with a .py file type.  Do you have more detailed instructions, step by step, explaining exactly what to do?  Thanks.
newbie
Activity: 57
Merit: 0

i just removed lastupdate and worker info..


 Cool thanks for the hint  Wink

legendary
Activity: 910
Merit: 1000
https://github.com/yqons/solo-mining-stats

Updated:
-Changed the "layout", Added Network Difficulty (Net. Diff.: )
-Address check on the pool
-Updated and improved the loop
-Fix for the users that already found the last block on the pool "blocks.txt"



nice script, good job!

it runs fine at my computer, but it shows the lastupdate time wrong.

why, do you have a hint for me?

when i put the lastupdate counter to a unixtime converter it shows me the correct time.



i just removed lastupdate and worker info.. time zones and daylight saving messing things up...
makes it easier to read my share
legendary
Activity: 1274
Merit: 1000
Code:
[2015-04-09 09:17:04] Possible block solve diff 147564465719.021576 !
[2015-04-09 09:17:04] BLOCK ACCEPTED!
[2015-04-09 09:17:04] Solved and confirmed block 351364

Congratulations to 1L8nTxHTwWLMDkjGNMMVLfzSTgQqJdeMNM with only ~3.8TH!

Woo, very nice, congrats!  And 3x network difficulty, too, impressive.
full member
Activity: 237
Merit: 100
Smile while thinking.
Congrats!  3.8TH/s... that's about what I've got in hardware... maybe I should just throw it on here full time instead of just a day or so a week Smiley

Yahoo.. Thanks guys.
This month i was mining with 500TH about 2 days and nothing.
With 4TH it takes less than a week. It is very strange universe.)

Hard to find logic in luck!  ;-)

Congrats!!

newbie
Activity: 57
Merit: 0
https://github.com/yqons/solo-mining-stats

Updated:
-Changed the "layout", Added Network Difficulty (Net. Diff.: )
-Address check on the pool
-Updated and improved the loop
-Fix for the users that already found the last block on the pool "blocks.txt"



nice script, good job!

it runs fine at my computer, but it shows the lastupdate time wrong.

why, do you have a hint for me?

when i put the lastupdate counter to a unixtime converter it shows me the correct time.

newbie
Activity: 6
Merit: 0
Congrats!  3.8TH/s... that's about what I've got in hardware... maybe I should just throw it on here full time instead of just a day or so a week Smiley

Yahoo.. Thanks guys.
This month i was mining with 500TH about 2 days and nothing.
With 4TH it takes less than a week. It is very strange universe.)
Jump to: