Re: Implementation bug prior to 0.3.6

BTW, an important feature of these mailing lists is that anyone can post…  but only the “vendor security” group can read the posts. Thus, it is easy for an outsider with a real security issue to provide detailed information to vendor-sec@myopensourceproject.org, while preventing unscrupulous people from reading the sensitive information. […]

Read more

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
1 2 3 4 15