Show Posts
|
Pages: [1] 2 »
|
is He Jim Morrison's grandson? LOL possibly
|
|
|
hey guys i finaly got it to work, downloaded the the most up to date version, user failure.
working now and getting 300+mhs (:
|
|
|
im having this same problem on 7850 2gb how do i fix it?
|
|
|
2013-06-11 23:09:34: Listener for "lol." started 2013-06-11 23:09:34: Listener for "lol.": 11/06/2013 23:09:34, ADL_Adapter_Active_Get failed, cutoff temperature disabled for 0:0:Pitcairn 2013-06-11 23:09:34: Listener for "lol.": Traceback (most recent call last): 2013-06-11 23:09:34: Listener for "lol.": File "poclbm.py", line 78, in <module> 2013-06-11 23:09:34: Listener for "lol.": File "OpenCLMiner.pyo", line 100, in initialize 2013-06-11 23:09:34: Listener for "lol.": File "OpenCLMiner.pyo", line 129, in __init__ 2013-06-11 23:09:34: Listener for "lol.": TypeError: 'NoneType' object has no attribute '__getitem__'
need help plz gui miner raedon 7850 2gb in the pc
|
|
|
2013-06-11 23:09:34: Listener for "lol." started 2013-06-11 23:09:34: Listener for "lol.": 11/06/2013 23:09:34, ADL_Adapter_Active_Get failed, cutoff temperature disabled for 0:0:Pitcairn 2013-06-11 23:09:34: Listener for "lol.": Traceback (most recent call last): 2013-06-11 23:09:34: Listener for "lol.": File "poclbm.py", line 78, in <module> 2013-06-11 23:09:34: Listener for "lol.": File "OpenCLMiner.pyo", line 100, in initialize 2013-06-11 23:09:34: Listener for "lol.": File "OpenCLMiner.pyo", line 129, in __init__ 2013-06-11 23:09:34: Listener for "lol.": TypeError: 'NoneType' object has no attribute '__getitem__'
need help plz
|
|
|
New question reason being i am absolute garbage at math, at 0.0014BTC a day.. how many would i have in a month?
or better, how long until i get 1.0BTC
|
|
|
Just do it
|
|
|
1CHWTH9fkmafuVw6ZbU9NfLFXoD9a8mdAd thanks!
|
|
|
So I decided to start mining with my laptop at 30-35Mhash/s. i mine at btc guild.
at what rate would i be making any amount of bitcoin?
for example, if I let it run 24/7 at 30Mhash/s for a week. would i earn any amount of btc?
|
|
|
Username:0471c7cfdeea320a7afad87be0b3d5a4
my address : 13RGiVihVpXg81o63osTZFAMw6WCZJFnrq
twitter: @boo_thangs(Boo-finkle)
|
|
|
I have 80 casino credits so is this worth 0.8btc?
|
|
|
Ive never used python before, and found 2 peerbet scripts that automaticly place bets idk how to run them though maybe some help? please be very descriptive. import cookielib, urllib2,urllib,random,time,sys,traceback,StringIO,gzip
def call(opener,url,params=None): time.sleep(1) url=url+'&compress=1' if params is not None: uri=url+"&"+params else: uri=url try: opener.addheaders=[("Accept-Encoding", "gzip")] # print uri f=opener.open(uri) response=f.read() except urllib2.URLError: time.sleep(random.uniform(1,5)) return call(opener,url,params) read=f.info().getheader("Content-Encoding") if read=='gzip': sio = StringIO.StringIO(response) sio.seek(0) gz=gzip.GzipFile(None,mode='rb',fileobj=sio) response= gz.read() gz.close() sio.close() # print response if response is None: return call(opener,url,params) else: try: read=eval(response) except: print '>>> traceback <<<' traceback.print_exc() print '>>> end of traceback <<<' time.sleep(random.uniform(1,5)) return call(opener,url,params)
error=None try: error= read['error'] print "|",error,"|" except: return read if 'limit' in str(error): time.sleep(random.uniform(1,5)) return call(opener,url,params) else: raise NameError(error)
def login(opener): global password global username params = urllib.urlencode({'username': username, 'password': password}) print "login",call(opener,'https://peerbet.org/api.php?method=login',params)
if sys.argv[1] is not None: username=sys.argv[1] if sys.argv[2] is not None: password=sys.argv[2]
while True: try: cj = cookielib.CookieJar() opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) params = urllib.urlencode({'username': username, 'password': password}) print call(opener,"https://peerbet.org/api.php?method=login",params)
params = urllib.urlencode({'message': 'satoshi'}) message=call(opener,"https://peerbet.org/api.php?method=postchatmessage",params) print message['message_id'];
except: print '>>> traceback <<<' traceback.print_exc() print '>>> end of traceback <<<' time.sleep(random.uniform(60*60,2*60*60))
and import cookielib, urllib2,urllib,random,time
cj = cookielib.CookieJar() opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) params = urllib.urlencode({'username': '', 'password': ''}) r = opener.open("https://peerbet.org/api.php?method=login&%s" % params) print r.read()
max_lose=10 ticketpricebase=0.0000023 ticketprice=ticketpricebase lose_count=0;
while True:
f = opener.open("https://peerbet.org/api.php?method=getuserinfo") userinfo=f.read() userinfo=eval(userinfo) print 'balance:' + str(userinfo['balance']); if ticketprice>userinfo['balance']: break else: params = urllib.urlencode({'tickets': '2', 'price': ticketprice,'expire':'1','instant':'1'}) raffle=opener.open('https://peerbet.org/api.php?method=createraffle&%s' % params) raf= raffle.read() raf=eval(raf) raffleid=raf['raffle_id']
params = urllib.urlencode({'raffle': raffleid, 'tickets': 1}) opener.open('https://peerbet.org/api.php?method=buytickets&%s' % params) print str(raffleid) + ':' + str(ticketprice)
while True: params = urllib.urlencode({'raffle': raffleid}) f=opener.open('https://peerbet.org/api.php?method=getraffleinfo&%s' % params) raffle=f.read() raffle=eval(raffle) if raffle['status']=='win': ticketprice=ticketpricebase print 'win' lose_count=0 time.sleep(10) break elif raffle['status']=='lose': lose_count+=1 ticketprice*=random.uniform(2, 3) print 'lose' if lose_count>=max_lose: lose_count=0 time.sleep(random.uniform(60*60, 2*60*60)) break time.sleep(1)
|
|
|
can you do that on ebay?
Message the seller? It can't hurt to try. honestly didnt even think of it, gonna do it now
|
|
|
I play xbox quite a bit, and the controller i have is pure shit. the sticks are so loose, lost all there grippy things buttons stick, some you have to push really hard. a hole in the back stuffed with tissue. I currently have $46.14 in paypal. found a nice controller id like to get for 47.99 SORRY FOR BEING A BUM ON THE INTERENT TO STRANGERS >_< but would anyone donate 2 dollars to me? lol my paypal address is " aaronlolzzz@gmail.com" if anyone does donate Ill delete this post so no more people donate and i get more than 2 bucks. ive been usign this same controller since xbox came out, like 4 years. i know this is sooooo unrelated to bitcoin sorry guys
|
|
|
|