Would that not fall under the share for being a full time Open Source developer? Assuming there were shares given out for the original development? Please don't consider this a vote pro or con... just a question.
- Nova
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.
> Error while calling merged getauxblock on http://127.0.0.1:52332/:
2014-02-07 21:08:51.551955 > Traceback (most recent call last):
2014-02-07 21:08:51.552099 > File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 577, in _runCallbacks
2014-02-07 21:08:51.552274 > current.result = callback(current.result, *args, **kw)
2014-02-07 21:08:51.552390 > File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1155, in gotResult
2014-02-07 21:08:51.552509 > _inlineCallbacks(r, g, deferred)
2014-02-07 21:08:51.552615 > File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1097, in _inlineCallbacks
2014-02-07 21:08:51.552736 > result = result.throwExceptionIntoGenerator(g)
2014-02-07 21:08:51.552848 > File "/usr/lib/python2.7/dist-packages/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-02-07 21:08:51.552971 > return g.throw(self.type, self.value, self.tb)
2014-02-07 21:08:51.553082 > ------
2014-02-07 21:08:51.553188 > File "/home/amit/p2pool/p2pool/util/deferral.py", line 41, in f
2014-02-07 21:08:51.553301 > result = yield func(*args, **kwargs)
2014-02-07 21:08:51.553409 > File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1097, in _inlineCallbacks
2014-02-07 21:08:51.553530 > result = result.throwExceptionIntoGenerator(g)
2014-02-07 21:08:51.553640 > File "/usr/lib/python2.7/dist-packages/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-02-07 21:08:51.553768 > return g.throw(self.type, self.value, self.tb)
2014-02-07 21:08:51.553879 > File "/home/amit/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-02-07 21:08:51.553994 > raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-02-07 21:08:51.554117 > p2pool.util.jsonrpc.NarrowError: -1 CreateNewBlock() : ConnectBlock failed
ThreadRPCServer method=getinfo
keypool reserve 2
keypool return 2
CTxMemPool::accept() : accepted 5912842f1c77966b57d9976f6b1db1f208dee045f06dd8bc4ff21249e86a25fe (poolsz 1)
received getdata for: tx 5912842f1c77966b57d9976f6b1db1f208dee045f06dd8bc4ff21249e86a25fe
received getdata for: tx 5912842f1c77966b57d9976f6b1db1f208dee045f06dd8bc4ff21249e86a25fe
Flushed 1755 addresses to peers.dat 80ms
keypool reserve 2
ERROR: CTransaction::CheckTransaction() : txout.nValue negative
ERROR: CheckBlock() : CheckTransaction failed
daemon=1
rpcuser=
rpcpassword=
port=52333
rpcport=52332
discover=1
listen=1
addnode=198.154.60.183
#!/bin/sh
### BEGIN INIT INFO
# Provides: devcoind
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start Devcoin Daemon
# Description: Run Devcoin Daemon
### END INIT INFO
TITLE=Devcoin
NAME=devcoin
EXEC=devcoind
EXECPATH=/usr/local/bin/$EXEC
BASE=/home/amit/.${NAME}/
CONF=${BASE}${NAME}.conf
CHUID=amit:amit
# Carry out specific functions when asked to by the system
case "$1" in
start)
$EXECPATH -daemon -conf=$CONF -datadir=$BASE
;;
stop)
$EXECPATH stop
;;
*)
echo "Usage: /etc/init.d/$EXEC {start|stop}"
exit 1
;;
esac
exit 0