Bitcoin Forum
June 16, 2024, 05:19:13 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 [64] 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 »
1261  Other / Beginners & Help / Re: Android Mining - Need Help! on: August 14, 2013, 07:42:04 PM
You're just going to run your battery down.  Mobile devices have got to be terrible for mining.
1262  Economy / Lending / Re: Need .4 BTC loan on: August 14, 2013, 06:06:20 PM

Tho this IS one angle of attack, it appears that Joey is the worst gambler in history so it might actually earn him a tax credit. Except that, as people pointed out, gambling benefit money seems illegal in itself.

Pizzas & taxis are fun things to send to his house but it would be more amusing if there was something/someone which wouldn't leave so quietly

You can't deduct gambling losses from your personal return if they're more than your winnings.  But since Joey doesn't have a job he doesn't have to worry about that anyway.
1263  Bitcoin / Bitcoin Discussion / Re: [OVER] Riddle game - Solve it and take the loot! on: August 13, 2013, 03:25:39 PM
Yes, thanks for sharing -- I usually do puzzle hunts for free (actually I pay to do them), so it's nice to get paid Smiley
1264  Bitcoin / Bitcoin Discussion / Re: [OVER] Riddle game - Solve it and take the loot! on: August 13, 2013, 02:49:27 AM
Received another 0.01 Smiley thanks
1265  Bitcoin / Bitcoin Discussion / Re: [OVER] Riddle game - Solve it and take the loot! on: August 13, 2013, 12:46:28 AM
You could have 5 brain wallets, each with 0.01 BTC in them.  But I don't know if people would just guess random user names.
1266  Bitcoin / Bitcoin Discussion / Re: Riddle game - Solve it and take the loot! on: August 12, 2013, 11:38:35 PM
Just got 0.01 BTC, thanks Smiley
1267  Bitcoin / Bitcoin Discussion / Re: Riddle game - Solve it and take the loot! on: August 12, 2013, 11:33:53 PM
It's OK, it was a community effort -- thanks for setting it up!
1268  Bitcoin / Bitcoin Discussion / Re: Riddle game - Solve it and take the loot! on: August 12, 2013, 11:31:41 PM
1QK8w1RZrpKR4K3FuR2W15kNX8B5YRZrWd

I'm glad that jackjack and pirateat40 were both correct, I should have zoomed in more on tomato!
1269  Bitcoin / Bitcoin Discussion / Re: Riddle game - Solve it and take the loot! on: August 12, 2013, 09:42:10 PM
My guesses:
1)  genjix
2)  jackjack
3)  pirateat40
4)  ?? nbartlett or njbartlett -- Bartlett is the only city I can find
5)  JohnJohnK -- already provided above


Is glasses a hint, or just a reference to his avatar?
Now I'm looking for nicolas, glass, or a fruit along the mississippi...
1270  Bitcoin / Armory / Re: Armory - Discussion Thread on: August 12, 2013, 09:26:29 PM
I guess I shouldn't say it's my code -- it's all stolen and cobbled together from the example scripts etotheipi gave.
1271  Bitcoin / Bitcoin Discussion / Re: Riddle game - Solve it and take the loot! on: August 12, 2013, 09:07:16 PM
Ugh, I tried Shakespeare, because it has pear in it, and the address was 18EL... so close Sad
1272  Bitcoin / Bitcoin Discussion / Re: Riddle game - Solve it and take the loot! on: August 12, 2013, 09:04:35 PM
Yeah, but the picture is from the wikipedia page of Blytheville, AR, which is right on the Mississippi.
1273  Bitcoin / Bitcoin Discussion / Re: Riddle game - Solve it and take the loot! on: August 12, 2013, 08:52:07 PM

I got the same, but that means I'm wrong on one or more of the others Sad

I don't understand the Sir Nicolas bit, so it's probably that one.  The only fruit named city on the Mississippi with a remotely close username I could find was Bartlett.
1274  Bitcoin / Bitcoin Discussion / Re: Riddle game - Solve it and take the loot! on: August 12, 2013, 08:29:45 PM
Ahhh thanks
So now I have 1 (I think), but the brain wallet isn't coming out (compressed or uncompressed), which means I've got another one wrong Sad
1275  Bitcoin / Bitcoin Discussion / Re: Riddle game - Solve it and take the loot! on: August 12, 2013, 06:05:15 PM
Hmm here is what I have:

Quote
- Nothing is c3rtain but Death and That.
- There are two of them to any question.
- Bob of all trades, master of none. (*)
- Never listen to those three advisors - The night, Love and... And... Errr...
- Two of those are better than one.
(*) Money does not do that on trees.

3)  Taxes:  x
2)  Sides:  i
all, none, or one)  Bob?  Jack?
3)  Everything seems to be about 5 letters, and all I can think of are the three wise men, and Myrhh rhyms with Err.. (grasping here):  r
2)  Heads:  e
1)  Grow:  g

