Bitcoin Forum
October 03, 2025, 08:53:53 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DRS]Denarius|Scrypt|NoIPO|Exchanges|Games|Giveaways|No Block Halving| on: June 14, 2014, 06:26:32 PM
http://www.getcoin2.com/faucets/drs/

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

Thanks!
2  Economy / Investor-based games / Re: btc-arbs.com - Update: dead HYIP, admin. made tiny % of refund, still long way on: June 10, 2014, 03:15:05 AM
Thank you for the refund!

https://blockchain.info/tx/33bd518f3f0211e8a6671baf1de3c1480300ff5920d4b0f609655623a7dbb8df
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DB][ANN] 凸 (◣_◢) 凸 ϟϟϟDISTROBLITZϟϟϟ OUT NOW! TIPBOT READY, IRC FOR FREE DB! on: May 22, 2014, 11:26:47 PM
Tip bot is raining DB ... come get some:https://kiwiirc.com/client/irc.freenode.net/#distroblitz
4  Other / Beginners & Help / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: May 21, 2014, 04:30:44 AM
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:
<VirtualHost *:80>
        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

        <Directory /usr/local/lib/python2.7/dist-packages/Abe/htdocs>
        Order allow,deny
        Allow from all
        Require all granted
        </Directory>

        <Directory /usr/lib/cgi-bin/>
        Order allow,deny
        Allow from all
        Require all granted
        </Directory>

        # 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

</VirtualHost>

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

<body bgcolor="#f0f0f8">
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
<tr bgcolor="#6622aa">
<td valign=bottom>&nbsp;<br>
<font color="#ffffff" face="helvetica, arial">&nbsp;<br><big><big><strong>&lt;type 'exceptions.IndexError'&gt;</strong></big></big></font></td
><td align=right valign=bottom
><font color="#ffffff" face="helvetica, arial">Python 2.7.6: /usr/bin/python<br>Wed May 21 00:27:41 2014</font></td></tr></table>

<p>A problem occurred in a Python script.  Here is the sequence of
function calls leading up to the error, in the order they occurred.</p>
<table width="100%" cellspacing=0 cellpadding=0 border=0>
<tr><td bgcolor="#d8bbff"><big>&nbsp;</big><a href="file:///usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py">/usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py</a> in <strong>run</strong>(self=&lt;flup.server.fcgi_base.CGIRequest object&gt;)</td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;&nbsp;556</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"""Runs&nbsp;the&nbsp;handler,&nbsp;flushes&nbsp;the&nbsp;streams,&nbsp;and&nbsp;ends&nbsp;the&nbsp;request."""<br>
</tt></font></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;&nbsp;557</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try:<br>
</tt></font></td></tr>
<tr><td bgcolor="#ffccee"><tt>=&gt;<small>&nbsp;&nbsp;558</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;protocolStatus,&nbsp;appStatus&nbsp;=&nbsp;self.server.handler(self)<br>
</tt></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;&nbsp;559</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;except:<br>
</tt></font></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;&nbsp;560</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;traceback.print_exc(file=self.stderr)<br>
</tt></font></td></tr>
<tr><td><small><font color="#909090">protocolStatus <em>undefined</em>, appStatus <em>undefined</em>, <strong>self</strong>&nbsp;= &lt;flup.server.fcgi_base.CGIRequest object&gt;, self.<strong>server</strong>&nbsp;= [Suspicious link removed]GIServer object&gt;, self.server.<strong>handler</strong>&nbsp;= &lt;bound method WSGIServer.handler of [Suspicious link removed]GIServer object&gt;&gt;</font></small></td></tr></table>
<table width="100%" cellspacing=0 cellpadding=0 border=0>
<tr><td bgcolor="#d8bbff"><big>&nbsp;</big><a href="file:///usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py">/usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py</a> in [Suspicious link removed]GIServer object&gt;, req=&lt;flup.server.fcgi_base.CGIRequest object&gt;)</td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;1116</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try:<br>
</tt></font></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;1117</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try:<br>
</tt></font></td></tr>
<tr><td bgcolor="#ffccee"><tt>=&gt;<small>&nbsp;1118</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;result&nbsp;=&nbsp;self.application(environ,&nbsp;start_response)<br>
</tt></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;1119</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try:<br>
</tt></font></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;1120</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for&nbsp;data&nbsp;in&nbsp;result:<br>
</tt></font></td></tr>
<tr><td><small><font color="#909090"><strong>result</strong>&nbsp;= None, <strong>self</strong>&nbsp;= [Suspicious link removed]GIServer object&gt;, self.<strong>application</strong>&nbsp;= &lt;__main__.Abe instance&gt;, <strong>environ</strong>&nbsp;= {'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': '', ...}, <strong>start_response</strong>&nbsp;= &lt;function start_response&gt;</font></small></td></tr></table>
<table width="100%" cellspacing=0 cellpadding=0 border=0>
<tr><td bgcolor="#d8bbff"><big>&nbsp;</big><a href="file:///usr/local/lib/python2.7/dist-packages/Abe/abe.py">/usr/local/lib/python2.7/dist-packages/Abe/abe.py</a> in <strong>__call__</strong>(abe=&lt;__main__.Abe instance&gt;, 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=&lt;function start_response&gt;)</td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;&nbsp;189</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;page['params']&nbsp;=&nbsp;urlparse.parse_qs(env['QUERY_STRING'])<br>
</tt></font></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;&nbsp;190</small>&nbsp;<br>
</tt></font></td></tr>
<tr><td bgcolor="#ffccee"><tt>=&gt;<small>&nbsp;&nbsp;191</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;fix_path_info(env):<br>
</tt></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;&nbsp;192</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;abe.log.debug("fixed&nbsp;path_info")<br>
</tt></font></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;&nbsp;193</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;redirect(page)<br>
</tt></font></td></tr>
<tr><td><small><font color="#909090"><em>global</em> <strong>fix_path_info</strong>&nbsp;= &lt;function fix_path_info&gt;, <strong>env</strong>&nbsp;= {'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': '', ...}</font></small></td></tr></table>
<table width="100%" cellspacing=0 cellpadding=0 border=0>
<tr><td bgcolor="#d8bbff"><big>&nbsp;</big><a href="file:///usr/local/lib/python2.7/dist-packages/Abe/abe.py">/usr/local/lib/python2.7/dist-packages/Abe/abe.py</a> in <strong>fix_path_info</strong>(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': '', ...})</td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;2057</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pi&nbsp;=&nbsp;env['PATH_INFO']<br>
</tt></font></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;2058</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pi&nbsp;=&nbsp;posixpath.normpath(pi)<br>
</tt></font></td></tr>
<tr><td bgcolor="#ffccee"><tt>=&gt;<small>&nbsp;2059</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;pi[-1]&nbsp;!=&nbsp;'/'&nbsp;and&nbsp;env['PATH_INFO'][-1]&nbsp;==&nbsp;'/':<br>
</tt></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;2060</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pi&nbsp;+=&nbsp;'/'<br>
</tt></font></td></tr>
<tr><td><font color="#909090"><tt>&nbsp;&nbsp;<small>&nbsp;2061</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;pi&nbsp;==&nbsp;env['PATH_INFO']:<br>
</tt></font></td></tr>
<tr><td><small><font color="#909090"><strong>pi</strong>&nbsp;= '.', <strong>env</strong>&nbsp;= {'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': '', ...}</font></small></td></tr></table><p><strong>&lt;type 'exceptions.IndexError'&gt;</strong>: string index out of range
<br><tt><small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</small>&nbsp;</tt>args&nbsp;=
('string index out of range',)
<br><tt><small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</small>&nbsp;</tt>message&nbsp;=
'string index out of range'


<!-- The above is a description of an error in a Python program, formatted
     for a Web browser because the 'cgitb' module was enabled.  In case you
     are not reading this in a Web browser, here is the original traceback:

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

-->

any advice is greatly appreciated
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DIEM] CarpeDiemCoin - NEW WALLETS!!! COIN EXCHANGE IN PROGRESS!!! on: May 16, 2014, 03:24:54 AM
Getcoin2.com DIEM faucet is back with shiny new DIEM.

