Search content
Sort by

Showing 20 of 24 results by nxtar
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DRS]Denarius|Scrypt|NoIPO|Exchanges|Games|Giveaways|No Block Halving|
by
nxtar
on 14/06/2014, 18:26:32 UTC
http://www.getcoin2.com/faucets/drs/

Getcoin2 Faucet has been updated (for a while now) please update the OP

Thanks!
Post
Topic
Board Investor-based games
Re: btc-arbs.com - Update: dead HYIP, admin. made tiny % of refund, still long way
by
nxtar
on 10/06/2014, 03:15:05 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [DB][ANN] 凸 (◣_◢) 凸 ϟϟϟDISTROBLITZϟϟϟ OUT NOW! TIPBOT READY, IRC FOR FREE DB!
by
nxtar
on 22/05/2014, 23:26:47 UTC
Tip bot is raining DB ... come get some:https://kiwiirc.com/client/irc.freenode.net/#distroblitz
Post
Topic
Board Beginners & Help
Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff
by
nxtar
on 21/05/2014, 04:30:44 UTC
I have tried all I know to get the fcgi module working under apache 2.4.7 Ubuntu 14.04

Here is my /etc/apache2/sites-available/abe.conf
Code:

        ServerName chain.distroblitz.co.in
        Alias /static/ /usr/local/lib/python2.7/dist-packages/Abe/htdocs
        Alias /robots.txt /usr/local/lib/python2.7/dist-packages/Abe/htdocs/robots.txt
        Alias /favicon.ico /usr/local/lib/python2.7/dist-packages/Abe/htdocs/favicon.ico
        Alias / /usr/lib/cgi-bin/abe.fcgi

       
        Order allow,deny
        Allow from all
        Require all granted
       

       
        Order allow,deny
        Allow from all
        Require all granted
       

        # Raise this if you get server errors mentioning "mod_fcgid:
        # read data timeout in 40 seconds"
        #FcgidIOTimeout 40

        # Uncomment to log Abe requests.
        ErrorLog /var/log/abe_error.log
        LogLevel info
        CustomLog /var/log/abe_access.log combined



I have checked filesystem permissions and I am able to run the fcgi with
Code:
sudo -u www-data /usr/lib/cgi-bin/abe.fcgi
The output when run from the command line generates errors which I assume are caused by not running it with fcgi
Code:
Abe initialized.
WSGIServer: missing FastCGI param REQUEST_METHOD required by WSGI!
WSGIServer: missing FastCGI param SERVER_NAME required by WSGI!
WSGIServer: missing FastCGI param SERVER_PORT required by WSGI!
WSGIServer: missing FastCGI param SERVER_PROTOCOL required by WSGI!
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py", line 558, in run
    protocolStatus, appStatus = self.server.handler(self)
  File "/usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py", line 1118, in handler
    result = self.application(environ, start_response)
  File "/usr/local/lib/python2.7/dist-packages/Abe/abe.py", line 191, in __call__
    if fix_path_info(env):
  File "/usr/local/lib/python2.7/dist-packages/Abe/abe.py", line 2059, in fix_path_info
    if pi[-1] != '/' and env['PATH_INFO'][-1] == '/':
IndexError: string index out of range
Content-Type: text/html




 

 
<type 'exceptions.IndexError'>
>
>Python 2.7.6: /usr/bin/python
Wed May 21 00:27:41 2014


A problem occurred in a Python script.  Here is the sequence of
function calls leading up to the error, in the order they occurred.









 /usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py in run(self=<flup.server.fcgi_base.CGIRequest object>)
    556         """Runs the handler, flushes the streams, and ends the request."""

    557         try:

=>  558             protocolStatus, appStatus = self.server.handler(self)

    559         except:

    560             traceback.print_exc(file=self.stderr)

protocolStatus undefined, appStatus undefined, self = <flup.server.fcgi_base.CGIRequest object>, self.server = [Suspicious link removed]GIServer object>, self.server.handler = <bound method WSGIServer.handler of [Suspicious link removed]GIServer object>>








 /usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py in [Suspicious link removed]GIServer object>, req=<flup.server.fcgi_base.CGIRequest object>)
   1116         try:

   1117             try:

=> 1118                 result = self.application(environ, start_response)

   1119                 try:

   1120                     for data in result:

