Bitcoin Forum
June 22, 2024, 07:57:15 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Service Announcements / Re: [ANN] NiceHash.com - innovative professional cryptocurrency cloud mining service on: April 22, 2014, 12:37:38 PM
When I came home this morning I found my card on the nicehash pool, but it was not getting any work because there was no work above or at the level of p I set.

It should go to my backup pool then right?

Ow and my first order was completed when I got home  Grin that particular one was not profitable though (taking in account the fee)  Tongue

I had the same problem today. The price limit feature is buggy and burned me several times.  It only works consistently when you restart the miner.

Whatever benefit I got mining here I gave up by losing hours of hashing.
2  Alternate cryptocurrencies / Mining (Altcoins) / Re: NiceHash.com - rig owners needed - currently at 0.008+ BTC/MH/day on: April 17, 2014, 03:29:18 PM
Looks a like a nice service, so I just hopped on as a provider to try it out.
Is there a way for me, as a provider, to see what orders I worked on?  Or a table with hours spent mining @ a particular price?
3  Economy / Computer hardware / [WTS] 2900 kh/s scrypt mining rig for sale - NJ on: March 23, 2014, 06:29:43 PM
I have decided to sell one of my mining rigs.

3 - Sapphire R9 280x Vapor-X
1 - Sapphire R9 280x Dual-X
XFX 1250W power supply  (this is a clone of the Seasonic 1250W)
MSI G46 Motherboard with an AMD Sempron 145 CPU and 2GB or RAM
8GB USB drive with BAMT, a USB wifi adapter, and a 120mm case fan.
3 - 1x to 16x powered risers.
All inside a typical red Lowes crate.

The setup was tuned for stability and low temps.  The rig has been mining for 23 straight days!  No hangs or crashes.  Pulls 1050-1070W at the wall.
All original boxes included.

$1800.  Cash or paypal preferred.  BTC, LTC, and Doge accepted.  Buyer pays all commissions, escrow, and shipping fees.
Local pickup in Union County, NJ preferred.



4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS|Transaction Comment|0 Premine|Quick Confirm|0 Fees on: February 17, 2014, 10:36:52 PM
Did some solo mining today, had several hundred confirmations, then poof all gone.  And the coin is currently not tradable on cryptsy (maybe a cryptsy bug?).  Not worth it.
5  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN] profit switching auto-exchanging pool - middlecoin.com on: December 28, 2013, 03:56:54 AM

Tx.  I probably would've known that if I read through all the 170+ pages of this thread.
6  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN] profit switching auto-exchanging pool - middlecoin.com on: December 28, 2013, 03:22:21 AM
python script after mangling code for personal edits. Very tiny readout, all unnecessary information removed or merged. Displays local time (strftime) instead of server time. Locked to BTC-e for price, removed data grab from Gox.
.....

Just got into scrypt mining with middlecoin. 
First off, middlecoin is great!  Sure, the website isn't very pretty and the influx of newbies like me is causing scaling problems, but it works and is making me more $ than mining LTC and trading them.  Many thanks H2O!  Keep up the good work.

I made a couple of small changes to the python script:
  • Support for multiple wallets (I prefer to have a wallet per rig)
  • Fixed the "time since json.." bug around midnight

I really wish it was in a proper repo.

Code:
#!/usr/bin/python2
import urllib2, json, os, time
import datetime as datetime
from fractions import gcd
from time import strftime, strptime
#orignal script: michwill, 15r271ADbvPkCcENraokEzrRgLrmaSpfc8
#modded version by: mardilv, 1PkCFatY7jgxY8BFaZe1YeL1baa8G7tVuR
#crippled by: kluge (mdc2cripple1.1)
mbtc = False
UTCOffset = 5
##^Set this for your computer's time zone. "5" assumes you're on US Eastern time like me (UTC+5).
print "Waiting for first JSON update..."

wallet = [u"wallet1", u"wallet2"]
mdc_checktime_interval = float(5)
ex_checktime_interval = float(6)
exchange = "btce_last"
mdc_json = "http://middlecoin2.s3-website-us-west-2.amazonaws.com/json"

def write(greeting, value, mode):
        print "    %s:\t%f BTC = $%f" % (greeting, value, c*value)
def f(x):
        return "BTC-E Last"
     
runningFlag = True

mdc_checktime_counter = float(0)
ex_checktime_counter = float(0)

sleeptime = gcd(mdc_checktime_interval, ex_checktime_interval)

while runningFlag:
   
    if mdc_checktime_counter <= 0:   
        response = urllib2.urlopen(mdc_json)
        data = json.loads(response.read())
        response.close()
        mdc_checktime_counter = mdc_checktime_interval

    if ex_checktime_counter <= 0:   
        response = urllib2.urlopen("https://btc-e.com/api/2/btc_usd/ticker")
        btcticker = json.loads(response.read())
        response.close()
        btce_last = float(btcticker["ticker"]["last"])
        btce_timestamp = int(btcticker["ticker"]["updated"])
        ex_checktime_counter = ex_checktime_interval
       
    if exchange == "btce_last":
        c = btce_last

        print (strftime("%m-%d-%Y %H:%M:%S",))

    walletsFound = 0
    for i in data["report"]:
        if i[0] in wallet:
            my = i[1]
            walletsFound += 1
            for k in my.keys():
                my[k] = float(my[k])
                 
            print ("\nWallet: %s" % (i[0]))
            write("Total paid  ", my.get("paidOut", 0),mbtc)
            write("Total unpaid", my.get("immatureBalance", 0) + my.get("unexchangedBalance", 0) + my.get("bitcoinBalance", 0), mbtc)
            write("Exchanged   ", my.get("bitcoinBalance", 0),mbtc)
            write("Unxchg&Imm  ",my.get("unexchangedBalance", 0) + my.get("immatureBalance", 0),mbtc)
   
            print ("Shares last hr\t:\t%.0f" % (my["lastHourShares"]))
            print ("    Hashrate    :\t%s KH/s" % (my.get("megahashesPerSecond")* 1000))
            print ("    Rejected    : \t%.1f%%" % (my.get("rejectedMegahashesPerSecond", 0) / my["megahashesPerSecond"]* 100))

            if walletsFound == len(wallet):
                break

    print "\nBTC-e Last\t:\t$%f" % (btce_last)


    locNow = datetime.datetime.now()
    servTime = datetime.datetime.strptime(data["time"], '%Y-%m-%d %H:%M:%S')
    diffMin = -int(((servTime - locNow).total_seconds() - UTCOffset * 3600) / 60)
   
    print "Time since JSON update:", diffMin, "minutes"

    mdc_checktime_counter -= sleeptime
    ex_checktime_counter -= sleeptime
    time.sleep(sleeptime*60)
7  Other / Beginners & Help / Re: Whitelist Requests (Want out of here?) on: December 28, 2013, 12:30:21 AM
Long time lurker, not really a newbie.  I know how to use the "Search" feature.
Would like to post a improvements to the script posted here https://bitcointalk.org/index.php?topic=259649.msg4142964#msg4142964.
8  Other / Beginners & Help / Re: Coinbase straight up robbed me on: December 27, 2013, 10:37:17 PM
Take a deep breath.  It's the holiday season, Dec 25th was an official bank holiday.  Things get delayed around this time of year.  Banking transactions can take a few days longer than anticipated during normal times.  I find all types of bank transfers and payments to be unreliable around xmas and new year.

Coinbase is a reputable company in the US, probably more reputable that the vast majority BTC companies out there, so you are very likely to get this sorted out either with them or your bank.
9  Alternate cryptocurrencies / Altcoin Discussion / Re: Middlecoin scrypt mining on: December 27, 2013, 05:54:53 AM
If you don't mind me asking, how much LTC do you get per Mh/s?

There are countless calculators that'll let you plug all the numbers in and get an expected LTC return.  Just google.
I'm getting about ~.25 LTC per day mining at 710kh/s.  You can calculate what you need from there.  I've switched to middlecoin which returns more.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!