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.
f = open(“keys.txt”,”r”)
even = ["0","2","4","6","8","A","C","E","a","c","e"]
for line in f:
public_key_u=line
public_key_x,public_key_y = public_key_u[2:67],public_key_u[67:132]
if public_key_y[len(public_key_y)-1] in even:
hex_compressed_public_key = "02"+public_key_x
else:
hex_compressed_public_key = "03"+public_key_x
x = open(“compressedkeys.txt”,”a”)
x.write(hex_compressed_public_key +”\n”)
x.close()
0489158b199bec930e2d10f0c16e214571c0c17287f0ee93193ca385b79135db3faab396827dea71071568548e9ddc0ffdefe649db9b8601e3db79a8d1e91c0797
03489158b199bec930e2d10f0c16e214571c0c17287f0ee93193ca385b79135db3f
0343b45bca0293982b4d153883d263faae87e84b0c32bf8c575e5ac178ee280cd0d
034970707052f31de53e71ee5d2d447875480f407ab21c3ff0669ca928867ed5a26
0346c58a6f5bf387410c5e4cdb1bb7ae5a7f72eb596177263fa8cb427e96ad4ea4f
034c7d25d6f26b53e203b9fa9c7fed9f4c19dbefc5d358a07e2df04f4cf2820df4d
034450b1a2b2bec54481f9d2530eda02bc09b35c7a0a1d6919bf7334076b2d3dc96
0343bd6058a838c0286871c85ed6a19a9b5426889b677add211311a462e658a92f9
03432bbbdb5af831a04132dcc7c51d225c63545df945b81c55b8d7dd34140c572a3
03436b46a4630b0f61fdebb54128d94a495832632d28888159056279485e5fbdf35
0341d248cb03604517597b5d777ece3460463987f8261122ada571707e85b9dfec3
0340fdb2de47e0d9ce1bffbddcf5c0ecac36b0df4162329c144ff458dc918d506c5
034c94755cf4e40f3ed21102b47eb33aa3e00c752484f49624a444806ff09a61123
File "compressed.py", line 5
f = open(“keys.txt”,”r”)
^
SyntaxError: invalid syntax
import bitcoin
f = open(“keys.txt”,”r”)
even = ["0","2","4","6","8","A","C","E","a","c","e"]
for line in f:
public_key_u=line
public_key_x,public_key_y = public_key_u[1:66],public_key_u[66:131]
if len(public_key_x) != len(public_key_y):
print("Error, jackg messed up the maths!")
break
if public_key_y[len(public_key_y)-1] in even:
hex_compressed_public_key = "02"+public_key_x
else:
hex_compressed_public_key = "03"+public_key_x
x = open(“compressedkeys.txt”,”a”)
x.write(hex_compressed_public_key +”\n”)
x.close()