Pages:
Author

Topic: [YAC]: YaCoin Information Thread - page 4. (Read 20767 times)

sr. member
Activity: 462
Merit: 250
May 10, 2013, 12:54:46 PM
#28
Thread updated with new sites, etc.
legendary
Activity: 1232
Merit: 1001
May 10, 2013, 06:55:11 AM
#27
Anyone going to update the Yac info at the top of this thread?
legendary
Activity: 1232
Merit: 1001
May 10, 2013, 06:29:03 AM
#26
I think you can update the YAC mining pools section with information about

http://yac.dontmine.me/

and others that have been posted on the forums
member
Activity: 238
Merit: 10
May 09, 2013, 10:41:33 PM
#25
YaCoin Homepage - NONE? (Who can make one?)

Add www.yacoin.org to the front page!

thx!

i am a little busy this week
so the site is simple now
i will make it look better on Sunday
member
Activity: 70
Merit: 10
May 09, 2013, 10:13:03 PM
#24
YaCoin Homepage - NONE? (Who can make one?)

Add www.yacoin.org to the front page!
hero member
Activity: 819
Merit: 1000
May 09, 2013, 10:05:57 PM
#23
sr. member
Activity: 406
Merit: 250
The cryptocoin watcher
May 09, 2013, 07:30:47 PM
#22
<3 Perl

The code seems sane as far as I can tell.
hero member
Activity: 819
Merit: 1000
May 09, 2013, 06:53:47 PM
#21
ok i've modified it a bit to show estimated network speed. Not sure how acurate it is... but you'll have to forgive me trying to code at 3 am  Tongue

Code:
#!/usr/bin/perl
use JSON;
$numsecs = 300;
$input = `./yacoind getinfo`;
#print "Input:\n".$input."\n";
$json = JSON->new->allow_nonref;
$arrs = $json->decode($input);
$oldblocks = $arrs->{'blocks'};
sleep $numsecs;
while(1==1){
$input = `./yacoind getinfo`;
# print "Input:\n".$input."\n";
$json = JSON->new->allow_nonref;
$arrs = $json->decode($input);
# print "old: $oldblocks, new: ". $arrs->{'blocks'}."\n";
$secsperblock = ($numsecs/($arrs->{'blocks'}-$oldblocks));
print "Block: $secsperblock s ";
$hashesperblock = (2**32)*$arrs->{'difficulty'};
        $blocks = $arrs->{'blocks'}-$oldblocks;
        $speed = ($blocks*$hashesperblock)/$numsecs;
$speed = $speed/1000000;
        printf "Netspeed: %.3f MH/s\n",$speed;
$oldblocks = $arrs->{'blocks'};
sleep $numsecs;
}
hero member
Activity: 819
Merit: 1000
May 09, 2013, 04:55:17 PM
#20
These were calculated at intervals of  5 minutes per line
Code:
kalgecin@laptop:~/yacoin/src$ perl ~/yacoin.pl
Seconds per block: 5.88235294117647
Seconds per block: 6.52173913043478
Seconds per block: 7.31707317073171
Seconds per block: 7.69230769230769
Seconds per block: 7.69230769230769
Seconds per block: 8.33333333333333
Seconds per block: 6.25
Seconds per block: 7.31707317073171
Seconds per block: 6.97674418604651
Seconds per block: 6.38297872340426
Seconds per block: 6.12244897959184
Seconds per block: 6.81818181818182

for people interested:
Code:
#!/usr/bin/perl
use JSON;
$input = `./yacoind getinfo`;
#print "Input:\n".$input."\n";
$json = JSON->new->allow_nonref;
$arrs = $json->decode($input);
$oldblocks = $arrs->{'blocks'};
sleep 300;
while(1==1){
$input = `./yacoind getinfo`;
# print "Input:\n".$input."\n";
$json = JSON->new->allow_nonref;
$arrs = $json->decode($input);
# print "old: $oldblocks, new: ". $arrs->{'blocks'}."\n";
$secsperblock = (300/($arrs->{'blocks'}-$oldblocks));
print "Seconds per block: $secsperblock\n";
$oldblocks = $arrs->{'blocks'};
sleep 300;
}
legendary
Activity: 1232
Merit: 1001
May 09, 2013, 12:17:26 PM
#19
Sucks that pacopaco is only reasonably good.

Well to be fair, he did commit some huge changesets all within something like 36 hours.  There have not been that many bugs.  The idea seems solid.

Perhaps it's unfair to say "reasonably".  Perhaps we should say "awesome".

Let the plebs decide. Smiley
legendary
Activity: 1232
Merit: 1001
May 09, 2013, 12:14:55 PM
#18
Sucks that pacopaco is only reasonably good.

We just don't know yet.  We have to see if he keeps the YaCoin software stable and continues to develop and fix bugs.

His idea is genius, so I've got faith in him.

We should probably change the text on those pages from saying "reasonable" to something like "totally amazin'"
sr. member
Activity: 406
Merit: 250
The cryptocoin watcher
full member
Activity: 182
Merit: 100
May 09, 2013, 12:12:22 PM
#16
Sucks that pacopaco is only reasonably good.
member
Activity: 238
Merit: 10
May 09, 2013, 12:12:14 PM
#15
hello
maybe we can make the site together
yacoin.org
i love this coin and want to make it better

You have alot of these coins i guess hahah

no……
i live in china
so i missed the best time to mine
and my pc is p6100
so……
legendary
Activity: 1232
Merit: 1001
May 09, 2013, 12:11:06 PM
#14
As more an more people actually try out YaCoin, it will become clear how fast (and robust) transacting in YAC really is.  At this point, early on, it must be a little unclear.

As more and more folks give mining a go (as N increases), it will start to become clear whether even CPUs can mine blocks throughout time.

Hopefully YaCoin will attract more developers and also sites will start to accept YaCoin.  I think there was already a gambling site that is accepting it.  Saw a forum topic.
hero member
Activity: 819
Merit: 1000
member
Activity: 112
Merit: 10
May 09, 2013, 12:05:50 PM
#12
hello
maybe we can make the site together
yacoin.org
i love this coin and want to make it better

You have alot of these coins i guess hahah
member
Activity: 238
Merit: 10
May 09, 2013, 12:04:07 PM
#11
hello
maybe we can make the site together
yacoin.org
i love this coin and want to make it better
full member
Activity: 210
Merit: 100
May 09, 2013, 12:01:10 PM
#10
Great compilation! Good work rbdrbd.
newbie
Activity: 28
Merit: 0
May 09, 2013, 11:55:17 AM
#9
GPU mining too plz Cheesy

 Wink

 Cheesy

 Grin
Pages:
Jump to: