It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
[2016-01-05 12:12:37] Started at [2016-01-04 14:47:08]
[2016-01-05 12:12:37] Pool: stratum+tcp://mine.zpool.ca:3433
[2016-01-05 12:12:37] Runtime: 21 hrs : 25 mins : 29 secs
[2016-01-05 12:12:37] Average hashrate: 117.6 Megahash/s
[2016-01-05 12:12:37] Solved blocks: 86
[2016-01-05 12:12:37] Best share difficulty: 260M
[2016-01-05 12:12:37] Share submissions: 61629
[2016-01-05 12:12:37] Accepted shares: 61467
[2016-01-05 12:12:37] Rejected shares: 162
[2016-01-05 12:12:37] Accepted difficulty shares: 125884416
[2016-01-05 12:12:37] Rejected difficulty shares: 331776
[2016-01-05 12:12:37] Reject ratio: 0.3%
[2016-01-05 12:12:37] Hardware errors: 6201
[2016-01-05 12:12:37] Utility (accepted shares / min): 47.82/min
[2016-01-05 12:12:37] Work Utility (diff1 shares solved / min): 98718.30/min
[2016-01-05 12:12:37] Stale submissions discarded due to new blocks: 333
[2016-01-05 12:12:37] Unable to get work from server occasions: 4
[2016-01-05 12:12:37] Work items generated locally: 1159802
[2016-01-05 12:12:37] Submitting work remotely delay occasions: 1
[2016-01-05 12:12:37] New blocks detected on network: 4337
[2016-01-05 12:12:37] Summary of per device statistics:
[2016-01-05 12:12:37] BA20 | (5s):18.58M (avg):18.09Mh/s | A:19900416 R:32768 HW:637 WU:1559
[2016-01-05 12:12:37] BA21 | (5s):20.37M (avg):19.90Mh/s | A:20572160 R:73728 HW:1342 WU:161
[2016-01-05 12:12:37] BA22 | (5s):20.43M (avg):19.89Mh/s | A:22257664 R:71680 HW:636 WU:1745
[2016-01-05 12:12:37] BA23 | (5s):20.43M (avg):19.88Mh/s | A:20719616 R:53248 HW:1340 WU:162
[2016-01-05 12:12:37] BA24 | (5s):20.44M (avg):19.89Mh/s | A:20803584 R:45056 HW:1153 WU:163
[2016-01-05 12:12:37] BA25 | (5s):20.43M (avg):19.89Mh/s | A:21630976 R:55296 HW:1093 WU:169
Errors per chip:
Board 1 2 3 4 5 6
Chip 1 375 253 191 591 514 293
Chip 2 104 157 93 304 121 233
Chip 3 7 32 45 29 126 91
Chip 4 20 155 45 89 95 74
Chip 5 1 49 355 144 43 152
Chip 6 84 173 46 77 66 153
Chip 7 43 638 86 105 294 212
Chip 8 100 43 76 260 149 115
Chip 9 163 159 67 182 200 67
Chip10 58 46 50 257 29 166
my @a2;
my $boards = 2;
init_var();
open ($fh , '<', $ARGV[0]) or die "No input cgminer Log file\n";
while ($row = <$fh>) {
chomp $row;
if ($row =~ /invalid/ && $row =~ /cs/) {
@temp = split(/ /, $row);
$temp_cs = substr($temp[3],7,1);
$a2[$temp_cs][$temp[4]]++;
}
}
report();
close $fh;
sub init_var {
for ($cs=0;$cs<$boards;$cs++) {
for ($chip=1;$chip<13;$chip++) {
$a2[$cs][$chip] = 0;
}
}
}
sub report {
for ($cs=0;$cs<$boards;$cs++) {
for ($chip=1;$chip<13;$chip++) {
printf ("Board %1d Chip %2d Errors %d\n",($cs),($chip),$a2[$cs][$chip]);
}
print "\n";
}
}
#!/bin/bash
sudo rm chiperror.rep
sudo touch chiperror.rep
sudo chmod 777 chiperror.rep
_0_1=$(grep -o 'chip(cs0) 1' cgminer.log | wc -l)
_0_2=$(grep -o 'chip(cs0) 2' cgminer.log | wc -l)
_0_3=$(grep -o 'chip(cs0) 3' cgminer.log | wc -l)
_0_4=$(grep -o 'chip(cs0) 4' cgminer.log | wc -l)
_0_5=$(grep -o 'chip(cs0) 5' cgminer.log | wc -l)
_0_7=$(grep -o 'chip(cs0) 7' cgminer.log | wc -l)
_0_8=$(grep -o 'chip(cs0) 8' cgminer.log | wc -l)
_0_9=$(grep -o 'chip(cs0) 9' cgminer.log | wc -l)
_0_10=$(grep -o 'chip(cs0) 10' cgminer.log | wc -l)
_0_11=$(grep -o 'chip(cs0) 11' cgminer.log | wc -l)
_1_1=$(grep -o 'chip(cs1) 1' cgminer.log | wc -l)
_1_2=$(grep -o 'chip(cs1) 2' cgminer.log | wc -l)
_1_3=$(grep -o 'chip(cs1) 3' cgminer.log | wc -l)
_1_4=$(grep -o 'chip(cs1) 4' cgminer.log | wc -l)
_1_5=$(grep -o 'chip(cs1) 5' cgminer.log | wc -l)
_1_7=$(grep -o 'chip(cs1) 7' cgminer.log | wc -l)
_1_8=$(grep -o 'chip(cs1) 8' cgminer.log | wc -l)
_1_9=$(grep -o 'chip(cs1) 9' cgminer.log | wc -l)
_1_10=$(grep -o 'chip(cs1) 10' cgminer.log | wc -l)
_1_11=$(grep -o 'chip(cs1) 11' cgminer.log | wc -l)
_2_1=$(grep -o 'chip(cs2) 1' cgminer.log | wc -l)
_2_2=$(grep -o 'chip(cs2) 2' cgminer.log | wc -l)
_2_3=$(grep -o 'chip(cs2) 3' cgminer.log | wc -l)
_2_4=$(grep -o 'chip(cs2) 4' cgminer.log | wc -l)
_2_5=$(grep -o 'chip(cs2) 5' cgminer.log | wc -l)
_2_7=$(grep -o 'chip(cs2) 7' cgminer.log | wc -l)
_2_8=$(grep -o 'chip(cs2) 8' cgminer.log | wc -l)
_2_9=$(grep -o 'chip(cs2) 9' cgminer.log | wc -l)
_2_10=$(grep -o 'chip(cs2) 10' cgminer.log | wc -l)
_2_11=$(grep -o 'chip(cs2) 11' cgminer.log | wc -l)
_3_1=$(grep -o 'chip(cs3) 1' cgminer.log | wc -l)
_3_2=$(grep -o 'chip(cs3) 2' cgminer.log | wc -l)
_3_3=$(grep -o 'chip(cs3) 3' cgminer.log | wc -l)
_3_4=$(grep -o 'chip(cs3) 4' cgminer.log | wc -l)
_3_5=$(grep -o 'chip(cs3) 5' cgminer.log | wc -l)
_3_7=$(grep -o 'chip(cs3) 7' cgminer.log | wc -l)
_3_8=$(grep -o 'chip(cs3) 8' cgminer.log | wc -l)
_3_9=$(grep -o 'chip(cs3) 9' cgminer.log | wc -l)
_3_10=$(grep -o 'chip(cs3) 10' cgminer.log | wc -l)
_3_11=$(grep -o 'chip(cs3) 11' cgminer.log | wc -l)
_4_1=$(grep -o 'chip(cs4) 1' cgminer.log | wc -l)
_4_2=$(grep -o 'chip(cs4) 2' cgminer.log | wc -l)
_4_3=$(grep -o 'chip(cs4) 3' cgminer.log | wc -l)
_4_4=$(grep -o 'chip(cs4) 4' cgminer.log | wc -l)
_4_5=$(grep -o 'chip(cs4) 5' cgminer.log | wc -l)
_4_7=$(grep -o 'chip(cs4) 7' cgminer.log | wc -l)
_4_8=$(grep -o 'chip(cs4) 8' cgminer.log | wc -l)
_4_9=$(grep -o 'chip(cs4) 9' cgminer.log | wc -l)
_4_10=$(grep -o 'chip(cs4) 10' cgminer.log | wc -l)
_4_11=$(grep -o 'chip(cs4) 11' cgminer.log | wc -l)
_5_1=$(grep -o 'chip(cs5) 1' cgminer.log | wc -l)
_5_2=$(grep -o 'chip(cs5) 2' cgminer.log | wc -l)
_5_3=$(grep -o 'chip(cs5) 3' cgminer.log | wc -l)
_5_4=$(grep -o 'chip(cs5) 4' cgminer.log | wc -l)
_5_5=$(grep -o 'chip(cs5) 5' cgminer.log | wc -l)
_5_7=$(grep -o 'chip(cs5) 7' cgminer.log | wc -l)
_5_8=$(grep -o 'chip(cs5) 8' cgminer.log | wc -l)
_5_9=$(grep -o 'chip(cs5) 9' cgminer.log | wc -l)
_5_10=$(grep -o 'chip(cs5) 10' cgminer.log | wc -l)
_5_11=$(grep -o 'chip(cs5) 11' cgminer.log | wc -l)
echo -e "Board \t1 \t2 \t3 \t4 \t5 \t6" | tee chiperror.rep
echo -e "Chip 1 \t$_0_1 \t$_1_1 \t$_2_1 \t$_3_1 \t$_4_1 \t$_5_1" | tee chiperror.rep
echo -e "Chip 2 \t$_0_2 \t$_1_2 \t$_2_2 \t$_3_2 \t$_4_2 \t$_5_2" | tee chiperror.rep
echo -e "Chip 3 \t$_0_3 \t$_1_3 \t$_2_3 \t$_3_3 \t$_4_3 \t$_5_3" | tee chiperror.rep
echo -e "Chip 4 \t$_0_4 \t$_1_4 \t$_2_4 \t$_3_4 \t$_4_4 \t$_5_4" | tee chiperror.rep
echo -e "Chip 5 \t$_0_5 \t$_1_5 \t$_2_5 \t$_3_5 \t$_4_5 \t$_5_5" | tee chiperror.rep
echo -e "Chip 6 \t$_0_7 \t$_1_7 \t$_2_7 \t$_3_7 \t$_4_7 \t$_5_7" | tee chiperror.rep
echo -e "Chip 7 \t$_0_8 \t$_1_8 \t$_2_8 \t$_3_8 \t$_4_8 \t$_5_8" | tee chiperror.rep
echo -e "Chip 8 \t$_0_9 \t$_1_9 \t$_2_9 \t$_3_9 \t$_4_9 \t$_5_9" | tee chiperror.rep
echo -e "Chip 9 \t$_0_10 \t$_1_10 \t$_2_10 \t$_3_10 \t$_4_10 \t$_5_10" | tee chiperror.rep
echo -e "Chip10 \t$_0_11 \t$_1_11 \t$_2_11 \t$_3_11 \t$_4_11 \t$_5_11" | tee chiperror.rep
exit 0
Board 1 2 3 4 5 6
Chip 1 21 20 14 35 32 12
Chip 2 7 15 4 14 9 21
Chip 3 0 1 5 2 7 8
Chip 4 0 13 2 5 9 4
Chip 5 0 2 16 3 1 9
Chip 6 7 18 8 9 8 8
Chip 7 6 35 8 10 21 10
Chip 8 7 8 10 20 8 11
Chip 9 8 11 8 16 13 4
Chip10 3 3 3 7 0 6