Re: Difficulty

http://nullvoid.org/bitcoin/difficultiez.php Code: <? header(“Content-type: text/html”); require_once ‘jsonRPCClient.php’; $data=new jsonRPCClient(‘http://127.0.0.1:8332’); $blockcount = $data->getblockcount(); $now = date(“U”); $blockfile = “blockdata”; $data = file($blockfile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); array_pop($data); ?><html>  <head>   <meta http-equiv=”refresh” content=”100000″>  </head>  <body>   <pre> <? function humantime($secs) { if ($secs<0) return false; $m = (int)($secs / 60); $s = $secs % […]

Read more

Re: Bitcoin x86 for Windows

Quote from: BlackEye on July 25, 2010, 22:12:23 I was able to integrate the SHA256 functionality from Crypto++ 5.6.0 into Bitcoin. This is the fastest SHA256 yet using the SSE2 assembly code. Since Bitcoin was sending unaligned data to the block hash function, I had to change the MOVDQA instruction […]

Read more
1 24 25 26 27 28 54