xijreg
xibreg  << bigrex?

1276  Bitcoin / Armory / Re: Armory - Discussion Thread on: August 12, 2013, 05:15:29 PM
Here's my code for my watching only script to load the blockchain and read a balance for some addresses.  Hope this helps.

Code:
import sys
sys.path.append('..')
sys.path.append('.')

from armoryengine import *
from time import sleep
start = RightNow()

TheBDM.setBlocking(True)
TheBDM.setOnlineMode(True)
print 'Loading blockchain took %0.1f sec' % (RightNow() - start)
start = RightNow()
topBlock = TheBDM.getTopBlockHeight()
print '\n\nCurrent Top Block is:', topBlock
TheBDM.getTopBlockHeader().pprint()

cppWallet = Cpp.BtcWallet()
cppWallet.addAddress_1_( addrStr_to_hash160("1ArmoryXcfq7TnCSuZa9fQjRYwJ4bkRKfv") )

print cppWallet.getNumAddr(),' addresses in this wallet'
print '\n\nRegistering the wallet with the BlockDataManager & loading...'
TheBDM.registerWallet(cppWallet)
TheBDM.scanBlockchainForTx(cppWallet)
print '\n\nTransaction history of this wallet:'
ledger = cppWallet.getTxLedger()
for le in ledger:
le.pprintOneLine()
print '\n\n************************************\nBalance of this wallet:', coin2str(cppWallet.getSpendableBalance())
print 'Unspent outputs:'
unspentTxOuts = cppWallet.getSpendableTxOutList(topBlock)
for utxo in unspentTxOuts:
utxoAddr = hash160_to_addrStr(utxo.getRecipientAddr())
print utxoAddr," ",float(utxo.getValue())/100000000.0, " ",utxo.getNumConfirm()

while True:
if TheBDM.getBDMState()=='BlockchainReady':
prevTopBlock = TheBDM.getTopBlockHeight()
newBlks = TheBDM.readBlkFileUpdate()
if newBlks>0:
print newBlks," new blocks found"
latestBlockNum = TheBDM.getTopBlockHeight()
topTimestamp   = TheBDM.getTopBlockHeader().getTimestamp()

TheBDM.scanBlockchainForTx(cppWallet)
print '\n\nTransaction history of this wallet:'
ledger = cppWallet.getTxLedger()
for le in ledger:
le.pprintOneLine()
print '\n\n************************************\nBalance of this wallet:', coin2str(cppWallet.getSpendableBalance())
print 'Unspent outputs:'
unspentTxOuts = cppWallet.getSpendableTxOutList(topBlock)
for utxo in unspentTxOuts:
utxoAddr = hash160_to_addrStr(utxo.getRecipientAddr())
print utxoAddr," ",float(utxo.getValue())/100000000.0, " ",utxo.getNumConfirm()
time.sleep(10)
1277  Bitcoin / Hardware / Re: Liquid Synergy Designs Inc. -ASIC mining hardware on: August 12, 2013, 04:11:21 PM

They say gen2 in october!
So since we are not asking for refund, nor for compensation.
LETS WAIT! thats the best idea.

They said 9-10 weeks for gen1.
1278  Bitcoin / Hardware / Re: Liquid Synergy Designs Inc. -ASIC mining hardware on: August 12, 2013, 03:40:11 PM


So you don't want any compensation for delays?
What if the refund gave you priority of gen2 delivered in october, and your board would support it?
I'm speechless of how friendly some people are for getting screwed like this..


Of course I would.  I'd love a 50% rebate on the chips I purchased from Avalon.
1279  Bitcoin / Hardware / Re: Liquid Synergy Designs Inc. -ASIC mining hardware on: August 12, 2013, 03:39:26 PM
And what happens to the people that bought parts already and are sitting on non refundable parts? Should they have their chips refunded (most of the people in the group buy) to satisfy  a few users in the group buy? Lets be realistic here.

If Avalon is right about gen2 coming out in october. Those past groupbuys should get priority (for example those with refund).
Old hardware designs shall support gen 2 chips.
Would that then not be best? get refund now, wait for gen 2 when you might actually get some of your investment back. And then they only offer gen 2 based on in stock ordering so we will know that the delivery time will be correct.

From what I read the gen2 will be the same size, but different pinout and I'm sure other small differences would need a complete redesign. You can't expect to just drop it in.
1280  Bitcoin / Hardware / Re: Liquid Synergy Designs Inc. -ASIC mining hardware on: August 12, 2013, 03:34:54 PM
What's the point in getting chip refunds when we've already paid for assembly etc?  I'd rather have a miner with chips in it than a miner without chips sitting on my desk.
Pages: « 1 ... 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 [64] 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!