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.
[2014-05-08 13:29:00] 1: Dispatching new work to GC3355 cores (0x869cbba6)
[2014-05-08 13:29:00] 3: Dispatching new work to GC3355 cores (0x869cbba6)
[2014-05-08 13:29:00] 2: Dispatching new work to GC3355 cores (0x869cbba6)
[2014-05-08 13:29:00] 0: Dispatching new work to GC3355 cores (0x869cbba6)
[2014-05-08 13:29:04] 2@38: Work_id differs (869ce392 != 869cbba6)
[2014-05-08 13:29:14] 3@2: Work_id differs (869ce392 != 869cbba6)
[2014-05-08 13:29:30] 3@1: Work_id differs (869ce392 != 869cbba6)
[2014-05-08 13:29:33] 2@32: Work_id differs (869ce392 != 869cbba6)
[2014-05-08 13:29:50] 1@1: Work_id differs (869ce392 != 869cbba6)
[2014-05-08 13:29:50] 3@1: Work_id differs (869ce392 != 869cbba6)
[2014-05-08 13:29:51] New job_id: 246 Diff: 850
[2014-05-08 13:29:51] Stratum detected new block
[2014-05-08 13:29:51] 0: Dispatching new work to GC3355 cores (0x86cf58ea)
[2014-05-08 13:29:52] 2: Dispatching new work to GC3355 cores (0x86cf58ea)
[2014-05-08 13:29:52] 3: Dispatching new work to GC3355 cores (0x86cf58ea)
[2014-05-08 13:29:52] 1: Dispatching new work to GC3355 cores (0x86cf58ea)
[2014-05-08 13:30:08] 1@2: Work_id differs (86cf12a0 != 86cf58ea)
[2014-05-08 13:30:24] 1@0: Work_id differs (86cf12a0 != 86cf58ea)
[2014-05-08 13:30:51] New job_id: 247 Diff: 850
[2014-05-08 13:30:54] 1@3: Work_id differs (86cf12a0 != 86cf58ea)
[2014-05-08 13:30:58] 1@0: Work_id differs (86cf12a0 != 86cf58ea)
[2014-05-08 13:31:06] New job_id: 248 Diff: 850
[2014-05-08 13:31:06] Stratum detected new block
[2014-05-08 13:31:06] 0: Dispatching new work to GC3355 cores (0x871a181e)
[2014-05-08 13:31:06] 3: Dispatching new work to GC3355 cores (0x871a181e)
[2014-05-08 13:31:06] 1: Dispatching new work to GC3355 cores (0x871a181e)
[2014-05-08 13:31:07] 2: Dispatching new work to GC3355 cores (0x871a181e)
[2014-05-08 13:32:06] New job_id: 249 Diff: 850
[2014-05-08 13:32:07] 3@1: Work_id differs (871aa570 != 871a181e)
sudo apt-get install lighttpd php5-cgi
sudo service lighttpd force-reload
sudo lighty-enable-mod fastcgi
sudo lighty-enable-mod fastcgi-php
sudo service lighttpd force-reload
if(!($fp = fsockopen("127.0.0.1", 4028, $errno, $errstr, 0)))
{
echo("Failed to open socket");
}
stream_set_blocking($fp, false);
$out = json_encode(array("get" => "stats"))."\n";
fwrite($fp, $out);
usleep(100000);
$out = "";
while(!feof($fp))
{
if(!($str = fgets($fp, 2048))) break;
$out .= $str;
}
fclose($fp);
$arr = json_decode($out,true);
$cm_string = "--gc3355-freq=";
foreach(array_keys($arr['devices']) as $devices){
foreach(array_keys($arr['devices'][$devices]['chips']) as $chips){
$fr = $arr['devices'][$devices]['chips'][$chips]['frequency'];
$cm_string = $cm_string."/dev/".$devices.":".$fr.":".$chips.",";
}
}
echo rtrim($cm_string,",");
--gc3355-freq=/dev/ttyACM0:875:0,/dev/ttyACM0:875:1,/dev/ttyACM0:850:2,/dev/ttyACM0:875:3,......etc
minerd -o stratum+tcp://pool.com -u USERNAME -p PASSWORD --gc3355-autotune --gc3355=`ls -m /dev/ttyACM* | sed -e 's/, /,/g' | tr -d '\n'` --freq=1200
sudo ls -m /dev/ttyACM*
ls: cannot access /dev/ttyACM*: No such file or directory
minerd -o stratum+tcp://pool.com -u USERNAME -p PASSWORD --gc3355-autotune --gc3355=`ls -m /dev/ttyACM* | sed -e 's/, /,/g' | tr -d '\n'` --freq=1200
sudo ls -m /dev/ttyACM*
ls: cannot access /dev/ttyACM*: No such file or directory