result = None, self = [Suspicious link removed]GIServer object>, self.application = <__main__.Abe instance>, environ = {'HOME': '/root', 'LANG': 'en_US.UTF-8', 'LOGNAME': 'distroblitz', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:d...*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:', 'MAIL': '/var/mail/distroblitz', 'PATH': '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'PATH_INFO': '', 'PWD': '/home/distroblitz', 'PYTHONUNBUFFERED': '1', 'QUERY_STRING': '', ...}, start_response = <function start_response>








 /usr/local/lib/python2.7/dist-packages/Abe/abe.py in __call__(abe=<__main__.Abe instance>, env={'HOME': '/root', 'LANG': 'en_US.UTF-8', 'LOGNAME': 'distroblitz', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:d...*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:', 'MAIL': '/var/mail/distroblitz', 'PATH': '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'PATH_INFO': '', 'PWD': '/home/distroblitz', 'PYTHONUNBUFFERED': '1', 'QUERY_STRING': '', ...}, start_response=<function start_response>)
    189             page['params'] = urlparse.parse_qs(env['QUERY_STRING'])

    190 

=>  191         if fix_path_info(env):

    192             abe.log.debug("fixed path_info")

    193             return redirect(page)

global fix_path_info = <function fix_path_info>, env = {'HOME': '/root', 'LANG': 'en_US.UTF-8', 'LOGNAME': 'distroblitz', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:d...*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:', 'MAIL': '/var/mail/distroblitz', 'PATH': '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'PATH_INFO': '', 'PWD': '/home/distroblitz', 'PYTHONUNBUFFERED': '1', 'QUERY_STRING': '', ...}








 /usr/local/lib/python2.7/dist-packages/Abe/abe.py in fix_path_info(env={'HOME': '/root', 'LANG': 'en_US.UTF-8', 'LOGNAME': 'distroblitz', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:d...*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:', 'MAIL': '/var/mail/distroblitz', 'PATH': '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'PATH_INFO': '', 'PWD': '/home/distroblitz', 'PYTHONUNBUFFERED': '1', 'QUERY_STRING': '', ...})
   2057     pi = env['PATH_INFO']

   2058     pi = posixpath.normpath(pi)

=> 2059     if pi[-1] != '/' and env['PATH_INFO'][-1] == '/':

   2060         pi += '/'

   2061     if pi == env['PATH_INFO']:

pi = '.', env = {'HOME': '/root', 'LANG': 'en_US.UTF-8', 'LOGNAME': 'distroblitz', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:d...*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:', 'MAIL': '/var/mail/distroblitz', 'PATH': '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'PATH_INFO': '', 'PWD': '/home/distroblitz', 'PYTHONUNBUFFERED': '1', 'QUERY_STRING': '', ...}

<type 'exceptions.IndexError'>: string index out of range

      args =
('string index out of range',)

      message =
'string index out of range'




any advice is greatly appreciated
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [YC] YellowCoin ★★ 7 Day PoW/Pure PoS ★★ Let's color the MOON !!!
by
nxtar
on 23/04/2014, 01:33:41 UTC
Thanks for funding the YellowCoin faucet.

http://www.getcoin2.com/faucets/yc/

Post
Topic
Board Announcements (Altcoins)
Re: [ANN] JUGGALO COIN (JUG) NOW X11-JUST LAUNCHED! Seen on CNET, Slate.com, Gizmodo
by
nxtar
on 22/04/2014, 00:05:45 UTC
Juggalocoin faucet is dripping!

www.getcoin2.com faucets re-target based on demand ... the sooner you start tapping the more JUGs you can get!

http://www.getcoin2.com/faucets/jug/
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DFQ] DafuqCoin | NO Premine | NO IPO | ★Launch Tommorow !★
by
nxtar
on 19/04/2014, 03:25:13 UTC
Let me know if you are in need of a faucet....
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][PI] piCoin - The Math Cryptocurrency - Just Launched, Now on 3 Exchanges
by
nxtar
on 18/04/2014, 23:55:46 UTC
looks like the block chain is stuck at a difficulty of 4.575

4449   2014-04-16 08:39:20   1   314159   4.575   1397693391   18.676   47.5372   7.56919%
4448   2014-04-16 08:39:11   1   314159   1.777   1397379232   18.6801   47.5371   7.56923%
4447   2014-04-16 08:37:09   1   314159   0.441   1397065073   18.6829   47.5357   7.56975%
4446   2014-04-16 08:36:09   1   314159   0.71   1396750914   18.6864   47.535   7.57001%
Post
Topic
Board Announcements (Altcoins)
Re: [PRE-ANN][PURE POS]Information Coin (ITC) Fair & Free distibution
by
nxtar
on 16/04/2014, 20:47:59 UTC
This would be a great addition to my multi-faucet page http:/www.getcoin2.com

