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.
393406 Fri Jun 07 2013 11:54:45 GMT+0200 (West-Europa (zomertijd)) 758b727c83164ca2715e09b20c9874294ecc0412775858a5d5607124a629858a
393404 Fri Jun 07 2013 11:03:37 GMT+0200 (West-Europa (zomertijd)) 2c71bb685af85ca26234a7eb6703f818ae5d2797a175e19f69988e2194f43596
393403 Fri Jun 07 2013 10:38:29 GMT+0200 (West-Europa (zomertijd)) dcd92479021b5b7258c1887c0804484bf9612a7d01e38a25fa8a6d6a784b3156
393402 Fri Jun 07 2013 10:28:30 GMT+0200 (West-Europa (zomertijd)) 23ac3481742e9e0e4bfeb359d72cd5ba9dfb845279f48314987624c96731435c
393401 Fri Jun 07 2013 10:26:58 GMT+0200 (West-Europa (zomertijd)) 24a8db9c36a2efed8b833e8ee9d57c9879ff49f711e86ce04a90f581b5f6127d
393399 Fri Jun 07 2013 09:47:46 GMT+0200 (West-Europa (zomertijd)) 2cec2ffbbb0d63800802b20948637d03d0acc8ab694a87412d608ad12a6ecbd2
393398 Fri Jun 07 2013 09:41:39 GMT+0200 (West-Europa (zomertijd)) 7d0999ee80d028e82932e56cf2244d4a2d17d72e753206f97200b856b2ffe8a4
2013-06-06 21:52:31.282851 > exceptions.NameError: global name 'exp' is not defined
[P]ool management [G]PU management [S]ettings [D]isplay options [Q]uit
GPU 0: 72.0C 4056RPM | 388.3K/359.8Kh/s | A:392 R:268 HW:0 U: 6.58/m I:19
GPU 1: 72.0C 26% | 169.8K/173.2Kh/s | A:109 R:193 HW:0 U: 1.83/m I:19
GPU 2: 73.0C 69% | 169.9K/173.2Kh/s | A:101 R:190 HW:0 U: 1.70/m I:19
[Q]ueue: 0
[S]cantime: 1
[E]xpiry: 1
[P]ool management [G]PU management [S]ettings [D]isplay options [Q]uit
GPU 0: 73.0C 3761RPM | 390.3K/343.8Kh/s | A: 12 R: 1 HW:0 U: 3.09/m I:19
GPU 1: 73.0C 23% | 182.5K/166.3Kh/s | A: 6 R: 3 HW:0 U: 1.54/m I:19
GPU 2: 74.0C 60% | 182.4K/166.3Kh/s | A: 6 R: 2 HW:0 U: 1.54/m I:19
Total block value: 10.438951
def get_subsidy(bnTarget):
import math
return int(((0.2 * math.exp(bnTarget/ 250) / pow(bnTarget, -0.25)) * 50) * 1000000)
nets = dict(
quantumcoin=math.Object(
SUBSIDY_FUNC=lambda target: get_subsidy(target),
),
2013-06-06 21:52:31.282851 > exceptions.NameError: global name 'exp' is not defined
[P]ool management [G]PU management [S]ettings [D]isplay options [Q]uit
GPU 0: 72.0C 4056RPM | 388.3K/359.8Kh/s | A:392 R:268 HW:0 U: 6.58/m I:19
GPU 1: 72.0C 26% | 169.8K/173.2Kh/s | A:109 R:193 HW:0 U: 1.83/m I:19
GPU 2: 73.0C 69% | 169.9K/173.2Kh/s | A:101 R:190 HW:0 U: 1.70/m I:19
[Q]ueue: 0
[S]cantime: 1
[E]xpiry: 1
[P]ool management [G]PU management [S]ettings [D]isplay options [Q]uit
GPU 0: 73.0C 3761RPM | 390.3K/343.8Kh/s | A: 12 R: 1 HW:0 U: 3.09/m I:19
GPU 1: 73.0C 23% | 182.5K/166.3Kh/s | A: 6 R: 3 HW:0 U: 1.54/m I:19
GPU 2: 74.0C 60% | 182.4K/166.3Kh/s | A: 6 R: 2 HW:0 U: 1.54/m I:19
def get_subsidy(nCap, nMaxSubsidy, bnTarget):
bnLowerBound = 0.01
bnUpperBound = bnSubsidyLimit = nMaxSubsidy
bnTargetLimit = 0x00000fffff000000000000000000000000000000000000000000000000000000
while bnLowerBound + 0.01 <= bnUpperBound:
bnMidValue = (bnLowerBound + bnUpperBound) / 2
if pow(bnMidValue, nCap) * bnTargetLimit > pow(bnSubsidyLimit, nCap) * bnTarget:
bnUpperBound = bnMidValue
else:
bnLowerBound = bnMidValue
nSubsidy = round(bnUpperBound, 6)
if nSubsidy > bnUpperBound:
nSubsidy = nSubsidy - 0.000001
return int(nSubsidy * 1000000)
def get_subsidy(bnTarget):
return int(((0.2 * exp(bnTarget/ 250) / pow(bnTarget, -0.25)) * 50) * 1000000)
SUBSIDY_FUNC=lambda target: int(((0.2 * exp(bnTarget/ 250) / pow(bnTarget, -0.25)) * 50) * 1000000),
lambda height: 1*500000000 >> (height + 1)//840000