Faucet ran through the migration, if you have a balance enter your new DIEM address and you will get paid!

http://n.cur.lv/DIEM
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [YC] YellowCoin ★★ 7 Day PoW/Pure PoS ★★ Let's color the MOON !!! on: April 23, 2014, 01:33:41 AM
Thanks for funding the YellowCoin faucet.

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

7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] JUGGALO COIN (JUG) NOW X11-JUST LAUNCHED! Seen on CNET, Slate.com, Gizmodo on: April 22, 2014, 12:05:45 AM
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/
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DFQ] DafuqCoin | NO Premine | NO IPO | ★Launch Tommorow !★ on: April 19, 2014, 03:25:13 AM
Let me know if you are in need of a faucet....
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PI] piCoin - The Math Cryptocurrency - Just Launched, Now on 3 Exchanges on: April 18, 2014, 11:55:46 PM
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%
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN][PURE POS]Information Coin (ITC) Fair & Free distibution on: April 16, 2014, 08:47:59 PM
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.
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]BTCtalkcoin [BCC] Legal Airdrop - 4 Exchanges - IPO 1 closes in 12 hrs on: April 16, 2014, 07:36:25 PM
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!
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE][ANN][AC]AsiaCoin - Launch in 8 hrs - PoS|No IPO|Zero Premine on: April 16, 2014, 10:53:48 AM
AC faucet has been added to www.getcoin2.com

We are ready for launch http://www.getcoin2.com/faucets/ac/
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]LOVEcoin – POW+POS|2 Exchanges|Launched|Mac Wallet|New Site! on: April 07, 2014, 06:19:01 PM
Come and get your love!  Smiley
http://www.getcoin2.com/faucets/love/
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] ★★KillerCoin★★ | KGW+Bonus blocks | Exchanges! (100k KILR = 0.018 BTC) ★ on: April 07, 2014, 03:12:31 AM
KillerCoin faucet has been added to GetCoin2.com
http://www.getcoin2.com/faucets/kilr/
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] ★★KillerCoin★★ | KGW+Bonus blocks | Exchanges! (100k KILR = 0.018 BTC) ★ on: April 04, 2014, 06:47:22 AM
Whoa the name alone is Killer
The bonus blocks are awesome
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BLTZ] [IPO Hybrid] BlitzCoin | proof of concept coin | pure speculative on: April 01, 2014, 07:19:40 AM
Blitz coin faucet has been added: http://www.getcoin2.com/faucets/bltz/
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DIEM] CarpeDiemCoin Ҩ Halves Daily Ҩ 48 Seconds for FULL CONFIRMATION on: March 25, 2014, 04:26:46 AM
Great giveaways on polo tonight.... thanks for the DIEM! Smiley
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BlackCoin (BC) | on exchanges | PoS | No premine on: March 24, 2014, 06:13:50 AM
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%
19  Economy / Marketplace / GetCoin2.com Public Beta on: March 22, 2014, 10:38:28 PM
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.
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SHA]SHACoin - First pure Pos SHA256 based coin - On Exchange Now on: March 21, 2014, 05:50:40 AM
My little 333/MHs USB feels useful with this coin ... for the next few days anyways.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!