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.
primecoind signmessage addresshere "Koooooj owns this address"
CC10, 1st kind:
---------------
1324846487162*223#-1, 99 digits, 05/09, Augustin(NewPGen/PFGW)
3462418*151#+5286829397849, 66 digits, 05/04, Alm/Andersen(Primo)
9440733252109*127#-1, 62 digits, 11/08, Augustin(NewPGen/PFGW)
CC10, 1st kind:
---------------
1324846487162*223#-1, 99 digits, 05/09, Augustin(NewPGen/PFGW)
3462418*151#+5286829397849, 66 digits, 05/04, Alm/Andersen(Primo)
9440733252109*127#-1, 62 digits, 11/08, Augustin(NewPGen/PFGW)
CC10, 1st kind:
---------------
1324846487162*223#-1, 99 digits, 05/09, Augustin(NewPGen/PFGW)
3462418*151#+5286829397849, 66 digits, 05/04, Alm/Andersen(Primo)
9440733252109*127#-1, 62 digits, 11/08, Augustin(NewPGen/PFGW)
from jsonrpc import ServiceProxy
import time, json
USER = ''
PASS = ''
PORT = 9912
fname = 'worldrecords.txt'
# Searching for new world records
def main():
ip = '127.0.0.1'
addy = 'http://%s:%s@%s:%i' % (USER,PASS,ip,PORT)
p = ServiceProxy(addy)
# http://users.cybercity.dk/~dsl522332/math/Cunningham_Chain_records.htm
records = {
'1CC06':633,
'2CC06':475,
'1CC07':356,
'2CC07':251,
'1CC08':186,
'2CC08':224,
'1CC09':185,
'2CC09':111,
'1CC0a':99,
'2CC0a':109,
'1CC0b':50,
'2CC0b':63,
'1CC0c':42,
'2CC0c':62,
'1CC0d':39,
'2CC0d':33,
'1CC0e':25,
'2CC0e':33,
'1CC0f':24,
'2CC0f':32,
}
primecoin = {}
data = {}
try:
with open(fname, 'r') as f:
data = json.load(f)
except:
pass
blk = 1
if 'block' in data:
blk = data['block']
if 'records' in data:
records = data['records']
if 'primecoin' in data:
primecoin = data['primecoin']
info = p.getinfo()
height = info['blocks']
while blk <= height:
hsh = p.getblockhash(blk)
block = p.getblock(hsh)
chain = block['primechain'].split('.')[0]
chainlength = int(chain[3:5],16)
origin = block['primeorigin']
digits = len(origin)
if chain in records:
if digits > records[chain]:
print('New World Record!\n Block %i, Chain %s, %i digits (previously %i digits)\n' %
(blk, chain, digits, records[chain]))
records[chain] = digits
primecoin[chain] = digits
else:
if chain not in primecoin:
primecoin[chain] = digits
print('New Chain Type: %s, Block %i, %i digits' % (chain, blk, digits))
elif digits > primecoin[chain]:
primecoin[chain] = digits
print('New Primecoin record: %s, %i digits, Block %i' %
(chain, digits, blk))
blk += 1
data = {
'records': records,
'primecoin': primecoin,
'block': blk
}
with open(fname, 'w') as f:
json.dump(data, f)
print('\n\nCurrent Records')
for chain in records:
print(' %s: %4i' % (chain, records[chain]))
print('\n\nPrimecoin Records')
for chain in primecoin:
print(' %s: %4i' % (chain, primecoin[chain]))
if __name__ == '__main__':
main()
Primality testing 65004063504559525007738276505391185322137155270201199057971076511954045665048965173722209501026611156768988779138868408914387452650147975793533060274322762631 [N-1/N+1, Brillhart-Lehmer-Selfridge]
Running N-1 test using base 3
Running N-1 test using base 7
Running N+1 test using discriminant 19, base 1+sqrt(19)
Calling N-1 BLS with factored part 49.24% and helper 2.29% (150.19% proof)
65004063504559525007738276505391185322137155270201199057971076511954045665048965173722209501026611156768988779138868408914387452650147975793533060274322762631 is prime! (0.0250s+0.0033s)