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.
#!/usr/bin/env python
import sys
import os
os.system("killall -s SIGUSR1 pushpoold")
#include
int main(void)
{
system("ps -ef | grep pushpoold | grep -v grep | awk '{print $2}' | xargs kill -s SIGUSR1 > /dev/null 2> /dev/null");
return 0;
}
gcc -o blocknotify blocknotify.c
chown pushpool:pushpool ./blocknotify
chmod ug+s ./blocknotify
blocknotify='/opt/blocknotify'
#!/usr/bin/env python
import sys
import os
os.system("killall -s SIGUSR1 pushpoold")
define EASY_TARGET "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000"
/* password database authentication check */
pass_db = pwdb_lookup(user);
if (!pass_db || (strcmp(pass, pass_db) && *pass_db != '\0'))
goto out;
rc = true;
strncpy(username_out, user, 64);
username_out[64] = 0;
out:
free(pass_db);
free(bin);
free(t_type);
free(t_b64);
free(t_userpass);
return rc;
def got_data(self):
while True:
if len(self.recvbuf) < 4:
return
if self.recvbuf[:4] != "\xFC\xC1\xB7\xDC":
raise ValueError("got garbage %s" % repr(self.recvbuf))
if self.ver_recv < 209:
if len(self.recvbuf) < 4 + 12 + 4:
return
def send_message(self, message, pushbuf=False):
if self.state != "connected" and not pushbuf:
return
print "send %s" % repr(message)
command = message.command
data = message.serialize()
tmsg = "\xFC\xC1\xB7\xDC"
tmsg += command
tmsg += "\x00" * (12 - len(command))
tmsg += struct.pack("
#!/usr/bin/env python
from jsonrpc.authproxy import AuthServiceProxy
import sys
import os
access = AuthServiceProxy("http://RPCUSER:[email protected]:8332")
blockcount = access.getblockcount()
from time import sleep
while(True):
newcount = access.getblockcount()
if newcount > blockcount:
os.system("killall -s SIGUSR1 pushpoold")
sys.stdout.write("B")
sys.stdout.flush()
blockcount = newcount
sleep(1)
else:
sleep(0.1)