great:)
http://ck.kolivas.org/apps/cgminer/avalon/20130813-1/
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.
(100*hw/(diffaccepted+hw))
(100*hw/(diffaccepted+hw))
--- cgminer.lua-20130813-1 Tue Aug 13 11:03:30 2013
+++ cgminer.lua-benturas Tue Aug 13 11:01:01 2013
@@ -39,6 +39,8 @@
for line in summary do
local elapsed, mhsav, foundblocks, getworks, accepted, rejected, hw, utility, discarded, stale, getfailures, localwork, remotefailures, networkblocks, totalmh, wu, diffaccepted, diffrejected, diffstale, bestshare = line:match("Elapsed=(%d+),MHS av=([%d%.]+),Found Blocks=(%d+),Getworks=(%d+),Accepted=(%d+),Rejected=(%d+),Hardware Errors=(%d+),Utility=([%d%.]+),Discarded=(%d+),Stale=(%d+),Get Failures=(%d+),Local Work=(%d+),Remote Failures=(%d+),Network Blocks=(%d+),Total MH=([%d%.]+),Work Utility=([%d%.]+),Difficulty Accepted=([%d]+)%.%d+,Difficulty Rejected=([%d]+)%.%d+,Difficulty Stale=([%d]+)%.%d+,Best Share=(%d+)")
if elapsed then
+ local mhw = string.format("%d(%1.2f%%)",hw,(100*hw/(diffaccepted+diffrejected+hw)));
+ local mrj = string.format("%d(%1.2f%%)",rejected,(100*rejected/(accepted+rejected)));
local str
local days
local h
@@ -72,8 +74,8 @@
['foundblocks'] = foundblocks,
['getworks'] = getworks,
['accepted'] = accepted,
- ['rejected'] = rejected,
- ['hw'] = hw,
+ ['rejected'] = mrj,
+ ['hw'] = mhw,
['utility'] = utility,
['discarded'] = discarded,
['stale'] = stale,