Please PM or email me if you are interested.

I have added the meta description to the site.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]BTCtalkcoin [BCC] Legal Airdrop - 4 Exchanges - IPO 1 closes in 12 hrs
by
nxtar
on 16/04/2014, 19:36:25 UTC
We will be adding a BCC faucet just before launch at http://www.getcoin2.com. Sign up today and start earning when the faucet opens!

We have also invested in the IPO to support this project!
Post
Topic
Board Announcements (Altcoins)
Re: [PRE][ANN][AC]AsiaCoin - Launch in 8 hrs - PoS|No IPO|Zero Premine
by
nxtar
on 16/04/2014, 10:53:48 UTC
AC faucet has been added to www.getcoin2.com

We are ready for launch http://www.getcoin2.com/faucets/ac/
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ★★KillerCoin★★ | KGW+Bonus blocks | Exchanges! (100k KILR = 0.018 BTC) ★
by
nxtar
on 07/04/2014, 03:12:31 UTC
KillerCoin faucet has been added to GetCoin2.com
http://www.getcoin2.com/faucets/kilr/
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ★★KillerCoin★★ | KGW+Bonus blocks | Exchanges! (100k KILR = 0.018 BTC) ★
by
nxtar
on 04/04/2014, 06:47:22 UTC
Whoa the name alone is Killer
The bonus blocks are awesome
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [BLTZ] [IPO Hybrid] BlitzCoin | proof of concept coin | pure speculative
by
nxtar
on 01/04/2014, 07:19:40 UTC
Blitz coin faucet has been added: http://www.getcoin2.com/faucets/bltz/
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [DIEM] CarpeDiemCoin Ҩ Halves Daily Ҩ 48 Seconds for FULL CONFIRMATION
by
nxtar
on 25/03/2014, 04:26:46 UTC
Great giveaways on polo tonight.... thanks for the DIEM! Smiley
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] BlackCoin (BC) | on exchanges | PoS | No premine
by
nxtar
on 24/03/2014, 06:13:50 UTC
Wallet stopped syncing ... is this the block chain problem that rat4 is working on (timestamps):

Block   Approx. Time   Transactions   Value Out   Difficulty   Outstanding   Average Age   Chain Age   % CoinDD
38424   2014-03-24 03:33:34   2   17.63912408   0.126   74487032.45195633   7.3703   27.8983   70.7162%
38423   2014-03-24 03:42:02   2   60.13794739   0.24   74487032.44051188   7.37618   27.9042   70.6996%
38422   2014-03-24 03:33:19   3   111397.63997077   0.299   74487032.40256449   7.37015   27.8981   70.7166%
Post
Topic
Board Marketplace
Topic OP
GetCoin2.com Public Beta
by
nxtar
on 22/03/2014, 22:38:28 UTC
Our faucet code is up now we need some people to start using the site.

Please signup http://www.getcoin2.com and start using the faucets.

We currently have 3 faucets with daily payout. DOGE BELI and PI.

Moving forward we will be adding more faucets. Is there a coin you think we should add?

After we get some activity on the site we will configure the faucets to retarget to a specific date, no more dry faucets.

Referral support is coming. We welcome any input.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SHA]SHACoin - First pure Pos SHA256 based coin - On Exchange Now
by
nxtar
on 21/03/2014, 05:50:40 UTC
My little 333/MHs USB feels useful with this coin ... for the next few days anyways.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][MINT]Mintcoin, energy saving coin with a fast distribution *block explorer
by
nxtar
on 14/03/2014, 00:01:14 UTC
Okay guys i need some help,
when i try to open my wallet i get :
"
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application;s support team for more information.
"


What is the problem here ? How to fix that ?


I tried several different things to fix this error.
Ultimately here's what seems to have worked for me ... time will tell:
  • open %APPDATA% folder ... rename MintCoin folder
  • create new MintCoin folder
  • copy backup wallet.dat file into the new MintCoin folder
  • create mintcoin.conf file to include rpc information (see below) mintcoind will throw an error if it's not there
  • start mintcoind.exe from the command line and let it rebuild the local blockchain database
  • wait
  • wait some more
  • wait just a little more
  • close mintcoind.exe with a Ctrl+C
  • start mintcoin as usual
Code:
rpcuser=somemintcoinuser
rpcpassword=putyourfavoritepasswordhere

Hope this helps...
Post
Topic
Board Beginners & Help
Re: My Wallet backup to USB drive script
by
nxtar
on 16/02/2014, 06:16:40 UTC
I can't say that it's the best method for anyone. But some backup is better than none.