1 2013-05-11 00:00:53 Michail1_ is now known as Michail1
   2 2013-05-11 00:01:27 <sipa> ;;blocks
   3 2013-05-11 00:01:28 <gribble> 235550
   4 2013-05-11 00:01:33 zoinky has joined
   5 2013-05-11 00:01:44 <sipa> 63 blocks left
   6 2013-05-11 00:02:09 <tumak> gmaxwell: it's a trap
   7 2013-05-11 00:02:14 <tumak> knapsack is always kinda bruteforce
   8 2013-05-11 00:02:32 <gmaxwell> oh god you're not one of these nuts that calls everything brute force are you?
   9 2013-05-11 00:02:37 <gmaxwell> :P
  10 2013-05-11 00:03:23 <cjd> tumak: anyway my understanding is crypto prngs and stistical prngs are almost exclusive by definition
  11 2013-05-11 00:03:35 <cjd> and I'm only interested in crypto
  12 2013-05-11 00:03:46 <edcba> do we really need a knapsack solver ? since it's more like satisfying A+B+C > D > E
  13 2013-05-11 00:03:59 <edcba> wait i got something wrong i think
  14 2013-05-11 00:04:04 <edcba> A+B+C < D < E
  15 2013-05-11 00:04:32 <edcba> ie i need to get a sum between [D;E] since leftover is redirected to me
  16 2013-05-11 00:04:34 <gmaxwell> it's technically a subset sum solver, but its a similar problem.
  17 2013-05-11 00:04:43 <tumak> gmaxwell: only anything running exponential time. 2^40 in this case? naive subset sum problem solvers are like that.
  18 2013-05-11 00:05:33 tyn has quit (Ping timeout: 245 seconds)
  19 2013-05-11 00:05:49 <gmaxwell> edcba: we don't need the best solution either, we use a randomized algorithim that tries to minimize the amount of change (which is often not the right objective, but it does much better than totally naieve coin selection which will often make ginormous transactions)
  20 2013-05-11 00:05:56 <edcba> proof of work should have used knapsack maybe the code would be less complex :p
  21 2013-05-11 00:06:45 <tumak> edcba: it could be interesting indeed, especially if there is potential for memory-bound PoW
  22 2013-05-11 00:06:57 <tumak> (takes a lot of memory to do work, small memory to verify)
  23 2013-05-11 00:07:33 rdymac has quit (Quit: This computer has gone to sleep)
  24 2013-05-11 00:07:47 d34th has quit (Changing host)
  25 2013-05-11 00:07:47 d34th has joined
  26 2013-05-11 00:07:55 melvster has quit (Ping timeout: 264 seconds)
  27 2013-05-11 00:08:10 <CodeShark> litecoin would have been cool if that was what it accomplished :)
  28 2013-05-11 00:08:33 <tumak> yeah, people praising scrypt coins just fail at crypto
  29 2013-05-11 00:09:36 <ezdiy> tumak: i think it was gmaxwell who suggested there are no memory-bound trapdoor functions in this universe
  30 2013-05-11 00:09:46 <ezdiy> compute or die :(
  31 2013-05-11 00:09:57 <cjd> that seems to be the reality
  32 2013-05-11 00:10:11 <edcba> ok solution is simple then, change universe
  33 2013-05-11 00:10:20 <cjd> still you could get a bit smarter than scrypt
  34 2013-05-11 00:10:28 <sipa> "when the model doesn't fit the data, change the data"
  35 2013-05-11 00:10:35 <cjd> \o/
  36 2013-05-11 00:11:06 <cjd> problem solved, now we can work on the scientific integrity problem
  37 2013-05-11 00:11:26 <sipa> but i agree, scrypt could perfectly have been use to succesfully favor CPU mining over GPU/FPGA mining (though ASICs are kind of impossible... at som epoint it becomes economically viable to develop a specialized chip for whatever you choose as PoW)
  38 2013-05-11 00:11:30 <gmaxwell> well, in an absolute sense— no. But you can perhaps do interesting things. But who knows— and you might fault litecoin advocates for failing to do a proper analysis of their POW function <s>gpu proof</s>asic proof's ness ... they're laughing on a pile of money right now. :P
  39 2013-05-11 00:12:01 <sipa> and even beyod that, i'm not convinced that is a useful property for a PoW function (it could very well favor botnets too)
  40 2013-05-11 00:12:17 <edcba> yeah botnets \o/
  41 2013-05-11 00:12:27 <sipa> but scrypt as such, to reach the goal litecoin had, is very appropriate
  42 2013-05-11 00:12:30 <ezdiy> either it's intop tick, or need to keep a lot of data around
  43 2013-05-11 00:12:31 <sipa> _when used correctly_
  44 2013-05-11 00:12:39 <CodeShark> gmaxwell: I try to differentiate between intellectually interesting ideas and financially lucrative ones - they aren't always the same...and in fact, often are at odds :p
  45 2013-05-11 00:13:00 <gmaxwell> CodeShark: indeed, generally decenteralized systems don't do well at the latter...
  46 2013-05-11 00:13:00 <ezdiy> awesome about holy grail memory PoW would be no botnets, since you cant kinda run your bot when you chew through 32GB all the time
  47 2013-05-11 00:13:28 <gmaxwell> ezdiy: I have some affection for amiller's idea of memory hardness based on utxo queries.
  48 2013-05-11 00:13:47 <gmaxwell> thats a pro-decenteralization memory-hard pow. :)
  49 2013-05-11 00:14:00 <ezdiy> gmaxwell: yeah, that looked like a good start
  50 2013-05-11 00:14:07 <ezdiy> but you need humongous blockchain for that first
  51 2013-05-11 00:14:12 <ezdiy> chicken-and-egg
  52 2013-05-11 00:14:12 <ezdiy> :)
  53 2013-05-11 00:14:15 <gmaxwell> though I suspect that in practice it would be quite hard to make it impossible to overspecialize to uselessness
  54 2013-05-11 00:14:36 <cjd> that's kind of interesting
  55 2013-05-11 00:14:55 <tumak> isn't that kinda proof of storage?
  56 2013-05-11 00:15:09 <edcba> hmm
  57 2013-05-11 00:15:14 <tumak> (ie proof you actually know a lot of particular data)
  58 2013-05-11 00:15:26 <CodeShark> memory = storage. the only question is how fast it is for certain tasks
  59 2013-05-11 00:15:26 <edcba> like the bitcoin chain ?
  60 2013-05-11 00:16:10 <edcba> using bitcoin own data structures could be interesting
  61 2013-05-11 00:16:39 <ezdiy> yeah, but those would need to be sufficiently hard, and of not-up-my-sleeve quality
  62 2013-05-11 00:16:52 <edcba> knapsack problem over last x blocks
  63 2013-05-11 00:17:29 <CodeShark> would be nice if PoW solved something useful for the network. optimal compression, pruning, or something :)
  64 2013-05-11 00:18:00 <ezdiy> yeah, but i suspect the network is several magnitudes too small for that
  65 2013-05-11 00:18:17 <ezdiy> so you need to augment it with some artificial, mostly useless pow :(
  66 2013-05-11 00:18:53 greenstar has left ()
  67 2013-05-11 00:19:40 <gmaxwell> my alt ideas page has a bunch of different pow ideas, https://en.bitcoin.it/wiki/User:Gmaxwell/alt_ideas
  68 2013-05-11 00:19:53 <gmaxwell> kinda funny though because I think pow variations are really the least interesting ideas.
  69 2013-05-11 00:19:55 <edcba> compression of its own chain as pow :/
  70 2013-05-11 00:20:11 <gmaxwell> Ultimately all POW in a consensus system reduces to energy, you can just move around constant factors.
  71 2013-05-11 00:20:49 <ezdiy> gmaxwell: yeah, the utxo is the only fairly original one
  72 2013-05-11 00:21:10 <gmaxwell> ezdiy: well the most original pow idea there is the timelock encryption one.
  73 2013-05-11 00:21:26 <ezdiy> but i'm skeptical of the 'too easy', 'too offloadable to gpu/asic unless you have tens-hundreds gb of data to sift through'
  74 2013-05-11 00:21:51 <ezdiy> gmaxwell: inb4 asics to crack ECDLP
  75 2013-05-11 00:22:18 <cjd> H(header||nonce||H(utxo_lookup(nonce)) <-- non-random
  76 2013-05-11 00:22:42 normanrichards has joined
  77 2013-05-11 00:22:47 <gmaxwell> ezdiy: thats not the point there. no pow is non-offloadable to specialized hardware at the limit.
  78 2013-05-11 00:23:12 <gmaxwell> cjd: I think that was supposted to be H(utxo_lookup(H(header||nonce)) in fact.
  79 2013-05-11 00:23:21 <ezdiy> i think that general purpose PCs will always excel at *combined* cpu/memory tasks
  80 2013-05-11 00:23:25 <cjd> that's more interesting
  81 2013-05-11 00:23:29 <ezdiy> i mean, whole operating systems are designed for that purpose
  82 2013-05-11 00:23:35 <gmaxwell> ezdiy: thats not the point there. no pow is non-offloadable to specialized hardware at the limit.
  83 2013-05-11 00:23:46 wamatt has joined
  84 2013-05-11 00:23:48 <ezdiy> to replicate that at asic level, you'll need to redo all the virtual memory stuff
  85 2013-05-11 00:23:57 <edcba> moving information is the limiting factor usually :)
  86 2013-05-11 00:23:58 <gmaxwell> the point of the timelock is that it produces a useful side effect that can be accomplished basically no other way.
  87 2013-05-11 00:24:08 <ezdiy> gmaxwell: not arguing that
  88 2013-05-11 00:24:15 <amiller_> the *energy* of the proof of work probably has to be wasted, but the *power* and infrastructure investment it encourages is how it can be designed to benefit the network
  89 2013-05-11 00:24:38 <gmaxwell> ezdiy: all that is trivial to replicate... much of the cost of computer hardware is all the IO and perpherial and such.
  90 2013-05-11 00:24:46 <cjd> Abandoned UTXO should be forgotten and become unspendable. <-- ahh so I'm not the first one, parhaps I'm the first one to suggest that one client can implement this and push the work off on others
  91 2013-05-11 00:25:05 <gmaxwell> amiller_: I was about to tell you "thats what amiller keeps saying, but I'm meh on that" But I guess I can skip the first half of that statement. :P
  92 2013-05-11 00:25:21 <edcba> what is abandoned utxo ?
  93 2013-05-11 00:25:22 <ezdiy> gmaxwell: indeed. pc-friendly pow utilizes *most* of the PC cost
  94 2013-05-11 00:25:28 <amiller_> lets talk about utxo aging.
  95 2013-05-11 00:25:30 <ezdiy> gmaxwell: so the gap between asic and pc wouldn't be that huge
  96 2013-05-11 00:25:33 <amiller_> zooko really wants to talk about this in particular
  97 2013-05-11 00:25:39 <gmaxwell> ezdiy: except there is just a lot that is really hard to get into a pow.
  98 2013-05-11 00:25:46 <amiller_> because it solves a diminishing money supply problem in addition to keeping utxo cleaner
  99 2013-05-11 00:25:54 <amiller_> don't call it demurrage, call it parking meter fee
 100 2013-05-11 00:25:58 <gmaxwell> amiller_: the diminishing money supply non-problem?
 101 2013-05-11 00:26:00 tyn has joined
 102 2013-05-11 00:26:15 <amiller_> it's not so much that it's definitely diminishing but that it becomes more uncertain
 103 2013-05-11 00:26:26 <gmaxwell> Okay then say that.
 104 2013-05-11 00:26:38 <gmaxwell> There are idiots who really think the diminishing is a problem, don't let me confuse you with them.
 105 2013-05-11 00:26:46 <gmaxwell> I agree that the uncertanty is potentially problematic.
 106 2013-05-11 00:26:49 <edcba> circular bitcoin chain !
 107 2013-05-11 00:27:02 new299_ has quit (Ping timeout: 246 seconds)
 108 2013-05-11 00:27:06 <tumak> ourbouros eating its own tail
 109 2013-05-11 00:27:11 <tumak> isnt that the freicon dudes? :)
 110 2013-05-11 00:27:26 <gmaxwell> amiller_: in particular you can solve uncertanty with making old utxo unspendable but that doesn't 'solve' supply.
 111 2013-05-11 00:27:41 <amiller_> so this isn't demurrage it's about paying a fee for the bytes you take up in the utxo
 112 2013-05-11 00:28:03 new299_ has joined
 113 2013-05-11 00:28:10 <gmaxwell> amiller_: and as has been said before, I think it's too big of an economic change to be anything but a non-starter in bitcoin. Perhaps we'll get an ECDSA break that lets us make old utxo unspendable.
 114 2013-05-11 00:28:13 <edcba> just recycle oldest tx to next coinbase
 115 2013-05-11 00:28:26 <gmaxwell> edcba: you theif!
 116 2013-05-11 00:28:36 <amiller_> the way to implement this efficiently is that when you spend your coins, your spendable balance gets subtracted according to how long it's been there
 117 2013-05-11 00:28:47 <cjd> amiller_: I had an idea where *my* client forgets about utxos where "amount/age > K", I can easily make a bitcoin client which does this. When it forgets a utxo it just adds the amount of that utxo to uint64_t amount_of_dust and drops any loose transaction trying to pay it.
 118 2013-05-11 00:28:48 <tumak> gmaxwell: social democracy!
 119 2013-05-11 00:28:50 <amiller_> and if that amount would drop to zero in the next block then it can get deleted/removed
 120 2013-05-11 00:29:22 <amiller_> miners can take a little bit of the fee from everyone's parking meter fee with every block, so there's no sudden "delete the whole balance" event for any utxo
 121 2013-05-11 00:29:43 <gmaxwell> amiller_: except you're paying the wrong parties.
 122 2013-05-11 00:29:47 <amiller_> and the utxo set would store a little priority queue where every utxo is sorted according to when it should be removed next
 123 2013-05-11 00:29:48 <ezdiy> cjd: it's still kinda variable demurrage. old oligopolist would keep on mining just to keep their wealth. same as with inflating fiat.
 124 2013-05-11 00:29:56 <gmaxwell> The storage of validation data is not something that is special for miners.
 125 2013-05-11 00:30:15 brson has quit (Quit: leaving)
 126 2013-05-11 00:30:15 Luke-Jr has joined
 127 2013-05-11 00:30:28 <cjd> ezdiy: it solves my problem of big utxo set :)
 128 2013-05-11 00:30:35 <amiller_> gmaxwell, well this would be better if it were combined with the utxo merkle thing
 129 2013-05-11 00:30:49 <amiller_> in which case the miners doing the prove-they-have-the-utxo-set-proof would be the ones storing it and everyone else just consumes proofs
 130 2013-05-11 00:30:53 <ezdiy> amiller_: what about the not-up-my-sleeve problem when selecting "random" utxos to prove when there is no sufficient query traffic.
 131 2013-05-11 00:30:54 <amiller_> but it's a separate thing
 132 2013-05-11 00:31:04 <gmaxwell> amiller_: and as has been said before, I think it's too big of an economic change to be anything but a non-starter in bitcoin. Perhaps we'll get an ECDSA break that lets us make old utxo unspendable... but who knows.
 133 2013-05-11 00:31:09 <ezdiy> amiller_: what i'm thinking about you just select nonces you "like" (have it cached in db)
 134 2013-05-11 00:31:22 <amiller_> ezdiy, the solution is to not just select one but selet a chain
 135 2013-05-11 00:31:37 <amiller_> you have to finish the first one to learn what your index is for the last, and you don't learn if your nonce is a winner until you finish all k
 136 2013-05-11 00:31:40 <gmaxwell> And I note that because of the economic signficiance of taking away people's stashed coins, ... this really doesn't belong in #bitcoin-development .. #bitcoin-wizards was made for bluesky stuff like this...
 137 2013-05-11 00:31:40 <ezdiy> hm, thats indeed a bit of remedy
 138 2013-05-11 00:31:54 <cjd> amiller_: I think if you have to bcast merkle branches for each tx in a block, you swap storage for bandwidth which is not a very good deal
 139 2013-05-11 00:32:03 <ezdiy> but still there will be good chains and bad chains
 140 2013-05-11 00:32:35 <amiller_> cjd yeah maybe
 141 2013-05-11 00:32:37 tyn has quit (Ping timeout: 245 seconds)
 142 2013-05-11 00:33:34 <cjd> I like the idea of my client forgetting about dust because it says "you have a right to these coins but I have a right to forget about them"
 143 2013-05-11 00:33:46 <edcba> what ?
 144 2013-05-11 00:33:51 AndChat has quit (64721!~AndChat64@1.157.199.36|Ping timeout: 276 seconds)
 145 2013-05-11 00:34:00 <ezdiy> if there would be a way to determine how easy or hard the chain is to mine ...
 146 2013-05-11 00:34:07 <ezdiy> O(1) of course
 147 2013-05-11 00:34:16 <edcba> cjd: and if everyone does that what happens ?
 148 2013-05-11 00:34:20 <ezdiy> maybe even stochastic would be enough
 149 2013-05-11 00:34:29 <cjd> dust becomes stealable
 150 2013-05-11 00:35:02 <edcba> btw aren't block limitations prevent someone to spend his dust money fortune ?
 151 2013-05-11 00:35:19 <cjd> my client would forget about dust after a while but it would remember the total amount of dust which it has forgotten
 152 2013-05-11 00:35:24 <tumak> edcba: in theory dust can be donated to charity
 153 2013-05-11 00:35:45 <cjd> so if you generate a dust thief block, my code would accept it
 154 2013-05-11 00:35:51 <tumak> edcba: 1) collect private keys of dust addresses from donors 2) convince one miner to mine mega-tx
 155 2013-05-11 00:35:59 <gmaxwell> cjd: and then consensus fails
 156 2013-05-11 00:36:08 <gmaxwell> cjd: might as well just explicitly steal the dust.
 157 2013-05-11 00:36:13 <cjd> for dust
 158 2013-05-11 00:36:21 <cjd> I'm not a thief :)
 159 2013-05-11 00:36:23 <gmaxwell> cjd: no, consensus is over blocks.
 160 2013-05-11 00:37:05 andyh2 has quit (Quit: Leaving...)
 161 2013-05-11 00:37:10 <gmaxwell> cjd: you'll accept a block the network (hopefully) will reject, unless the whole network has the same pro dust stealing rule as you... and if it does, might as well just go and autosteal
 162 2013-05-11 00:37:21 <gmaxwell> (so as to reduce the theory and practice gap)
 163 2013-05-11 00:37:37 <tumak> cjd: why not just post dust privkeys on forum?
 164 2013-05-11 00:37:45 <tumak> whomever wants it, take it
 165 2013-05-11 00:37:46 shawn_fessenden1 has joined
 166 2013-05-11 00:37:48 <edcba> shouldn't we favor tx having less outputs than inputs ?
 167 2013-05-11 00:38:10 <cjd> tumak: because a lot of it is paid to fake pubkeys which are used to store wikleaks/cp/etc
 168 2013-05-11 00:38:19 <ezdiy> edcba: old topic
 169 2013-05-11 00:38:23 <edcba> oh
 170 2013-05-11 00:38:27 <edcba> didn't know
 171 2013-05-11 00:38:27 <ezdiy> gmaxwell uttered something along the lines of "politics"
 172 2013-05-11 00:38:42 shawn_fessenden has quit (Ping timeout: 264 seconds)
 173 2013-05-11 00:38:46 <cjd> gmaxwell: but it's funny :)
 174 2013-05-11 00:39:01 <edcba> don't see how it's politicized issue
 175 2013-05-11 00:39:24 gagecolton has joined
 176 2013-05-11 00:40:14 gagecolton has quit (Client Quit)
 177 2013-05-11 00:40:25 <weex> in the case that two blocks are found at the same time, one of the blocks hashes will be lower(i.e. more work would be required to produce another), why doesn't the network use that information?
 178 2013-05-11 00:40:38 gagecolton has joined
 179 2013-05-11 00:40:58 AlbertTuring has quit (Ping timeout: 245 seconds)
 180 2013-05-11 00:41:02 <ezdiy> edcba: basically txprio or txfee = tx_size * txin_n / txout_n
 181 2013-05-11 00:41:03 <cjd> weex: because of evil tricks w/ withholding a block so you can mine on it privately because you know it's likely to win
 182 2013-05-11 00:41:09 <ezdiy> or some less linear variation of thereof
 183 2013-05-11 00:41:14 askmike has joined
 184 2013-05-11 00:41:40 <weex> cjd: good point
 185 2013-05-11 00:41:53 <gmaxwell> even ignoring malice, that slows convergence.
 186 2013-05-11 00:41:54 <ezdiy> err, txout_n / txin_n
 187 2013-05-11 00:42:14 <cjd> the current impl favors finding a block and bcasting it to as many nodes as possible as fast as possible
 188 2013-05-11 00:42:21 <cjd> which is actually really what we want
 189 2013-05-11 00:42:26 <weex> gmaxwell: i'd think if it weren't for the malice, everyone would jump on the lower block immediately
 190 2013-05-11 00:42:40 ProfNeurus has joined
 191 2013-05-11 00:42:41 ProfNeurus has quit (Changing host)
 192 2013-05-11 00:42:41 ProfNeurus has joined
 193 2013-05-11 00:43:00 <gmaxwell> weex: you actually have to have the lower block. Transmission isnt instantaneous.
 194 2013-05-11 00:43:03 <edcba> cjd: now about the fee carrying tx relaying... :)
 195 2013-05-11 00:43:10 <ezdiy> weex: yeah, sometimes the orphans are suspiciously spaced far apart
 196 2013-05-11 00:43:32 <gmaxwell> This means for some time people will be trying to extend the first, and some people will be trying to extend the second.
 197 2013-05-11 00:43:40 <ezdiy> if timestamps in block are to be trusted, since its just median value of your neighbouring peers
 198 2013-05-11 00:44:11 <cjd> petertodd wrote an excellent email about timestamps
 199 2013-05-11 00:45:15 <weex> often times when you read about the block chain people say the network prefers the chain that required the most work so this just means it goes off the difficulty, not the actual hashes involved
 200 2013-05-11 00:45:38 <edcba> cjd: but you didn't get it yet since it is dated from 2019 ?
 201 2013-05-11 00:46:03 <HaltingState> gmaxwell, this alt coin thing is getting out of hand; there will 500 alt coins by next month
 202 2013-05-11 00:46:18 <cjd> http://permalink.gmane.org/gmane.comp.bitcoin.devel/2153
 203 2013-05-11 00:46:20 <weex> have to remember consensus is more important than amount of work
 204 2013-05-11 00:46:37 <weex> HaltingState: have you seen rumors of the altcoin generator website?
 205 2013-05-11 00:46:40 <HaltingState> someone anounced netcoin and then "Some idiot stole our name and released a scam ..." lol and someone released an altcoin before they could
 206 2013-05-11 00:46:48 <HaltingState> weex, omfg gimme it
 207 2013-05-11 00:47:01 iwilcox has quit (Quit: because)
 208 2013-05-11 00:47:01 <cjd> lol
 209 2013-05-11 00:47:02 <ezdiy> cjd: neat, didnt realize bitcoind will accept any timestamp in future
 210 2013-05-11 00:47:06 rdponticelli has quit (Ping timeout: 264 seconds)
 211 2013-05-11 00:47:12 bibbybob has quit (Quit: Leaving)
 212 2013-05-11 00:47:15 tyn has joined
 213 2013-05-11 00:47:17 <weex> HaltingState: just rumors, i figure it'll blow over like so many altcoins
 214 2013-05-11 00:47:22 <cjd> ezdiy: up to 2 hours into the future
 215 2013-05-11 00:47:36 <cjd> and as far back as the median of the last 11 blocks into the past
 216 2013-05-11 00:47:41 <cjd> highly maluble
 217 2013-05-11 00:47:49 <cjd> which makes it less bittle
 218 2013-05-11 00:47:57 <cjd> a lesson learned the hard way by the solidcoin guys
 219 2013-05-11 00:49:11 richcollins has quit (Quit: richcollins)
 220 2013-05-11 00:50:32 <edcba> i really think satoshi used a too much large interval for those timestamps...
 221 2013-05-11 00:50:43 <edcba> i guess it was to ease the initial dev
 222 2013-05-11 00:50:54 <HaltingState> gmaxwell, this is stupid; investors are buying up ripples; they are idiots; they expect ripple to go up and there are like 100 trillion of them and they have not been dumped on market yet
 223 2013-05-11 00:50:56 <gmaxwell> huh?
 224 2013-05-11 00:51:09 <cjd> haha
 225 2013-05-11 00:51:20 <gmaxwell> the huh was directed at edcba
 226 2013-05-11 00:51:35 <gmaxwell> HaltingState: yea, I boggle. I'm quite happy with the ~1BTC I got selling my freebie ripple
 227 2013-05-11 00:51:49 <gmaxwell> "Easiest $30 ever"
 228 2013-05-11 00:51:59 tyn has quit (Max SendQ exceeded)
 229 2013-05-11 00:52:07 <cjd> edcba: everyone who has ever touched those numbers soon died in a fiery pit of hax
 230 2013-05-11 00:52:12 <HaltingState> i bought a bitcoin IOU with my ripples and i lost value because XRP apprecated because of stupid investors who think its going to be the next feather coin
 231 2013-05-11 00:52:20 <gmaxwell> HaltingState: but I don't know that its safe to assume its investors doing it, quite possibly the ripple folks buying people to try out the system.
 232 2013-05-11 00:52:36 AlbertTuring has joined
 233 2013-05-11 00:52:51 <gmaxwell> cjd: hah exactly.
 234 2013-05-11 00:53:16 <cjd> idk where satoshi got them but that's another case of apparent divine intervention
 235 2013-05-11 00:53:25 wallet43 has joined
 236 2013-05-11 00:53:26 tyn has joined
 237 2013-05-11 00:53:30 <cjd> I've learned to stop questioning them
 238 2013-05-11 00:53:39 <tumak> i cant quite figure out whats the deal with ripple
 239 2013-05-11 00:53:56 <tumak> i mean, there are some really good devs behind it (like justmoon, author of bitcoinjs)
 240 2013-05-11 00:54:08 askmike has quit (Remote host closed the connection)
 241 2013-05-11 00:54:12 <tumak> shall i just assume this is moral integrity for sale?
 242 2013-05-11 00:54:25 <cjd> it's like partially a colorcoin scheme and partially an altcoin scam
 243 2013-05-11 00:54:29 <cjd> colorcoins are cool
 244 2013-05-11 00:54:30 <gmaxwell> There is nothing immoral about making an likely to be illfated system.
 245 2013-05-11 00:55:03 <cjd> well.. pump-n-dump schemes (if intentional) are federal pen illegal
 246 2013-05-11 00:55:04 <HaltingState> tumak, they are trying to solve intractable problems and its by the mtgox guys so not sure if its going to work; expecially with security
 247 2013-05-11 00:55:07 <tumak> well, at least scamcoiners openly admit its just for the fun of pump and dump
 248 2013-05-11 00:55:11 <HaltingState> and he only gave me 10k ripples and i was insulted
 249 2013-05-11 00:55:18 <tumak> ripple pretends its not the case
 250 2013-05-11 00:55:18 <gmaxwell> I think it's somewhat regrettable that "scam" has taken off as a moniker for the altcoin stuff... because a bunch of it is not a scam its just ... a bad idea.
 251 2013-05-11 00:55:42 <weex> the new ripple seems to be based on http://www.links.org/files/distributed-currency.pdf
 252 2013-05-11 00:55:43 <gmaxwell> (not to say that some of it isn't just for the purpose of making a quick buck)
 253 2013-05-11 00:55:45 <cjd> that's valid
 254 2013-05-11 00:55:47 <weex> from Ben Laurie
 255 2013-05-11 00:55:59 <cjd> I know for a fact that NameCoin was not developed as a scam
 256 2013-05-11 00:56:07 <gmaxwell> weex: not at all.
 257 2013-05-11 00:56:07 <HaltingState> weex, any more links?
 258 2013-05-11 00:56:07 <cjd> but it's hard to guage intent in these cases
 259 2013-05-11 00:56:25 <weex> gmaxwell: i couldn't help thinking about ripple when reading it
 260 2013-05-11 00:56:37 franl has joined
 261 2013-05-11 00:56:39 <tumak> cjd: namecoin could be resurrected anytime
 262 2013-05-11 00:56:41 ProfNeurus has quit (Quit: ProfNeurus)
 263 2013-05-11 00:56:48 <cjd> namecoin is dead?
 264 2013-05-11 00:56:51 <edcba> has someone looked at timestamps vs real time diffs ?
 265 2013-05-11 00:57:04 <gmaxwell> weex: ripple is based on ripple (the thing which they bought the name of), but afaik their distributed system stuff is just random whatever pulled out of jed's rear end and has no rigorous support even at the level of the bitcoin.pdf whitepaper.
 266 2013-05-11 00:57:33 <weex> gmaxwell: read that link and it sounds a lot like what came out of jed's rear end
 267 2013-05-11 00:57:37 <gmaxwell> but that doesn't make it a scam.
 268 2013-05-11 00:57:45 <tumak> cjd: give me $200k and i'll happily give it to ICANN
 269 2013-05-11 00:57:54 <tumak> to deleg namecoin zone
 270 2013-05-11 00:58:06 <tumak> thats all what it takes for that chain to succeed
 271 2013-05-11 00:58:15 <cjd> tumak: they won't give it to you unless you can kill a domain
 272 2013-05-11 00:58:22 <cjd> which namecoin can't really do
 273 2013-05-11 00:58:23 <gmaxwell> weex: No, I don't agree that it does. And I read that paper and wrote up a lenghty criticism of it that Ben never even bothered a receipt acknowledgment of...
 274 2013-05-11 00:58:35 <weex> fair enough
 275 2013-05-11 00:58:36 <gmaxwell> tumak: uh takes more than that, sadly.
 276 2013-05-11 00:58:40 <tumak> cjd: yeah :(
 277 2013-05-11 00:58:49 <cjd> anyway any blockchain currency causes a certain social harm by moving money from the hands of late adopters to the hands of early adopters so it's bad to create them unless there is very good cause.
 278 2013-05-11 00:59:00 <tumak> had a talk with iana folk in #networker
 279 2013-05-11 00:59:03 rdponticelli has joined
 280 2013-05-11 00:59:16 <tumak> crux of problem is department of commerce and us govt not wanting to lose complete control to censor dns :(
 281 2013-05-11 00:59:24 <gmaxwell> tumak: like, you need to solve SPV validation, for example. having to run a full namecoin node just to securely query is bogus
 282 2013-05-11 00:59:24 <cjd> yeah
 283 2013-05-11 00:59:27 wallet43 has quit (Quit: Leaving.)
 284 2013-05-11 00:59:34 <cjd> real solution to dns problems is not that difficult
 285 2013-05-11 00:59:43 <tumak> gmaxwell: the idea is bootstrap
 286 2013-05-11 00:59:46 <gmaxwell> (good thing I figured out how to solve that years ago)
 287 2013-05-11 00:59:47 <cjd> 5kUSD ish level of difficulty :)
 288 2013-05-11 00:59:58 <tumak> gmaxwell: think politics for a while, naturally that deleg would be taken down for child porn or whatever
 289 2013-05-11 01:00:09 <tumak> but by then, people will use namecoin client on their own
 290 2013-05-11 01:00:13 <gmaxwell> tumak: you filter the delegation of course.
 291 2013-05-11 01:00:15 <tumak> just to oppose the evil govt which stole their domain
 292 2013-05-11 01:00:28 <gmaxwell> tumak: except they won't be able to, because installing it will consume 50gigabytes and growing.
 293 2013-05-11 01:00:30 <tumak> i doubt iana guys would do that
 294 2013-05-11 01:00:40 <tumak> theyre in nice position
 295 2013-05-11 01:00:49 <tumak> 'we just direct the ns record at you, what happens next is icann stuff'
 296 2013-05-11 01:00:50 <gmaxwell> tumak: uh, no you actually _want_ to filter the delegation in order to keep it existing.
 297 2013-05-11 01:01:02 <tumak> sure, technically it's possible
 298 2013-05-11 01:01:04 <tumak> at icann level
 299 2013-05-11 01:01:14 franl has quit (Read error: Connection reset by peer)
 300 2013-05-11 01:01:24 <cjd> https://ezcrypt.it/ck5n#gYdfOeREHwzD92H0WDry4Z5e <-- what brings me here
 301 2013-05-11 01:01:26 <gmaxwell> I mean if whomever is running the .bit delegation doesn't self-censor, then it will get taken away.
 302 2013-05-11 01:01:27 <tumak> iana ought to not insert their own records in delegation
 303 2013-05-11 01:01:37 <tumak> gmaxwell: yup, thats inevitable.
 304 2013-05-11 01:01:48 <tumak> however during the time it will work, before the strawman comes
 305 2013-05-11 01:01:58 <tumak> it would hopefully bootstrap users to use .bit spv clients
 306 2013-05-11 01:02:00 <tumak> straissand style
 307 2013-05-11 01:02:04 gavinandresen has quit (Quit: gavinandresen)
 308 2013-05-11 01:02:06 <gmaxwell> tumak: I don't even think it's a problem. when you want to ... right
 309 2013-05-11 01:02:17 <gmaxwell> tumak: except SPV clients are not possible in the current design of namecoin.
 310 2013-05-11 01:02:42 <edcba> cjd: tldr ?
 311 2013-05-11 01:02:53 <gmaxwell> tumak: also, plenty of other issues.. spammers bought up all the good names for pennies because the reg cost went down too fast after it was adjusted.
 312 2013-05-11 01:03:00 <tumak> gmaxwell: sure sure
 313 2013-05-11 01:03:00 <cjd> edcba: /exec sudo reboot
 314 2013-05-11 01:03:12 <tumak> gmaxwell: this needs chain redesign anyway
 315 2013-05-11 01:03:18 Transisto has quit (Ping timeout: 264 seconds)
 316 2013-05-11 01:03:19 <tumak> gmaxwell: .bit not for grabs etc
 317 2013-05-11 01:03:20 <edcba> EXEC Unknown command
 318 2013-05-11 01:03:22 jurov has quit (Ping timeout: 240 seconds)
 319 2013-05-11 01:03:28 <tumak> gmaxwell: i'm talking the overall scenario with straissand
 320 2013-05-11 01:03:32 <tumak> whether it'd be worth the risk or not
 321 2013-05-11 01:03:55 <cjd> gmaxwell: did you ever write up how to do spv nodes?
 322 2013-05-11 01:03:58 <cjd> in nmc
 323 2013-05-11 01:04:18 <edcba> i think dns by foaf is best
 324 2013-05-11 01:04:22 Transisto has joined
 325 2013-05-11 01:04:35 <cjd> edcba: tried, failed, tried again
 326 2013-05-11 01:04:37 <edcba> attach a name to some pubkey and let the most populat win
 327 2013-05-11 01:04:40 <tumak> cjd: i think the simplest reimplementation would be coin burning in bitcoin chain
 328 2013-05-11 01:04:43 <tumak> cjd: and do spv of that
 329 2013-05-11 01:04:49 <gmaxwell> cjd: it should be obvious to you _now_ how to do it, since it's been described and the decendants of that idea are now commonly discussed. :)
 330 2013-05-11 01:04:50 <tumak> tied economics ftw, no need to invent your own
 331 2013-05-11 01:05:15 <gmaxwell> descendants*
 332 2013-05-11 01:05:28 <cjd> the utxo hashtree thing?
 333 2013-05-11 01:05:43 <gmaxwell> cjd: yup.
 334 2013-05-11 01:05:44 <gmaxwell> cjd: https://bitcointalk.org/index.php?topic=21995.0
 335 2013-05-11 01:05:50 jurov has joined
 336 2013-05-11 01:06:02 <cjd> yeah, I wrote that up at one point
 337 2013-05-11 01:06:11 <gmaxwell> (first sentence third paragraph)
 338 2013-05-11 01:06:16 <cjd> just have to convince miners to add it to the protocol
 339 2013-05-11 01:07:32 <HaltingState> weex, what other alternatives to proof of work are there?
 340 2013-05-11 01:07:39 <cjd> problems with that are: #1 running a blockchain takes work  #2 I'm lazy
 341 2013-05-11 01:07:45 <edcba> :)
 342 2013-05-11 01:07:51 <gmaxwell> cjd: well, you have to actually proof that it isn't horrible. normative datastructures suck.
 343 2013-05-11 01:07:54 <weex> HaltingState: none that i'm particularly fond of
 344 2013-05-11 01:08:11 iwilcox_ has joined
 345 2013-05-11 01:08:32 <cjd> mmm not following that sentence
 346 2013-05-11 01:08:36 <cjd> like I'm 5?
 347 2013-05-11 01:08:59 <ezdiy> tumak: i think you'll miss the early adoption factor/craze if you dismiss the chain almost altogether via bitcoin PoB
 348 2013-05-11 01:09:22 <ezdiy> not saying its necessary for alt chain to succeed, but it works that way
 349 2013-05-11 01:09:38 Belxjander has quit (Ping timeout: 252 seconds)
 350 2013-05-11 01:10:15 ali1234 has quit (Quit: Leaving.)
 351 2013-05-11 01:11:06 tyn has quit (Ping timeout: 264 seconds)
 352 2013-05-11 01:12:03 <tumak> ezdiy: think of the poor miners, they'd have to care about _something_, because of bitcoin dns, _again_ :)
 353 2013-05-11 01:12:10 iwilcox_ has quit (Remote host closed the connection)
 354 2013-05-11 01:12:58 <tumak> (neither am i sure that merged mining was ever a good idea to begin with)
 355 2013-05-11 01:13:02 tyn has joined
 356 2013-05-11 01:13:03 XertroV has joined
 357 2013-05-11 01:14:41 starsoccer has joined
 358 2013-05-11 01:14:44 Phoebus has joined
 359 2013-05-11 01:14:45 tyn has quit (Max SendQ exceeded)
 360 2013-05-11 01:14:46 EPiSKiNG- has joined
 361 2013-05-11 01:15:00 EPiSKiNG- is now known as Guest70581
 362 2013-05-11 01:15:16 forrestv has joined
 363 2013-05-11 01:15:45 <HaltingState> weex, is there a list somewhere of alternatives to proof of work
 364 2013-05-11 01:15:56 Tron- has quit (Ping timeout: 260 seconds)
 365 2013-05-11 01:15:59 <HaltingState> what mechanisms are there for deciding which chain is valid etc?
 366 2013-05-11 01:16:17 tyn has joined
 367 2013-05-11 01:16:46 <HaltingState> bitcoin does the "longest chain wins" and makes the blocks costly; POS tries to burn tokens and say "chain with most expenditure wins", ripple is "make stuff up"
 368 2013-05-11 01:17:04 ThomasV has quit (Quit: Quitte)
 369 2013-05-11 01:17:21 phungus has joined
 370 2013-05-11 01:17:50 EPiSKiNG has joined
 371 2013-05-11 01:18:06 <cjd> xD
 372 2013-05-11 01:18:11 <HaltingState> ripple requires all the servers to agree on transactions before they are entered in block chain and for all authorities to have the set of pending transactions; which is insane; i have no idea how you would sync that and get consensus and what happens if nodes lie
 373 2013-05-11 01:18:11 Diapolis has quit (Remote host closed the connection)
 374 2013-05-11 01:18:34 <gmaxwell> HaltingState: its trivial if one party controls all the servers. :P
 375 2013-05-11 01:18:41 <ezdiy> HaltingState: PoW, PoS, PoB are valid ones imo
 376 2013-05-11 01:18:47 <cjd> oh oh oh
 377 2013-05-11 01:18:49 <HaltingState> whats PoB?
 378 2013-05-11 01:19:00 <cjd> ripple is a centralized virtual currency?
 379 2013-05-11 01:19:00 <gmaxwell> proof of beer.
 380 2013-05-11 01:19:00 <ezdiy> throwing your coins down the drain in one chain
 381 2013-05-11 01:19:05 <ezdiy> is proof of work in another chain
 382 2013-05-11 01:19:06 <ezdiy> :)
 383 2013-05-11 01:19:25 <gmaxwell> cjd: argue that based on the public data so far it's either centralized or insecure. (pick one)
 384 2013-05-11 01:19:39 <cjd> FinCEN is going to be thrilled
 385 2013-05-11 01:19:42 <weex> i just wanted to see server code
 386 2013-05-11 01:19:42 <edcba> can't i take both ?
 387 2013-05-11 01:19:52 <gmaxwell> basically their security model is obviously secure if its centralized and ... far from obviously secure otherwise.
 388 2013-05-11 01:20:18 <weex> once early adopters are invested enough in it, it can stay centralized forever
 389 2013-05-11 01:20:38 Belxjander has joined
 390 2013-05-11 01:20:41 <ezdiy> "i dont always premine, but when i do, i do it on central server"
 391 2013-05-11 01:21:12 <edcba> ok let's use IP4 space to make some pow !
 392 2013-05-11 01:21:21 <ezdiy> lol
 393 2013-05-11 01:21:40 <edcba> or IPv6 to speed up adoption
 394 2013-05-11 01:21:42 <ezdiy> BotCoin
 395 2013-05-11 01:21:50 <edcba> haha nice name
 396 2013-05-11 01:22:01 <HaltingState> bitcoin talks should have sub forums for the altcoins; this is stupid; they are part of the community
 397 2013-05-11 01:22:01 EPiSKiNG has quit (Client Quit)
 398 2013-05-11 01:22:11 <ezdiy> originally i joked about SpamCoin, proof of amount spam sent
 399 2013-05-11 01:22:12 <HaltingState> and bbq should not have a forum but litecoin should
 400 2013-05-11 01:22:18 rottenchris has joined
 401 2013-05-11 01:22:19 <ezdiy> but i guess it can be distilled to proof of ownership of ip
 402 2013-05-11 01:22:53 <ezdiy> HaltingState: i can understand theymos's stance on that
 403 2013-05-11 01:22:58 <edcba> maybe we can raise the level and switching from IP to DNS ! dnscoin !
 404 2013-05-11 01:23:59 <ezdiy> HaltingState: he should honour the request, just create 'Pump & Dump schemes' and move all altcoin threads in there
 405 2013-05-11 01:24:10 <ezdiy> or at least those which were proven to be P&D already
 406 2013-05-11 01:24:26 da2ce7 has quit (Read error: Connection reset by peer)
 407 2013-05-11 01:24:34 <HaltingState> well PPC is valid and should be dicusssions about security model etc
 408 2013-05-11 01:24:52 <HaltingState> and solid coin needs one for historical reasons and as warning and lolz
 409 2013-05-11 01:24:55 <ezdiy> yeah, most historical alts are valid
 410 2013-05-11 01:25:00 <ezdiy> but the recent madness?
 411 2013-05-11 01:25:06 <HaltingState> and litecoin because it has lots of users; bbq and others can go in misc alt coins
 412 2013-05-11 01:25:08 <ezdiy> RoyalCoin? Really? C'mon.
 413 2013-05-11 01:25:15 <ezdiy> this is 12yr olds full force
 414 2013-05-11 01:25:23 <HaltingState> the forum for new altcoins
 415 2013-05-11 01:25:32 <gmaxwell> this is all kinda OT here.
 416 2013-05-11 01:25:32 Guest70581 has quit (Changing host)
 417 2013-05-11 01:25:32 Guest70581 has joined
 418 2013-05-11 01:25:36 Guest70581 is now known as EPiSKiNG-
 419 2013-05-11 01:25:45 da2ce7 has joined
 420 2013-05-11 01:25:51 rottenchris has left ()
 421 2013-05-11 01:27:27 nova907767 has joined
 422 2013-05-11 01:27:32 <ezdiy> gmaxwell: btw, what the hell is Coin of the moonmen
 423 2013-05-11 01:27:52 AndChat64721 has joined
 424 2013-05-11 01:28:08 <ezdiy> couldn't quite grasp the concept (and yes, i'm interested in Po* ledgers to store large amounts of data)
 425 2013-05-11 01:28:26 <edcba> made from moondust
 426 2013-05-11 01:30:11 Habbie_ has joined
 427 2013-05-11 01:30:28 nova90 has quit (Ping timeout: 252 seconds)
 428 2013-05-11 01:30:29 nsillik has joined
 429 2013-05-11 01:30:48 resinate has quit (Ping timeout: 256 seconds)
 430 2013-05-11 01:31:04 <HaltingState> "why cant we merge mine scrypt coins?" lol
 431 2013-05-11 01:31:15 mollison has joined
 432 2013-05-11 01:31:17 Eiii has joined
 433 2013-05-11 01:31:17 Eiii has quit (!~NA@c-24-21-18-118.hsd1.or.comcast.net|Changing host)
 434 2013-05-11 01:31:17 Eiii has joined
 435 2013-05-11 01:31:28 rs0_ has joined
 436 2013-05-11 01:31:41 alaricsp_ has joined
 437 2013-05-11 01:31:43 SomeoneWeird has quit (Ping timeout: 245 seconds)
 438 2013-05-11 01:31:43 Habbie has quit (Read error: Connection reset by peer)
 439 2013-05-11 01:31:43 BlueMatt has quit (Ping timeout: 245 seconds)
 440 2013-05-11 01:31:43 redeeman has quit (Ping timeout: 245 seconds)
 441 2013-05-11 01:31:43 _flow__ has quit (Ping timeout: 245 seconds)
 442 2013-05-11 01:31:43 EasyAt has quit (Ping timeout: 245 seconds)
 443 2013-05-11 01:31:43 rs0 has quit (Ping timeout: 245 seconds)
 444 2013-05-11 01:31:44 sytse has quit (Ping timeout: 245 seconds)
 445 2013-05-11 01:31:44 Mad7Scientist has quit (Excess Flood)
 446 2013-05-11 01:31:44 forrestv has quit (Ping timeout: 245 seconds)
 447 2013-05-11 01:31:44 Eiii has quit (Ping timeout: 245 seconds)
 448 2013-05-11 01:31:44 alaricsp has quit (Ping timeout: 245 seconds)
 449 2013-05-11 01:31:44 segy has quit (Ping timeout: 245 seconds)
 450 2013-05-11 01:31:48 Luke-Jr has quit (Ping timeout: 245 seconds)
 451 2013-05-11 01:31:48 sud3n has quit (Ping timeout: 245 seconds)
 452 2013-05-11 01:31:48 coingenuity has quit (Ping timeout: 245 seconds)
 453 2013-05-11 01:31:48 DBordello has quit (Ping timeout: 245 seconds)
 454 2013-05-11 01:31:48 Aexoden has quit (Ping timeout: 245 seconds)
 455 2013-05-11 01:31:49 swhitt has quit (Ping timeout: 245 seconds)
 456 2013-05-11 01:31:49 redeeman has joined
 457 2013-05-11 01:31:52 BlueMatt has joined
 458 2013-05-11 01:31:53 EasyAt has joined
 459 2013-05-11 01:31:53 EasyAt has quit (Changing host)
 460 2013-05-11 01:31:53 EasyAt has joined
 461 2013-05-11 01:31:54 luke-jr_ has joined
 462 2013-05-11 01:31:54 segy_ has joined
 463 2013-05-11 01:31:57 Aexoden has joined
 464 2013-05-11 01:32:13 sipa has quit (Ping timeout: 245 seconds)
 465 2013-05-11 01:32:17 segy_ is now known as segy
 466 2013-05-11 01:32:22 EvilPete_ has joined
 467 2013-05-11 01:32:24 SomeoneWeird has joined
 468 2013-05-11 01:32:33 gribble has quit (Disconnected by services)
 469 2013-05-11 01:32:37 SirDefaced has joined
 470 2013-05-11 01:32:45 sytse has joined
 471 2013-05-11 01:32:47 SomeoneWeird is now known as Guest13085
 472 2013-05-11 01:32:53 coingenuity has joined
 473 2013-05-11 01:33:06 <weex> if there are multiple longterm bitcoin-based systems, they will likely share some development so it's question where those issues should go
 474 2013-05-11 01:33:07 _flow__ has joined
 475 2013-05-11 01:33:10 <gmaxwell> ezdiy: it just takes the some what crazy step of not creating an artifical distinction between money and bytes.
 476 2013-05-11 01:33:10 swhitt has joined
 477 2013-05-11 01:33:16 forrestv has joined
 478 2013-05-11 01:33:19 sipa has joined
 479 2013-05-11 01:33:20 <gmaxwell> weex: lol 'development'
 480 2013-05-11 01:33:31 _sgstair has joined
 481 2013-05-11 01:33:31 sgstair has quit (Disconnected by services)
 482 2013-05-11 01:33:32 _sgstair is now known as sgstair
 483 2013-05-11 01:33:34 <weex> i meant to say developmental issues
 484 2013-05-11 01:33:34 sud3n has joined
 485 2013-05-11 01:33:43 Tasqa_ has joined
 486 2013-05-11 01:33:51 buZz_ has joined
 487 2013-05-11 01:33:56 bhaug has quit (Ping timeout: 256 seconds)
 488 2013-05-11 01:33:57 <weex> but i know none have the passion of the core yet
 489 2013-05-11 01:34:08 <gmaxwell> I mean, so far none of the altcoins appears to recieve sustaining development in any great degree.
 490 2013-05-11 01:34:08 datagutt has quit (Ping timeout: 264 seconds)
 491 2013-05-11 01:34:08 zz_highPriestLOL has quit (Ping timeout: 264 seconds)
 492 2013-05-11 01:34:09 buZz has quit (Ping timeout: 264 seconds)
 493 2013-05-11 01:34:09 EvilPete has quit (Ping timeout: 264 seconds)
 494 2013-05-11 01:34:16 <HaltingState> ok the alt coins are harmeless http://coinmarketcap.com/
 495 2013-05-11 01:34:19 tcatm has quit (Ping timeout: 264 seconds)
 496 2013-05-11 01:34:20 mow has quit (Ping timeout: 264 seconds)
 497 2013-05-11 01:34:20 Tasqa has quit (Ping timeout: 264 seconds)
 498 2013-05-11 01:34:20 Keefe has quit (Ping timeout: 264 seconds)
 499 2013-05-11 01:34:27 DBordello has joined
 500 2013-05-11 01:34:31 <ezdiy> gmaxwell: ah, so details how actual storage of said bytes would work is intentionally left out :/
 501 2013-05-11 01:34:33 Mad7Scientist has joined
 502 2013-05-11 01:34:40 nsillik_ has joined
 503 2013-05-11 01:34:49 zz_highPriestLOL has joined
 504 2013-05-11 01:34:55 erska has quit (Ping timeout: 264 seconds)
 505 2013-05-11 01:34:55 Ad0 has quit (Ping timeout: 264 seconds)
 506 2013-05-11 01:34:58 franl has joined
 507 2013-05-11 01:35:05 <ezdiy> my point being, if wikileaks et al want to store data indefinitely, there should be proper means to do so
 508 2013-05-11 01:35:11 erska has joined
 509 2013-05-11 01:35:12 _nomazda has joined
 510 2013-05-11 01:35:13 tcatm has joined
 511 2013-05-11 01:35:14 tcatm has quit (Changing host)
 512 2013-05-11 01:35:14 tcatm has joined
 513 2013-05-11 01:35:17 mow has joined
 514 2013-05-11 01:35:32 Ad0 has joined
 515 2013-05-11 01:35:38 <gmaxwell> ezdiy: if indefinitely means infinitely then it has potentially infinite cost.
 516 2013-05-11 01:35:49 nickchow has joined
 517 2013-05-11 01:35:57 comboy has joined
 518 2013-05-11 01:36:13 <ezdiy> hm, that does not provide the necessary economic incentive compared to bitcoin :)
 519 2013-05-11 01:36:18 XertroV has quit (Quit: Leaving.)
 520 2013-05-11 01:36:19 thelames1 has joined
 521 2013-05-11 01:36:23 n5 has quit (Ping timeout: 276 seconds)
 522 2013-05-11 01:36:26 Chuky has quit (Quit: • IRcap • 8.71 •)
 523 2013-05-11 01:36:29 <ezdiy> pay once, store forever
 524 2013-05-11 01:36:46 denisx has quit (Quit: denisx)
 525 2013-05-11 01:36:48 <edcba> steg it into porn
 526 2013-05-11 01:36:55 <ezdiy> edcba: lol yeah
 527 2013-05-11 01:37:17 Hunner has joined
 528 2013-05-11 01:37:21 <ezdiy> viral steganography
 529 2013-05-11 01:37:26 tucenaber has joined
 530 2013-05-11 01:38:06 rdponticelli has quit (Ping timeout: 264 seconds)
 531 2013-05-11 01:38:10 mikola has joined
 532 2013-05-11 01:38:26 Guest60386 has joined
 533 2013-05-11 01:38:33 n5 has joined
 534 2013-05-11 01:38:52 nsillik has quit (Ping timeout: 268 seconds)
 535 2013-05-11 01:38:53 Guest14712 has joined
 536 2013-05-11 01:39:25 xire has joined
 537 2013-05-11 01:39:25 xire has quit (Changing host)
 538 2013-05-11 01:39:25 xire has joined
 539 2013-05-11 01:39:29 nsillik_ has quit (Ping timeout: 268 seconds)
 540 2013-05-11 01:39:35 rs0 has joined
 541 2013-05-11 01:40:16 rdponticelli has joined
 542 2013-05-11 01:40:41 bhaug has joined
 543 2013-05-11 01:40:51 Sealy has joined
 544 2013-05-11 01:41:12 Keefe has joined
 545 2013-05-11 01:41:12 Keefe has quit (Changing host)
 546 2013-05-11 01:41:12 Keefe has joined
 547 2013-05-11 01:43:09 matjeh has joined
 548 2013-05-11 01:43:27 jn has quit (Ping timeout: 245 seconds)
 549 2013-05-11 01:43:45 shawn_fessenden has joined
 550 2013-05-11 01:43:49 smickles has joined
 551 2013-05-11 01:43:52 gribble has joined
 552 2013-05-11 01:44:46 <edcba> hi matjeh
 553 2013-05-11 01:44:58 poop_ has joined
 554 2013-05-11 01:45:02 Squidicuz has quit (Read error: Connection reset by peer)
 555 2013-05-11 01:45:05 molecular has joined
 556 2013-05-11 01:45:45 Silverion has joined
 557 2013-05-11 01:45:53 XRPTrader2_ has joined
 558 2013-05-11 01:46:05 shawn_fessenden1 has quit (Read error: Connection reset by peer)
 559 2013-05-11 01:46:05 emryss has quit (Read error: Connection reset by peer)
 560 2013-05-11 01:46:25 _sgstair has joined
 561 2013-05-11 01:46:28 sgstair has quit (Disconnected by services)
 562 2013-05-11 01:46:29 _sgstair is now known as sgstair
 563 2013-05-11 01:46:35 _W_ has quit (Ping timeout: 276 seconds)
 564 2013-05-11 01:46:36 Squidicuz has joined
 565 2013-05-11 01:46:46 XRPTrader2 has quit (Ping timeout: 276 seconds)
 566 2013-05-11 01:46:47 AlbertTuring has quit (Ping timeout: 245 seconds)
 567 2013-05-11 01:46:47 XRPTrader2_ is now known as XRPTrader2
 568 2013-05-11 01:47:04 o3u_ has joined
 569 2013-05-11 01:47:11 wamatt_ has joined
 570 2013-05-11 01:47:33 AlbertTuring has joined
 571 2013-05-11 01:47:35 normanrichards has quit (Quit: normanrichards)
 572 2013-05-11 01:47:43 sbbodhtimrj has joined
 573 2013-05-11 01:48:13 Sealy has quit (Quit: Sealy)
 574 2013-05-11 01:48:21 gribble has quit (Disconnected by services)
 575 2013-05-11 01:48:32 Guest16827 has joined
 576 2013-05-11 01:48:40 shawn_fessenden1 has joined
 577 2013-05-11 01:49:08 kronicd has joined
 578 2013-05-11 01:49:59 wamatt has quit (Ping timeout: 245 seconds)
 579 2013-05-11 01:49:59 shawn_fessenden has quit (Ping timeout: 245 seconds)
 580 2013-05-11 01:49:59 erska_ has joined
 581 2013-05-11 01:50:07 sytse has quit (Ping timeout: 245 seconds)
 582 2013-05-11 01:50:07 BlueMatt has quit (Ping timeout: 245 seconds)
 583 2013-05-11 01:50:07 jrmithdobbs has quit (Ping timeout: 245 seconds)
 584 2013-05-11 01:50:07 kronicd_ has quit (Ping timeout: 245 seconds)
 585 2013-05-11 01:50:07 o3u has quit (Ping timeout: 245 seconds)
 586 2013-05-11 01:50:07 sbbodhtimrj is now known as jrmithdobbs
 587 2013-05-11 01:50:18 forrestv has quit (Ping timeout: 245 seconds)
 588 2013-05-11 01:50:18 poop_ has quit (Ping timeout: 245 seconds)
 589 2013-05-11 01:50:18 Keefe has quit (Ping timeout: 245 seconds)
 590 2013-05-11 01:50:18 Guest14712 has quit (Ping timeout: 245 seconds)
 591 2013-05-11 01:50:18 erska has quit (Ping timeout: 245 seconds)
 592 2013-05-11 01:50:18 sud3n has quit (Ping timeout: 245 seconds)
 593 2013-05-11 01:50:18 luke-jr_ has quit (Ping timeout: 245 seconds)
 594 2013-05-11 01:50:18 caedes has quit (Ping timeout: 245 seconds)
 595 2013-05-11 01:50:22 poop__ has joined
 596 2013-05-11 01:50:26 <HaltingState> "In the future every new coin will be a fork of the Ripple codebase. It's just better in every way." lol
 597 2013-05-11 01:50:28 _caedes has joined
 598 2013-05-11 01:50:54 BlueMatt has joined
 599 2013-05-11 01:51:01 Keefe has joined
 600 2013-05-11 01:51:21 sud3n has joined
 601 2013-05-11 01:51:45 BlueMatt is now known as Guest86920
 602 2013-05-11 01:51:46 forrestv has joined
 603 2013-05-11 01:51:52 luke-jr_ has joined
 604 2013-05-11 01:52:06 luke-jr_ is now known as Luke-Jr
 605 2013-05-11 01:52:18 Guest14712 has joined
 606 2013-05-11 01:52:53 <ezdiy> HaltingState: maybe it is
 607 2013-05-11 01:53:03 <ezdiy> developers making bold statements rarely live up to expectations though
 608 2013-05-11 01:53:48 jayne has joined
 609 2013-05-11 01:54:03 catcow1 has joined
 610 2013-05-11 01:54:08 _nomazda has quit (Read error: Connection reset by peer)
 611 2013-05-11 01:54:21 jayne has quit (Read error: Connection reset by peer)
 612 2013-05-11 01:54:24 n5 has quit (Ping timeout: 264 seconds)
 613 2013-05-11 01:54:28 Perlboy has quit (Ping timeout: 276 seconds)
 614 2013-05-11 01:54:37 resinate has joined
 615 2013-05-11 01:54:39 newbie46 has quit (Read error: Connection reset by peer)
 616 2013-05-11 01:54:48 validity has joined
 617 2013-05-11 01:54:48 PhantomSpark has joined
 618 2013-05-11 01:54:55 Diablo-D3 has joined
 619 2013-05-11 01:55:02 gfawkes_ has joined
 620 2013-05-11 01:55:06 gfawkes has quit (Ping timeout: 276 seconds)
 621 2013-05-11 01:55:07 newbie46 has joined
 622 2013-05-11 01:55:13 whiterabbit has joined
 623 2013-05-11 01:55:45 PhantomSpark has quit (Ping timeout: 276 seconds)
 624 2013-05-11 01:55:45 wrabbit has quit (Ping timeout: 276 seconds)
 625 2013-05-11 01:55:45 sacredchao has quit (Ping timeout: 276 seconds)
 626 2013-05-11 01:55:49 whiterabbit is now known as wrabbit
 627 2013-05-11 01:55:58 o3u_ has quit (Read error: Connection reset by peer)
 628 2013-05-11 01:55:58 Corndawg has quit (Ping timeout: 245 seconds)
 629 2013-05-11 01:55:58 Guest13085 has quit (Ping timeout: 245 seconds)
 630 2013-05-11 01:56:00 gribble has joined
 631 2013-05-11 01:56:03 sacredchao has joined
 632 2013-05-11 01:56:03 Corndawg_ has joined
 633 2013-05-11 01:56:06 o3u has joined
 634 2013-05-11 01:56:07 sytse has joined
 635 2013-05-11 01:56:25 GordonG3kko has quit (Ping timeout: 276 seconds)
 636 2013-05-11 01:56:25 catcow has quit (Ping timeout: 276 seconds)
 637 2013-05-11 01:56:36 Diapolis has joined
 638 2013-05-11 01:57:03 hsmiths2 has joined
 639 2013-05-11 01:57:11 andrew_scorpil has joined
 640 2013-05-11 01:57:13 optimator_ has joined
 641 2013-05-11 01:57:13 optimator_ has quit (Changing host)
 642 2013-05-11 01:57:13 optimator_ has joined
 643 2013-05-11 01:57:21 Aexoden has quit (Read error: Connection reset by peer)
 644 2013-05-11 01:57:26 Arbition_ has joined
 645 2013-05-11 01:57:27 redeeman has quit (Ping timeout: 256 seconds)
 646 2013-05-11 01:57:28 tcatm_ has joined
 647 2013-05-11 01:57:33 redeeman has joined
 648 2013-05-11 01:57:37 Aexoden has joined
 649 2013-05-11 01:57:42 kanyl has joined
 650 2013-05-11 01:57:43 kanyl has quit (Changing host)
 651 2013-05-11 01:57:43 kanyl has joined
 652 2013-05-11 01:57:53 fwird has joined
 653 2013-05-11 01:57:57 <HaltingState> "Is your New crypto-currency having trouble gaining support of crypto community’s? We Can Help!!!" https://bitcointalk.org/index.php?topic=200475.0
 654 2013-05-11 01:58:01 ll has quit (Ping timeout: 256 seconds)
 655 2013-05-11 01:58:01 <HaltingState> omfg
 656 2013-05-11 01:58:13 XRPTrader2_ has joined
 657 2013-05-11 01:58:27 SomeoneWeird_ has joined
 658 2013-05-11 01:58:28 mollison1 has joined
 659 2013-05-11 01:58:36 <HaltingState> when they say "coin or bar" I am loling; is "bar" sarcasm or wtf
 660 2013-05-11 01:58:44 mhanne_ has joined
 661 2013-05-11 01:58:57 jspilman01 has joined
 662 2013-05-11 01:59:01 zylche__ has joined
 663 2013-05-11 01:59:18 BCBot` has joined
 664 2013-05-11 01:59:18 _nomazda has joined
 665 2013-05-11 01:59:22 aspect__ has joined
 666 2013-05-11 01:59:26 aXs___ has joined
 667 2013-05-11 01:59:28 <MC1984_> !blocks
 668 2013-05-11 01:59:31 djoot_ has joined
 669 2013-05-11 01:59:31 djoot_ has quit (Changing host)
 670 2013-05-11 01:59:31 djoot_ has joined
 671 2013-05-11 01:59:33 grazs_ has joined
 672 2013-05-11 01:59:35 nickchow_ has joined
 673 2013-05-11 01:59:40 systemParanoid has joined
 674 2013-05-11 01:59:55 daktak_ has joined
 675 2013-05-11 01:59:59 dstien_ has joined
 676 2013-05-11 02:00:00 guest892835 has joined
 677 2013-05-11 02:00:11 marchon1 has joined
 678 2013-05-11 02:00:19 mihar_ has joined
 679 2013-05-11 02:00:19 catcow1 has quit (Ping timeout: 264 seconds)
 680 2013-05-11 02:00:19 jevin has quit (Ping timeout: 264 seconds)
 681 2013-05-11 02:00:19 optimator has quit (Ping timeout: 264 seconds)
 682 2013-05-11 02:00:19 fw0rd has quit (Ping timeout: 264 seconds)
 683 2013-05-11 02:00:19 SwedFTP__ has joined
 684 2013-05-11 02:00:19 cut_ has joined
 685 2013-05-11 02:00:19 Neskia has joined
 686 2013-05-11 02:00:19 skeledrew has joined
 687 2013-05-11 02:00:20 rs0 has quit (Ping timeout: 264 seconds)
 688 2013-05-11 02:00:20 testnode9 has quit (Ping timeout: 264 seconds)
 689 2013-05-11 02:00:20 sipa_ has joined
 690 2013-05-11 02:00:21 catcow has joined
 691 2013-05-11 02:00:23 rs0_ has joined
 692 2013-05-11 02:00:30 Sargun_ has joined
 693 2013-05-11 02:00:35 XRPTrader2 has quit (Ping timeout: 245 seconds)
 694 2013-05-11 02:00:35 caput has quit (Ping timeout: 245 seconds)
 695 2013-05-11 02:00:35 grazs has quit (Ping timeout: 245 seconds)
 696 2013-05-11 02:00:35 cut has quit (Ping timeout: 245 seconds)
 697 2013-05-11 02:00:35 mihar has quit (Ping timeout: 245 seconds)
 698 2013-05-11 02:00:35 daktak has quit (Ping timeout: 245 seconds)
 699 2013-05-11 02:00:35 tcatm has quit (Ping timeout: 245 seconds)
 700 2013-05-11 02:00:36 djoot has quit (Ping timeout: 245 seconds)
 701 2013-05-11 02:00:36 mhanne has quit (Ping timeout: 245 seconds)
 702 2013-05-11 02:00:36 Michail1 has quit (Ping timeout: 245 seconds)
 703 2013-05-11 02:00:36 mollison has quit (Ping timeout: 245 seconds)
 704 2013-05-11 02:00:36 Arbition has quit (Ping timeout: 245 seconds)
 705 2013-05-11 02:00:36 elgrecoFL has quit (Ping timeout: 245 seconds)
 706 2013-05-11 02:00:36 guest892735 has quit (Ping timeout: 245 seconds)
 707 2013-05-11 02:00:36 TomServo has quit (Ping timeout: 245 seconds)
 708 2013-05-11 02:00:36 dstien has quit (Ping timeout: 245 seconds)
 709 2013-05-11 02:00:36 Hunner has quit (Ping timeout: 245 seconds)
 710 2013-05-11 02:00:36 segy has quit (Ping timeout: 245 seconds)
 711 2013-05-11 02:00:36 r0sc0e has quit (Ping timeout: 245 seconds)
 712 2013-05-11 02:00:36 _arch_ has quit (Ping timeout: 245 seconds)
 713 2013-05-11 02:00:36 sipa has quit (Ping timeout: 245 seconds)
 714 2013-05-11 02:00:37 upb has quit (Ping timeout: 245 seconds)
 715 2013-05-11 02:00:37 BCBot_ has quit (Ping timeout: 245 seconds)
 716 2013-05-11 02:00:37 aXs__ has quit (Ping timeout: 245 seconds)
 717 2013-05-11 02:00:37 GMP has quit (Ping timeout: 245 seconds)
 718 2013-05-11 02:00:37 Magma_ has quit (Ping timeout: 245 seconds)
 719 2013-05-11 02:00:37 Sargun has quit (Remote host closed the connection)
 720 2013-05-11 02:00:37 hsmiths has quit (Ping timeout: 245 seconds)
 721 2013-05-11 02:00:37 Jezzz has quit (Ping timeout: 245 seconds)
 722 2013-05-11 02:00:41 cut_ is now known as cut
 723 2013-05-11 02:00:43 milone has quit (Ping timeout: 264 seconds)
 724 2013-05-11 02:00:48 brendyyn has joined
 725 2013-05-11 02:00:53 paybitcoin1 has joined
 726 2013-05-11 02:00:57 Guest60386 has quit (Ping timeout: 245 seconds)
 727 2013-05-11 02:01:03 n5 has joined
 728 2013-05-11 02:01:05 o3u_ has joined
 729 2013-05-11 02:01:15 <MC1984_> i said !blocks
 730 2013-05-11 02:01:21 Marinello_ has joined
 731 2013-05-11 02:01:23 GMP has joined
 732 2013-05-11 02:01:31 kjj_ has joined
 733 2013-05-11 02:01:36 Clown has joined
 734 2013-05-11 02:01:39 testnode9 has joined
 735 2013-05-11 02:01:52 impaired_ has joined
 736 2013-05-11 02:01:57 lianj_ has joined
 737 2013-05-11 02:01:57 lianj_ has quit (Changing host)
 738 2013-05-11 02:01:57 lianj_ has joined
 739 2013-05-11 02:01:58 dooglus_ has joined
 740 2013-05-11 02:01:59 JunK-Y_ has joined
 741 2013-05-11 02:02:00 Clown is now known as Guest75188
 742 2013-05-11 02:02:08 milone has joined
 743 2013-05-11 02:02:09 tucenaber_ has joined
 744 2013-05-11 02:02:13 gonffen_ has joined
 745 2013-05-11 02:02:17 smiddi_ has joined
 746 2013-05-11 02:02:30 blakangel has quit (Remote host closed the connection)
 747 2013-05-11 02:02:30 xorgate has quit (Ping timeout: 245 seconds)
 748 2013-05-11 02:02:31 bhaug` has joined
 749 2013-05-11 02:02:32 parus_ has joined
 750 2013-05-11 02:02:34 topi`_ has joined
 751 2013-05-11 02:02:40 clopez_ has joined
 752 2013-05-11 02:02:51 jevin has joined
 753 2013-05-11 02:02:54 alaricsp has joined
 754 2013-05-11 02:02:59 JyZyXEL- has joined
 755 2013-05-11 02:03:05 [\\\]_q has joined
 756 2013-05-11 02:03:09 gribble has quit (Disconnected by services)
 757 2013-05-11 02:03:10 DrHaribo_ has joined
 758 2013-05-11 02:03:15 cypher__ has joined
 759 2013-05-11 02:03:18 ll has joined
 760 2013-05-11 02:03:19 tkolsto_ has joined
 761 2013-05-11 02:03:29 Michail1 has joined
 762 2013-05-11 02:03:29 zeiris_ has joined
 763 2013-05-11 02:03:32 Cusipzzz_ has joined
 764 2013-05-11 02:03:37 kronicd_ has joined
 765 2013-05-11 02:03:48 thelamest has joined
 766 2013-05-11 02:03:52 mow_ has joined
 767 2013-05-11 02:03:54 matjeh_ has joined
 768 2013-05-11 02:03:54 EricJ has joined
 769 2013-05-11 02:03:55 jeremias_ has joined
 770 2013-05-11 02:04:01 Guest20359 has joined
 771 2013-05-11 02:04:01 xorgate has joined
 772 2013-05-11 02:04:02  has quit (Clown|!Clown@unaffiliated/clown/x-0272709|Ping timeout: 268 seconds)
 773 2013-05-11 02:04:02 treetrunk has quit (Ping timeout: 268 seconds)
 774 2013-05-11 02:04:02 Marinello has quit (Ping timeout: 268 seconds)
 775 2013-05-11 02:04:03 erska_ has quit (Ping timeout: 268 seconds)
 776 2013-05-11 02:04:03 coingenuity has quit (Ping timeout: 268 seconds)
 777 2013-05-11 02:04:03 quaz0r has quit (Ping timeout: 268 seconds)
 778 2013-05-11 02:04:03 DrHaribo has quit (Ping timeout: 268 seconds)
 779 2013-05-11 02:04:03 paybitcoin has quit (Ping timeout: 268 seconds)
 780 2013-05-11 02:04:03 cypher has quit (Ping timeout: 268 seconds)
 781 2013-05-11 02:04:03 ageis has quit (Ping timeout: 268 seconds)
 782 2013-05-11 02:04:03 implr has quit (Ping timeout: 268 seconds)
 783 2013-05-11 02:04:03 tkolsto has quit (Ping timeout: 268 seconds)
 784 2013-05-11 02:04:03 bedouin has quit (Ping timeout: 268 seconds)
 785 2013-05-11 02:04:03 akl has quit (Ping timeout: 268 seconds)
 786 2013-05-11 02:04:03 poop__ has quit (Ping timeout: 268 seconds)
 787 2013-05-11 02:04:03 kronicd has quit (Ping timeout: 268 seconds)
 788 2013-05-11 02:04:03 matjeh has quit (Ping timeout: 268 seconds)
 789 2013-05-11 02:04:03 xire has quit (Ping timeout: 268 seconds)
 790 2013-05-11 02:04:03 thelames1 has quit (Ping timeout: 268 seconds)
 791 2013-05-11 02:04:03 nickchow has quit (Ping timeout: 268 seconds)
 792 2013-05-11 02:04:03 mow has quit (Ping timeout: 268 seconds)
 793 2013-05-11 02:04:04 Cusipzzz has quit (Ping timeout: 268 seconds)
 794 2013-05-11 02:04:04 SwedFTP_ has quit (Ping timeout: 268 seconds)
 795 2013-05-11 02:04:07 aceat64 has quit (Ping timeout: 268 seconds)
 796 2013-05-11 02:04:07 Internet13 has quit (Ping timeout: 268 seconds)
 797 2013-05-11 02:04:07 ville--- has quit (Ping timeout: 268 seconds)
 798 2013-05-11 02:04:08 zylche_ has quit (Ping timeout: 268 seconds)
 799 2013-05-11 02:04:08 MKCoin has quit (Ping timeout: 268 seconds)
 800 2013-05-11 02:04:08 Nesetalis has quit (Ping timeout: 268 seconds)
 801 2013-05-11 02:04:08 clopez has quit (Ping timeout: 268 seconds)
 802 2013-05-11 02:04:08 jeremias has quit (Ping timeout: 268 seconds)
 803 2013-05-11 02:04:08 bVector has quit (Ping timeout: 268 seconds)
 804 2013-05-11 02:04:08 bVector has joined
 805 2013-05-11 02:04:09 jaakkos_ has joined
 806 2013-05-11 02:04:10 _arch has joined
 807 2013-05-11 02:04:18 ageis has joined
 808 2013-05-11 02:04:18 EricJ is now known as Guest85158
 809 2013-05-11 02:04:24 caput has joined
 810 2013-05-11 02:04:28 segy has joined
 811 2013-05-11 02:04:55 akl has joined
 812 2013-05-11 02:04:56 akl has quit (Changing host)
 813 2013-05-11 02:04:56 akl has joined
 814 2013-05-11 02:05:03 ageis is now known as Guest62902
 815 2013-05-11 02:05:10 upb has joined
 816 2013-05-11 02:05:19 DBordello has quit (Ping timeout: 264 seconds)
 817 2013-05-11 02:05:23 coingenuity has joined
 818 2013-05-11 02:05:25 aceat64 has joined
 819 2013-05-11 02:05:27 gribble has joined
 820 2013-05-11 02:05:33 Internet13 has joined
 821 2013-05-11 02:05:50 phantomcircuit_ has joined
 822 2013-05-11 02:05:59 elgrecoFL has joined
 823 2013-05-11 02:06:00 Magma_ has joined
 824 2013-05-11 02:06:15 blakangel has joined
 825 2013-05-11 02:06:15 RedEmerald_ has joined
 826 2013-05-11 02:06:29 XRPTrader2_ is now known as XRPTrader2
 827 2013-05-11 02:06:29 Guest11376 has joined
 828 2013-05-11 02:06:38 quaz0r has joined
 829 2013-05-11 02:06:52 xire has joined
 830 2013-05-11 02:06:53 xire has quit (Changing host)
 831 2013-05-11 02:06:53 xire has joined
 832 2013-05-11 02:07:13 brendyyn is now known as brendyn
 833 2013-05-11 02:07:14 RedEmerald_ is now known as RedEmerald
 834 2013-05-11 02:07:22 implr has joined
 835 2013-05-11 02:07:35 MKCoin has joined
 836 2013-05-11 02:07:35 normanrichards has joined
 837 2013-05-11 02:08:12 Keefe has joined
 838 2013-05-11 02:08:44 erska has joined
 839 2013-05-11 02:08:54 bedouin has joined
 840 2013-05-11 02:09:20 macboz has joined
 841 2013-05-11 02:09:28 DBordello has joined
 842 2013-05-11 02:09:35 xnyhps has joined
 843 2013-05-11 02:09:35 brwyatt has joined
 844 2013-05-11 02:09:35 Keefe has joined
 845 2013-05-11 02:10:16 aspect__ is now known as aspect_
 846 2013-05-11 02:10:31 hsmiths has joined
 847 2013-05-11 02:11:08 <helo> what would be the downside to a 10k address pool?
 848 2013-05-11 02:11:17 validity has joined
 849 2013-05-11 02:11:46 poop_ has joined
 850 2013-05-11 02:11:54 Hunner has joined
 851 2013-05-11 02:11:55 Hunner has quit (Changing host)
 852 2013-05-11 02:11:55 Hunner has joined
 853 2013-05-11 02:12:07 <helo> the obvious upside being backups 100x less frequent
 854 2013-05-11 02:12:19 <duSn> faked addresses?
 855 2013-05-11 02:12:37 jevin_ has joined
 856 2013-05-11 02:12:53 <MC1984_> bigger wallet
 857 2013-05-11 02:13:08 nova90 has joined
 858 2013-05-11 02:13:25 <MC1984_> completely forgetting about backing it up ever until one day years from now when you get royally fucked
 859 2013-05-11 02:13:33 buZz has joined
 860 2013-05-11 02:13:40 Skav has joined
 861 2013-05-11 02:13:42 <MC1984_> generally poor substitude for a real HD wallet
 862 2013-05-11 02:13:44 parus_ is now known as parus
 863 2013-05-11 02:13:47 Eiii has joined
 864 2013-05-11 02:13:47 Eiii has quit (Changing host)
 865 2013-05-11 02:13:47 Eiii has joined
 866 2013-05-11 02:14:00 jgarzik has joined
 867 2013-05-11 02:14:14 <helo> show a warning if you have less than 5k addresses until the last backup was made?
 868 2013-05-11 02:14:25 Sealy has joined
 869 2013-05-11 02:14:34 <helo> english :(
 870 2013-05-11 02:14:43 lianj_ is now known as lianj
 871 2013-05-11 02:15:12 nizeguy_ has joined
 872 2013-05-11 02:15:25 _A has joined
 873 2013-05-11 02:15:31 _caedes has joined
 874 2013-05-11 02:15:31 thecell has joined
 875 2013-05-11 02:15:31 jgarzik has joined
 876 2013-05-11 02:15:31 jiffe98 has joined
 877 2013-05-11 02:15:31 tyn has joined
 878 2013-05-11 02:15:58 <MC1984_> it was a bodge from back in the days when there was no keypool at all and hilarious amounts of coins went missing
 879 2013-05-11 02:16:17 Casimir1904 has quit (Ping timeout: 272 seconds)
 880 2013-05-11 02:16:31 <MC1984_> better to just make keypools moot whenever the wallet gets worked on again
 881 2013-05-11 02:16:42 rs0 has joined
 882 2013-05-11 02:16:54 new299__ has joined
 883 2013-05-11 02:17:02 Marinello has joined
 884 2013-05-11 02:17:08 SkillsToShow__ has joined
 885 2013-05-11 02:17:43 implr_ has joined
 886 2013-05-11 02:17:46 CodeShar_ has joined
 887 2013-05-11 02:17:52 <helo> yeah...
 888 2013-05-11 02:18:06 <helo> forever backups will be nice
 889 2013-05-11 02:18:16 marchon has joined
 890 2013-05-11 02:18:33 c_k_ has joined
 891 2013-05-11 02:18:46 ForceMajeure_ has joined
 892 2013-05-11 02:19:02 gribble has quit (Disconnected by services)
 893 2013-05-11 02:19:09 Hasimir- has joined
 894 2013-05-11 02:19:43 andrew_scorpil1 has joined
 895 2013-05-11 02:20:19 shawn_fessenden has joined
 896 2013-05-11 02:20:23 hnz_ has joined
 897 2013-05-11 02:20:29 rdponticelli_ has joined
 898 2013-05-11 02:20:31 Tasqa has joined
 899 2013-05-11 02:20:31 Tasqa has quit (Changing host)
 900 2013-05-11 02:20:31 Tasqa has joined
 901 2013-05-11 02:20:38 eklass2 has joined
 902 2013-05-11 02:20:39 DiabloD3 has joined
 903 2013-05-11 02:20:41 nsh_ has joined
 904 2013-05-11 02:20:48 ardeay_ has quit (Ping timeout: 264 seconds)
 905 2013-05-11 02:21:05 poop__ has joined
 906 2013-05-11 02:21:10 kronicd has joined
 907 2013-05-11 02:21:14 jarpiain_ has joined
 908 2013-05-11 02:21:14 NxTitle_ has joined
 909 2013-05-11 02:21:18 Hunger-- has joined
 910 2013-05-11 02:21:34 peper has joined
 911 2013-05-11 02:21:37 muhoo_ has joined
 912 2013-05-11 02:21:39 dlunch_ has joined
 913 2013-05-11 02:21:40 EasyAt_ has joined
 914 2013-05-11 02:21:41 sturles_ has joined
 915 2013-05-11 02:21:42 AtashiCon has quit (Disconnected by services)
 916 2013-05-11 02:21:45 Sealy has quit (Ping timeout: 245 seconds)
 917 2013-05-11 02:21:45 poop_ has quit (Ping timeout: 245 seconds)
 918 2013-05-11 02:21:45 kronicd_ has quit (Ping timeout: 245 seconds)
 919 2013-05-11 02:21:45 thecell has quit (Ping timeout: 245 seconds)
 920 2013-05-11 02:21:45 elgrecoFL has quit (Ping timeout: 245 seconds)
 921 2013-05-11 02:21:45 jeremias_ has quit (Ping timeout: 245 seconds)
 922 2013-05-11 02:21:45 daktak has joined
 923 2013-05-11 02:21:45 tkolsto has joined
 924 2013-05-11 02:21:46 NxTitle has quit (Disconnected by services)
 925 2013-05-11 02:21:47 quaz0r has quit (Ping timeout: 245 seconds)
 926 2013-05-11 02:21:47 upb has quit (Ping timeout: 245 seconds)
 927 2013-05-11 02:21:47 Guest11376 has quit (Ping timeout: 245 seconds)
 928 2013-05-11 02:21:47 coingenuity has quit (Ping timeout: 245 seconds)
 929 2013-05-11 02:21:47 caput has quit (Ping timeout: 245 seconds)
 930 2013-05-11 02:21:48 Arnavion3 has joined
 931 2013-05-11 02:21:54 Arnavion3 is now known as AtashiCon
 932 2013-05-11 02:21:59 caput has joined
 933 2013-05-11 02:22:00 thecell has joined
 934 2013-05-11 02:22:01 upb has joined
 935 2013-05-11 02:22:01 guest892735 has joined
 936 2013-05-11 02:22:04 quaz0r has joined
 937 2013-05-11 02:22:06 gribble has joined
 938 2013-05-11 02:22:06 phungus_ has joined
 939 2013-05-11 02:22:18 NxTitle_ is now known as NxTitle
 940 2013-05-11 02:22:25 jgm_ has joined
 941 2013-05-11 02:22:33 ubuntu__2 has joined
 942 2013-05-11 02:22:41 Magma_ has quit (Ping timeout: 245 seconds)
 943 2013-05-11 02:22:41 NxTitle has quit (Changing host)
 944 2013-05-11 02:22:41 NxTitle has joined
 945 2013-05-11 02:23:03 smickles_ has joined
 946 2013-05-11 02:23:09 Ad0` has joined
 947 2013-05-11 02:23:10 Guest50940 has joined
 948 2013-05-11 02:23:28 cjd_ has joined
 949 2013-05-11 02:23:29 Magma_ has joined
 950 2013-05-11 02:23:34 petertod1 has joined
 951 2013-05-11 02:23:44 BTCOxygen has joined
 952 2013-05-11 02:23:44 BTCOxygen is now known as Guest90560
 953 2013-05-11 02:23:47 mrkent has quit (Quit: Leaving)
 954 2013-05-11 02:23:52 BurtyBB has joined
 955 2013-05-11 02:23:57 crescendo has joined
 956 2013-05-11 02:24:05 Guest90560 has quit (Ping timeout: 256 seconds)
 957 2013-05-11 02:24:05 digitalmagus2 has joined
 958 2013-05-11 02:24:13 joeykrim__ has joined
 959 2013-05-11 02:24:17 Hunger- has quit (Ping timeout: 252 seconds)
 960 2013-05-11 02:24:39 brocktic1 has joined
 961 2013-05-11 02:24:45 rid3_ has joined
 962 2013-05-11 02:24:50 dugo_ has joined
 963 2013-05-11 02:24:54 coingenuity has joined
 964 2013-05-11 02:24:59 windo has joined
 965 2013-05-11 02:25:07 idstam-se has joined
 966 2013-05-11 02:25:07 clarkm_ has joined
 967 2013-05-11 02:25:11 elgrecoFL has joined
 968 2013-05-11 02:25:25 _nomazda has joined
 969 2013-05-11 02:25:28 mungojel1y has joined
 970 2013-05-11 02:25:30 doublec_ has joined
 971 2013-05-11 02:25:32 mrkent has joined
 972 2013-05-11 02:25:32 mrkent has quit (Changing host)
 973 2013-05-11 02:25:32 mrkent has joined
 974 2013-05-11 02:25:33 lmacken_ has joined
 975 2013-05-11 02:25:37 xire has quit (Ping timeout: 255 seconds)
 976 2013-05-11 02:25:45 MoALTz_ has joined
 977 2013-05-11 02:25:54 bitinsta1t has joined
 978 2013-05-11 02:25:56 jn has joined
 979 2013-05-11 02:26:00 SomeoneWeird has joined
 980 2013-05-11 02:26:03 c_k_ is now known as c_k
 981 2013-05-11 02:26:11 c_k has quit (Changing host)
 982 2013-05-11 02:26:15 SomeoneWeird is now known as Guest6243
 983 2013-05-11 02:26:17 jevin has joined
 984 2013-05-11 02:26:28 mhanne has joined
 985 2013-05-11 02:26:28 mhanne has quit (Changing host)
 986 2013-05-11 02:26:28 mhanne has joined
 987 2013-05-11 02:26:43 skinnkavaj has joined
 988 2013-05-11 02:27:02 stretchw_ has joined
 989 2013-05-11 02:27:09 oru has joined
 990 2013-05-11 02:27:15 loltu- has joined
 991 2013-05-11 02:27:31 Guest38567 has joined
 992 2013-05-11 02:27:32 jeremias has joined
 993 2013-05-11 02:27:50 ivan\_ has joined
 994 2013-05-11 02:27:55 Corndawg has joined
 995 2013-05-11 02:28:08 bonks has quit (Ping timeout: 241 seconds)
 996 2013-05-11 02:28:32 Michail1_ has joined
 997 2013-05-11 02:28:40 doublec_ is now known as doublec
 998 2013-05-11 02:28:40 doublec has quit (Changing host)
 999 2013-05-11 02:28:48 Tyklol has joined
1000 2013-05-11 02:28:56 hnz_ is now known as 14WAAR9TC
1001 2013-05-11 02:28:56 Internet13 is now known as 14WAAR8Y4
1002 2013-05-11 02:28:56 nova90 is now known as 14WAAR88R
1003 2013-05-11 02:28:57 nova90 has joined
1004 2013-05-11 02:28:57 xire has joined
1005 2013-05-11 02:28:57 canoon has joined
1006 2013-05-11 02:28:57 hnz_ has joined
1007 2013-05-11 02:29:16 hpprinter100_ has joined
1008 2013-05-11 02:29:20 cyberdo has quit (Ping timeout: 255 seconds)
1009 2013-05-11 02:29:28 c_k has joined
1010 2013-05-11 02:29:28 erska has joined
1011 2013-05-11 02:29:28 tucenaber_ has joined
1012 2013-05-11 02:29:28 skinnkavaj has joined
1013 2013-05-11 02:29:28 pizzacat has joined
1014 2013-05-11 02:29:28 brimster has joined
1015 2013-05-11 02:29:28 oru has joined
1016 2013-05-11 02:29:28 doublec has joined
1017 2013-05-11 02:29:28 lupine has joined
1018 2013-05-11 02:29:28 systemParanoid has joined
1019 2013-05-11 02:29:28 Sliver has joined
1020 2013-05-11 02:29:28 xorgate has joined
1021 2013-05-11 02:29:28 cris has joined
1022 2013-05-11 02:29:28 Belxjander has joined
1023 2013-05-11 02:29:28 starsoccer has joined
1024 2013-05-11 02:29:42 Guest85158 has quit (Ping timeout: 245 seconds)
1025 2013-05-11 02:29:47 grazs has joined
1026 2013-05-11 02:29:48 starsoccer is now known as Guest73648
1027 2013-05-11 02:29:50 Aexoden_ has joined
1028 2013-05-11 02:29:59 o3u has joined
1029 2013-05-11 02:30:02 systemParanoid has joined
1030 2013-05-11 02:30:04 Belkaar_ has joined
1031 2013-05-11 02:30:09 smiddi has joined
1032 2013-05-11 02:30:11 lianj_ has joined
1033 2013-05-11 02:30:14 thelames1 has joined
1034 2013-05-11 02:30:16 lianj_ has quit (Changing host)
1035 2013-05-11 02:30:16 lianj_ has joined
1036 2013-05-11 02:30:17 cyberdo has joined
1037 2013-05-11 02:30:20 hnz has quit (Ping timeout: 252 seconds)
1038 2013-05-11 02:30:20 Line_ has quit (Ping timeout: 252 seconds)
1039 2013-05-11 02:30:20 Belkaar has quit (Ping timeout: 252 seconds)
1040 2013-05-11 02:30:20 ivan\ has quit (Ping timeout: 252 seconds)
1041 2013-05-11 02:30:20 crescend1 has quit (Ping timeout: 252 seconds)
1042 2013-05-11 02:30:20 Guest65700 has quit (Ping timeout: 252 seconds)
1043 2013-05-11 02:30:20 countbot has quit (Ping timeout: 252 seconds)
1044 2013-05-11 02:30:20 jgm has quit (Ping timeout: 252 seconds)
1045 2013-05-11 02:30:21 hpprinter100 has quit (Ping timeout: 252 seconds)
1046 2013-05-11 02:30:21 brocktice has quit (Ping timeout: 252 seconds)
1047 2013-05-11 02:30:21 dugo has quit (Ping timeout: 252 seconds)
1048 2013-05-11 02:30:21 rid3 has quit (Ping timeout: 252 seconds)
1049 2013-05-11 02:30:21 nsh has quit (Ping timeout: 252 seconds)
1050 2013-05-11 02:30:21 dlunch has quit (Ping timeout: 252 seconds)
1051 2013-05-11 02:30:21 AusBitBank has quit (Ping timeout: 252 seconds)
1052 2013-05-11 02:30:21 petertodd has quit (Ping timeout: 252 seconds)
1053 2013-05-11 02:30:21 loltu has quit (Ping timeout: 252 seconds)
1054 2013-05-11 02:30:21 clarkm has quit (Ping timeout: 252 seconds)
1055 2013-05-11 02:30:21 cjd has quit (Ping timeout: 252 seconds)
1056 2013-05-11 02:30:21 windo_ has quit (Ping timeout: 252 seconds)
1057 2013-05-11 02:30:21 flyingkiwiguy has quit (Ping timeout: 252 seconds)
1058 2013-05-11 02:30:21 lmacken has quit (Ping timeout: 252 seconds)
1059 2013-05-11 02:30:21 Ferroh has quit (Ping timeout: 252 seconds)
1060 2013-05-11 02:30:21 MoALTz has quit (Ping timeout: 252 seconds)
1061 2013-05-11 02:30:21 stretchwarren has quit (Ping timeout: 252 seconds)
1062 2013-05-11 02:30:21 mungojelly has quit (Ping timeout: 252 seconds)
1063 2013-05-11 02:30:21 idstam has quit (Ping timeout: 252 seconds)
1064 2013-05-11 02:30:21 Fnar has quit (Ping timeout: 252 seconds)
1065 2013-05-11 02:30:21 digitalmagus has quit (Ping timeout: 252 seconds)
1066 2013-05-11 02:30:21 Tykling has quit (Ping timeout: 252 seconds)
1067 2013-05-11 02:30:21 bitinstant has quit (Ping timeout: 252 seconds)
1068 2013-05-11 02:30:21 gmaxwell has quit (Ping timeout: 252 seconds)
1069 2013-05-11 02:30:22 wingcom has quit (Ping timeout: 252 seconds)
1070 2013-05-11 02:30:22 BurtyB has quit (Ping timeout: 252 seconds)
1071 2013-05-11 02:30:22 wingcom has joined
1072 2013-05-11 02:30:22 Belkaar_ is now known as Belkaar
1073 2013-05-11 02:30:22 AusBitBank_ has joined
1074 2013-05-11 02:30:29 ivan\_ is now known as ivan\
1075 2013-05-11 02:30:32 Internet13 has joined
1076 2013-05-11 02:30:38 EricJ_ has joined
1077 2013-05-11 02:30:53 scintill has joined
1078 2013-05-11 02:30:54 hnz_ has quit (Ping timeout: 264 seconds)
1079 2013-05-11 02:31:00 Fnar has joined
1080 2013-05-11 02:31:17 quijibo has joined
1081 2013-05-11 02:31:27 gmaxwell has joined
1082 2013-05-11 02:31:28 Line_ has joined
1083 2013-05-11 02:31:39 Tycale has joined
1084 2013-05-11 02:31:51 gmaxwell is now known as Guest94739
1085 2013-05-11 02:32:10 jiffe98 has joined
1086 2013-05-11 02:32:35 14WAAR9TC has quit (Ping timeout: 245 seconds)
1087 2013-05-11 02:32:35 validity has quit (Ping timeout: 245 seconds)
1088 2013-05-11 02:32:35 GMP has quit (Ping timeout: 245 seconds)
1089 2013-05-11 02:32:35 Guest86920 has quit (Ping timeout: 245 seconds)
1090 2013-05-11 02:32:35 grazs_ has quit (Ping timeout: 245 seconds)
1091 2013-05-11 02:32:35 BCBot` has quit (Ping timeout: 245 seconds)
1092 2013-05-11 02:32:35 Corndawg_ has quit (Ping timeout: 245 seconds)
1093 2013-05-11 02:32:35 andrew_scorpil1 has quit (Ping timeout: 245 seconds)
1094 2013-05-11 02:32:36 o3u_ has quit (Ping timeout: 245 seconds)
1095 2013-05-11 02:32:36 smickles_ has quit (Ping timeout: 245 seconds)
1096 2013-05-11 02:32:36 muhoo_ has quit (Ping timeout: 245 seconds)
1097 2013-05-11 02:32:36 14WAAR88R has quit (Ping timeout: 245 seconds)
1098 2013-05-11 02:32:36 14WAAR8Y4 has quit (Ping timeout: 245 seconds)
1099 2013-05-11 02:32:36 thelamest has quit (Ping timeout: 245 seconds)
1100 2013-05-11 02:32:36 smiddi_ has quit (Ping timeout: 245 seconds)
1101 2013-05-11 02:32:36 milone has quit (Ping timeout: 245 seconds)
1102 2013-05-11 02:32:36 lianj has quit (Ping timeout: 245 seconds)
1103 2013-05-11 02:32:36 testnode9 has quit (Ping timeout: 245 seconds)
1104 2013-05-11 02:32:36 Sargun_ has quit (Ping timeout: 245 seconds)
1105 2013-05-11 02:32:36 Aexoden has quit (Ping timeout: 245 seconds)
1106 2013-05-11 02:32:36 sud3n has quit (Ping timeout: 245 seconds)
1107 2013-05-11 02:32:36 forrestv has quit (Ping timeout: 245 seconds)
1108 2013-05-11 02:32:37 JyZyXEL has quit (Ping timeout: 245 seconds)
1109 2013-05-11 02:32:37 jevin_ has quit (Ping timeout: 245 seconds)
1110 2013-05-11 02:32:37 Luke-Jr has quit (Ping timeout: 245 seconds)
1111 2013-05-11 02:32:37 sytse has quit (Ping timeout: 245 seconds)
1112 2013-05-11 02:32:37 phungus_ has quit (Ping timeout: 245 seconds)
1113 2013-05-11 02:32:46 forrestv has joined
1114 2013-05-11 02:32:59 andrew_scorpil has joined
1115 2013-05-11 02:33:08 Luke-Jr has joined
1116 2013-05-11 02:33:10 phungus has joined
1117 2013-05-11 02:33:27 flyingkiwiguy has joined
1118 2013-05-11 02:33:56 BCBot` has joined
1119 2013-05-11 02:33:59 BlueMatt_ has joined
1120 2013-05-11 02:33:59 JyZyXEL has joined
1121 2013-05-11 02:34:20 sud3n has joined
1122 2013-05-11 02:34:24 DiabloD3 has quit (Quit: This computer has gone to sleep)
1123 2013-05-11 02:34:58 testnode9 has joined
1124 2013-05-11 02:35:25 stretchwarren has joined
1125 2013-05-11 02:35:44 bonks has joined
1126 2013-05-11 02:35:47 ville--- has joined
1127 2013-05-11 02:35:51 muhoo_ has joined
1128 2013-05-11 02:36:29 sytse has joined
1129 2013-05-11 02:36:50 mhanne_ has joined
1130 2013-05-11 02:36:55 jchp has joined
1131 2013-05-11 02:37:02 catcow has quit (Changing host)
1132 2013-05-11 02:37:02 catcow has joined
1133 2013-05-11 02:37:18 clopez_ is now known as clopez
1134 2013-05-11 02:37:46 erska_ has joined
1135 2013-05-11 02:37:58 Guest6243 has quit (Changing host)
1136 2013-05-11 02:37:58 Guest6243 has joined
1137 2013-05-11 02:37:59 Aexoden has joined
1138 2013-05-11 02:38:10 Guest6243 is now known as SomeoneWierd
1139 2013-05-11 02:38:15 SomeoneWierd is now known as SomeoneWeird
1140 2013-05-11 02:38:36 Sargun has joined
1141 2013-05-11 02:38:42 rs0 is now known as 50UACJ2JB
1142 2013-05-11 02:38:47 rs0 has joined
1143 2013-05-11 02:38:47 hnz has joined
1144 2013-05-11 02:38:47 Michail1 has joined
1145 2013-05-11 02:38:47 nsh has joined
1146 2013-05-11 02:38:48 13WAA3PW0 has joined
1147 2013-05-11 02:38:54 AndChat64721 has joined
1148 2013-05-11 02:39:06 clopez is now known as clopez_
1149 2013-05-11 02:39:08 Pasha has joined
1150 2013-05-11 02:39:28 jayne is now known as !~jayne@freenode/staff/jayne|jayne
1151 2013-05-11 02:39:50 one_zero has quit (Max SendQ exceeded)
1152 2013-05-11 02:39:51 peper has quit (Max SendQ exceeded)
1153 2013-05-11 02:40:30 Line__ has joined
1154 2013-05-11 02:41:26 ivan\_ has joined
1155 2013-05-11 02:41:43 swhitt_ has joined
1156 2013-05-11 02:42:07 Corndawg_ has joined
1157 2013-05-11 02:42:17 franl has quit (Quit: O Elbereth!  Gilthoniel!  We still remember ...)
1158 2013-05-11 02:42:24 clopez_ is now known as clopez
1159 2013-05-11 02:42:26 grazs_ has joined
1160 2013-05-11 02:42:41 zylche_ has joined
1161 2013-05-11 02:42:47 Line__ is now known as Line_
1162 2013-05-11 02:43:02 idstam has joined
1163 2013-05-11 02:43:17 t2che has joined
1164 2013-05-11 02:43:17 mrkent has joined
1165 2013-05-11 02:43:23 kadoban_ has joined
1166 2013-05-11 02:43:39 Guest73648 is now known as starsoccer
1167 2013-05-11 02:43:40 Squid_ has joined
1168 2013-05-11 02:43:40 Hunger-- has quit (Ping timeout: 276 seconds)
1169 2013-05-11 02:43:40 normanrichards has quit (Ping timeout: 276 seconds)
1170 2013-05-11 02:43:40 Cory has quit (Ping timeout: 276 seconds)
1171 2013-05-11 02:43:40 Squidicuz has quit (Ping timeout: 276 seconds)
1172 2013-05-11 02:43:40 Corndawg has quit (Ping timeout: 276 seconds)
1173 2013-05-11 02:43:40 bitinsta1t has quit (Ping timeout: 276 seconds)
1174 2013-05-11 02:43:40 kadoban has quit (Read error: Connection reset by peer)
1175 2013-05-11 02:43:40 oru_ has joined
1176 2013-05-11 02:43:48 ivan\_ is now known as ivan\
1177 2013-05-11 02:43:48 Hunger- has joined
1178 2013-05-11 02:44:01 Squidicuz has joined
1179 2013-05-11 02:44:11 MoALTz_ is now known as 16WAAV9XB
1180 2013-05-11 02:44:11 MoALTz_ has joined
1181 2013-05-11 02:44:19 bitinstant has joined
1182 2013-05-11 02:44:22 CodeShark has joined
1183 2013-05-11 02:44:24 stalled has joined
1184 2013-05-11 02:44:33 Magma_ has joined
1185 2013-05-11 02:44:33 elgrecoFL has joined
1186 2013-05-11 02:44:33 caput has joined
1187 2013-05-11 02:44:33 jn has joined
1188 2013-05-11 02:44:33 Ad0 has joined
1189 2013-05-11 02:44:35 ll_ has joined
1190 2013-05-11 02:44:58 blakange1 has joined
1191 2013-05-11 02:45:00 Jezzz- has joined
1192 2013-05-11 02:45:49 nsillik has joined
1193 2013-05-11 02:46:01 mapppum has joined
1194 2013-05-11 02:46:12 poggy_ has joined
1195 2013-05-11 02:46:13 peper has joined
1196 2013-05-11 02:46:16 BCBot_ has joined
1197 2013-05-11 02:46:34 Squid_ has quit (Ping timeout: 276 seconds)
1198 2013-05-11 02:46:35 cjd has joined
1199 2013-05-11 02:46:35 new299_ has joined
1200 2013-05-11 02:46:36 FlyingLeap_ has joined
1201 2013-05-11 02:46:49 upb has joined
1202 2013-05-11 02:46:55 Insty has joined
1203 2013-05-11 02:47:04 ^A has joined
1204 2013-05-11 02:47:15 Plinker__ has joined
1205 2013-05-11 02:47:20 jgarzik_ has joined
1206 2013-05-11 02:47:30 EvilPete__ has joined
1207 2013-05-11 02:47:30 BurtyB2 has joined
1208 2013-05-11 02:47:32 FredEE has quit (Ping timeout: 252 seconds)
1209 2013-05-11 02:47:36 alaricsp_ has joined
1210 2013-05-11 02:47:59 smickles_ has joined
1211 2013-05-11 02:48:05 erska has joined
1212 2013-05-11 02:48:22 Pasha is now known as Cory
1213 2013-05-11 02:48:41 swhitt has joined
1214 2013-05-11 02:48:41 AtashiCon has quit (Disconnected by services)
1215 2013-05-11 02:48:47 Arnavion3 has joined
1216 2013-05-11 02:48:47 JunK-Y has joined
1217 2013-05-11 02:48:47 JunK-Y has quit (Changing host)
1218 2013-05-11 02:48:47 JunK-Y has joined
1219 2013-05-11 02:48:53 Arnavion3 is now known as AtashiCon
1220 2013-05-11 02:49:08 dlunch has joined
1221 2013-05-11 02:49:35 shawn_fessenden1 has joined
1222 2013-05-11 02:50:02 zylche has joined
1223 2013-05-11 02:50:03 zylche has quit (Changing host)
1224 2013-05-11 02:50:03 zylche has joined
1225 2013-05-11 02:50:18 digitalmagus has joined
1226 2013-05-11 02:50:34 DrHaribo has joined
1227 2013-05-11 02:50:39 eklass has joined
1228 2013-05-11 02:51:10 poggy_ is now known as poggy
1229 2013-05-11 02:51:16 shawn_fessenden has quit (Read error: Connection reset by peer)
1230 2013-05-11 02:51:47 ageis_ has joined
1231 2013-05-11 02:52:21 nsillik has quit (Ping timeout: 268 seconds)
1232 2013-05-11 02:52:22 eklass2 has quit (Read error: Connection reset by peer)
1233 2013-05-11 02:52:22 digitalmagus2 has quit (Ping timeout: 268 seconds)
1234 2013-05-11 02:52:22 Guest62902 has quit (Ping timeout: 268 seconds)
1235 2013-05-11 02:52:22 Plinker__ has quit (Read error: Connection reset by peer)
1236 2013-05-11 02:52:22 segy_ has joined
1237 2013-05-11 02:52:22 dlunch_ has quit (Ping timeout: 268 seconds)
1238 2013-05-11 02:52:25 segy_ has quit (Changing host)
1239 2013-05-11 02:52:25 segy_ has joined
1240 2013-05-11 02:52:40 BurtyBB has quit (Ping timeout: 276 seconds)
1241 2013-05-11 02:52:43 Plinker__ has joined
1242 2013-05-11 02:52:47 segy_ is now known as segy
1243 2013-05-11 02:52:52 zylche_ has quit (Ping timeout: 268 seconds)
1244 2013-05-11 02:52:52 Guest94739 has quit (Ping timeout: 268 seconds)
1245 2013-05-11 02:52:59 gmaxwell_ has joined
1246 2013-05-11 02:53:25 hsmiths has quit (Read error: Connection reset by peer)
1247 2013-05-11 02:53:26 quijibo has joined
1248 2013-05-11 02:53:26 xnyhps has joined
1249 2013-05-11 02:53:26 redeeman has joined
1250 2013-05-11 02:53:44 hsmiths has joined
1251 2013-05-11 02:54:24 jurov has quit (Ping timeout: 264 seconds)
1252 2013-05-11 02:55:20 Squidicuz has quit (Ping timeout: 276 seconds)
1253 2013-05-11 02:55:21 thecell has quit (Ping timeout: 276 seconds)
1254 2013-05-11 02:55:21 thecell has joined
1255 2013-05-11 02:55:22 Plinker__ is now known as 45PAABVC2
1256 2013-05-11 02:55:23 one_zero has joined
1257 2013-05-11 02:55:37 zebedee_ has joined
1258 2013-05-11 02:55:50 Squidicuz has joined
1259 2013-05-11 02:56:20 fiesh_ has quit (Ping timeout: 255 seconds)
1260 2013-05-11 02:56:42 xire has quit (Ping timeout: 264 seconds)
1261 2013-05-11 02:59:06 <MC1984_> ctmmpool error: nonstandard transaction type
1262 2013-05-11 02:59:12 <MC1984_> teehee it begins
1263 2013-05-11 02:59:45 eipeace_ has joined
1264 2013-05-11 02:59:45 rid3 has joined
1265 2013-05-11 03:00:16 tsche has joined
1266 2013-05-11 03:00:30 fiesh has joined
1267 2013-05-11 03:01:00 gmaxwell_ has quit (Changing host)
1268 2013-05-11 03:01:00 gmaxwell_ has joined
1269 2013-05-11 03:01:01 implr has joined
1270 2013-05-11 03:01:01 smiddi_ has joined
1271 2013-05-11 03:01:27 gmaxwell_ is now known as gmaxwell
1272 2013-05-11 03:01:34 xire has joined
1273 2013-05-11 03:01:34 Belkaar_ has joined
1274 2013-05-11 03:01:35 xire has quit (Changing host)
1275 2013-05-11 03:01:35 xire has joined
1276 2013-05-11 03:01:54 scintill_ has joined
1277 2013-05-11 03:02:18 jaakkos has joined
1278 2013-05-11 03:02:37 lianj has joined
1279 2013-05-11 03:02:37 lianj has quit (Changing host)
1280 2013-05-11 03:02:37 lianj has joined
1281 2013-05-11 03:02:47 brwyatt_ has joined
1282 2013-05-11 03:02:51 buZz_ has joined
1283 2013-05-11 03:02:52 dooglus_ has joined
1284 2013-05-11 03:02:53 dooglus_ has quit (Changing host)
1285 2013-05-11 03:02:53 dooglus_ has joined
1286 2013-05-11 03:03:10 jurov has joined
1287 2013-05-11 03:04:09 _sgstair has joined
1288 2013-05-11 03:04:10 sgstair has quit (Disconnected by services)
1289 2013-05-11 03:04:10 _sgstair is now known as sgstair
1290 2013-05-11 03:04:46 XertroV has joined
1291 2013-05-11 03:05:32 Keefe_ has joined
1292 2013-05-11 03:05:33 Keefe_ has quit (Changing host)
1293 2013-05-11 03:05:33 Keefe_ has joined
1294 2013-05-11 03:05:37 LorenzoMoney1 has joined
1295 2013-05-11 03:05:48 mapppum has quit (Read error: Connection reset by peer)
1296 2013-05-11 03:06:04 hnz_ has joined
1297 2013-05-11 03:06:06 segy_ has joined
1298 2013-05-11 03:06:06 segy_ has quit (Changing host)
1299 2013-05-11 03:06:06 segy_ has joined
1300 2013-05-11 03:06:13 mapppum has joined
1301 2013-05-11 03:06:20 poop_ has joined
1302 2013-05-11 03:06:22 ageis_ is now known as ageis
1303 2013-05-11 03:06:32 matjeh has joined
1304 2013-05-11 03:06:32 zeiris has joined
1305 2013-05-11 03:06:33 hpprinter100__ has joined
1306 2013-05-11 03:06:39 _arch_ has joined
1307 2013-05-11 03:06:57 Insti_ has joined
1308 2013-05-11 03:07:03 SomeoneWeird_ has joined
1309 2013-05-11 03:07:13 agath_pd has joined
1310 2013-05-11 03:07:17 t2che has quit (Ping timeout: 268 seconds)
1311 2013-05-11 03:07:17 smiddi has quit (Ping timeout: 268 seconds)
1312 2013-05-11 03:07:17 Belkaar has quit (Ping timeout: 268 seconds)
1313 2013-05-11 03:07:18 implr_ has quit (Ping timeout: 268 seconds)
1314 2013-05-11 03:07:18 jaakkos_ has quit (Ping timeout: 268 seconds)
1315 2013-05-11 03:07:18 Belkaar_ is now known as Belkaar
1316 2013-05-11 03:07:18 bVector has quit (Ping timeout: 268 seconds)
1317 2013-05-11 03:07:18 segy has quit (Ping timeout: 268 seconds)
1318 2013-05-11 03:07:18 Insty has quit (Ping timeout: 268 seconds)
1319 2013-05-11 03:07:18 lianj_ has quit (Ping timeout: 268 seconds)
1320 2013-05-11 03:07:18 scintill has quit (Ping timeout: 268 seconds)
1321 2013-05-11 03:07:18 hpprinter100_ has quit (Ping timeout: 268 seconds)
1322 2013-05-11 03:07:18 tucenaber_ has quit (Ping timeout: 268 seconds)
1323 2013-05-11 03:07:18 SomeoneWeird has quit (Ping timeout: 268 seconds)
1324 2013-05-11 03:07:18 doublec has quit (Ping timeout: 268 seconds)
1325 2013-05-11 03:07:18 windo has quit (Ping timeout: 268 seconds)
1326 2013-05-11 03:07:18 dooglus has quit (Ping timeout: 268 seconds)
1327 2013-05-11 03:07:18 tyn has quit (Ping timeout: 268 seconds)
1328 2013-05-11 03:07:18 buZz has quit (Ping timeout: 268 seconds)
1329 2013-05-11 03:07:18 bedouin has quit (Ping timeout: 268 seconds)
1330 2013-05-11 03:07:18 brwyatt has quit (Ping timeout: 268 seconds)
1331 2013-05-11 03:07:18 MKCoin has quit (Ping timeout: 268 seconds)
1332 2013-05-11 03:07:18 phantomcircuit_ has quit (Ping timeout: 268 seconds)
1333 2013-05-11 03:07:18 _arch has quit (Ping timeout: 268 seconds)
1334 2013-05-11 03:07:18 bVector has joined
1335 2013-05-11 03:07:19 segy_ is now known as segy
1336 2013-05-11 03:07:20 skinnkavaj has joined
1337 2013-05-11 03:07:20 aspect__ has joined
1338 2013-05-11 03:07:22 rynx has joined
1339 2013-05-11 03:07:56 phantomcircuit has joined
1340 2013-05-11 03:08:06 tucenaber has joined
1341 2013-05-11 03:08:29 jurov has quit (Ping timeout: 245 seconds)
1342 2013-05-11 03:08:40 DiabloD3 has joined
1343 2013-05-11 03:08:51 MKCoin has joined
1344 2013-05-11 03:08:55 mapppum is now known as mappum
1345 2013-05-11 03:09:02 XRPTrader2 has quit (Ping timeout: 264 seconds)
1346 2013-05-11 03:09:02 d34th has quit (Ping timeout: 264 seconds)
1347 2013-05-11 03:09:02 Keefe has quit (Read error: Connection reset by peer)
1348 2013-05-11 03:09:02 poop__ has quit (Ping timeout: 264 seconds)
1349 2013-05-11 03:09:02 Guest14712 has quit (Ping timeout: 264 seconds)
1350 2013-05-11 03:09:02 aspect_ has quit (Read error: Connection reset by peer)
1351 2013-05-11 03:09:02 13WAA3PW0 has quit (Read error: Connection reset by peer)
1352 2013-05-11 03:09:02 hnz has quit (Ping timeout: 264 seconds)
1353 2013-05-11 03:09:02 matjeh_ has quit (Ping timeout: 264 seconds)
1354 2013-05-11 03:09:02 zeiris_ has quit (Ping timeout: 264 seconds)
1355 2013-05-11 03:09:04 mow_ has joined
1356 2013-05-11 03:09:09 windo has joined
1357 2013-05-11 03:09:34 doublec has joined
1358 2013-05-11 03:10:12 ubuntu__3 has joined
1359 2013-05-11 03:10:18 Muis has quit (Quit: Connection reset by apple)
1360 2013-05-11 03:10:18 d34th has joined
1361 2013-05-11 03:10:36 d34th has quit (Changing host)
1362 2013-05-11 03:10:36 d34th has joined
1363 2013-05-11 03:10:41 Arbition has joined
1364 2013-05-11 03:10:57 DBordelo has joined
1365 2013-05-11 03:10:59 DBordello has quit (Ping timeout: 264 seconds)
1366 2013-05-11 03:10:59 agath has quit (Ping timeout: 264 seconds)
1367 2013-05-11 03:11:02 bedouin has joined
1368 2013-05-11 03:11:02 DBordelo is now known as DBordello
1369 2013-05-11 03:11:02 DBordello has quit (Changing host)
1370 2013-05-11 03:11:02 DBordello has joined
1371 2013-05-11 03:11:25 skinnkavaj has quit (Changing host)
1372 2013-05-11 03:11:25 skinnkavaj has joined
1373 2013-05-11 03:14:05 jspilman has joined
1374 2013-05-11 03:14:06 systemParanoid has quit (Ping timeout: 264 seconds)
1375 2013-05-11 03:14:59 Arbition_ has quit (Ping timeout: 264 seconds)
1376 2013-05-11 03:14:59 Edward_Black has quit (Ping timeout: 264 seconds)
1377 2013-05-11 03:14:59 ubuntu__2 has quit (Ping timeout: 264 seconds)
1378 2013-05-11 03:15:05 catcow1 has joined
1379 2013-05-11 03:15:17 fw0rd has joined
1380 2013-05-11 03:15:24 Guest49682 has joined
1381 2013-05-11 03:15:28 ppr has joined
1382 2013-05-11 03:15:30 Guest49682 is now known as EPiSKiNG-
1383 2013-05-11 03:15:49 wingcom has quit (Ping timeout: 252 seconds)
1384 2013-05-11 03:15:49 peper has quit (Ping timeout: 252 seconds)
1385 2013-05-11 03:15:50 gmaxwell has quit (Ping timeout: 252 seconds)
1386 2013-05-11 03:15:50 ^A has quit (an^!~Alan@173.216.132.131|Ping timeout: 252 seconds)
1387 2013-05-11 03:15:50 flyingkiwiguy has quit (Ping timeout: 252 seconds)
1388 2013-05-11 03:15:53 gmaxwell_ has joined
1389 2013-05-11 03:15:54 BTCOxygen has joined
1390 2013-05-11 03:15:56 Diapolis_ has joined
1391 2013-05-11 03:16:00 brocktice has joined
1392 2013-05-11 03:16:10 flyingkiwiguy has joined
1393 2013-05-11 03:16:23 tkolsto_ has joined
1394 2013-05-11 03:16:27  has joined
1395 2013-05-11 03:16:27  has quit (Clown|!Clown@static-87-79-93-140.netcologne.de|Changing host)
1396 2013-05-11 03:16:27  has joined
1397 2013-05-11 03:16:30 lmacken has joined
1398 2013-05-11 03:16:30 lmacken has quit (Changing host)
1399 2013-05-11 03:16:30 lmacken has joined
1400 2013-05-11 03:16:32 elgrecoFL has quit (Changing host)
1401 2013-05-11 03:16:32 elgrecoFL has joined
1402 2013-05-11 03:16:33 Eiii has joined
1403 2013-05-11 03:16:44 aXs__ has joined
1404 2013-05-11 03:16:45 mE\Ta has quit (Remote host closed the connection)
1405 2013-05-11 03:16:50 EricJ has joined
1406 2013-05-11 03:16:51 bhaug` has quit (Ping timeout: 264 seconds)
1407 2013-05-11 03:16:51 Happzz has quit (Ping timeout: 264 seconds)
1408 2013-05-11 03:16:51 Tykling has joined
1409 2013-05-11 03:16:51 OneFixt has quit (Remote host closed the connection)
1410 2013-05-11 03:16:53 Edward_Black has joined
1411 2013-05-11 03:16:53 Michail1 is now known as Michail1_
1412 2013-05-11 03:17:07 ^A has joined
1413 2013-05-11 03:17:13 EricJ is now known as Guest64249
1414 2013-05-11 03:17:19 mE\Ta has joined
1415 2013-05-11 03:17:23 Tasqa has joined
1416 2013-05-11 03:17:24 djoot has joined
1417 2013-05-11 03:17:25 jgm has joined
1418 2013-05-11 03:17:25 djoot has quit (Changing host)
1419 2013-05-11 03:17:25 djoot has joined
1420 2013-05-11 03:18:01 OneFixt has joined
1421 2013-05-11 03:18:26 loltu has joined
1422 2013-05-11 03:18:57 Happzz has joined
1423 2013-05-11 03:19:10 rdponticelli has joined
1424 2013-05-11 03:19:35 akl has joined
1425 2013-05-11 03:19:42 LorenzoMoney1 is now known as LorenzoMoney
1426 2013-05-11 03:20:09 [\\\] has joined
1427 2013-05-11 03:20:23 jarpiain has joined
1428 2013-05-11 03:20:47 jarpiain is now known as Guest33034
1429 2013-05-11 03:21:21 Michail1_ is now known as Michail1
1430 2013-05-11 03:21:35 Hasimir- has joined
1431 2013-05-11 03:21:40 gmaxwell_ has quit (Changing host)
1432 2013-05-11 03:21:40 gmaxwell_ has joined
1433 2013-05-11 03:21:47 gmaxwell_ is now known as gmaxwell
1434 2013-05-11 03:22:14 zylche_ has joined
1435 2013-05-11 03:22:33 _W_ has joined
1436 2013-05-11 03:22:43 nizeguy has joined
1437 2013-05-11 03:23:03 MobPhone has joined
1438 2013-05-11 03:23:14 topi` has joined
1439 2013-05-11 03:23:23 Marinello has joined
1440 2013-05-11 03:23:23 macboz has joined
1441 2013-05-11 03:23:58 xexe_ has joined
1442 2013-05-11 03:24:45 jiffe98 has joined
1443 2013-05-11 03:25:01 Muis has joined
1444 2013-05-11 03:25:46 poggy_ has joined
1445 2013-05-11 03:26:09 Tasqa_ has joined
1446 2013-05-11 03:26:27 XertroV has quit (Quit: Leaving.)
1447 2013-05-11 03:26:39 andrew_scorpil1 has joined
1448 2013-05-11 03:26:56 mow has joined
1449 2013-05-11 03:27:55 scintill__ has joined
1450 2013-05-11 03:27:55 matjeh_ has joined
1451 2013-05-11 03:28:11 akakcolin has joined
1452 2013-05-11 03:28:15 XertroV has joined
1453 2013-05-11 03:28:32 LorenzoMoney has quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
1454 2013-05-11 03:28:35 c_k_ has joined
1455 2013-05-11 03:28:41 xnyhps_ has joined
1456 2013-05-11 03:29:25 gribble has quit (Disconnected by services)
1457 2013-05-11 03:30:40 Namworld has joined
1458 2013-05-11 03:30:45 jarpiain_ has joined
1459 2013-05-11 03:31:50 n5 has quit (Ping timeout: 246 seconds)
1460 2013-05-11 03:33:52 _arch_ has quit (Ping timeout: 240 seconds)
1461 2013-05-11 03:34:01 c_k_ is now known as c_k
1462 2013-05-11 03:34:02 c_k has quit (Changing host)
1463 2013-05-11 03:34:07 Diapolis_ has quit (Remote host closed the connection)
1464 2013-05-11 03:34:47 poggy_ is now known as poggy
1465 2013-05-11 03:35:13 _arch has joined
1466 2013-05-11 03:35:20 c_k has joined
1467 2013-05-11 03:35:20 zebedee_ has joined
1468 2013-05-11 03:35:48 Keefe_ is now known as Keefe
1469 2013-05-11 03:36:26 n5 has joined
1470 2013-05-11 03:38:20 gribble has joined
1471 2013-05-11 03:47:46 [7] has quit (Disconnected by services)
1472 2013-05-11 03:47:55 TheSeven has joined
1473 2013-05-11 03:47:56 richcollins has joined
1474 2013-05-11 03:48:04 ngc0202 has quit (Ping timeout: 256 seconds)
1475 2013-05-11 03:50:48 nethershaw has quit (Read error: Connection reset by peer)
1476 2013-05-11 03:51:13 MobiusL has joined
1477 2013-05-11 03:51:13 MobiusL has quit (Changing host)
1478 2013-05-11 03:51:13 MobiusL has joined
1479 2013-05-11 03:54:07 fishfish_ has joined
1480 2013-05-11 03:56:54 TomServo has joined
1481 2013-05-11 03:57:35 molecular has quit (Ping timeout: 264 seconds)
1482 2013-05-11 03:57:35 fishfish has quit (Ping timeout: 248 seconds)
1483 2013-05-11 03:57:35 molecular has joined
1484 2013-05-11 03:57:56 XertroV has quit (Quit: Leaving.)
1485 2013-05-11 03:58:55 Luke-Jr has quit (Excess Flood)
1486 2013-05-11 03:59:31 Luke-Jr has joined
1487 2013-05-11 04:02:38 ForceMajeure_ is now known as ForceMajeure
1488 2013-05-11 04:02:53 ForceMajeure has quit (Read error: Connection reset by peer)
1489 2013-05-11 04:03:18 ForceMajeure has joined
1490 2013-05-11 04:05:23 scintill__ has quit (Quit: Leaving)
1491 2013-05-11 04:05:31 _caedes has quit (Ping timeout: 264 seconds)
1492 2013-05-11 04:14:07 fanquake has joined
1493 2013-05-11 04:17:25 FabianB_ has joined
1494 2013-05-11 04:17:26 FabianB_ has quit (Changing host)
1495 2013-05-11 04:17:26 FabianB_ has joined
1496 2013-05-11 04:18:15 FabianB has quit (Ping timeout: 255 seconds)
1497 2013-05-11 04:18:17 ^A has quit (an^!~Alan@173.216.132.131|Ping timeout: 252 seconds)
1498 2013-05-11 04:18:33 Guest38567 is now known as grubles
1499 2013-05-11 04:18:44 grubles has quit (Changing host)
1500 2013-05-11 04:18:44 grubles has joined
1501 2013-05-11 04:19:13 _caedes has joined
1502 2013-05-11 04:19:44 Ferroh has joined
1503 2013-05-11 04:22:04 XRPTrader2 has joined
1504 2013-05-11 04:24:04 MobiusL has quit (Quit: Ex-Chat)
1505 2013-05-11 04:27:36 RedEmerald has joined
1506 2013-05-11 04:28:16 XertroV has joined
1507 2013-05-11 04:29:11 MobiusL has joined
1508 2013-05-11 04:35:03 richcollins has quit (Quit: richcollins)
1509 2013-05-11 04:35:19 paracyst has joined
1510 2013-05-11 04:37:22 XertroV has quit (Ping timeout: 240 seconds)
1511 2013-05-11 04:40:06 cypher__ is now known as cypher
1512 2013-05-11 04:42:08 Belxjander has quit (Changing host)
1513 2013-05-11 04:42:08 Belxjander has joined
1514 2013-05-11 04:43:39 altgribble has joined
1515 2013-05-11 04:46:07 paybitcoin1 has quit (Read error: Connection reset by peer)
1516 2013-05-11 04:47:26 paybitcoin has joined
1517 2013-05-11 04:48:27 richcollins has joined
1518 2013-05-11 04:49:28 Diapolis has joined
1519 2013-05-11 04:51:05 SomeoneWeird_ has quit (Changing host)
1520 2013-05-11 04:51:05 SomeoneWeird_ has joined
1521 2013-05-11 04:51:09 SomeoneWeird_ is now known as SomeoneWeird
1522 2013-05-11 04:52:20 Diapolis has quit (Remote host closed the connection)
1523 2013-05-11 04:54:18 <MC1984_> ERROR: Non-canonical signature: S value negative
1524 2013-05-11 04:54:18 <MC1984_> ERROR: CScriptCheck() : 3b983017043142da8f258a70504fb7a3dfb3b44c975fa37162b5d2d4
1525 2013-05-11 04:54:18 <MC1984_> 272468d1 VerifySignature failed
1526 2013-05-11 04:54:22 <MC1984_> never seen that before
1527 2013-05-11 04:55:07 <MC1984_> also R value negative
1528 2013-05-11 04:56:20 unknown45682 has quit ()
1529 2013-05-11 04:57:03 savetheinternet has joined
1530 2013-05-11 05:03:23 XertroV has joined
1531 2013-05-11 05:05:09 Cusipzzz_ is now known as Cusipzzz
1532 2013-05-11 05:05:19 Cusipzzz has quit (Changing host)
1533 2013-05-11 05:05:20 Cusipzzz has joined
1534 2013-05-11 05:05:29 Guest14712 has joined
1535 2013-05-11 05:12:00 vigilyn2 has joined
1536 2013-05-11 05:13:39 <cjd> MC1984_: openssl lets you send it all kinds of crap as a DER encoded key, new rules block refuse any transaction which doesn't use the standard form which openssl emits
1537 2013-05-11 05:13:51 <cjd> s/block//
1538 2013-05-11 05:15:25 vigilyn has quit (Ping timeout: 276 seconds)
1539 2013-05-11 05:15:44 <Luke-Jr> cjd: s/which openssl emits//
1540 2013-05-11 05:15:50 savetheinternet has quit (Quit: Computer has gone to sleep.)
1541 2013-05-11 05:19:07 <MC1984_> oh is that what that is
1542 2013-05-11 05:20:09 fanquake has quit (Ping timeout: 256 seconds)
1543 2013-05-11 05:24:14 fanquake has joined
1544 2013-05-11 05:24:54 savetheinternet has joined
1545 2013-05-11 05:29:40 RyanRohypnol has joined
1546 2013-05-11 05:29:43 <RyanRohypnol> Anyone in here know how to crack a bitcoin wallet that is locked? I will give someone 5 BTC (550USD)
1547 2013-05-11 05:30:22 <cjd> that's all your walletstealer came up with?
1548 2013-05-11 05:30:27 <Luke-Jr> RyanRohypnol: consider it impossible
1549 2013-05-11 05:30:33 <RyanRohypnol> Lol, no it's my wallet
1550 2013-05-11 05:30:37 <RyanRohypnol> I just forgot the password
1551 2013-05-11 05:30:55 <cjd> mmm
1552 2013-05-11 05:30:56 <RyanRohypnol> I don't think it's impossible
1553 2013-05-11 05:30:57 <Luke-Jr> expensive lesson
1554 2013-05-11 05:30:59 <RyanRohypnol> It's just a password
1555 2013-05-11 05:31:01 <cjd> sleep on it
1556 2013-05-11 05:31:01 dansmith_btc has joined
1557 2013-05-11 05:31:02 dansmith_btc has quit (Changing host)
1558 2013-05-11 05:31:02 dansmith_btc has joined
1559 2013-05-11 05:31:03 <Luke-Jr> "just"
1560 2013-05-11 05:31:06 <RyanRohypnol> not like a huge random letters and numbers
1561 2013-05-11 05:31:17 <RyanRohypnol> A bruteforcer would do the trick
1562 2013-05-11 05:31:19 <cjd> remembering it is the fastest way
1563 2013-05-11 05:31:24 <Luke-Jr> RyanRohypnol: oh, so a dictionary word?
1564 2013-05-11 05:31:26 <RyanRohypnol> Yes
1565 2013-05-11 05:31:37 <RyanRohypnol> but I don't know a progam were I can set the variables
1566 2013-05-11 05:31:44 <RyanRohypnol> to run on a program
1567 2013-05-11 05:31:57 * Luke-Jr wonders how you can not remember a simple thing like that
1568 2013-05-11 05:32:07 <cjd> xD
1569 2013-05-11 05:32:08 <RyanRohypnol> Yea Luke-Jr lol
1570 2013-05-11 05:33:23 <RyanRohypnol> So, I should go elsewhere? no one here can help?
1571 2013-05-11 05:34:14 <Luke-Jr> I'd do it if I really thought it was a simple dictionary word, but that seems unlikely
1572 2013-05-11 05:34:29 <Luke-Jr> also, I'd want to confirm the wallet was in fact yours before turning it over
1573 2013-05-11 05:34:38 <RyanRohypnol> Yea it is mine
1574 2013-05-11 05:34:40 <RyanRohypnol> idk how to prove it
1575 2013-05-11 05:34:42 <RyanRohypnol> but it's 5btc
1576 2013-05-11 05:34:46 <Luke-Jr> who sent the 5 BTC?
1577 2013-05-11 05:34:50 <RyanRohypnol> lol
1578 2013-05-11 05:34:53 <RyanRohypnol> I have 21
1579 2013-05-11 05:34:55 <RyanRohypnol> in the wallet
1580 2013-05-11 05:34:59 <RyanRohypnol> but I am willing to pay 5 btc
1581 2013-05-11 05:35:02 Graet has quit (Read error: Connection reset by peer)
1582 2013-05-11 05:35:02 <RyanRohypnol> to whoever can do it
1583 2013-05-11 05:35:06 <Luke-Jr> point is, whoever sent them to you can vouch for you
1584 2013-05-11 05:35:37 <RyanRohypnol> yea
1585 2013-05-11 05:35:42 <RyanRohypnol> His name is luke lol
1586 2013-05-11 05:36:20 <Luke-Jr> …
1587 2013-05-11 05:36:29 <RyanRohypnol> Not you lol
1588 2013-05-11 05:37:01 <Luke-Jr> ok, so ask him for the transaction id where he sent you the coins, and a signed message proving he sent it
1589 2013-05-11 05:37:19 <Luke-Jr> (the message should also identify you in some unconfusable way)
1590 2013-05-11 05:37:23 <RyanRohypnol> Okay, and you can 100% help me?
1591 2013-05-11 05:37:25 <RyanRohypnol> if I do so?
1592 2013-05-11 05:38:01 <BCB> Luke-Jr how are bitcoin passwords encrypted
1593 2013-05-11 05:38:08 <Luke-Jr> if you can 100% guarantee me the passphrase is a word in any common dictionary..
1594 2013-05-11 05:38:23 <Luke-Jr> BCB: the wallet is AES encrypted with the passphrase
1595 2013-05-11 05:38:53 <BCB> Luke-Jr, is is salted
1596 2013-05-11 05:39:12 <Luke-Jr> BCB: I forgot.
1597 2013-05-11 05:39:52 <Luke-Jr> RyanRohypnol: also, what is the CPU of the system you encrypted the wallet on?
1598 2013-05-11 05:42:55 <MC1984_> does that make a diffeerence?
1599 2013-05-11 05:44:03 <Luke-Jr> MC1984_: I think so, IIRC it hashes the passphrase N times to make bruteforcing harder
1600 2013-05-11 05:44:08 <Luke-Jr> where N is defined by time
1601 2013-05-11 05:44:16 <Luke-Jr> so, stronger CPU = stronger wallet
1602 2013-05-11 05:44:23 <RyanRohypnol> It's not a passphrase luke
1603 2013-05-11 05:44:27 <RyanRohypnol> you aren't understanding lol
1604 2013-05-11 05:44:31 <RyanRohypnol> it's literally just a password
1605 2013-05-11 05:44:35 <RyanRohypnol> preventing me from sending money
1606 2013-05-11 05:44:38 <RyanRohypnol> I can see my walle
1607 2013-05-11 05:44:41 <MC1984_> Luke-Jr thats seems kinda dumb
1608 2013-05-11 05:44:44 <RyanRohypnol> and my transactions
1609 2013-05-11 05:44:48 <Luke-Jr> RyanRohypnol: whatever you want to call it, it's SUPPOSED to be a passphrase :P
1610 2013-05-11 05:45:02 <Luke-Jr> MC1984_: ..
1611 2013-05-11 05:45:36 <cjd> Luke-Jr: what about your utf8 ... ? you're slipping
1612 2013-05-11 05:45:57 <Luke-Jr> cjd: that just warranted a .., not …
1613 2013-05-11 05:46:45 <cjd> xD
1614 2013-05-11 05:48:34 jrra has joined
1615 2013-05-11 05:49:09 <MC1984_> to have your wallet encryption be weaker than someone elses because your cpu was slower
1616 2013-05-11 05:49:13 <MC1984_> yes seems weird
1617 2013-05-11 05:49:18 <MC1984_> whats the rush
1618 2013-05-11 05:49:35 xire has quit (Ping timeout: 252 seconds)
1619 2013-05-11 05:51:17 <mollison1> MC1984_: don't think of it as slow CPUs getting less security... think of it as fast CPUs getting extra security
1620 2013-05-11 05:51:46 <MC1984_> i think theres no reason for either, unless im misunderstanding
1621 2013-05-11 05:52:27 <cjd> if someone's passphrase is 'penis', you can't really save them from themselves
1622 2013-05-11 05:52:35 fanquake has left ()
1623 2013-05-11 05:52:58 <MC1984_> whats that got to do with how many times its hashed
1624 2013-05-11 05:53:00 <cjd> but if they have a very fast processor, you can frustrate the effort of a wallet stealer by doing more cycles
1625 2013-05-11 05:53:19 xire has joined
1626 2013-05-11 05:53:19 xire has quit (Changing host)
1627 2013-05-11 05:53:19 xire has joined
1628 2013-05-11 05:53:38 <cjd> it doesn't matter, in order to do enough hashes to make a dictionary word secure, it would take like 30 seconds on a fast computer
1629 2013-05-11 05:53:39 <MC1984_> i can do as many hashing ops as mr i7 expensive edition cpu
1630 2013-05-11 05:53:45 <MC1984_> it would just take me longer, whats the rush
1631 2013-05-11 05:53:58 <flound1129> is there a reason I am constantly getting 'failed to write block' and have to rebuild db?
1632 2013-05-11 05:54:43 stretchwarren has quit (Ping timeout: 264 seconds)
1633 2013-05-11 05:54:59 <cjd> flound1129: out of disk space?
1634 2013-05-11 05:55:30 canoon has quit (Ping timeout: 264 seconds)
1635 2013-05-11 05:56:24 k9quaint_ has quit (Remote host closed the connection)
1636 2013-05-11 05:56:45 andyh2 has joined
1637 2013-05-11 05:56:45 <flound1129> nope
1638 2013-05-11 05:56:58 <flound1129> 150gb free
1639 2013-05-11 05:57:18 justme has joined
1640 2013-05-11 05:57:19 stretchwarren has joined
1641 2013-05-11 05:57:43 <justme> @gribble: can you pm me regarding a ban ?
1642 2013-05-11 05:57:58 <justme> i dont know why
1643 2013-05-11 05:58:03 <flound1129> gribble is a bot
1644 2013-05-11 05:58:12 <justme> wth
1645 2013-05-11 05:58:24 <justme> how do you find out why a person is banned ?
1646 2013-05-11 05:58:33 DiabloD3 has quit (Quit: This computer has gone to sleep)
1647 2013-05-11 05:58:33 <flound1129> ban message?
1648 2013-05-11 05:58:44 <justme> well you know what ...
1649 2013-05-11 05:59:02 default_ has joined
1650 2013-05-11 05:59:08 <MC1984_> lol canada
1651 2013-05-11 05:59:08 <ezdiy> 07:31 -!- btcls_ was kicked from #bitcoin by gribble [Fuck off, you're not welcome here]
1652 2013-05-11 05:59:09 <flound1129> chicken butt?
1653 2013-05-11 05:59:14 <justme> when the "gribble bot" is programmed to swear at people ... and the dev community accepts that ... there are issues
1654 2013-05-11 05:59:28 <ezdiy> justme: get used to it, this is freenode
1655 2013-05-11 05:59:32 <flound1129> someone added a ban in the bot with that message
1656 2013-05-11 05:59:38 <midnightmagic> lol
1657 2013-05-11 05:59:52 <ezdiy> people ignore the usual irc netiquette developed over millenia
1658 2013-05-11 06:00:00 <justme> ezdiy: who ever did that ... is giving bitcoin a bad name
1659 2013-05-11 06:00:08 <MC1984_> we banning the web gateway now
1660 2013-05-11 06:00:20 <ezdiy> justme: nah, they just fail at irc
1661 2013-05-11 06:00:26 <ezdiy> ban reasons are there ... for a reason
1662 2013-05-11 06:00:34 <ezdiy> if youre banned for scamming, the banhammer should state so
1663 2013-05-11 06:00:45 <ezdiy> fuck off sounds like oper abuse. anyhow, totally unrelated to -dev
1664 2013-05-11 06:01:03 <justme> ezdiy: oh you saw that
1665 2013-05-11 06:01:20 <mollison1> flound1129: this is just a guess, but check permissions. i have gotten permissions screwed up before from dealing with the whole incompatible bdb version fiasco.
1666 2013-05-11 06:01:27 <justme> and these are mods HELPING bitcoin ???
1667 2013-05-11 06:01:43 <ezdiy> maybe theyre good people
1668 2013-05-11 06:01:47 <ezdiy> just terrible sloppy at irc
1669 2013-05-11 06:01:52 <ezdiy> again, on freenode nothing surprising
1670 2013-05-11 06:01:53 <ezdiy> :(
1671 2013-05-11 06:02:13 <cjd> lol@ban
1672 2013-05-11 06:02:14 dansmith_btc has quit (Ping timeout: 245 seconds)
1673 2013-05-11 06:02:19 <justme> ezdiy: i am going to have to explain this on my website or just not tell them to come here
1674 2013-05-11 06:02:28 <justme> my customers will not understand irc
1675 2013-05-11 06:02:58 <ezdiy> gribble: why not banhammer here?
1676 2013-05-11 06:02:59 * ezdiy is confused
1677 2013-05-11 06:03:10 <cjd> yeah
1678 2013-05-11 06:03:14 <justme> grrrrr ... maybe just install my own irc
1679 2013-05-11 06:03:19 <ezdiy> fuck off caliber should apply everywhere :))
1680 2013-05-11 06:03:26 <ezdiy> justme: thats how it goes
1681 2013-05-11 06:03:29 <justme> anyways have a night guys
1682 2013-05-11 06:03:29 <cjd> telling your customers to join free irc support is sorta abusing the commons
1683 2013-05-11 06:03:31 <MC1984_> the freenode web irc is problematic
1684 2013-05-11 06:03:32 <justme> back to work
1685 2013-05-11 06:03:40 <MC1984_> get a real irc if youre so bothered
1686 2013-05-11 06:03:41 <justme> cjd: ??
1687 2013-05-11 06:04:01 <midnightmagic> so.. uh..  for how many more pages are you guys going to complain about that?
1688 2013-05-11 06:04:02 <justme> was going to say for more informal info go here ...type of thing
1689 2013-05-11 06:04:04 <ezdiy> MC1984_: whats wrong with webchat?
1690 2013-05-11 06:04:06 <cjd> well.. nobody here gets paid, you get paid by your customers so you should have knowlegable customer support :)
1691 2013-05-11 06:04:13 * ezdiy hides
1692 2013-05-11 06:04:18 <mollison1> cjd: +1. for informal info go to #bitcoin
1693 2013-05-11 06:04:20 <MC1984_> ezdiy i call it the trollgate
1694 2013-05-11 06:04:42 <mollison1> justme: sorry that was meant for you... for informal info go to #bitcoin
1695 2013-05-11 06:04:45 <justme> cjd: agree ... just saying you could go here ... I will have live support
1696 2013-05-11 06:04:50 <cjd> irc is full of swearing and PENISPENISPENIS partially for just that reason, because it's meant to be for devs and not for support
1697 2013-05-11 06:04:51 <ezdiy> MC1984_: you mean nanotube playing games on us after all night binge? :)
1698 2013-05-11 06:05:24 <justme> cjd: thats where i made my mistake ... i disagreed with a mod allowing swearing ... lol
1699 2013-05-11 06:05:58 <cjd> yeah
1700 2013-05-11 06:06:03 <ezdiy> think of the children!
1701 2013-05-11 06:06:05 <justme> just figured a link off the main website of bitcoin.org would not allow it
1702 2013-05-11 06:06:17 <ezdiy> (especially now that bitcoin is getting popular in 12yr old demo)
1703 2013-05-11 06:06:29 <justme> cjd: anyways  ....
1704 2013-05-11 06:06:30 <MC1984_> its like you think people on the internet are different because its bitcoin or something
1705 2013-05-11 06:06:34 <ezdiy> justme: this is actually fairly valid argument
1706 2013-05-11 06:06:43 <ezdiy> justme: send a pull request to take that link down
1707 2013-05-11 06:06:48 <justme> ezdiy: many professionals like doctors etc dont like swearing either friend
1708 2013-05-11 06:07:31 <justme> ezdiy: i just want bitcoin to work ... it will work with me or without me ... with mtgox or without ... it is unstoppable now
1709 2013-05-11 06:07:33 <justme> imo
1710 2013-05-11 06:07:56 <ezdiy> suggested commit: #bitcoin is already full of drama and 1000s of idlers, why add more via link in high-visibility website?
1711 2013-05-11 06:08:03 <ezdiy> add some argument about credibility etc
1712 2013-05-11 06:08:04 <mollison1> justme: it won't work without the devs... who generally deserve a lot more thanks and praise than they get
1713 2013-05-11 06:08:06 <cjd> irc and mailing lists have a special ediquite, some things which are normal to normal people like asking questions that are obvious on google are a sin... and other things which are normally considered evil, like telling someone to type 'sudo reboot' is considered just fine :)
1714 2013-05-11 06:08:09 canoon has joined
1715 2013-05-11 06:08:43 <justme> mollison1: totally agree ...and I will donate to the dev besides just running my client
1716 2013-05-11 06:08:48 <ezdiy> cjd: problem with that is dunbarr's number
1717 2013-05-11 06:08:55 <ezdiy> cjd: what youre saying is fine in *small* channels
1718 2013-05-11 06:09:01 <ezdiy> but not in 1000s crowd full of strangers
1719 2013-05-11 06:09:21 <cjd> mmm
1720 2013-05-11 06:09:25 <cjd> big numbers can be a problem
1721 2013-05-11 06:09:27 <MC1984_> were still well inside dunbars here
1722 2013-05-11 06:09:32 <MC1984_> most of it is idlers
1723 2013-05-11 06:10:13 <ezdiy> indeed, mostly applies to #bitcoin
1724 2013-05-11 06:10:19 <ezdiy> where its impossible to recognize regulars
1725 2013-05-11 06:10:19 <cjd> if thre's too many of them I'll have to change it to   sudo bash -e 'echo reboot > /etc/rc.local ; reboot'
1726 2013-05-11 06:10:23 <justme> anyways ... I am telling doctors and business people to go to bitcoin.org ...two clicks away you get swearing in chat
1727 2013-05-11 06:10:36 <justme> thats all ...thats it ...it is factual
1728 2013-05-11 06:10:37 paracyst has quit (Disconnected by services)
1729 2013-05-11 06:10:54 paracyst has joined
1730 2013-05-11 06:11:00 <ezdiy> cjd: why not just shred -f /dev/sda& ? :)
1731 2013-05-11 06:11:03 * midnightmagic is having trouble deciding whether the conversation is serious or not.
1732 2013-05-11 06:11:14 <cjd> that would be mean
1733 2013-05-11 06:11:16 <cjd> :)
1734 2013-05-11 06:11:20 <ezdiy> its related to -dev if its seriously meant change to website imo
1735 2013-05-11 06:11:28 <MC1984_> if people cant handle a bit of foul language, theyre gonna have trouble with bitcoin overall
1736 2013-05-11 06:11:44 <ezdiy> MC1984_: and then, all off sudden, youre overrun by 13year olds
1737 2013-05-11 06:11:45 <MC1984_> bot message was funny though
1738 2013-05-11 06:11:52 <ezdiy> yeah
1739 2013-05-11 06:11:55 <ezdiy> canadian -> fuck off
1740 2013-05-11 06:12:02 <justme> you guys can handle that one ... i do have a different question
1741 2013-05-11 06:12:40 <justme> if i provide a usb stick with MOST of the block chain ... will the rest of the block chain automatically configure and sync ?
1742 2013-05-11 06:12:58 <MC1984_> should do
1743 2013-05-11 06:13:03 <MC1984_> as long as its the real chain
1744 2013-05-11 06:13:15 <justme> yes from genesis forward
1745 2013-05-11 06:13:30 <MC1984_> why not just use the bootsrap.dat
1746 2013-05-11 06:13:35 <Luke-Jr> MC1984_: it's not a matter of "can't handle", it's a matter of giving people the wrong impression
1747 2013-05-11 06:13:40 <Luke-Jr> foul language = kids
1748 2013-05-11 06:13:42 <ezdiy> scales pointing more towards troll imo
1749 2013-05-11 06:13:50 <ezdiy> Luke-Jr: ack
1750 2013-05-11 06:14:07 <ezdiy> imo overused foul language though
1751 2013-05-11 06:14:08 <justme> Luke-Jr: EXACTLY ...swearing unprofessional is just "script kiddies"
1752 2013-05-11 06:14:15 <MC1984_> Luke-Jr maybe so, but people should be sensible enough to seperate the community from the system
1753 2013-05-11 06:14:22 <ezdiy> if you fuck up something, well, theres exactly no other way to put it that way
1754 2013-05-11 06:14:23 * cjd == troll \:D/
1755 2013-05-11 06:14:26 <MC1984_> were not bitcoin staff in here or some shit
1756 2013-05-11 06:14:54 <justme> cjd: just saying it is two clicks away from bitcoin.org
1757 2013-05-11 06:14:58 <MC1984_> besides theres far more nefarious shit to look out for in bitcoin than bad words
1758 2013-05-11 06:14:59 <ezdiy> MC1984_: anyone can propose website change though
1759 2013-05-11 06:15:10 <Luke-Jr> ezdiy: except that doesn't mean anything. you're using a word that refers to sexual acts when you don't mean sexual acts. is it so hard to say what you actually mean?
1760 2013-05-11 06:15:15 <justme> the "official site" ... and i am done with this swearing stuff ... you guys can work it out
1761 2013-05-11 06:15:45 <justme> i need tech advice not fn drama
1762 2013-05-11 06:15:54 <MC1984_> i dont think "fuck" neccesarily means copulation?
1763 2013-05-11 06:15:55 <cjd> it's tricky, bitcoin is not a corporation so you can't expect it to be professional
1764 2013-05-11 06:16:01 <cjd> it just works
1765 2013-05-11 06:16:03 <MC1984_> #bitcoin-etympology
1766 2013-05-11 06:16:15 <mollison1> hmm... wonder who brought the drama... LOL
1767 2013-05-11 06:16:23 <Luke-Jr> cjd: you don't need a corporation to be professional
1768 2013-05-11 06:16:43 <Luke-Jr> MC1984_: it does
1769 2013-05-11 06:16:47 <ezdiy> Luke-Jr: heat of the argument, you know what i mean
1770 2013-05-11 06:16:48 phish has joined
1771 2013-05-11 06:16:48 <justme> cjd: you know what .... that is a good article to post on my blog ... "it is not a corporation ...do not expect it to act that way" ... wow
1772 2013-05-11 06:17:13 <ezdiy> my point being you cant readily express intimate emoticons via foul language to complete strangers which you just met on irc
1773 2013-05-11 06:17:37 DiabloD3 has joined
1774 2013-05-11 06:17:38 <MC1984_> justme do not expect what to act what way?
1775 2013-05-11 06:17:57 <MC1984_> bitcoin is a proven technical system
1776 2013-05-11 06:18:05 <MC1984_> there are people around it, thats it
1777 2013-05-11 06:18:08 <Luke-Jr> it's not proven yet.
1778 2013-05-11 06:18:20 k9quaint has joined
1779 2013-05-11 06:18:24 <ezdiy> justme: if bitcoin foundation acted in more self-appointed way more than it does, the loudmouths would cry bloody murder even more
1780 2013-05-11 06:18:24 <cjd> it's just a piece of software, if you want to build a corporation around it you have to do that yourself...
1781 2013-05-11 06:18:25 <MC1984_> ok
1782 2013-05-11 06:18:29 <ezdiy> justme: kinda catch22 there
1783 2013-05-11 06:18:31 <MC1984_> more proven than it was
1784 2013-05-11 06:18:34 <justme> MC194: bitcoin is NOT a corporation do not expect it to work that way ...it is decentralized ... then explain to my customers you may engage in some weird chat two clicks away
1785 2013-05-11 06:19:00 <MC1984_> sounds right
1786 2013-05-11 06:19:14 <MC1984_> as long as people dont think they will be dealing with bitcoin PLC or something
1787 2013-05-11 06:19:15 <ezdiy> justme: btw, i think theres forum link as well
1788 2013-05-11 06:19:21 <ezdiy> justme: not pretty sight either
1789 2013-05-11 06:19:31 <justme> hmmmm
1790 2013-05-11 06:19:41 <Arnavion> It's a chat channel, not a company website or mailing list
1791 2013-05-11 06:19:52 <ezdiy> i for one, am glad for the minimal moderation of all bitcoin-related mediums of communication
1792 2013-05-11 06:19:52 <Arnavion> Why ever would you want to send your customers here expecting proffessionalism
1793 2013-05-11 06:19:55 <Luke-Jr> true, the mailing list is pretty tame
1794 2013-05-11 06:20:17 <cjd> Just look at some of the emails from Linus, software dev mailing lists and channels are absolutely not meant for support.
1795 2013-05-11 06:20:18 <MC1984_> dont tell people about the mailing list >.<
1796 2013-05-11 06:20:18 DiabloD3 has quit (Client Quit)
1797 2013-05-11 06:20:25 <Arnavion> That has nothing to do with Bitcoin. You're misunderstanding the purpose of this channel
1798 2013-05-11 06:20:41 <Arnavion> ( @ justme )
1799 2013-05-11 06:20:51 <justme> Arnavion: because as a "newbie" as of one month ... it is a few clicks off of the official website ... and NO i did not know about Web IRC currently when i came
1800 2013-05-11 06:20:52 <ezdiy> Luke-Jr: high barrier to entry for 13yr olds :)
1801 2013-05-11 06:21:11 <Arnavion> justme: Well now you know better
1802 2013-05-11 06:21:24 <Luke-Jr> justme: there is no official anything
1803 2013-05-11 06:21:30 <justme> Arnavion: yes i do ...but i have invested time to understand
1804 2013-05-11 06:21:35 <ezdiy> Luke-Jr: but people perceive it so
1805 2013-05-11 06:21:41 <justme> but the average merchant will not
1806 2013-05-11 06:21:48 <Arnavion> justme: Depending on how technically inclined your customers are, you can point them to the github page where they can see discussion on the commits
1807 2013-05-11 06:21:57 <Luke-Jr> justme: why is the average merchant clicking under Developers?
1808 2013-05-11 06:22:07 <Luke-Jr> only developers should do that
1809 2013-05-11 06:22:09 <justme> Arnavion: yeppers
1810 2013-05-11 06:22:15 <Arnavion> justme: But otherwise what Luke-Jr just said
1811 2013-05-11 06:22:27 <justme> Luke-Jr: i would not send them here ...
1812 2013-05-11 06:22:38 <cjd> good :)
1813 2013-05-11 06:22:44 <ezdiy> i think because he got spuriously banned on the main channel?
1814 2013-05-11 06:22:45 <justme> but to bitcoin general ya
1815 2013-05-11 06:22:49 <ezdiy> so its ot in here now :)
1816 2013-05-11 06:22:50 <justme> or should i not ?
1817 2013-05-11 06:22:54 <Luke-Jr> justme: I wouldn't
1818 2013-05-11 06:22:58 <Arnavion> #bitcoin would be worse
1819 2013-05-11 06:23:03 <Luke-Jr> #bitcoin-tech if anything, but that'd be for advanced merchants
1820 2013-05-11 06:23:10 <Luke-Jr> average merchants, I'd just send to BitPay or such
1821 2013-05-11 06:23:21 <MC1984_> The Oxford English Dictionary states that the ultimate etymology is uncertain, but that the word is "probably cognate" with a number of native Germanic words with meanings involving striking, rubbing, and having sex.[2]
1822 2013-05-11 06:23:25 <MC1984_> welp youre right
1823 2013-05-11 06:23:39 <cjd> Luke is always right
1824 2013-05-11 06:23:40 <justme> to all ... I have learned and that was the purpose going into these channels that link directly from bitcoin.org
1825 2013-05-11 06:23:42 <cjd> it's maddening
1826 2013-05-11 06:23:50 <Luke-Jr> XD
1827 2013-05-11 06:23:53 <MC1984_> not always
1828 2013-05-11 06:24:26 <justme> every chat room not only has its official rules but the mod "emotional" rules as well even this one
1829 2013-05-11 06:24:33 <Luke-Jr> MC1984_: see why you shouldn't use words when you don't mean them? :D
1830 2013-05-11 06:24:36 <ezdiy> The word's use is considered obscene in social contexts, but may be common in informal and domestic situations.
1831 2013-05-11 06:24:39 <cjd> justme: linking people to bitcoin.org is probably bad, send them to mtgox which has a good support infrastructure and can work with them.
1832 2013-05-11 06:24:40 <ezdiy> is irc formal or informal?
1833 2013-05-11 06:24:53 <Luke-Jr> ezdiy: I disagree, it is always obscene. ;)
1834 2013-05-11 06:25:02 <MC1984_> you have to know what they actually mean first ><
1835 2013-05-11 06:25:06 <justme> cjd: yes ...i need to do something
1836 2013-05-11 06:25:11 <Arnavion> ezdiy: It's very domestic
1837 2013-05-11 06:25:16 <justme> it can not be here
1838 2013-05-11 06:25:20 <Arnavion> I'm always telling people to sudo go make me a sandwich
1839 2013-05-11 06:25:28 <Arnavion> Although they usually don't comply...
1840 2013-05-11 06:25:36 <Luke-Jr> Arnavion: visudo
1841 2013-05-11 06:25:42 <cjd> mtgox is a corporation, it will look very correct and proper (because their internal channels are private)
1842 2013-05-11 06:25:42 <ezdiy> basement-dweller humor
1843 2013-05-11 06:25:43 <ezdiy> eew
1844 2013-05-11 06:25:57 RyanRohypnol has left ()
1845 2013-05-11 06:26:04 <MC1984_> send people to gox if you want
1846 2013-05-11 06:26:07 <Arnavion> Hah, joke's on you, I live in the parking lot!
1847 2013-05-11 06:26:11 <justme> i have not bought bitcoin from mtgox yet ... this will be the next thing i learn
1848 2013-05-11 06:26:22 <MC1984_> but dont make them think they are dealing with bitcoin then
1849 2013-05-11 06:26:26 <ezdiy> Arnavion: you sure its not an underground parkig lot? :)
1850 2013-05-11 06:26:31 <justme> i have bought bitcoin easily and quickly in Canada from cavirtex
1851 2013-05-11 06:26:33 <Luke-Jr> I'd send individuals to Gox maybe, but BitPay looks a lot more merchant-friendly IMO
1852 2013-05-11 06:26:42 <Arnavion> ezdiy: I don't know... I haven't seen the sun in months
1853 2013-05-11 06:27:05 <MC1984_> greenland or neckbeard?
1854 2013-05-11 06:27:18 <Arnavion> Maybe civilization has crumbled and you're all figments of my imagination
1855 2013-05-11 06:27:19 <Luke-Jr> and considering MtGox's current position, I'd prefer to see people pick up other services more
1856 2013-05-11 06:27:30 <Arnavion> ... which means there really isn't anyone to make me a sandwich any more...
1857 2013-05-11 06:27:33 <justme> is there a way that i can download a block chain to a specific point in time ... meaning ... this usb stick has the block chain to the end of april ??
1858 2013-05-11 06:27:34 <MC1984_> tru
1859 2013-05-11 06:27:34 * Arnavion sad
1860 2013-05-11 06:27:35 <ezdiy> Arnavion: or echoes from freenode lag!
1861 2013-05-11 06:27:47 <MC1984_> so many startups basically depend on gox now
1862 2013-05-11 06:27:55 <Luke-Jr> justme: your client downloads it for you
1863 2013-05-11 06:28:01 <MC1984_> how long till gox is too big to fail..
1864 2013-05-11 06:28:07 <Luke-Jr> justme: you can concatenate the files it downloads to make a big one
1865 2013-05-11 06:28:07 <ezdiy> MC1984_: everything depends on gox :(
1866 2013-05-11 06:28:29 <MC1984_> i feel like gox is backstopping at least half of bitcoins mkt cap
1867 2013-05-11 06:28:29 <mollison1> there is a desperate need for people to open new high-quality exchanges
1868 2013-05-11 06:28:33 <ezdiy> justme: dont worry about, it works magically. come when you see some actual problem occuring with chain download.
1869 2013-05-11 06:28:40 <MC1984_> maybe it needs to pop
1870 2013-05-11 06:28:44 <Luke-Jr> mollison1: the legal barriers to entry are enourmous :/
1871 2013-05-11 06:28:50 <justme> Luke-Jr: I want to sell usb sticks that make it faster to get going ...usb 2.0 is faster then downloading correct ?
1872 2013-05-11 06:28:54 zoinky has quit (Quit: Leaving.)
1873 2013-05-11 06:29:14 <ezdiy> Luke-Jr: i've seen some guy on reddit who'd open bank branch in panama
1874 2013-05-11 06:29:19 <MC1984_> justme not reall
1875 2013-05-11 06:29:20 <MC1984_> y
1876 2013-05-11 06:29:20 <ezdiy> and serve exchange customers via api
1877 2013-05-11 06:29:25 <ezdiy> that'd be so awesome :(
1878 2013-05-11 06:29:39 <Arnavion> justme: Faster, yes, but...
1879 2013-05-11 06:29:41 <cjd> 02:05 < mollison1> there is a desperate need for people to open new high-quality exchanges <-- colorcoins and decentralized exchange
1880 2013-05-11 06:29:49 <mollison1> Luke-Jr: really? i was thinking about looking into it once I finish my PhD. it can't be that bad if campbx can do it, since that site doesn't seem to be run by competent people (or they are competent but just don't care)
1881 2013-05-11 06:29:50 <justme> MC1984: ... another post reading
1882 2013-05-11 06:29:54 <Arnavion> justme: The merchants would have to trust you you're giving them the real blockchain
1883 2013-05-11 06:29:57 <MC1984_> only really useful in cases where downloading all the chain is not practical, like mobile internet
1884 2013-05-11 06:30:06 <tumak> cjd: we need to solve the fiat first though :/
1885 2013-05-11 06:30:10 <justme> Arnavion: oh ...
1886 2013-05-11 06:30:12 <Arnavion> justme: Although once they've been on the network long enough they will find out if you have or haven't
1887 2013-05-11 06:30:23 <mollison1> cjd: how does one transfer USD into bitcoins using a decentralized exchange?
1888 2013-05-11 06:30:32 <justme> Arnavion: it will self verify
1889 2013-05-11 06:30:37 <Arnavion> Yes
1890 2013-05-11 06:30:50 <midnightmagic> mollison1: Magic.
1891 2013-05-11 06:30:59 <Arnavion> justme: In the worst case, they'll be off no worse than if they didn't have your initial USB
1892 2013-05-11 06:31:06 <MC1984_> justme i think you misunderstand what syncing the chain actually does
1893 2013-05-11 06:31:14 <cjd> mollison1: tumak: give your dollars to an exchanger which is willing to issue you colorcoins which are redeamable for dollars, then exchange those colorcoins for btc or other colorcoins
1894 2013-05-11 06:31:18 <tumak> cjd: even if there is huge network of small IOU issuers in bitcoinx, there will be still a lot of friction with banking system simply due to sheer lack of regulation/abuse
1895 2013-05-11 06:31:27 Diablo-D3 has joined
1896 2013-05-11 06:31:57 <cjd> I'm pretty sure it's legal to issue local currency
1897 2013-05-11 06:32:11 <tumak> cjd: i dreamt of what you're saying before, but had a talk with few banking guys - banking wont work on that scale. IOUs must be issued by proper fin institutions :(
1898 2013-05-11 06:32:11 <justme> MC1984: i believe it reads the headers for a checksum ...which you are correct i dont understand yet
1899 2013-05-11 06:32:12 <cjd> In my area we have like 3 local currencies
1900 2013-05-11 06:32:28 <mollison1> cjd: what's the point of the colorcoins? if there is a local bitcoin exchanger, just give him dollars for bitcoins
1901 2013-05-11 06:32:43 <cjd> no volume
1902 2013-05-11 06:32:44 <MC1984_> it verifies the chain, not just downloads it
1903 2013-05-11 06:32:46 <tumak> cjd: yup, the IOUs themselves are not problem. problem is always irreversible issuace
1904 2013-05-11 06:32:50 <Luke-Jr> justme: I doubt it
1905 2013-05-11 06:32:50 <MC1984_> the ferifying is the hard part
1906 2013-05-11 06:32:57 <Luke-Jr> justme: maybe if your internet sucks
1907 2013-05-11 06:33:07 <cjd> tumak: irreversable issuence?
1908 2013-05-11 06:33:20 <Luke-Jr> mollison1: is CampBX properly licensed, or blackmarket?
1909 2013-05-11 06:33:25 ielo has joined
1910 2013-05-11 06:33:26 <tumak> cjd: you issue IOUs if i send money to your personal bank account
1911 2013-05-11 06:33:40 <tumak> cjd: now somebody comes along and sends you stolen money, wat do?
1912 2013-05-11 06:33:50 <Luke-Jr> ezdiy: If you do business with US citizens, you have to follow US regulations, which are a pain ESPECIALLY if you're outside the US
1913 2013-05-11 06:33:52 <tumak> thats exactly what happened to btc24 operator
1914 2013-05-11 06:33:53 <cjd> kill the IOUs
1915 2013-05-11 06:34:07 <tumak> cjd: how?
1916 2013-05-11 06:34:08 <Arnavion> Luke-Jr: Eh. I have first-world internet and the sync still slows down near where the blocks start ballooning in size
1917 2013-05-11 06:34:09 <cjd> I don't OU
1918 2013-05-11 06:34:17 <tumak> cjd: ious are your own currency
1919 2013-05-11 06:34:21 <tumak> once its out, its out
1920 2013-05-11 06:34:26 duSn has left ()
1921 2013-05-11 06:34:27 <Luke-Jr> Arnavion: it's CPU and IO bound, not network
1922 2013-05-11 06:34:37 <cjd> it's just colorcoins, the only thing backing them is my promise to pay
1923 2013-05-11 06:34:38 <Arnavion> Luke-Jr: Not for my internet
1924 2013-05-11 06:34:48 <cjd> and if I stop promising then they're not worth anything anymore
1925 2013-05-11 06:34:49 <tumak> cjd: at least for color coins, the issuer CANT kill particular tx at his whim. he can only issue more.
1926 2013-05-11 06:34:51 <Luke-Jr> Arnavion: hardly first-world then
1927 2013-05-11 06:34:56 <Arnavion> Luke-Jr: It is very network bound
1928 2013-05-11 06:34:58 <mollison1> Luke-Jr: they're fully licensed. unless they're lying. i mean, they give their address in Georga, USA so I think they're totally above board.
1929 2013-05-11 06:35:04 <MC1984_> Arnavion you know blocks are less than 1mb right?
1930 2013-05-11 06:35:17 <cjd> tumak: yeah, current colorcoin implementations suck
1931 2013-05-11 06:35:25 savetheinternet has quit (Quit: Computer has gone to sleep.)
1932 2013-05-11 06:35:25 <cjd> and won't work since the dust rules anyway
1933 2013-05-11 06:35:33 <cjd> my design fixes both issues
1934 2013-05-11 06:35:34 <tumak> cjd: nah, the implementation is sound
1935 2013-05-11 06:35:40 <Arnavion> MC1984_: Yes, I do
1936 2013-05-11 06:35:46 <tumak> cjd: btw, which implementation
1937 2013-05-11 06:35:47 gagecolton has joined
1938 2013-05-11 06:35:56 <Arnavion> MC1984_: I didn't mean to imply that the slowness was _because_ of the block size
1939 2013-05-11 06:36:06 <cjd> tumak: ?
1940 2013-05-11 06:36:17 <Arnavion> MC1984_: I was using that to give a rough indicator of the block number where the slowdown starts
1941 2013-05-11 06:36:30 <Arnavion> since I don't remember the numbers now
1942 2013-05-11 06:36:33 <tumak> cjd: you suggested that issuer would be responsible for his currency, ie reverse *any* transaction of his iou to comply with AML/KYL
1943 2013-05-11 06:36:37 <justme> there is no donate button on the bitcoin.org homepage ??????
1944 2013-05-11 06:36:40 <MC1984_> it will start after the checkpoint
1945 2013-05-11 06:36:41 <tumak> cjd: how do you do that exactly?
1946 2013-05-11 06:37:05 Haifisch has joined
1947 2013-05-11 06:37:10 <justme> how do i support the developers ??
1948 2013-05-11 06:37:12 <cjd> I publish a signed json document which lists txouts which are payable
1949 2013-05-11 06:37:24 <cjd> and I remove yours if you are a thief
1950 2013-05-11 06:37:24 <MC1984_> justme only one dev is remunerated for bitcoin work
1951 2013-05-11 06:37:35 <justme> who ?
1952 2013-05-11 06:37:40 <tumak> cjd: right, but the "illegal" ious from reversed fiat might be passed between 30 people already
1953 2013-05-11 06:37:41 <MC1984_> gavin
1954 2013-05-11 06:37:57 <justme> got a bitcoin address ?
1955 2013-05-11 06:37:58 <tumak> cjd: and the attacker, who already exchanged them is ok, but you reverse innocent victim.
1956 2013-05-11 06:38:11 <MC1984_> he might have
1957 2013-05-11 06:38:21 <tumak> cjd: so you need to reverse *all* the trades too
1958 2013-05-11 06:38:22 <cjd> tumak: happens all the time, it's called chargeback
1959 2013-05-11 06:38:22 <MC1984_> so have other devs
1960 2013-05-11 06:38:31 <MC1984_> gavin is paid a salary via the foundation
1961 2013-05-11 06:38:36 <justme> i can donate by paypal or bitcoin ...his choice
1962 2013-05-11 06:38:39 <Luke-Jr> MC1984_: I think jgarzik_ is employed in Bitcoin-related work now
1963 2013-05-11 06:38:59 <MC1984_> employed by whom? foundation?
1964 2013-05-11 06:39:00 <justme> where do i donate to the system
1965 2013-05-11 06:39:03 <tumak> cjd: chargeback is banking term, we're talking about when banks chargebacks you and you must chargeback somebody in bitcoin network
1966 2013-05-11 06:39:06 <tumak> cjd: how do you do it?
1967 2013-05-11 06:39:10 <cjd> tumak: people get something and pay w/ someone else's money, then it's charged back and the seller is out the loot
1968 2013-05-11 06:39:18 <tumak> cjd: the offending ious are spread between 20 people already
1969 2013-05-11 06:39:37 <Luke-Jr> MC1984_: undisclosed AFAIK
1970 2013-05-11 06:39:51 <justme> who runs the domain name "bitcoin.org" can i donate to this firm/organization ?
1971 2013-05-11 06:39:53 <tumak> cjd: and the attacker who flipped your ious on exchange already is ok unless you reverse his trades
1972 2013-05-11 06:39:55 <MC1984_> justme you cant donate tot he system. you can donate to some o the people who look after it
1973 2013-05-11 06:40:14 <cjd> tumak: which is obviously impossible since trades are done through the chain
1974 2013-05-11 06:40:14 <MC1984_> you can donate to the foundation if you want to bankroll gavin
1975 2013-05-11 06:40:30 <tumak> cjd: yep. so your solution is for IOU issuers to bear the risk of fraud
1976 2013-05-11 06:40:34 <tumak> and banks wont let you do that
1977 2013-05-11 06:40:35 <Luke-Jr> justme: saivann currently maintains bitcoin.org; it is owned by sirius; hosted by github
1978 2013-05-11 06:40:38 <MC1984_> though some of the other devs might appreciate a little love instead
1979 2013-05-11 06:40:42 <cjd> tumak: so it's the equivilant of selling gold and being paid with a stolen credit card, you lose.
1980 2013-05-11 06:40:48 <justme> MC1984: i do not care ... i just want to help
1981 2013-05-11 06:40:54 <tumak> cjd: yep, exactly :)
1982 2013-05-11 06:41:11 * Luke-Jr thinks it'd be nice if someone hired sipa to work on Bitcoin full time ;)
1983 2013-05-11 06:41:15 <cjd> tumak: no, bank doesn't bear the risk, whoever accepts the IOU takes the risk.
1984 2013-05-11 06:41:19 <justme> MC1984: is there a list of dev's ?
1985 2013-05-11 06:41:30 <tumak> cjd: you, the bank customer, bear the risk.
1986 2013-05-11 06:41:45 <cjd> You mean IOU issuer?
1987 2013-05-11 06:41:46 <MC1984_> is there a list of core devs somewhere?
1988 2013-05-11 06:41:48 <tumak> cjd: how the iou user bears the risk? you debase your iou?
1989 2013-05-11 06:41:48 <Luke-Jr> justme: per-project
1990 2013-05-11 06:41:56 <tumak> cjd: in that case youre scammer from their pov
1991 2013-05-11 06:42:01 <cjd> yeah, I kill that particular IOU
1992 2013-05-11 06:42:06 <cjd> very typical of banking
1993 2013-05-11 06:42:09 <saivann> justme : Though I will never say no to a donation, the work of the core developers is of a much more crucial importance, if you want to choose where to put your money
1994 2013-05-11 06:42:14 <justme> yes per project or just general devs ...is there
1995 2013-05-11 06:42:14 <cjd> it's generally called a chargeback
1996 2013-05-11 06:42:27 <tumak> cjd: how can you kill it, the iou is spread in possibly hundreds of trades already
1997 2013-05-11 06:42:32 <Luke-Jr> eg for Bitcoin-Qt, https://github.com/bitcoin/bitcoin/graphs/contributors
1998 2013-05-11 06:42:52 <tumak> cjd: if you make those particular coins "invalid", you simply deduct the balance from everyone involved
1999 2013-05-11 06:42:58 <tumak> once again, innocent people
2000 2013-05-11 06:43:03 <cjd> tumak: my design applies value to particular satoshis, I know which satoshis were associated with that stolen money, I can kill them
2001 2013-05-11 06:43:05 <tumak> and you stole their money
2002 2013-05-11 06:43:05 <justme> saivann: agree where do i donate ?
2003 2013-05-11 06:43:09 <tumak> because you got scammed
2004 2013-05-11 06:43:37 <justme> hmmmmmm
2005 2013-05-11 06:43:40 <tumak> cjd: sure, thats ok. but people wont be happy with that they bought $50 iou and tomorrow its $25
2006 2013-05-11 06:43:40 <cjd> this is exactly how chargebacks worl
2007 2013-05-11 06:43:53 <justme> just got an epiphany (not sure of spelling)
2008 2013-05-11 06:43:55 <saivann> justme : You can actually find the donation address of each developer as a signature on bitcointalk. Or you can donate to the foundation https://bitcoinfoundation.org/donate
2009 2013-05-11 06:43:55 <tumak> cjd: you might as well debase your iou then
2010 2013-05-11 06:44:03 <cjd> actually probably going to be 0 if they bought from the crook
2011 2013-05-11 06:44:17 <saivann> justme : Seems like a good idea to ask them to display a donation address on bitcoin though :-)
2012 2013-05-11 06:44:17 <Belxjander> cjd: so you wan't to allow extra forms of scamming in bitcoin ? based on the failures of the original systems?
2013 2013-05-11 06:44:19 <tumak> cjd: how can they know? the exchanges are automatic
2014 2013-05-11 06:44:25 <saivann> on bitcoin.org*
2015 2013-05-11 06:44:26 <tumak> cjd: its entirely random victim
2016 2013-05-11 06:44:53 <tumak> cjd: and you defy the whole point of p2ptrade. IOU issuers should be the gatekeepers, instead you spread the AML crap into the network
2017 2013-05-11 06:45:02 <justme> and it would be nice like all other open source software that the "foundation" recognizes donations
2018 2013-05-11 06:45:05 <saivann> justme : Many of the most active developers are displayed there : http://bitcoin.org/en/development
2019 2013-05-11 06:45:32 <justme> bookmarked ...
2020 2013-05-11 06:45:42 jgarzik_ has quit (Changing host)
2021 2013-05-11 06:45:42 jgarzik_ has joined
2022 2013-05-11 06:45:45 jgarzik_ is now known as jgarzik
2023 2013-05-11 06:45:59 <Luke-Jr> saivann: I still think that page should show all projects overview :p
2024 2013-05-11 06:46:08 <cjd> tumak: if someone came back with one of the killed IOUs they could file a police report and I'd have the ID of the person who bought it to begin with.
2025 2013-05-11 06:46:17 <justme> saivann: post a bitcoin address here .... i think you need a donation ... ty ty
2026 2013-05-11 06:46:47 <saivann> Luke-Jr : I though about adding links to most open-source clients / library there actually
2027 2013-05-11 06:46:49 <tumak> cjd: that sounds nice in theory
2028 2013-05-11 06:46:54 <cjd> tumak: I'm actually not interested in long distance banking, if someone can't walk in to my shop they're probably a scammer.
2029 2013-05-11 06:47:01 <tumak> cjd: in practice, the affected user is in thailand and youre in US
2030 2013-05-11 06:47:05 <tumak> cjd: how'd that work?
2031 2013-05-11 06:47:10 <Luke-Jr> saivann: I have a script to count LOC introduced across all Bitcoin projects I mirror
2032 2013-05-11 06:47:19 <MC1984_> mind you im not sure where foundations go aside from gavin
2033 2013-05-11 06:47:21 <cjd> I'm just not interested in a world wide service
2034 2013-05-11 06:47:26 <Luke-Jr> it must be buggy though, as it puts me at 2nd <.<
2035 2013-05-11 06:47:34 <MC1984_> they must have a couple of million dollars in coins now
2036 2013-05-11 06:47:37 <saivann> justme : Thanks! 1Gy7NYSJNUYqUdXTBow5d7bCUEJkUFDFSq
2037 2013-05-11 06:47:37 <tumak> cjd: oh, in that case youre brick & mortar cash IOU
2038 2013-05-11 06:47:42 <tumak> cjd: that is actually safe :)
2039 2013-05-11 06:47:46 <cjd> yeah
2040 2013-05-11 06:47:50 <justme> np brother ...stand bye
2041 2013-05-11 06:47:50 <cjd> more of a bank actually
2042 2013-05-11 06:47:58 <tumak> cjd: i was talking about pure banking chargeback iou issuer, which must be super careful about customers
2043 2013-05-11 06:48:18 <cjd> What I really want to do is start a bank
2044 2013-05-11 06:48:30 <saivann> Luke-Jr : Why not. I'm busy right now with improving how we handle translations on the website. After what I will focus again on content improvements
2045 2013-05-11 06:48:40 <cjd> and I'm not dealin with noone if they can't walk in my shop and gimme id :)
2046 2013-05-11 06:48:43 <justme> [starting official bitcoin.org client]
2047 2013-05-11 06:48:55 <tumak> cjd: btw, there is way to keep it balanced without getting police involved.
2048 2013-05-11 06:49:06 <cjd> ?
2049 2013-05-11 06:49:20 <tumak> cjd: iou1 gets fraud money, attacker launders via network, iou2 serves as output of fraud money
2050 2013-05-11 06:49:33 <justme> test paste of address for donation ....1Gy7NYSJNUYqUdXTBow5d7bCUEJkUFDFSq
2051 2013-05-11 06:49:36 <tumak> you have time to stop and set things straight things if iou1 and iou2 cooperates
2052 2013-05-11 06:49:41 <justme> yep that works
2053 2013-05-11 06:49:51 <cjd> tumak: iou1 and iou2 ?
2054 2013-05-11 06:50:12 <cjd> same iou, different recipients?
2055 2013-05-11 06:50:13 <saivann> justme: :)
2056 2013-05-11 06:50:16 <tumak> cjd: you're iouUSD and i'm iouEUR
2057 2013-05-11 06:50:20 <cjd> oic
2058 2013-05-11 06:50:20 <tumak> issuers
2059 2013-05-11 06:50:25 <cjd> yeah, makes sense
2060 2013-05-11 06:50:37 <cjd> but if someone commits fraud, police get involved
2061 2013-05-11 06:50:39 <cjd> that's banking
2062 2013-05-11 06:51:08 <tumak> so, criminal sends you money, you give him iouusd, he exchanges for my ioueur and i send him euros
2063 2013-05-11 06:51:14 <tumak> now you get charged back
2064 2013-05-11 06:51:15 <tumak> wat do?
2065 2013-05-11 06:51:17 <cjd> but yeah, I would be willing to cooperate with issuers overseas, just show me a police report and I'll stop the money at my end
2066 2013-05-11 06:51:58 <tumak> well, you're at loss there
2067 2013-05-11 06:52:05 <tumak> bank charged back the money
2068 2013-05-11 06:52:10 <cjd> not entirely sure, possibly put my customer's account into negative and get them arrested
2069 2013-05-11 06:52:10 <tumak> and i already sent the eurs
2070 2013-05-11 06:52:16 <tumak> so police would need to convince my eur bank
2071 2013-05-11 06:52:19 <tumak> to send eur back to me
2072 2013-05-11 06:52:27 <tumak> and i'll resettle with you
2073 2013-05-11 06:52:32 <tumak> so you're no longer at loss
2074 2013-05-11 06:52:35 <tumak> pretty complicated :/
2075 2013-05-11 06:52:51 <cjd> if you cash a bad check and western union the cash, you goto jail
2076 2013-05-11 06:53:01 <cjd> not nigerian prince
2077 2013-05-11 06:53:41 <cjd> anyway, I only want customers who I can meet face-to-face, I figure 99% of the fraud evaporates right there
2078 2013-05-11 06:53:47 <tumak> yup
2079 2013-05-11 06:53:52 <tumak> that is actually pretty safe
2080 2013-05-11 06:53:56 <justme> 1Gy7NYSJNUYqUdXTBow5d7bCUEJkUFDFSq
2081 2013-05-11 06:54:17 <justme> sent like $2.50 cdn with a transaction fee
2082 2013-05-11 06:54:20 <saivann> justme : Received, thanks!
2083 2013-05-11 06:54:29 <justme> WOW
2084 2013-05-11 06:54:30 <cjd> killing an iou is going to be bad for business in general
2085 2013-05-11 06:54:38 <tumak> cjd: in practice i think issuers will just debase their ious and will advertise that fact. that their ious will be worth less as time progresses in relation to fraud :(
2086 2013-05-11 06:54:45 <justme> DOUBLE WOW ...
2087 2013-05-11 06:54:49 <tumak> cjd: or they'll compensate with fees calculated over risk factor
2088 2013-05-11 06:54:59 <justme> i need to learn about transaction fees i think
2089 2013-05-11 06:55:07 <cjd> feed make sense if that's your goal
2090 2013-05-11 06:55:16 <justme> holy crap that was fsst
2091 2013-05-11 06:55:25 <justme> *fast
2092 2013-05-11 06:55:43 <cjd> because if I issue USD and I only accept money in the bank from people I know, my risk is low and I don't have to demerrage my currency
2093 2013-05-11 06:55:49 <tumak> cjd: assume i get defrauded of 2% of all my volume, so just strap 3% on all my iou/fiat exchanges and i'm done
2094 2013-05-11 06:55:49 <cjd> so people will all want my currency
2095 2013-05-11 06:56:14 <justme> i bookmarked all the other urls you gave me
2096 2013-05-11 06:56:16 <cjd> makes sense
2097 2013-05-11 06:56:23 <tumak> cjd: yup, low fees or no debasing
2098 2013-05-11 06:56:34 <justme> i used to pay like $100 usd per month for my online gaming
2099 2013-05-11 06:56:34 <cjd> debasing is a bad plan
2100 2013-05-11 06:56:43 <cjd> people will transfer off of your currency quick
2101 2013-05-11 06:57:04 <justme> i have no time for games now ... but i will support the network
2102 2013-05-11 06:57:19 <tumak> cjd: i think its ok if its advertised - some people might be willing to share the risk instead of trusting my judgement to hedge via fees
2103 2013-05-11 06:57:29 <cjd> hmm
2104 2013-05-11 06:57:42 <tumak> cjd: ie almost zero fees, but i'll post police reports + debase according to that - transparent
2105 2013-05-11 06:58:08 <cjd> I'd buy your coins and then trade them for mine :)
2106 2013-05-11 06:58:12 <justme> Saivann: it should have been like $2.50 cents american correct ?
2107 2013-05-11 06:58:16 Insti_ is now known as Insti
2108 2013-05-11 06:58:17 <cjd> because my coins hold value better
2109 2013-05-11 06:58:28 <tumak> cjd: no problem with that
2110 2013-05-11 06:59:00 <cjd> have a bank with an awkward rule.. gotta bring in paper cash in order to buy ious
2111 2013-05-11 06:59:04 <cjd> then they're cashcoins
2112 2013-05-11 06:59:12 <tumak> cjd: thats the magic of p2ptrade, all ious web of trust is replaced by prediction markets
2113 2013-05-11 06:59:14 <saivann> justme : I've started a private conversation with you if you wish
2114 2013-05-11 06:59:27 <cjd> and gotta have a damn brinx truck pull up every hour to take them away
2115 2013-05-11 06:59:32 <justme> oh ... kk looking for tabs
2116 2013-05-11 07:00:01 <cjd> but I'm not even that interested in cashcoins
2117 2013-05-11 07:00:08 <cjd> I'm more interested in equitycoins
2118 2013-05-11 07:00:35 <tumak> cjd: that will take a little more while imo
2119 2013-05-11 07:00:44 <tumak> cjd: regular folk are not that familiar with capital markets
2120 2013-05-11 07:00:53 <tumak> they can hardly wrap around their head about forex
2121 2013-05-11 07:00:57 <cjd> right indeed
2122 2013-05-11 07:01:01 <tumak> so first, huge forex volume is to be expected at first
2123 2013-05-11 07:01:05 <cjd> but we take away the hard parts
2124 2013-05-11 07:01:07 <tumak> then hopefully, capital markets will come too
2125 2013-05-11 07:01:25 <cjd> see I want local
2126 2013-05-11 07:01:35 <cjd> too much fraud when everything is globalized
2127 2013-05-11 07:01:49 <cjd> I *know* that my local coffee shop owner is a good guy, I met him
2128 2013-05-11 07:02:20 <cjd> and I'd be willing to throw my spending money into his business
2129 2013-05-11 07:02:31 <tumak> cjd: and lets say i know you enough over irc and trust your judgement coffe guy is good
2130 2013-05-11 07:02:41 <tumak> so i'll invest in his stock based on that judgement
2131 2013-05-11 07:02:49 <cjd> meh
2132 2013-05-11 07:02:52 <tumak> thats actually sound way to run global markets w/o fraud
2133 2013-05-11 07:02:56 <gmaxwell> friendly reminder, this channel is for bitcoin development; we have a bunch of other channels. If the channel is flooded with barely ontopic banter it reduces access for people trying to figure out whats going on in development land. I went out for the evening and have returned to about 50 pages of discussion, about one of which was ontopic.
2134 2013-05-11 07:03:16 <cjd> is colorcoin stuff ok?
2135 2013-05-11 07:03:17 <tumak> gmaxwell: good point
2136 2013-05-11 07:03:42 <tumak> cjd: i guess it should go into #bitcoinx, or whatever protocol of your choice :)
2137 2013-05-11 07:04:48 Neozonz has joined
2138 2013-05-11 07:05:23 <Neozonz> Anyone have any tips on decreasing stales/doa on a p2pool node?
2139 2013-05-11 07:05:56 <gmaxwell> Neozonz: join #p2pool I'm sure you'll get lots of advice there!
2140 2013-05-11 07:06:12 <Neozonz> Oh hello gmaxwell :)
2141 2013-05-11 07:06:19 <SomeoneWeird> colorcoin stuff is fine here, imo
2142 2013-05-11 07:06:29 <Neozonz> I read alot of your comments on github just 10 minutes ago :D
2143 2013-05-11 07:07:02 <Neozonz> gmaxwell, p2pool is dead these days- that's why I thought I'd try here :)
2144 2013-05-11 07:07:14 canoon has quit (Ping timeout: 245 seconds)
2145 2013-05-11 07:08:09 <gmaxwell> Neozonz: what is your current stale rate? If its typical for the network there probably isn't anything to do and you're doing fine.
2146 2013-05-11 07:08:22 <Neozonz> www.mine-litecoin.com
2147 2013-05-11 07:08:22 <gmaxwell> The efficiency number reported by p2pool itself is whats actually important.
2148 2013-05-11 07:08:42 <gmaxwell> oh jesus, you're asking about litecoin ... try #litecoin
2149 2013-05-11 07:08:44 <Neozonz> 32% DoA
2150 2013-05-11 07:09:05 <gmaxwell> sounds really high but I have no clue what litecoin is like.
2151 2013-05-11 07:09:09 <Neozonz> lol- the logic is pretty much the same ;)
2152 2013-05-11 07:09:10 <weex> or #litecoin-dev
2153 2013-05-11 07:09:26 <Neozonz> all forked from bitcoin
2154 2013-05-11 07:09:54 <gmaxwell> Neozonz: seriously, if litecoin doesn't have enough of a technical community to support you.... sounds like a reason not to use it.
2155 2013-05-11 07:10:14 <MC1984_> gmaxwell http://24.media.tumblr.com/tumblr_ma5krdBh3P1rwe6ato1_400.gif
2156 2013-05-11 07:10:23 <gmaxwell> And no, it's not the same— twiddling around with the network parameters changes the behavior a lot. And the litecoin software is forked off an old and slow copy of bitcoin.
2157 2013-05-11 07:10:59 <Neozonz> slow?
2158 2013-05-11 07:11:08 <Luke-Jr> gmaxwell: to be fair, coblee said he's almost done with 0.8.1 port
2159 2013-05-11 07:11:18 <Neozonz> :O
2160 2013-05-11 07:11:23 <Neozonz> Luke-Jr in here too
2161 2013-05-11 07:11:43 <Neozonz> it's like watching bitcoin celebs
2162 2013-05-11 07:11:44 rainworm has joined
2163 2013-05-11 07:11:55 andyh2 has quit (Quit: Leaving...)
2164 2013-05-11 07:12:33 <Luke-Jr> ._.
2165 2013-05-11 07:15:03 <gmaxwell> Neozonz: in any case, as I said, p2pool efficiency is what you need to watch. If its poor (e.g. <100%) then you should try to figure out whats making your setup more latent than other people.
2166 2013-05-11 07:15:49 sturles_ has quit (Changing host)
2167 2013-05-11 07:15:49 sturles_ has joined
2168 2013-05-11 07:15:59 <Neozonz> ok thx!
2169 2013-05-11 07:16:03 sturles_ is now known as sturles
2170 2013-05-11 07:19:00 RaymanJr_ has joined
2171 2013-05-11 07:19:37 phish is now known as phish-
2172 2013-05-11 07:20:00 phish- has left ("Leaving")
2173 2013-05-11 07:21:27 alexwaters has joined
2174 2013-05-11 07:22:21 Plarkplark_ has joined
2175 2013-05-11 07:22:25 <Plarkplark_> Hi
2176 2013-05-11 07:22:42 <Plarkplark_> If i generate a privatekey/address combo, won't the privatekey ever change?
2177 2013-05-11 07:22:46 <Plarkplark_> like... never?
2178 2013-05-11 07:22:49 ielo has quit (Ping timeout: 272 seconds)
2179 2013-05-11 07:23:21 <sipa_> Plarkplark_: indeed, but a wallet consists of many keypair
2180 2013-05-11 07:23:36 <sipa_> and new keypairs are generated every time you do transactions
2181 2013-05-11 07:25:58 canoon has joined
2182 2013-05-11 07:27:22 rynx has quit (Ping timeout: 276 seconds)
2183 2013-05-11 07:30:47 <Luke-Jr> Plarkplark_: privkey/address should only be used once
2184 2013-05-11 07:37:35 richcollins has quit (Quit: richcollins)
2185 2013-05-11 07:38:40 llop has joined
2186 2013-05-11 07:38:58 justme has quit (Quit: Page closed)
2187 2013-05-11 07:39:54 debiantoruser has quit (Ping timeout: 248 seconds)
2188 2013-05-11 07:41:37 debiantoruser has joined
2189 2013-05-11 07:47:47 tumak has quit (K-Lined)
2190 2013-05-11 07:50:16 JDuke128 has joined
2191 2013-05-11 07:52:31 muhoo_ is now known as muhoo
2192 2013-05-11 07:53:51 <JDuke128> hello , i m using bitcoinj , i can receive when i get bitcoin. Like ; "public synchronized void onCoinsReceived(Wallet w, Transaction tx, BigInteger prevBalance, BigInteger newBalance)" i can get sender address by ;  final TransactionInput input = tx2.getInputs().get(0); final Address from = input.getFromAddress(); but how can i get who ( which bit coin address ) received this money ?
2193 2013-05-11 07:55:43 alexwaters has quit (Quit: Leaving.)
2194 2013-05-11 07:56:52 mollison1 has left ("PART #bitcoin :ISON #awesome #bitcoin-otc #bitcoin-market #bitcoin-pit")
2195 2013-05-11 07:57:23 SebX has joined
2196 2013-05-11 07:59:01 <Plarkplark_> sipa_ but there is only 1 keypair yes? because if I only use 1 address
2197 2013-05-11 07:59:03 <Plarkplark_> What i mean:
2198 2013-05-11 07:59:26 <Plarkplark_> If i create an offline keypair and put in the vault. Transfer BTC there for safekeeping am I safe?
2199 2013-05-11 08:00:02 toffoo has quit (Read error: Connection reset by peer)
2200 2013-05-11 08:00:03 <Plarkplark_> <sipa_> and new keypairs are generated every time you do transactions
2201 2013-05-11 08:00:30 <Plarkplark_> not to my understanding, if I send it does not generate, and if I use 1 address of receiving there is no new key, is there?
2202 2013-05-11 08:04:06 <JDuke128> Plarkplark_ , i m new
2203 2013-05-11 08:04:07 <JDuke128> sorry
2204 2013-05-11 08:04:14 <JDuke128> i donno
2205 2013-05-11 08:04:20 <JDuke128> hello , i m using bitcoinj , i can receive when i get bitcoin. Like ; "public synchronized void onCoinsReceived(Wallet w, Transaction tx, BigInteger prevBalance, BigInteger newBalance)" i can get sender address by ;  final TransactionInput input = tx2.getInputs().get(0); final Address from = input.getFromAddress(); but how can i get who ( which bit coin address ) received this money ?
2206 2013-05-11 08:05:07 rushed has joined
2207 2013-05-11 08:11:07 iceblue has joined
2208 2013-05-11 08:17:09 Phil21_ is now known as Phil21
2209 2013-05-11 08:19:19 SebX has quit (Quit: WeeChat 0.3.7)
2210 2013-05-11 08:19:33 SebX has joined
2211 2013-05-11 08:23:41 alaricsp_ is now known as alaricsp
2212 2013-05-11 08:23:55 brwyatt_ is now known as brwyatt_|Away
2213 2013-05-11 08:24:19 JDuke128 has quit (Quit: Computer has gone to sleep.)
2214 2013-05-11 08:24:42 tumak has joined
2215 2013-05-11 08:28:52 ovidiusoft has joined
2216 2013-05-11 08:31:51 ielo has joined
2217 2013-05-11 08:32:45 <sipa_> Plarkplark_: read this first: https://en.bitcoin.it/wiki/Change
2218 2013-05-11 08:33:13 <sipa_> Plarkplark_: addresses are used to receive coins, but every time you send coins somewhere, the "change" (read the link) is sent back to a _new_ address of your own
2219 2013-05-11 08:33:32 swulf--1 has quit (Quit: Leaving.)
2220 2013-05-11 08:34:09 swulf-- has joined
2221 2013-05-11 08:38:27 swulf-- has quit (Ping timeout: 245 seconds)
2222 2013-05-11 08:40:22 Prattler has quit (Quit: ZNC - http://znc.in)
2223 2013-05-11 08:44:37 qeb has joined
2224 2013-05-11 08:45:00 iceblue has quit (Ping timeout: 256 seconds)
2225 2013-05-11 08:45:36 iceblue has joined
2226 2013-05-11 08:49:30 Prattler has joined
2227 2013-05-11 08:55:17 savetheinternet has joined
2228 2013-05-11 08:59:01 xnyhps_ is now known as xnyhps
2229 2013-05-11 08:59:06 grau has joined
2230 2013-05-11 09:00:00 qeb has quit (Quit: Computer has gone to sleep.)
2231 2013-05-11 09:06:03 xire has quit (Ping timeout: 272 seconds)
2232 2013-05-11 09:09:42 akakcolin has quit (Quit: akakcolin)
2233 2013-05-11 09:11:21 BurtyB2 is now known as BurtyB
2234 2013-05-11 09:13:13 saulimus has joined
2235 2013-05-11 09:13:43 XertroV has quit (Quit: Leaving.)
2236 2013-05-11 09:15:02 ielo has quit (Ping timeout: 256 seconds)
2237 2013-05-11 09:17:00 <Plarkplark_> sipa_ are you sure?
2238 2013-05-11 09:17:04 <Plarkplark_> I tested it
2239 2013-05-11 09:17:09 <Plarkplark_> Created a new wallet
2240 2013-05-11 09:17:11 <Plarkplark_> Send 1 BTC
2241 2013-05-11 09:17:15 <Plarkplark_> Then send .5 BTC
2242 2013-05-11 09:17:20 <Plarkplark_> from that wallet
2243 2013-05-11 09:17:26 <Plarkplark_> destroyed the wallet
2244 2013-05-11 09:17:32 ielo has joined
2245 2013-05-11 09:17:32 <Plarkplark_> imported the privkey. .5 BTC
2246 2013-05-11 09:17:46 <Plarkplark_> <sipa_> Plarkplark_: addresses are used to receive coins, but every time you send coins somewhere, the "change" (read the link) is sent back to a _new_ address of your own
2247 2013-05-11 09:17:57 <Plarkplark_> Even after sending there is still 1 Privatekey.... ?
2248 2013-05-11 09:18:00 <gmaxwell> Plarkplark_: sounds like broken client software.
2249 2013-05-11 09:18:04 <sipa_> Plarkplark_: which client?
2250 2013-05-11 09:18:09 <Plarkplark_> bitcoin-qt
2251 2013-05-11 09:18:10 <gmaxwell> Bitcoin(-qt) won't behave that way.
2252 2013-05-11 09:18:28 <gmaxwell> Or you imported the address you sent the .5 btc too.
2253 2013-05-11 09:18:43 <Luke-Jr> or his transaction simply didn't confirm yet
2254 2013-05-11 09:18:51 <Plarkplark_> Wallet with 1 BTC> Send .5 BTC to another (friend).
2255 2013-05-11 09:18:58 <Plarkplark_> Destroyed wallet (renamed)
2256 2013-05-11 09:19:02 <Plarkplark_> New wallet
2257 2013-05-11 09:19:10 <Plarkplark_> Imported the privkey in the wallet, rescanned
2258 2013-05-11 09:19:15 <Plarkplark_> Balance .5
2259 2013-05-11 09:19:25 <gmaxwell> Whats the transaction ID of "Send .5 BTC to another"  (or just the address you sent it to)
2260 2013-05-11 09:19:32 <sipa_> my guess is that the transaction simply didn't confirm yet
2261 2013-05-11 09:19:38 <Plarkplark_> it's an LTC transaction btw (dont shoot me)
2262 2013-05-11 09:19:44 <sipa_> and you'll soon have 0 LTC
2263 2013-05-11 09:20:08 <Plarkplark_> ok.
2264 2013-05-11 09:20:10 rdymac has joined
2265 2013-05-11 09:20:18 <Plarkplark_> So an export (getprivkey) is not enough?
2266 2013-05-11 09:20:18 <gmaxwell> or god knows LTC software might be broken in some random way.
2267 2013-05-11 09:20:20 <Luke-Jr> Plarkplark_: this is #bitcoin-dev
2268 2013-05-11 09:20:25 <Luke-Jr> gmaxwell: probably not unlikely
2269 2013-05-11 09:20:34 <sipa_> Plarkplark_: it's enough to get the key for one address
2270 2013-05-11 09:20:41 <sipa_> Plarkplark_: it's not enough to backup a wallet
2271 2013-05-11 09:20:53 <cjd> or that guy who's been holding down the whole ltc network for the past week...
2272 2013-05-11 09:21:03 <sipa_> either you manage your wallet key-per-key (and _really_ understand how wallets work)
2273 2013-05-11 09:21:16 <sipa_> or you do things at the wallet level and make your life easy
2274 2013-05-11 09:21:22 <Plarkplark_> But that is what blockchain.info seems to say. HAving the privatekey of an recieving address is enough?
2275 2013-05-11 09:21:43 <llop> lol
2276 2013-05-11 09:21:52 <Plarkplark_> It's the same client... :\
2277 2013-05-11 09:22:03 <Luke-Jr> no, it isn't.
2278 2013-05-11 09:22:03 <Plarkplark_> Well the method anyway.
2279 2013-05-11 09:22:08 <SomeoneWeird> nope
2280 2013-05-11 09:22:12 <gmaxwell> It is not. The litecoin software is a modified fork of an old version.
2281 2013-05-11 09:22:12 <cjd> except for that backdoor
2282 2013-05-11 09:22:18 AlbertTuring has quit (Quit: Nettalk6 - www.ntalk.de)
2283 2013-05-11 09:22:26 <sipa_> Plarkplark_: having the private key to a receive address is enough to access coins sent to that address, yes
2284 2013-05-11 09:22:36 <Plarkplark_> ah
2285 2013-05-11 09:22:41 <Plarkplark_> and I only have 1 address. so.
2286 2013-05-11 09:22:50 <sipa_> no, you have 1 _receive_ address
2287 2013-05-11 09:22:54 <Plarkplark_> (which, i know, is not best practice)
2288 2013-05-11 09:23:03 <sipa_> your wallet internally uses many more addresses
2289 2013-05-11 09:23:07 <Plarkplark_> And that privatekey never changes, right?
2290 2013-05-11 09:23:09 ielo has quit (Ping timeout: 272 seconds)
2291 2013-05-11 09:23:11 <gmaxwell> None of us are especially competent about its state any anything we might say about bitcoin may or may not apply. Besides, do you really want to be using some cryptocurrency so poorly supported that you need to go ask the developers of another one for support? :(
2292 2013-05-11 09:23:42 <sipa_> Plarkplark_: yes, but i think you're missing the point and will shoot yourself in the foot soon
2293 2013-05-11 09:24:09 <sipa_> and indeed, go ask LTC people
2294 2013-05-11 09:24:18 <Plarkplark_> Wallet A has 1 address and has .1 BTC
2295 2013-05-11 09:24:28 <Plarkplark_> I send .05 BTC to wallet X (some random person)
2296 2013-05-11 09:24:36 <sipa_> i can only explain how BTC works; it's up to you to judge whether it holds for other software
2297 2013-05-11 09:24:39 <Luke-Jr> sipa_: LTC people don't know generally. just coblee, and even he avoids talking to the regular LTC users..
2298 2013-05-11 09:24:51 rdymac has quit (Client Quit)
2299 2013-05-11 09:24:58 <Plarkplark_> THen, i export the one private key I have.
2300 2013-05-11 09:25:02 <Plarkplark_> Then I destroy the wallet.dat
2301 2013-05-11 09:25:14 <sipa_> Plarkplark_: the result is that you'll have 0 BTC at address A, 0.05 BTC at address X, and 0.95 at some hidden change address C
2302 2013-05-11 09:25:26 <Plarkplark_> Ok. Then I setup a new wallet (with a generated pub/priv pair) and import the key. Rescan.
2303 2013-05-11 09:25:29 <Plarkplark_> Why?
2304 2013-05-11 09:25:35 <sipa_> Read the link I gave you.
2305 2013-05-11 09:25:45 sipa_ is now known as sipa
2306 2013-05-11 09:26:02 <Plarkplark_> But there is no fundemental difference.
2307 2013-05-11 09:26:15 <sipa> Between?
2308 2013-05-11 09:26:18 <llop> it's just the way the client works at the moment
2309 2013-05-11 09:26:43 <Luke-Jr> llop: well, it's not like it can work much differently in this respect
2310 2013-05-11 09:26:46 milone has joined
2311 2013-05-11 09:26:48 milone has quit (Read error: Connection reset by peer)
2312 2013-05-11 09:26:53 <Luke-Jr> without breaking things
2313 2013-05-11 09:27:00 <sipa> It certainly can; whether it should is something else.
2314 2013-05-11 09:27:12 <Plarkplark_> I case of Electrum: how can the seed ever be enough to sync bac kthe client?
2315 2013-05-11 09:27:13 <llop> couldn't you send back the change to the same address? -- I think it's better the way it is though
2316 2013-05-11 09:27:19 o3u has quit (Ping timeout: 264 seconds)
2317 2013-05-11 09:27:20 <Plarkplark_> The seed is just that: the private key seed
2318 2013-05-11 09:27:24 caedes has joined
2319 2013-05-11 09:27:40 <gmaxwell> Plarkplark_: You're sitting here arguing with the developers of the Bitcoin software, who are telling you how it works... but then also insisting that litecoin works the same way.  You can't have both.  Either you're wrong about how it works, or litecoin is working differently... as its really unlikely that we're wrong about the bitcoin software.
2320 2013-05-11 09:27:46 milone has joined
2321 2013-05-11 09:28:11 <Luke-Jr> llop: using an address more than once is Harmful™
2322 2013-05-11 09:28:11 <Plarkplark_> Ill test some more. :\
2323 2013-05-11 09:28:19 * sipa afk
2324 2013-05-11 09:28:43 <Luke-Jr> Plarkplark_: the seed is just a seed. it isn't used as a private key
2325 2013-05-11 09:28:49 <Plarkplark_> yes it is
2326 2013-05-11 09:28:53 savetheinternet has quit (Quit: Textual IRC Client: www.textualapp.com)
2327 2013-05-11 09:28:55 <Luke-Jr> it's used to create numerous "child" private keys
2328 2013-05-11 09:28:56 <gmaxwell> jesus
2329 2013-05-11 09:28:59 <Plarkplark_> the privatekey is rebuild with the seed with multiple loops
2330 2013-05-11 09:29:07 <Plarkplark_> then 5 privkeys are made.
2331 2013-05-11 09:29:10 <Plarkplark_> or 6
2332 2013-05-11 09:29:12 <Plarkplark_> dunno
2333 2013-05-11 09:29:12 <Luke-Jr> my point exactly
2334 2013-05-11 09:29:16 <Plarkplark_> ok so.
2335 2013-05-11 09:29:17 <gmaxwell> Plarkplark_: are you hear to learn something, or just to argue with people?
2336 2013-05-11 09:29:24 <coingenuity> Plarkplark_: how come the transaction i sent via my ixcoin client isnt working?
2337 2013-05-11 09:29:30 <Plarkplark_> I want to learn, I just don't understand.
2338 2013-05-11 09:29:37 <Luke-Jr> /kick coingenuity
2339 2013-05-11 09:29:39 <Luke-Jr> :p
2340 2013-05-11 09:29:50 <coingenuity> lmao
2341 2013-05-11 09:30:03 <gmaxwell> coingenuity: When I start my truck sometimes there is a belt slipping sound, but only with the headlights on. What should I do??????
2342 2013-05-11 09:30:15 <Luke-Jr> gmaxwell: O.o
2343 2013-05-11 09:30:20 <coingenuity> gmaxwell: try hitting the flux capacitor with a long stick
2344 2013-05-11 09:30:25 <Plarkplark_> If this is the face of BTC-dev. then. we are fucked.
2345 2013-05-11 09:30:45 _caedes has quit (Ping timeout: 272 seconds)
2346 2013-05-11 09:30:52 <Luke-Jr> Plarkplark_: bitcoin-dev has no face. it's an internal channel for developers, public for transparency
2347 2013-05-11 09:31:05 <Luke-Jr> gmaxwell: ^ sound about right?
2348 2013-05-11 09:31:18 <jouke> gmaxwell: first check for radiator leakage, as the cooling liquid might reduce the friction
2349 2013-05-11 09:31:19 <Plarkplark_> There are no good arguments in the way it works. imho
2350 2013-05-11 09:31:21 <gmaxwell> Plarkplark_: You've been fairly discourteous here, and yet you've been given solid answers... even though you're asking about some other software.
2351 2013-05-11 09:31:25 <coingenuity> Plarkplark_: bro, this is bitcoin-dev not litecoin-dev.. i'm sure if your questions were more in tune with bitcoin development as opposed to litecoin you'd get a lot more information
2352 2013-05-11 09:31:35 <jouke> gmaxwell: :P
2353 2013-05-11 09:31:40 <Plarkplark_> Im fireing up bitcoin now, i want to know how this works.
2354 2013-05-11 09:31:50 <coingenuity> but you're kind of asking a bunch of japanese dudes how to make chinese food, if you catch my drift
2355 2013-05-11 09:31:51 <Luke-Jr> Plarkplark_: you've been told how it works
2356 2013-05-11 09:31:56 <Plarkplark_> Im sure i restored btc wallets that have numerous transcations in/out with just the private key (1)
2357 2013-05-11 09:32:00 <gmaxwell> Plarkplark_: you've been told how it works… and even directed to a nice wikipage which explains it too.
2358 2013-05-11 09:32:23 <Luke-Jr> Plarkplark_: you haven't, if you're talking about Bitcoin-Qt
2359 2013-05-11 09:32:29 <Plarkplark_> Yes
2360 2013-05-11 09:32:36 <jouke> Plarkplark_: maybe multibit wallets?
2361 2013-05-11 09:32:39 <gmaxwell> Luke-Jr: none of them may have involved change, so you know thats possible.
2362 2013-05-11 09:32:45 <Plarkplark_> no normale wallet, 1 address 1 key.
2363 2013-05-11 09:33:31 <Luke-Jr> gmaxwell: considering the person, and the phrase "numerous transactions", I think it's highly improbable
2364 2013-05-11 09:33:36 <Plarkplark_> And why: Because I currently have a lot of btc on blockchain. The backup they provide is just 1 public keu (address and 1 private key.
2365 2013-05-11 09:33:53 <Plarkplark_> So you're telling me that having this key combo is not enough, because of the "change" method?
2366 2013-05-11 09:33:57 <gmaxwell> ...
2367 2013-05-11 09:34:05 <Plarkplark_> blockchain.info
2368 2013-05-11 09:34:08 <Luke-Jr> Plarkplark_: now you sound like you're confusing the blockchain with a webwallet known as blockchain.info
2369 2013-05-11 09:34:17 <Luke-Jr> the latter of which has nothing to do with Bitcoin-Qt
2370 2013-05-11 09:34:25 * gmaxwell gives up
2371 2013-05-11 09:34:30 <Plarkplark_> If I import the privatekey in the wallet it works fine :)
2372 2013-05-11 09:34:56 <jouke> Plarkplark_: so you are not using the "normal" wallet. You are using the blockchain.info wallet
2373 2013-05-11 09:35:39 <Plarkplark_> Ill setup a test, if I'm wrong I'm wrong. :\
2374 2013-05-11 09:36:10 <jouke> Please tell us your test setup first.
2375 2013-05-11 09:36:44 davout has joined
2376 2013-05-11 09:37:38 <Plarkplark_> I'll make a wallet. fill it with .1 bt
2377 2013-05-11 09:37:52 <Plarkplark_> then send .05 to person X (random somewhere - not part of test)
2378 2013-05-11 09:37:57 <Plarkplark_> Then delete the wallet
2379 2013-05-11 09:38:11 <Plarkplark_> Then import the privkey export (1 address, so 1 privkey)
2380 2013-05-11 09:38:17 <Plarkplark_> Im sure: ill have .05 left.
2381 2013-05-11 09:38:27 <llop> lol
2382 2013-05-11 09:38:31 icellan has joined
2383 2013-05-11 09:38:32 <Luke-Jr> you can send .05 to 3P14159f73E4gFr7JterCCQh9QjiTjiZrG
2384 2013-05-11 09:38:43 <Plarkplark_> that's a testnet addr?
2385 2013-05-11 09:38:44 <cjd> xD
2386 2013-05-11 09:38:48 <Luke-Jr> Plarkplark_: no, main bitcoin
2387 2013-05-11 09:38:49 <gmaxwell> no, its a bitcoin address.
2388 2013-05-11 09:38:57 <Plarkplark_> 3?
2389 2013-05-11 09:39:18 <Plarkplark_> ok if you send it back later keep the fee :P
2390 2013-05-11 09:39:32 <jouke> Plarkplark_: what program will you use to make a wallet?
2391 2013-05-11 09:39:39 <Plarkplark_> bitcoin-qt vanilla
2392 2013-05-11 09:40:11 <gmaxwell> I prefer the cherry flavor.
2393 2013-05-11 09:40:15 <cjd> if you want litecoin like behavior you'll have to use bitcoin like 0.6 without any of the security patches
2394 2013-05-11 09:40:18 <jouke> Ok. Make a backup before you delete the wallet ;P
2395 2013-05-11 09:40:35 <Luke-Jr> I also prefer the cherry flavour.
2396 2013-05-11 09:41:05 <Luke-Jr> cjd: no historical version ever behaved the way he expects
2397 2013-05-11 09:41:10 <Plarkplark_> (need to catch up with blockchain first ;) )
2398 2013-05-11 09:41:45 <cjd> Luke-Jr: maybe it behaves differently when it's under a massive attack ;)
2399 2013-05-11 09:41:55 <jouke> could it be that he somehow didn't do a rescan of the wallet?
2400 2013-05-11 09:42:22 <Plarkplark_> yeh i forgot to mention I did after import of privkey
2401 2013-05-11 09:42:25 <jouke> after deleting the wallet and creating a new one.
2402 2013-05-11 09:42:29 <Plarkplark_> having 2 address (default generated + imported)
2403 2013-05-11 09:42:37 <Luke-Jr> jouke: rescan hasn't been needed since like 0.6
2404 2013-05-11 09:42:58 <cjd> ^^so litecoin needs it xD
2405 2013-05-11 09:43:15 <Plarkplark_> Let's keep ltc's viability out of the discussion.
2406 2013-05-11 09:43:27 <Luke-Jr> Let's keep ltc out of the discussion.
2407 2013-05-11 09:43:32 <Plarkplark_> indeed pls
2408 2013-05-11 09:43:39 <cjd> hehehe
2409 2013-05-11 09:44:08 <Plarkplark_> ugh. this is going to take a while ;) well ill report back later. thanks for the help
2410 2013-05-11 09:46:20 icellan has quit (Quit: icellan)
2411 2013-05-11 09:47:08 <sipa> jouke: rescan will never result in reporting more than available, only less
2412 2013-05-11 09:47:15 <sipa> *failing to rescan
2413 2013-05-11 09:47:57 <sipa> my guess is that all attempts by Plarkplark_ are either not yet confirmed or were with integral coins that didn't need change
2414 2013-05-11 09:50:31 <sipa> jouke: hmm, as of 0.8, i may be wrong
2415 2013-05-11 09:51:27 <gmaxwell> sipa: hurray for spentness indication
2416 2013-05-11 09:51:31 bhaug has joined
2417 2013-05-11 09:56:24 tonikt has joined
2418 2013-05-11 09:56:50 hnz_ has quit (Ping timeout: 245 seconds)
2419 2013-05-11 09:58:37 paracyst has quit ()
2420 2013-05-11 09:58:49 MobiusL has quit (Quit: Ex-Chat)
2421 2013-05-11 09:59:33 MobiusL has joined
2422 2013-05-11 09:59:33 MobiusL has quit (Changing host)
2423 2013-05-11 09:59:33 MobiusL has joined
2424 2013-05-11 10:02:49 hnz has joined
2425 2013-05-11 10:03:38 XertroV has joined
2426 2013-05-11 10:06:34 freefox has joined
2427 2013-05-11 10:07:27 <Plarkplark_> bbl
2428 2013-05-11 10:09:14 XertroV has quit (Ping timeout: 248 seconds)
2429 2013-05-11 10:09:28 Plarkplark_ has quit (Read error: Connection reset by peer)
2430 2013-05-11 10:09:36 Plarkplark_ has joined
2431 2013-05-11 10:09:40 killerstorm has joined
2432 2013-05-11 10:11:06 killerstorm has left ()
2433 2013-05-11 10:12:10 gagecolton has quit (Read error: Connection reset by peer)
2434 2013-05-11 10:12:21 AtashiCon has quit (Remote host closed the connection)
2435 2013-05-11 10:16:06 gagecolton has joined
2436 2013-05-11 10:16:26 davout has quit (Remote host closed the connection)
2437 2013-05-11 10:17:02 Plarkplark_ has quit (Ping timeout: 276 seconds)
2438 2013-05-11 10:19:28 Plarkplark_ has joined
2439 2013-05-11 10:23:37 gagecolton has quit (Read error: Connection reset by peer)
2440 2013-05-11 10:25:25 AtashiCon has joined
2441 2013-05-11 10:28:16 Chuky has joined
2442 2013-05-11 10:29:39 nanotube has quit (Ping timeout: 272 seconds)
2443 2013-05-11 10:29:58 AndChat64721 has quit (Read error: Connection reset by peer)
2444 2013-05-11 10:31:28 llop has quit (Quit: Page closed)
2445 2013-05-11 10:35:04 EvilPete__ has quit (Quit: confused irc client)
2446 2013-05-11 10:38:44 hpprinter100__ has quit (Quit: Reconnecting)
2447 2013-05-11 10:38:56 hpprinter100__ has joined
2448 2013-05-11 10:40:19 RazielZ has joined
2449 2013-05-11 10:45:23 askmike has joined
2450 2013-05-11 10:49:07 macboz has quit (Read error: Operation timed out)
2451 2013-05-11 10:49:23 egis has joined
2452 2013-05-11 10:52:43 XRPTrader2 has quit (Quit: XRPTrader2)
2453 2013-05-11 10:59:21 Internet13 has quit (Quit: Leaving)
2454 2013-05-11 11:02:17 Internet13 has joined
2455 2013-05-11 11:02:22 hpprinter100__ has quit (Remote host closed the connection)
2456 2013-05-11 11:02:41 sacarlson has joined
2457 2013-05-11 11:03:17 hpprinter100 has joined
2458 2013-05-11 11:04:14 Zx82 has joined
2459 2013-05-11 11:04:19 <sacarlson> I just noted the have a bitcoin app for android.  how do they get android to handle the 1.6gB chain download and run from that?  is there a way now that you don't need to have the whole block chain to run a client?
2460 2013-05-11 11:05:50 CaptainBlaze has joined
2461 2013-05-11 11:06:09 <Zx82> Any help >>>>  http://stackoverflow.com/questions/16285218/bitcoin-op-checksig-in-python
2462 2013-05-11 11:06:13 <Tykling> it's called a thin client, it trusts a server which has the complete chain to do it's validation
2463 2013-05-11 11:06:20 <Tykling> sacarlson: ^
2464 2013-05-11 11:06:32 <sipa> Tykling: no, it's an SPV node
2465 2013-05-11 11:06:52 <sipa> it means it validates the block headers, but not the transactuions
2466 2013-05-11 11:07:03 <sipa> it doesn't use a central server
2467 2013-05-11 11:07:04 MoALTz_ is now known as MoALTz
2468 2013-05-11 11:07:14 <Tykling> some of the mobile clients do, no ?
2469 2013-05-11 11:07:20 <sacarlson> Tykling: oh so it's not really running bitcoin just a https to a server to transact then.
2470 2013-05-11 11:07:21 <sipa> Tykling: yes
2471 2013-05-11 11:07:46 <sipa> sacarlson: no, it's flocal bitcoin inplementation that talks to the normal p2p network
2472 2013-05-11 11:08:02 <sacarlson> sipa: oh ok
2473 2013-05-11 11:08:35 <sacarlson> sipa: is there an implementation then for a standard linux distrubution?
2474 2013-05-11 11:08:44 <sipa> sacarlson: multibit
2475 2013-05-11 11:08:55 <sipa> uses the same mechanism
2476 2013-05-11 11:08:56 <sacarlson> sipa: cool I'll take a look
2477 2013-05-11 11:09:43 <sipa> also, the blockchain is 7 gb or so now
2478 2013-05-11 11:09:44 <SomeoneWeird> or electrum
2479 2013-05-11 11:09:56 <sipa> electrum uses a central server
2480 2013-05-11 11:10:06 <sipa> though it does similar local checking now
2481 2013-05-11 11:10:35 <SomeoneWeird> mm, yeah
2482 2013-05-11 11:11:08 <sacarlson> sipa: oh ya I've been gone a long time 7Gb  wow too big,  I was thinking of a ledger system to just cut the chain for portable use but seems a better way has already been found
2483 2013-05-11 11:11:38 <sipa> spv was described in satoshi's paper
2484 2013-05-11 11:11:44 <sipa> it's far from a new idea
2485 2013-05-11 11:13:16 <gmaxwell> sacarlson: wow, you're back from the dead? no one around now remembers beertoken and weeds anymore. Now that altcoins are such a huge craze you should spin them back up and make a quick buck. :P
2486 2013-05-11 11:13:32 <sipa> though bloom filtering is recent
2487 2013-05-11 11:14:10 <gmaxwell> [OT] lol: https://bitcointalk.org/index.php?board=40.0
2488 2013-05-11 11:14:59 <sipa> ot indeed!
2489 2013-05-11 11:15:06 <kinlo> heh
2490 2013-05-11 11:15:12 <kinlo> nice work :)
2491 2013-05-11 11:15:38 <gmaxwell> conman did report to moderator on most of them, I just clicked a bunch.
2492 2013-05-11 11:15:52 macboz has joined
2493 2013-05-11 11:18:13 <sacarlson> gmaxwell: altcoins?  is that a new coin I don't know of or is that all alternate coins?   yes I got into my aircraft designs with FPV and lost interest in crypto currency but was just offered some work on some things here so thought I would brush up
2494 2013-05-11 11:18:28 <kinlo> sacarlson: all alternate coins
2495 2013-05-11 11:18:31 <SomeoneWeird> LOL
2496 2013-05-11 11:18:32 <kinlo> all nonbitcoin
2497 2013-05-11 11:18:34 <SomeoneWeird> jesus gmaxwell
2498 2013-05-11 11:18:57 <sacarlson> kinlo: ok thanks
2499 2013-05-11 11:19:58 <Zx82> Any help ????  http://stackoverflow.com/questions/16285218/bitcoin-op-checksig-in-python
2500 2013-05-11 11:20:43 shawn_fessenden has joined
2501 2013-05-11 11:21:50 macboz has quit (Ping timeout: 245 seconds)
2502 2013-05-11 11:21:55 shawn_fessenden1 has quit (Ping timeout: 264 seconds)
2503 2013-05-11 11:24:57 macboz has joined
2504 2013-05-11 11:24:57 gritball has joined
2505 2013-05-11 11:27:04 iceblue has quit (Ping timeout: 256 seconds)
2506 2013-05-11 11:27:11 skinnkavaj has quit (Ping timeout: 268 seconds)
2507 2013-05-11 11:28:24 <sacarlson> ok remind me of what all I forgot the problems would be if I created a new coin with 30 second estimated block rate if I used the Litecoin hash scritpt?
2508 2013-05-11 11:28:57 <sacarlson> I expect it will branch so often it will become useless
2509 2013-05-11 11:29:00 <gmaxwell> why bother asking? no one else does.
2510 2013-05-11 11:29:23 <gmaxwell> omg. you actually thought more than 5 seconds before making a modification. I don't know if you're cut out for this altcoin thing after all. :P
2511 2013-05-11 11:29:43 <sacarlson> well if no one else does then I won't find the answer gmaxwell
2512 2013-05-11 11:30:21 <gmaxwell> several coins have cranked the timers way down and caught fire. I'm not sure that any have done 30 seconds specifically.
2513 2013-05-11 11:30:27 Zx82 has quit (Ping timeout: 272 seconds)
2514 2013-05-11 11:30:40 <gmaxwell> e.g. look for "liquid coin"
2515 2013-05-11 11:30:59 <sacarlson> gmaxwell: I'm looking at Litecoin now with 2.5 minuets
2516 2013-05-11 11:31:29 <sacarlson> gmaxwell: they just muliplied bitcoin by 4 so I was going to muliply them by 4
2517 2013-05-11 11:31:32 <MC1984_> why do we need another coin
2518 2013-05-11 11:31:58 <sacarlson> MC1984_: why do we even need bitcoin
2519 2013-05-11 11:32:12 <MC1984_> because the banks are shit or something
2520 2013-05-11 11:32:39 <MC1984_> some has already taken litecoin and x4 that MF again its called feathercoin
2521 2013-05-11 11:32:42 <sacarlson> MC1984_: ok that's a good reason but some people want faster transaction times
2522 2013-05-11 11:33:02 <MC1984_> there is no faster transaction times jesus christ
2523 2013-05-11 11:33:40 <MC1984_> how can people be starting thier own coins based on fundamental misunderstandings of what normal old boring ass bitcoin does
2524 2013-05-11 11:33:50 iwilcox_ has joined
2525 2013-05-11 11:33:50 iwilcox_ has quit (Changing host)
2526 2013-05-11 11:33:50 iwilcox_ has joined
2527 2013-05-11 11:33:55 iwilcox_ is now known as iwilcox
2528 2013-05-11 11:33:56 <sacarlson> MC1984_: You call 10 minuets for bitcoin fast?
2529 2013-05-11 11:33:58 <MC1984_> devs plz obfusicate all the code thx
2530 2013-05-11 11:35:28 <sacarlson> MC1984_: I've been asked to produce a faster coin that can be used to buy a coke in a coke machine or candy in the candy store
2531 2013-05-11 11:36:14 <MC1984_> the blocktimes are a lie
2532 2013-05-11 11:36:18 <MC1984_> meditate on it
2533 2013-05-11 11:37:17 <sacarlson> MC1984_: so you can buy a soda with bitcoins then?
2534 2013-05-11 11:37:47 <gmaxwell> Making the blocks faster doesn't magically decrease the time to irreversibility on it own— in fact it can have the opposite effect.
2535 2013-05-11 11:38:11 CaptainBlaze has quit (Quit: CaptainBlaze)
2536 2013-05-11 11:38:13 ThomasV has joined
2537 2013-05-11 11:38:18 Skav has joined
2538 2013-05-11 11:38:44 <MC1984_> id say yes, if i was running a business selling soda from machines, i could eat the double spends as cost of doing business with bitcoin
2539 2013-05-11 11:38:45 <MC1984_> maybe
2540 2013-05-11 11:39:12 <gmaxwell> sacarlson: you can, in fact. In a whole half dozen different ways. Including the fact that the risk of doublespending soda theft (and the cost of it should it happen) is likely low enough to not worry about;  or that bitcoin denominated transactions don't necessarily have to involve the bitcoin network.
2541 2013-05-11 11:39:15 <sacarlson> gmaxwell: true but hopefully it will have some psychological effect when you see the first verify in 15 secounds
2542 2013-05-11 11:39:49 <MC1984_> >psychological effect
2543 2013-05-11 11:39:54 <gmaxwell> sacarlson: and a greater one when you see 10 block reorganizations take it away.
2544 2013-05-11 11:39:56 <MC1984_> operative phrase there
2545 2013-05-11 11:41:38 CaptainBlaze has joined
2546 2013-05-11 11:41:59 MobPhone has quit (Ping timeout: 268 seconds)
2547 2013-05-11 11:42:12 <sacarlson> gmaxwell: I know I"ve seen it happen to myself on testnet that happen to split durring my  transaction where my funds magicly disapeared the next day
2548 2013-05-11 11:43:13 MobPhone has joined
2549 2013-05-11 11:43:31 Plarkplark_ has quit (Read error: Connection reset by peer)
2550 2013-05-11 11:43:43 Plarkplark_ has joined
2551 2013-05-11 11:44:23 _W_ has quit (Ping timeout: 272 seconds)
2552 2013-05-11 11:44:32 CaptainBlaze has quit (Client Quit)
2553 2013-05-11 11:44:36 <sacarlson> But this is what my employer wants.  a semi secure faster coin, to be used for smaller purchases,  I've chosen ppcoin as my base to modify with added features of Litecoin,  If we can only get it to run at 2.4 minuets so be it
2554 2013-05-11 11:44:55 <sipa> log2_work = 70.001 \o/
2555 2013-05-11 11:45:19 <sipa> and the universe still exists
2556 2013-05-11 11:45:36 nanotube has joined
2557 2013-05-11 11:46:22 Skav has quit (Ping timeout: 240 seconds)
2558 2013-05-11 11:49:39 iceblue has joined
2559 2013-05-11 11:50:12 <sacarlson> oh i missed this  from mc1984:  06:15:53 PM) MC1984_: id say yes, if i was running a business selling soda from machines, i could eat the double spends as cost of doing business with bitcoin
2560 2013-05-11 11:50:37 datagutt has joined
2561 2013-05-11 11:51:03 <sacarlson> as I recall with my exchange I couldn't even detect a coin transaction in my website unless at least one block was seen to verify it
2562 2013-05-11 11:51:05 SwedFTP__ has quit (Read error: Connection reset by peer)
2563 2013-05-11 11:51:18 <MC1984_> sipa were you expecting things to catch fire?
2564 2013-05-11 11:51:25 <gmaxwell> MC1984_: yes, http://www.smbc-comics.com/index.php?db=comics&id=2595#comic
2565 2013-05-11 11:52:34 one_zero has quit ()
2566 2013-05-11 11:52:41 SwedFTP has joined
2567 2013-05-11 11:52:42 SwedFTP has quit (Changing host)
2568 2013-05-11 11:52:42 SwedFTP has joined
2569 2013-05-11 11:52:58 <MC1984_> heh
2570 2013-05-11 11:53:05 <jgm> sacarlson: You do realise that time to confirm is probabilistic right?  Regardless of you picking 2 minutes or whatever as a chance it will commonly take a lot longer.
2571 2013-05-11 11:53:23 <sacarlson> jgm: yes
2572 2013-05-11 11:53:28 <MC1984_> thats not even the problem with the scheme
2573 2013-05-11 11:53:52 <gmaxwell> sacarlson: as far as your exchange, that was just inexpert use of the software... there is no need for blocks to know a broadcasted txn exists— otherwise how would they get into blocks?
2574 2013-05-11 11:53:54 <MC1984_> block times do one thing only as far as i can see, determine how much time your system has to converge itself
2575 2013-05-11 11:54:17 <MC1984_> 10 minutes seems a good time for future proofing
2576 2013-05-11 11:55:40 <sacarlson> gmaxwell: I do recall that in my graphic bitcoin client that seemed in seconds I would see a transaction that was not verified so there must be a way to setup a website or coke machine to ignore required block before purchase
2577 2013-05-11 11:56:15 <sacarlson> at risk of not getting paid but so be it
2578 2013-05-11 11:56:18 tholenst has joined
2579 2013-05-11 11:56:41 <jgm> If you're just selling soda then I wouldn't even bother worrying about confirmations.  The effort of double spending to pick up a soda seems... excessive
2580 2013-05-11 11:56:47 ielo has joined
2581 2013-05-11 11:57:28 <sacarlson> jgm: yes that's sounds right so I should focus on bypass of confirmation on the server or coke machine side
2582 2013-05-11 11:57:42 skinnkavaj has joined
2583 2013-05-11 12:00:04 <jgm> sacarlson: depends how you're building it but if it were me I'd get a signed transaction from the customer for the coke (at the dispenser), confirm the transaction is valid, and give it to them
2584 2013-05-11 12:00:35 AndChat64721 has joined
2585 2013-05-11 12:01:57 <sacarlson> jgm: singed transaction does that require waiting for the next block?  I don't want the poor man to die of thirst waiting for that to happen
2586 2013-05-11 12:02:09 icellan has joined
2587 2013-05-11 12:03:08 <tholenst> I'm thinking since a while... could I somehow make a transaction which says: "If you find a double spend of txout A, then this transaction can be used, using as input txout B" -- and then I give you this, and broadcast a transaction giving you money from txout A
2588 2013-05-11 12:03:09 <gmaxwell> MC1984_: RE comic, see also "Luminious" and "Dark integers" by Greg Egan. (geesh. took me forever to remember the names of those books, even though my initial guess as to the author was right)
2589 2013-05-11 12:03:10 <sacarlson> jgm:  if not than I agree that's the way to go
2590 2013-05-11 12:04:18 <jgm> Nope you can confirm that the transaction is valid and signed immediately, although you will need your dispensers to pick up info on new blocks as they are mined.  But you're going to need 'net connectivity for them anyway (and isn't everything 'net connected by now?)
2591 2013-05-11 12:04:40 <MC1984_> right o
2592 2013-05-11 12:05:38 <MC1984_> sacarlson this will work even better if some sort of DS signalling thing is worked out, right now theyre just dropped
2593 2013-05-11 12:06:00 <MC1984_> might even be fast enough to hold the vend in the event of suspected shenanigans
2594 2013-05-11 12:06:13 <gmaxwell> ([continuing that OT tangent] This website seems like a source of fun: http://kasmana.people.cofc.edu/MATHFICT/mfview.php?callnumber=mf19)
2595 2013-05-11 12:06:27 GMP has joined
2596 2013-05-11 12:07:25 <MC1984_> id expect the machine to tell you to go away and refund you later after confs in that situation, or perhaps not if you did try to screw it
2597 2013-05-11 12:08:26 mappum has quit (Ping timeout: 246 seconds)
2598 2013-05-11 12:08:41 AndChat64721 has quit (Quit: Bye)
2599 2013-05-11 12:09:20 iceblue has quit (Ping timeout: 245 seconds)
2600 2013-05-11 12:11:41 gjs278 has quit (Read error: Connection reset by peer)
2601 2013-05-11 12:12:10 _W_ has joined
2602 2013-05-11 12:13:10 gjs278 has joined
2603 2013-05-11 12:13:11 Belkaar has quit (Read error: Connection reset by peer)
2604 2013-05-11 12:14:47 ielo has quit (Ping timeout: 272 seconds)
2605 2013-05-11 12:14:56 Irencus has joined
2606 2013-05-11 12:15:25 egis has quit (Quit: Leaving)
2607 2013-05-11 12:15:31 <MC1984_> well these book synopsises seem good, but i hope i can brain them
2608 2013-05-11 12:15:42 <MC1984_> wont know unless i try
2609 2013-05-11 12:16:16 lupine has quit (Changing host)
2610 2013-05-11 12:16:16 lupine has joined
2611 2013-05-11 12:18:41 Belkaar has joined
2612 2013-05-11 12:19:17 rushed has quit (Quit: rushed)
2613 2013-05-11 12:20:38 caedes has quit (Remote host closed the connection)
2614 2013-05-11 12:21:19 _W_ has quit (Ping timeout: 264 seconds)
2615 2013-05-11 12:21:58 CaptainBlaze has joined
2616 2013-05-11 12:22:53 ali1234 has joined
2617 2013-05-11 12:22:55 rushed has joined
2618 2013-05-11 12:29:15 viperhr1 has joined
2619 2013-05-11 12:30:04 45PAABVC2 has quit (Read error: Connection reset by peer)
2620 2013-05-11 12:30:34 iceblue has joined
2621 2013-05-11 12:37:13 nidefawl has joined
2622 2013-05-11 12:38:01 CaptainBlaze has quit (Quit: CaptainBlaze)
2623 2013-05-11 12:38:57 Plinker_ has joined
2624 2013-05-11 12:39:20 countbot has joined
2625 2013-05-11 12:39:29 buZz_ is now known as buZz
2626 2013-05-11 12:40:24 concurx has joined
2627 2013-05-11 12:40:36 Plinker_ is now known as Plinker
2628 2013-05-11 12:42:05 _W_ has joined
2629 2013-05-11 12:42:38 CaptainBlaze has joined
2630 2013-05-11 12:43:11 Diapolis has joined
2631 2013-05-11 12:44:32 davout has joined
2632 2013-05-11 12:46:04 JTF195 has quit (Ping timeout: 245 seconds)
2633 2013-05-11 12:48:50 bhaug has quit (Remote host closed the connection)
2634 2013-05-11 12:49:08 Neozonz has quit (Ping timeout: 276 seconds)
2635 2013-05-11 12:50:10 ^A has joined
2636 2013-05-11 12:52:40 sud3n has quit (Ping timeout: 245 seconds)
2637 2013-05-11 12:53:35 rynx has joined
2638 2013-05-11 12:54:08 icellan has quit (Quit: icellan)
2639 2013-05-11 12:55:31 Jasmin68k has joined
2640 2013-05-11 12:57:50 BlueMatt_ is now known as BlueMatt
2641 2013-05-11 12:57:50 BlueMatt has quit (Changing host)
2642 2013-05-11 12:57:50 BlueMatt has joined
2643 2013-05-11 12:57:51 canoon has quit (Ping timeout: 272 seconds)
2644 2013-05-11 12:58:44 Diapolis has quit (Remote host closed the connection)
2645 2013-05-11 13:00:39 Neozonz has joined
2646 2013-05-11 13:00:39 Jasmin68k has quit (Read error: Connection reset by peer)
2647 2013-05-11 13:02:41 Jasmin68k has joined
2648 2013-05-11 13:03:33 daybyter has joined
2649 2013-05-11 13:04:48 icellan has joined
2650 2013-05-11 13:06:53 <MC1984_> christ my computer clock is losing ~25 seconds a week is that bad
2651 2013-05-11 13:09:05 <buZz> arent you glad they invented NTP back in the 80s
2652 2013-05-11 13:14:52 <MC1984_> yes but damn hell is wrong with my quartz
2653 2013-05-11 13:14:52 rynx has quit (Ping timeout: 240 seconds)
2654 2013-05-11 13:17:42 devurandom has left ()
2655 2013-05-11 13:24:48 rushed has left ()
2656 2013-05-11 13:25:19 ielo has joined
2657 2013-05-11 13:26:54 BCBot_ has quit (Ping timeout: 245 seconds)
2658 2013-05-11 13:28:47 iceblue has quit (Ping timeout: 276 seconds)
2659 2013-05-11 13:31:12 fishfish has joined
2660 2013-05-11 13:31:48 rdymac has joined
2661 2013-05-11 13:33:23 diki has joined
2662 2013-05-11 13:33:41 <diki> If there is any bitcointalk moderator here, better go to Altcoin subforum and look at what happened
2663 2013-05-11 13:33:46 <diki> an alt-coin had a wallet stealer in it
2664 2013-05-11 13:34:24 <kaptah> is that verified
2665 2013-05-11 13:34:37 fishfish_ has quit (Ping timeout: 264 seconds)
2666 2013-05-11 13:34:37 SirDefaced has quit (Ping timeout: 264 seconds)
2667 2013-05-11 13:34:54 <diki> tons of information
2668 2013-05-11 13:34:56 <SomeoneWeird> diki link
2669 2013-05-11 13:34:57 <diki> YACoin apparently
2670 2013-05-11 13:35:03 <diki> https://bitcointalk.org/index.php?board=67.0
2671 2013-05-11 13:35:40 <diki> I saw an address with about 900 supposed stolen coins
2672 2013-05-11 13:35:49 <diki> and a single user lost 255+
2673 2013-05-11 13:35:56 <BlueMatt> so? we've seen plenty of wallet stealers before
2674 2013-05-11 13:36:10 <buZz> pickpockets are everywhere
2675 2013-05-11 13:36:13 <buZz> EVEN on the internet
2676 2013-05-11 13:36:25 <diki> BlueMatt:the yacoin thread is still there
2677 2013-05-11 13:36:29 <diki> links should be removed
2678 2013-05-11 13:36:46 <nsh> wait
2679 2013-05-11 13:36:57 <nsh> diki,  an altcoin that stole its own wallets or stole bitcoin wallets?
2680 2013-05-11 13:37:02 <diki> Bitcoin wallets
2681 2013-05-11 13:37:14 <nsh> that's pretty dastardly
2682 2013-05-11 13:37:30 freefox has quit (Quit: freefox)
2683 2013-05-11 13:37:32 <BlueMatt> hopefully it will teach people not to trust altcoins made by $RANDOM_USER anymore...
2684 2013-05-11 13:37:39 <nsh> +1
2685 2013-05-11 13:38:29 <nsh> the one positive to all this faffing about with money is that it does put basic security practices into sharp relief
2686 2013-05-11 13:38:54 <nsh> (well, i say one positive, leaving aside all the fixing the world stuff)
2687 2013-05-11 13:39:12 <diki> Actually, I was very soon going to DL yacoin myself, but thank god I didn't
2688 2013-05-11 13:39:30 <diki> Saved by....user ignorance.
2689 2013-05-11 13:39:45 <kaptah> you should run altcoins etc on a VM
2690 2013-05-11 13:39:53 icellan has quit (Read error: Connection reset by peer)
2691 2013-05-11 13:40:32 <diki> and another wallet bites the dust https://bitcointalk.org/index.php?topic=202087.0
2692 2013-05-11 13:40:48 <BlueMatt> you shouldnt run altcoins at all, really...
2693 2013-05-11 13:40:58 icellan has joined
2694 2013-05-11 13:41:22 <kaptah> true. but if you must be an "early adaptor" ..
2695 2013-05-11 13:41:25 canoon has joined
2696 2013-05-11 13:41:28 * nsh adjust BlueMatt's bishop robes
2697 2013-05-11 13:41:32 rynx has joined
2698 2013-05-11 13:41:42 <kaptah> adopter**
2699 2013-05-11 13:42:09 <diki> kaptah:Wrong thinking.
2700 2013-05-11 13:42:10 <SomeoneWeird> nsh, lol
2701 2013-05-11 13:42:13 <diki> It's profit, really.
2702 2013-05-11 13:42:47 <MC1984_> ops bitcoind crashed
2703 2013-05-11 13:43:20 <MC1984_> instruction at 0x00000000 referenced memory at 0x000000. mmory could not be read
2704 2013-05-11 13:43:30 <MC1984_> thats vauge and it sounds like my computer
2705 2013-05-11 13:43:43 <BlueMatt> no stack trace
2706 2013-05-11 13:43:55 <BlueMatt> but, yea, there should be no instruction running at 0x00000000
2707 2013-05-11 13:44:36 <MC1984_> run bitcoind for 2 weeks before without that happening
2708 2013-05-11 13:44:57 <BlueMatt> doesnt mean it cant be a bug
2709 2013-05-11 13:45:01 Jasmin68k has quit (Quit: Leaving.)
2710 2013-05-11 13:45:14 <MC1984_> i got the rc1
2711 2013-05-11 13:45:17 <BlueMatt> quite the opposite, if it crashed bitcoind immediately others would be aware of it and have already fixed it
2712 2013-05-11 13:45:23 <SomeoneWeird> 0x000000000 wat
2713 2013-05-11 13:45:57 <MC1984_> well there gooes all my bloody peers
2714 2013-05-11 13:46:10 <MC1984_> 21 in 12 hours, im trying to test the memory improvements
2715 2013-05-11 13:47:05 icellan_ has joined
2716 2013-05-11 13:48:22 icellan has quit (Ping timeout: 240 seconds)
2717 2013-05-11 13:48:23 icellan_ is now known as icellan
2718 2013-05-11 13:54:42 CodeShark has quit (Remote host closed the connection)
2719 2013-05-11 13:54:55 marchon has quit (Quit: Leaving.)
2720 2013-05-11 13:58:25 icellan has quit (Quit: icellan)
2721 2013-05-11 13:59:30 Jezzz- is now known as Jezzz
2722 2013-05-11 13:59:31 rdymac has quit (Quit: This computer has gone to sleep)
2723 2013-05-11 13:59:48 Jezzz has quit (Changing host)
2724 2013-05-11 13:59:48 Jezzz has joined
2725 2013-05-11 14:11:20 canoon has quit (Ping timeout: 272 seconds)
2726 2013-05-11 14:13:29 <nsh> #bitcoin-market it quiet...
2727 2013-05-11 14:13:46 <nsh> topic doesn't say who maintains the bot
2728 2013-05-11 14:13:48 <BlueMatt> nanotube: ^
2729 2013-05-11 14:13:52 <nsh> ah ty
2730 2013-05-11 14:15:44 Skav has joined
2731 2013-05-11 14:17:49 MobPhone has quit (Ping timeout: 252 seconds)
2732 2013-05-11 14:20:48 MobPhone has joined
2733 2013-05-11 14:22:36 stochasm has joined
2734 2013-05-11 14:23:06 malaimo has quit (Ping timeout: 248 seconds)
2735 2013-05-11 14:24:09 Skav has quit (Ping timeout: 256 seconds)
2736 2013-05-11 14:24:34 nsh has quit (Changing host)
2737 2013-05-11 14:24:34 nsh has joined
2738 2013-05-11 14:24:47 rdymac has joined
2739 2013-05-11 14:24:57 malaimo has joined
2740 2013-05-11 14:25:19 rdymac has quit (Read error: Connection reset by peer)
2741 2013-05-11 14:27:09 Muis has quit (Ping timeout: 252 seconds)
2742 2013-05-11 14:27:22 da2ce7_d has joined
2743 2013-05-11 14:29:28 da2ce7 has quit (Ping timeout: 256 seconds)
2744 2013-05-11 14:29:42 Namworld has quit ()
2745 2013-05-11 14:32:13 bitWorks has joined
2746 2013-05-11 14:32:36 Skav has joined
2747 2013-05-11 14:32:48 da2ce7 has joined
2748 2013-05-11 14:34:00 da2ce7_d has quit (Ping timeout: 256 seconds)
2749 2013-05-11 14:34:39 shawn_fessenden1 has joined
2750 2013-05-11 14:35:13 MobPhone has quit (Ping timeout: 256 seconds)
2751 2013-05-11 14:35:42 MobPhone has joined
2752 2013-05-11 14:35:49 BCBot` has joined
2753 2013-05-11 14:36:02 shawn_fessenden has quit (Ping timeout: 272 seconds)
2754 2013-05-11 14:37:31 Skav has quit (Ping timeout: 264 seconds)
2755 2013-05-11 14:37:54 valparaiso_ has joined
2756 2013-05-11 14:40:08 valparaiso_ has left ()
2757 2013-05-11 14:40:54 valparaiso has quit (Ping timeout: 252 seconds)
2758 2013-05-11 14:41:16 Jasmin68k has joined
2759 2013-05-11 14:41:55 joeykrim__ is now known as joeykrim
2760 2013-05-11 14:41:57 canoon has joined
2761 2013-05-11 14:42:01 mrkent has quit (Quit: Leaving)
2762 2013-05-11 14:47:26 systemParanoid has joined
2763 2013-05-11 14:49:05 AusBitBank_ has quit (Remote host closed the connection)
2764 2013-05-11 14:49:25 BTCOxygen is now known as 2!~BTCOxygen@unaffiliated/btcoxygen|BTCOxygen
2765 2013-05-11 14:50:37 sud3n has joined
2766 2013-05-11 14:51:14 BCBot` has quit (Ping timeout: 272 seconds)
2767 2013-05-11 14:53:30 systemParanoid has quit (Ping timeout: 245 seconds)
2768 2013-05-11 14:55:00 rainworm has quit ()
2769 2013-05-11 14:57:25 bitWorks has quit (Remote host closed the connection)
2770 2013-05-11 14:58:07 normanrichards has joined
2771 2013-05-11 14:58:17 mrkent has joined
2772 2013-05-11 14:58:17 mrkent has quit (Changing host)
2773 2013-05-11 14:58:18 mrkent has joined
2774 2013-05-11 14:59:22 canoon has quit (Ping timeout: 240 seconds)
2775 2013-05-11 15:00:16 bitWorks has joined
2776 2013-05-11 15:03:11 nomailing has joined
2777 2013-05-11 15:03:13 mrkent has quit (Quit: Leaving)
2778 2013-05-11 15:04:45 sud3n has quit (Ping timeout: 245 seconds)
2779 2013-05-11 15:05:04 Ferroh_ has joined
2780 2013-05-11 15:05:13 gritball_ has joined
2781 2013-05-11 15:05:22 Luke-Jr has quit (Excess Flood)
2782 2013-05-11 15:05:34 Tom_Servo has joined
2783 2013-05-11 15:05:59 Luke-Jr has joined
2784 2013-05-11 15:06:37 systemParanoid has joined
2785 2013-05-11 15:07:27 sgstair has quit (Read error: Connection reset by peer)
2786 2013-05-11 15:07:29 milone has quit (Read error: Connection reset by peer)
2787 2013-05-11 15:07:35 loltu has quit (Ping timeout: 252 seconds)
2788 2013-05-11 15:07:35 Jasmin68k has quit (Ping timeout: 252 seconds)
2789 2013-05-11 15:07:36 gritball has quit (Ping timeout: 252 seconds)
2790 2013-05-11 15:07:36 TomServo has quit (Ping timeout: 252 seconds)
2791 2013-05-11 15:07:52 Ferroh has quit (Ping timeout: 252 seconds)
2792 2013-05-11 15:07:52 flyingkiwiguy has quit (Ping timeout: 252 seconds)
2793 2013-05-11 15:07:59 loltu has joined
2794 2013-05-11 15:08:01 flyingkiwiguy has joined
2795 2013-05-11 15:08:08 sgstair has joined
2796 2013-05-11 15:08:54 ProfMac has quit (Ping timeout: 245 seconds)
2797 2013-05-11 15:09:01 BurtyBB has joined
2798 2013-05-11 15:09:54 milone has joined
2799 2013-05-11 15:10:25 ForceMajeure_ has joined
2800 2013-05-11 15:10:31 ivan\ has quit (Ping timeout: 264 seconds)
2801 2013-05-11 15:10:42 laundry has joined
2802 2013-05-11 15:10:58 grau_ has joined
2803 2013-05-11 15:11:31 hsmiths2 has joined
2804 2013-05-11 15:11:42 Belxjander has quit (Max SendQ exceeded)
2805 2013-05-11 15:11:43 jeremias has quit (Ping timeout: 264 seconds)
2806 2013-05-11 15:11:44 xorgate has quit (Ping timeout: 264 seconds)
2807 2013-05-11 15:11:48 Jasmin68k has joined
2808 2013-05-11 15:12:00 Tom_Servo is now known as TomServo
2809 2013-05-11 15:12:20 dooglus_ has quit (Ping timeout: 264 seconds)
2810 2013-05-11 15:12:20 JunK-Y has quit (Ping timeout: 264 seconds)
2811 2013-05-11 15:12:20 ll_ has quit (Ping timeout: 264 seconds)
2812 2013-05-11 15:12:20 bitinstant has quit (Ping timeout: 264 seconds)
2813 2013-05-11 15:12:20 phungus has quit (Ping timeout: 264 seconds)
2814 2013-05-11 15:12:20 JyZyXEL has quit (Ping timeout: 264 seconds)
2815 2013-05-11 15:12:20 thelames1 has quit (Ping timeout: 264 seconds)
2816 2013-05-11 15:12:20 cyberdo has quit (Ping timeout: 264 seconds)
2817 2013-05-11 15:12:20 cris has quit (Ping timeout: 264 seconds)
2818 2013-05-11 15:12:20 starsoccer has quit (Ping timeout: 264 seconds)
2819 2013-05-11 15:12:21 lupine has quit (Excess Flood)
2820 2013-05-11 15:12:29 hsmiths has quit (Read error: Connection reset by peer)
2821 2013-05-11 15:12:29 cyberdo has joined
2822 2013-05-11 15:12:32 JyZyXEL has joined
2823 2013-05-11 15:13:40 dooglus has joined
2824 2013-05-11 15:13:41 bitinstant has joined
2825 2013-05-11 15:13:45 Clown has joined
2826 2013-05-11 15:13:51 thelamest has joined
2827 2013-05-11 15:13:53 Belxjander has joined
2828 2013-05-11 15:13:58 JunK-Y has joined
2829 2013-05-11 15:14:07 poop__ has joined
2830 2013-05-11 15:14:09 Clown is now known as Guest69616
2831 2013-05-11 15:14:20 Plarkplark_ has quit (Ping timeout: 245 seconds)
2832 2013-05-11 15:14:20 phungus has joined
2833 2013-05-11 15:14:27 ivan\ has joined
2834 2013-05-11 15:14:36 BCBot` has joined
2835 2013-05-11 15:14:38 ThomasV has quit (Quit: Quitte)
2836 2013-05-11 15:14:48 ForceMajeure has quit (Ping timeout: 264 seconds)
2837 2013-05-11 15:14:48 poop_ has quit (Ping timeout: 264 seconds)
2838 2013-05-11 15:14:48 redeeman has quit (Ping timeout: 264 seconds)
2839 2013-05-11 15:14:48 BurtyB has quit (Ping timeout: 264 seconds)
2840 2013-05-11 15:14:48 grau has quit (Ping timeout: 264 seconds)
2841 2013-05-11 15:14:48 Sliver has quit (Ping timeout: 264 seconds)
2842 2013-05-11 15:14:48  has quit (Clown|!Clown@unaffiliated/clown/x-0272709|Remote host closed the connection)
2843 2013-05-11 15:14:48 lupine has joined
2844 2013-05-11 15:14:48 ll_ has joined
2845 2013-05-11 15:14:48 Tycale has quit (Ping timeout: 264 seconds)
2846 2013-05-11 15:14:49 ThomasV has joined
2847 2013-05-11 15:14:49 Tycale_ has joined
2848 2013-05-11 15:15:00 ForceMajeure_ has quit (Client Quit)
2849 2013-05-11 15:15:02 starsoccer has joined
2850 2013-05-11 15:15:07 Sliver has joined
2851 2013-05-11 15:15:19 ForceMajeure has joined
2852 2013-05-11 15:15:22 redeeman has joined
2853 2013-05-11 15:16:49 45PAAB0ME has joined
2854 2013-05-11 15:17:04 SirDefaced has joined
2855 2013-05-11 15:17:38 Guest69616 is now known as |Clown|
2856 2013-05-11 15:17:39  has quit (Clown|!Clown@static-87-79-93-140.netcologne.de|Changing host)
2857 2013-05-11 15:17:39  has joined
2858 2013-05-11 15:17:42 cris has joined
2859 2013-05-11 15:17:53 jeremias has joined
2860 2013-05-11 15:22:00 gfawkes has joined
2861 2013-05-11 15:23:22 CaptainBlaze has quit (Ping timeout: 268 seconds)
2862 2013-05-11 15:23:44 CaptainBlaze has joined
2863 2013-05-11 15:27:08 iceblue has joined
2864 2013-05-11 15:28:35 ltcbtc_ has joined
2865 2013-05-11 15:29:22 richcollins has joined
2866 2013-05-11 15:29:30 daybyter has quit (Quit: Konversation terminated!)
2867 2013-05-11 15:31:37 concurx has quit (Remote host closed the connection)
2868 2013-05-11 15:31:57 concurx has joined
2869 2013-05-11 15:32:06 systemParanoid has quit (Quit: Leaving)
2870 2013-05-11 15:33:31 bibbybob has joined
2871 2013-05-11 15:33:35 BCBot` has quit (Ping timeout: 256 seconds)
2872 2013-05-11 15:33:53 richcollins has quit (Ping timeout: 245 seconds)
2873 2013-05-11 15:34:53 45PAAB0ME has quit (Ping timeout: 276 seconds)
2874 2013-05-11 15:37:41 CaptainBlaze_ has joined
2875 2013-05-11 15:37:49 CaptainBlaze has quit (Ping timeout: 256 seconds)
2876 2013-05-11 15:37:49 CaptainBlaze_ is now known as CaptainBlaze
2877 2013-05-11 15:40:09 ltcbtc_ has quit (Quit: latez)
2878 2013-05-11 15:42:20 Zx82 has joined
2879 2013-05-11 15:42:55 iceblue has quit (Ping timeout: 264 seconds)
2880 2013-05-11 15:43:06 Jasmin68k has quit (Ping timeout: 268 seconds)
2881 2013-05-11 15:43:27 fishfish_ has joined
2882 2013-05-11 15:43:54 <nanotube> nsh: thanks, fixed. :)
2883 2013-05-11 15:43:59 iwilcox_ has joined
2884 2013-05-11 15:43:59 iwilcox_ has quit (Changing host)
2885 2013-05-11 15:44:00 iwilcox_ has joined
2886 2013-05-11 15:44:05 <nanotube> and BlueMatt ^
2887 2013-05-11 15:44:12 <nsh> nanotube, thanks yersel!
2888 2013-05-11 15:44:23 normanrichards has quit (Quit: normanrichards)
2889 2013-05-11 15:44:33 <nanotube> :)
2890 2013-05-11 15:45:17 fiesh_ has joined
2891 2013-05-11 15:45:26 CaptainBlaze has quit (Quit: CaptainBlaze)
2892 2013-05-11 15:45:29 Jasmin68k has joined
2893 2013-05-11 15:45:37 iwilcox has quit (Killed (cameron.freenode.net (Nickname regained by services)))
2894 2013-05-11 15:45:38 iwilcox_ is now known as iwilcox
2895 2013-05-11 15:45:44 Jasmin68k has quit (Client Quit)
2896 2013-05-11 15:45:51 alaricsp_ has joined
2897 2013-05-11 15:46:07 Belxjander has quit (Read error: Connection reset by peer)
2898 2013-05-11 15:46:09 Jasmin68k has joined
2899 2013-05-11 15:46:44 FabianB has joined
2900 2013-05-11 15:46:44 FabianB has quit (Changing host)
2901 2013-05-11 15:46:44 FabianB has joined
2902 2013-05-11 15:46:54 Zx82 has quit (Quit: Saliendo)
2903 2013-05-11 15:47:01 Arbition_ has joined
2904 2013-05-11 15:47:11 Zx82 has joined
2905 2013-05-11 15:47:11 Zx82 has quit (Changing host)
2906 2013-05-11 15:47:11 Zx82 has joined
2907 2013-05-11 15:47:14 kadoban__ has joined
2908 2013-05-11 15:47:33 Tom_Servo has joined
2909 2013-05-11 15:47:38 jchp_ has joined
2910 2013-05-11 15:47:40 poop_ has joined
2911 2013-05-11 15:47:40 buZz_ has joined
2912 2013-05-11 15:47:44 mhanne has joined
2913 2013-05-11 15:47:45 mhanne has quit (Changing host)
2914 2013-05-11 15:47:45 mhanne has joined
2915 2013-05-11 15:47:51 Belxjander has joined
2916 2013-05-11 15:48:19 idstam-se has joined
2917 2013-05-11 15:48:26 grazs has joined
2918 2013-05-11 15:48:46 ngc0202 has joined
2919 2013-05-11 15:48:52 lianj_ has joined
2920 2013-05-11 15:48:52 lianj_ has quit (Changing host)
2921 2013-05-11 15:48:52 lianj_ has joined
2922 2013-05-11 15:50:34 fiesh has quit (Ping timeout: 245 seconds)
2923 2013-05-11 15:50:34 TomServo has quit (Ping timeout: 245 seconds)
2924 2013-05-11 15:50:34 alaricsp has quit (Ping timeout: 245 seconds)
2925 2013-05-11 15:50:34 jchp has quit (Ping timeout: 245 seconds)
2926 2013-05-11 15:50:34 forrestv has quit (Ping timeout: 245 seconds)
2927 2013-05-11 15:50:34 jaakkos has quit (Ping timeout: 245 seconds)
2928 2013-05-11 15:50:34 buZz has quit (Ping timeout: 245 seconds)
2929 2013-05-11 15:50:34 Sargun has quit (Ping timeout: 245 seconds)
2930 2013-05-11 15:50:34 mhanne_ has quit (Ping timeout: 245 seconds)
2931 2013-05-11 15:50:34 Luke-Jr has quit (Ping timeout: 245 seconds)
2932 2013-05-11 15:50:34 ielo has quit (Ping timeout: 245 seconds)
2933 2013-05-11 15:50:35 Arbition has quit (Ping timeout: 245 seconds)
2934 2013-05-11 15:50:35 grazs_ has quit (Ping timeout: 245 seconds)
2935 2013-05-11 15:50:35 sytse has quit (Ping timeout: 245 seconds)
2936 2013-05-11 15:50:35 testnode9 has quit (Ping timeout: 245 seconds)
2937 2013-05-11 15:50:35 askmike has quit (Ping timeout: 245 seconds)
2938 2013-05-11 15:50:35 idstam has quit (Ping timeout: 245 seconds)
2939 2013-05-11 15:50:35 k9quaint has quit (Ping timeout: 245 seconds)
2940 2013-05-11 15:50:35 lianj has quit (Ping timeout: 245 seconds)
2941 2013-05-11 15:50:35 kadoban_ has quit (Ping timeout: 245 seconds)
2942 2013-05-11 15:50:35 debiantoruser has quit (Ping timeout: 245 seconds)
2943 2013-05-11 15:50:35 FabianB_ has quit (Ping timeout: 245 seconds)
2944 2013-05-11 15:50:46 Luke-Jr has joined
2945 2013-05-11 15:50:49 forrestv has joined
2946 2013-05-11 15:50:51 BCBot` has joined
2947 2013-05-11 15:50:52 jaakkos has joined
2948 2013-05-11 15:50:52 testnode9_ has joined
2949 2013-05-11 15:51:08 k9quaint has joined
2950 2013-05-11 15:51:17 <BlueMatt> nanotube: thanks
2951 2013-05-11 15:51:27 ielo has joined
2952 2013-05-11 15:53:04 ltcbtc_ has joined
2953 2013-05-11 15:55:48 debiantoruser has joined
2954 2013-05-11 15:55:52 Sargun has joined
2955 2013-05-11 15:56:37 forrestv has quit (Ping timeout: 245 seconds)
2956 2013-05-11 15:56:37 jaakkos has quit (Ping timeout: 245 seconds)
2957 2013-05-11 15:56:37 Luke-Jr has quit (Ping timeout: 245 seconds)
2958 2013-05-11 15:57:03 loltu has joined
2959 2013-05-11 15:57:07 jaakkos has joined
2960 2013-05-11 15:57:55 Zx82 has left ("Saliendo")
2961 2013-05-11 15:58:33 Tykling has joined
2962 2013-05-11 15:59:08 topi` has joined
2963 2013-05-11 16:00:13 nomailing has quit (Ping timeout: 256 seconds)
2964 2013-05-11 16:01:36 cyphase has quit (Ping timeout: 255 seconds)
2965 2013-05-11 16:01:48 nomailing has joined
2966 2013-05-11 16:03:43 macboz has quit (Quit: This computer has gone to sleep)
2967 2013-05-11 16:04:52 ltcbtc_ has quit (Quit: latez)
2968 2013-05-11 16:05:18 forrestv has joined
2969 2013-05-11 16:06:17 viagradie has joined
2970 2013-05-11 16:08:39 sytse has joined
2971 2013-05-11 16:09:19 <HaltingState> gmaxwell, weex ; is there anyway to order N transactions been a set of nodes?  Like if I have transactions coming in continuously what is algo for coming to a consensus about what transactions are included and their order
2972 2013-05-11 16:09:44 <HaltingState> ripple has to do this somehow but i dont know if its possible
2973 2013-05-11 16:11:06 viagradie has quit ()
2974 2013-05-11 16:11:51 nomailing1 has joined
2975 2013-05-11 16:12:52 flyingkiwiguy has joined
2976 2013-05-11 16:12:56 saulimus has quit (Quit: saulimus)
2977 2013-05-11 16:13:20 Plarkplark_ has joined
2978 2013-05-11 16:15:09 <nsh> HaltingState, short answer no, with a but; long answer yes, with an if
2979 2013-05-11 16:15:24 <HaltingState> what is algorithm
2980 2013-05-11 16:15:42 nomailing has quit (Ping timeout: 256 seconds)
2981 2013-05-11 16:15:48 <HaltingState> what is it called
2982 2013-05-11 16:15:52 <nsh> a proof-of-work system leading to consensus solution of the byzantine general problem
2983 2013-05-11 16:15:57 <Belxjander> HaltingState: just take them as they come
2984 2013-05-11 16:16:04 <nsh> but there has to be some degree of concurrency
2985 2013-05-11 16:16:14 <nsh> because as far as we know there is not a proper time for the entire universe
2986 2013-05-11 16:16:18 <HaltingState> but they will come on different orders on different clients
2987 2013-05-11 16:16:19 <nsh> and anyway we have network latencies
2988 2013-05-11 16:16:49 <HaltingState> so you have to reorder and come to a consensus between n nodes; assume the nodes are honest; how do you order the transactions and agree on ordering and then assume some nodes try to cheat
2989 2013-05-11 16:16:59 <Belxjander> HaltingState: treat each client and its incoming as the whole problem... and then repeat for all the clients
2990 2013-05-11 16:17:14 cyphase has joined
2991 2013-05-11 16:17:24 <HaltingState> brb
2992 2013-05-11 16:17:29 HaltingState has quit (Remote host closed the connection)
2993 2013-05-11 16:18:08 CaptainBlaze has joined
2994 2013-05-11 16:18:08 EvanR has joined
2995 2013-05-11 16:18:23 <EvanR> any idea why a bitcoind would periodically crash on a ramnode with 512M ram
2996 2013-05-11 16:18:30 Diapolis has joined
2997 2013-05-11 16:18:32 <EvanR> memory leak? memory requirements?
2998 2013-05-11 16:18:47 <EvanR> note that this is after the block chain is finished
2999 2013-05-11 16:18:54 <EvanR> .8 series
3000 2013-05-11 16:19:43 HaltingState has joined
3001 2013-05-11 16:20:58 forrestv has quit (Ping timeout: 245 seconds)
3002 2013-05-11 16:21:16 <nsh> ramnode == vps ?
3003 2013-05-11 16:21:42 <nsh> (yes)
3004 2013-05-11 16:22:08 <nsh> EvanR, anything interesting in debug.log?
3005 2013-05-11 16:22:36 <EvanR> i dont know, im asking on behalf of another man
3006 2013-05-11 16:22:51 <EvanR> i just figured id check before he gets around to concentrating on it himself
3007 2013-05-11 16:23:09 sytse has quit (Ping timeout: 245 seconds)
3008 2013-05-11 16:23:32 <nsh> right, i would have little idea if there are any outstanding lowmem issues or anything else that would be a start here, one of the devs might
3009 2013-05-11 16:26:19 forrestv has joined
3010 2013-05-11 16:26:24 qbasicer has quit (Remote host closed the connection)
3011 2013-05-11 16:26:53 ielo has quit (Ping timeout: 268 seconds)
3012 2013-05-11 16:28:40 sytse has joined
3013 2013-05-11 16:28:46 qbasicer has joined
3014 2013-05-11 16:29:20 <Cusipzzz> EvanR: what does the log dsay ?
3015 2013-05-11 16:30:06 ThomasV has quit (Read error: Operation timed out)
3016 2013-05-11 16:30:18 <EvanR> dunno
3017 2013-05-11 16:30:30 <EvanR> that guy is probably recovering this morning from last nights bitcoin bender
3018 2013-05-11 16:30:55 <EvanR> the weekend drop in price is the destruction of bitcoiners braincells by alcohol and cocaine
3019 2013-05-11 16:31:53 sacarlson has quit (Read error: Connection reset by peer)
3020 2013-05-11 16:32:57 nouitfvf has quit (Ping timeout: 260 seconds)
3021 2013-05-11 16:33:50 countbot has joined
3022 2013-05-11 16:35:01 Diapolis has quit (Remote host closed the connection)
3023 2013-05-11 16:37:08 Jasmin68k has quit (Quit: Leaving.)
3024 2013-05-11 16:37:12 eklass2 has joined
3025 2013-05-11 16:37:19 eklass has quit (Ping timeout: 245 seconds)
3026 2013-05-11 16:38:00 forrestv has quit (Ping timeout: 245 seconds)
3027 2013-05-11 16:38:00 sytse has quit (Ping timeout: 245 seconds)
3028 2013-05-11 16:38:00 forrestv has joined
3029 2013-05-11 16:38:28 nomailing1 has quit (Ping timeout: 245 seconds)
3030 2013-05-11 16:38:31 Belxjander has quit (Max SendQ exceeded)
3031 2013-05-11 16:39:08 Belxjander has joined
3032 2013-05-11 16:39:13 o3u has joined
3033 2013-05-11 16:39:37 MoALTz_ has joined
3034 2013-05-11 16:39:52 Diapolis has joined
3035 2013-05-11 16:40:08 akl has quit (Ping timeout: 245 seconds)
3036 2013-05-11 16:40:33 SirDefaced has quit (Ping timeout: 245 seconds)
3037 2013-05-11 16:40:33 agath_pd has quit (Ping timeout: 245 seconds)
3038 2013-05-11 16:40:33 caput has quit (Ping timeout: 245 seconds)
3039 2013-05-11 16:41:00 Arbition_ has quit (Ping timeout: 245 seconds)
3040 2013-05-11 16:41:00 concurx has quit (Ping timeout: 245 seconds)
3041 2013-05-11 16:41:00 SirDefaced has joined
3042 2013-05-11 16:41:15 BCBot` has quit (Ping timeout: 248 seconds)
3043 2013-05-11 16:41:16 MoALTz is now known as Guest6702
3044 2013-05-11 16:41:25 RazielZ has quit (Ping timeout: 245 seconds)
3045 2013-05-11 16:41:25 elgrecoFL has quit (Ping timeout: 245 seconds)
3046 2013-05-11 16:41:48 jchp_ has quit (Ping timeout: 245 seconds)
3047 2013-05-11 16:41:48 Guest14712 has quit (Ping timeout: 245 seconds)
3048 2013-05-11 16:41:48 zylche_ has quit (Ping timeout: 245 seconds)
3049 2013-05-11 16:41:48 d34th has quit (Ping timeout: 245 seconds)
3050 2013-05-11 16:41:48 Guest6702 has quit (Ping timeout: 245 seconds)
3051 2013-05-11 16:41:52 concurx has joined
3052 2013-05-11 16:41:58 MoALTz__ has joined
3053 2013-05-11 16:41:58 MoALTz__ is now known as MoALTz
3054 2013-05-11 16:42:07 kadoban__ has quit (Read error: Connection reset by peer)
3055 2013-05-11 16:42:20 zylche_ has joined
3056 2013-05-11 16:42:20 agath_pd has joined
3057 2013-05-11 16:42:26 kadoban__ has joined
3058 2013-05-11 16:42:27 d34th has joined
3059 2013-05-11 16:42:27 d34th has quit (Changing host)
3060 2013-05-11 16:42:27 d34th has joined
3061 2013-05-11 16:42:38 upb has quit (Ping timeout: 245 seconds)
3062 2013-05-11 16:42:38 RazielZ has joined
3063 2013-05-11 16:42:46 FabianB_ has joined
3064 2013-05-11 16:42:46 FabianB_ has quit (Changing host)
3065 2013-05-11 16:42:46 FabianB_ has joined
3066 2013-05-11 16:42:47 Arbition has joined
3067 2013-05-11 16:42:49 upb has joined
3068 2013-05-11 16:43:03 testnode9_ has quit (Ping timeout: 245 seconds)
3069 2013-05-11 16:43:03 [\\\] has quit (Ping timeout: 245 seconds)
3070 2013-05-11 16:43:03 jn has quit (Ping timeout: 245 seconds)
3071 2013-05-11 16:43:35 jchp has joined
3072 2013-05-11 16:44:18 akl has joined
3073 2013-05-11 16:44:18 akl has quit (Changing host)
3074 2013-05-11 16:44:18 akl has joined
3075 2013-05-11 16:44:58 MoALTz_ has quit (Read error: Connection reset by peer)
3076 2013-05-11 16:45:22 <BlueMatt> EvanR: upgrade to 0.8.2
3077 2013-05-11 16:45:31 grazs_ has joined
3078 2013-05-11 16:45:59 [\\\] has joined
3079 2013-05-11 16:46:25 RazielXYZ has joined
3080 2013-05-11 16:46:53 kadoban has joined
3081 2013-05-11 16:47:10 agath has joined
3082 2013-05-11 16:47:33 xorgate has joined
3083 2013-05-11 16:48:34 sacarlson has joined
3084 2013-05-11 16:48:38 grazs has quit (Ping timeout: 245 seconds)
3085 2013-05-11 16:48:38 matjeh_ has quit (Ping timeout: 245 seconds)
3086 2013-05-11 16:48:38 FabianB has quit (Ping timeout: 245 seconds)
3087 2013-05-11 16:48:39 kadoban__ has quit (Remote host closed the connection)
3088 2013-05-11 16:48:57 upb has quit (Ping timeout: 245 seconds)
3089 2013-05-11 16:48:57 RazielZ has quit (Ping timeout: 245 seconds)
3090 2013-05-11 16:48:57 agath_pd has quit (Ping timeout: 245 seconds)
3091 2013-05-11 16:48:57 Magma_ has quit (Ping timeout: 245 seconds)
3092 2013-05-11 16:48:57 Jezzz has quit (Ping timeout: 245 seconds)
3093 2013-05-11 16:48:58 brwyatt_ has quit (Away!~brwyatt@brwyatt.net|Ping timeout: 245 seconds)
3094 2013-05-11 16:49:38 brwyatt_ has joined
3095 2013-05-11 16:49:43 laundry has quit (Ping timeout: 245 seconds)
3096 2013-05-11 16:49:43 ovidiusoft has quit (Ping timeout: 245 seconds)
3097 2013-05-11 16:49:53 jn has joined
3098 2013-05-11 16:50:09 ovidiusoft has joined
3099 2013-05-11 16:50:30 testnode9_ has joined
3100 2013-05-11 16:50:35 elgrecoFL has joined
3101 2013-05-11 16:51:23 matjeh has joined
3102 2013-05-11 16:52:12 Line_ has joined
3103 2013-05-11 16:52:18 caput has joined
3104 2013-05-11 16:52:35 Guest4827 has joined
3105 2013-05-11 16:53:07 Magma_ has joined
3106 2013-05-11 16:53:49 Hunner has quit (Remote host closed the connection)
3107 2013-05-11 16:53:49 _flow__ has quit (Ping timeout: 264 seconds)
3108 2013-05-11 16:53:58 Hunner has joined
3109 2013-05-11 16:53:58 Hunner has quit (Changing host)
3110 2013-05-11 16:53:58 Hunner has joined
3111 2013-05-11 16:54:23 upb has joined
3112 2013-05-11 16:55:05 _flow__ has joined
3113 2013-05-11 16:55:11 sytse has joined
3114 2013-05-11 16:59:07 XRPTrader2 has joined
3115 2013-05-11 16:59:15 nidefawl_ has joined
3116 2013-05-11 16:59:57 dikidera has joined
3117 2013-05-11 17:00:17 diki has quit (Disconnected by services)
3118 2013-05-11 17:00:27 dikidera is now known as diki
3119 2013-05-11 17:01:32 BCBot` has joined
3120 2013-05-11 17:02:06 qwertyoruiop_ has joined
3121 2013-05-11 17:03:23 qwertyoruiop has quit (Ping timeout: 256 seconds)
3122 2013-05-11 17:03:23 qwertyoruiop_ is now known as qwertyoruiop
3123 2013-05-11 17:03:23 andrew12 has quit (Ping timeout: 256 seconds)
3124 2013-05-11 17:03:24 RaymanJr_ has quit (Ping timeout: 256 seconds)
3125 2013-05-11 17:03:24 nidefawl has quit (Ping timeout: 256 seconds)
3126 2013-05-11 17:03:24 zeiris has quit (Ping timeout: 256 seconds)
3127 2013-05-11 17:03:24 weex has quit (Ping timeout: 256 seconds)
3128 2013-05-11 17:03:24 nidefawl_ is now known as nidefawl
3129 2013-05-11 17:03:28 Keefe has quit (Ping timeout: 256 seconds)
3130 2013-05-11 17:03:28 new299_ has quit (Ping timeout: 256 seconds)
3131 2013-05-11 17:03:28 kicek has quit (Ping timeout: 256 seconds)
3132 2013-05-11 17:03:28 panzerfaust has quit (Ping timeout: 256 seconds)
3133 2013-05-11 17:03:38 new299_ has joined
3134 2013-05-11 17:03:47 BlackPrapor has joined
3135 2013-05-11 17:03:58 thelamest has quit (Ping timeout: 256 seconds)
3136 2013-05-11 17:03:58 skinnkavaj has quit (Ping timeout: 256 seconds)
3137 2013-05-11 17:04:00 andrew_scorpil1 has quit (Ping timeout: 256 seconds)
3138 2013-05-11 17:04:00 erska has quit (Ping timeout: 256 seconds)
3139 2013-05-11 17:04:06 RaymanJr has joined
3140 2013-05-11 17:04:21 skinnkavaj has joined
3141 2013-05-11 17:04:21 skinnkavaj has quit (Changing host)
3142 2013-05-11 17:04:21 skinnkavaj has joined
3143 2013-05-11 17:04:31 weex has joined
3144 2013-05-11 17:04:31 weex has quit (Changing host)
3145 2013-05-11 17:04:31 weex has joined
3146 2013-05-11 17:04:40 zeiris has joined
3147 2013-05-11 17:04:57 andrew12 has joined
3148 2013-05-11 17:04:58 Keefe has joined
3149 2013-05-11 17:05:08 andyh2 has joined
3150 2013-05-11 17:05:08 jurov_ has joined
3151 2013-05-11 17:05:15 draradec1 has joined
3152 2013-05-11 17:05:27 erska has joined
3153 2013-05-11 17:05:29 RBecker has quit (Ping timeout: 256 seconds)
3154 2013-05-11 17:05:29 draradech has quit (Ping timeout: 256 seconds)
3155 2013-05-11 17:05:29 talengix has quit (Quit: Leaving)
3156 2013-05-11 17:05:29 MobPhone has quit (Ping timeout: 256 seconds)
3157 2013-05-11 17:05:29 djoot has quit (Ping timeout: 256 seconds)
3158 2013-05-11 17:05:29 sebicas has quit (Ping timeout: 256 seconds)
3159 2013-05-11 17:05:39 andrew_scorpil has joined
3160 2013-05-11 17:05:42 thelamest has joined
3161 2013-05-11 17:05:43 djoot has joined
3162 2013-05-11 17:05:43 djoot has quit (Changing host)
3163 2013-05-11 17:05:43 djoot has joined
3164 2013-05-11 17:05:50 kicek has joined
3165 2013-05-11 17:05:52 MobiusL has quit (Quit: Ex-Chat)
3166 2013-05-11 17:05:52 sebicas has joined
3167 2013-05-11 17:06:23 panzer has joined
3168 2013-05-11 17:06:40 jurov_ is now known as jurov
3169 2013-05-11 17:06:44 RBecker has joined
3170 2013-05-11 17:06:48 ielo has joined
3171 2013-05-11 17:08:39 MobiusL has joined
3172 2013-05-11 17:11:16 Clown has joined
3173 2013-05-11 17:11:40 Clown is now known as Guest64850
3174 2013-05-11 17:12:04 MobPhone has joined
3175 2013-05-11 17:13:03 vigilyn3 has joined
3176 2013-05-11 17:13:17 vigilyn2 has quit (Read error: Connection reset by peer)
3177 2013-05-11 17:13:53 Diapolis has quit (Remote host closed the connection)
3178 2013-05-11 17:13:55 porquilho has joined
3179 2013-05-11 17:16:53  has quit (Clown|!Clown@unaffiliated/clown/x-0272709|Ping timeout: 256 seconds)
3180 2013-05-11 17:16:53 EmLeX has quit (Ping timeout: 256 seconds)
3181 2013-05-11 17:16:53 cheebydi has quit (Ping timeout: 256 seconds)
3182 2013-05-11 17:16:53 Someguy123 has quit (Ping timeout: 256 seconds)
3183 2013-05-11 17:17:19 Plarkplark_ has quit (Ping timeout: 276 seconds)
3184 2013-05-11 17:17:21 wallet43 has joined
3185 2013-05-11 17:17:33 Plarkplark_ has joined
3186 2013-05-11 17:18:18 devrandom has joined
3187 2013-05-11 17:18:21 <Plarkplark_> Hi all
3188 2013-05-11 17:18:21 Someguy123 has joined
3189 2013-05-11 17:18:35 phma has quit (Ping timeout: 252 seconds)
3190 2013-05-11 17:18:36 EmLeX has joined
3191 2013-05-11 17:18:45 phma has joined
3192 2013-05-11 17:18:54 <Plarkplark_> You guys where right. Moving coin from an offline wallet creates change. Dangerous when thinking you are safe with a paper wallet. This should be documented/warned about in the client more.
3193 2013-05-11 17:19:27 zoinky has joined
3194 2013-05-11 17:19:31 warren has joined
3195 2013-05-11 17:21:01 Ferroh__ has joined
3196 2013-05-11 17:21:14 tonikt2 has joined
3197 2013-05-11 17:21:36 marchon has joined
3198 2013-05-11 17:21:43 CAP9318 has joined
3199 2013-05-11 17:21:56 johnsoft1 has joined
3200 2013-05-11 17:22:07 graingert has joined
3201 2013-05-11 17:22:07 graingert has quit (Changing host)
3202 2013-05-11 17:22:07 graingert has joined
3203 2013-05-11 17:22:21 johnsoft1 has quit (Client Quit)
3204 2013-05-11 17:22:41 catcow has joined
3205 2013-05-11 17:23:49 BTCOxygen has joined
3206 2013-05-11 17:24:00 gribble has quit (Disconnected by services)
3207 2013-05-11 17:24:37 redeeman` has joined
3208 2013-05-11 17:25:41 xnyhps_ has joined
3209 2013-05-11 17:25:54 BTCOxygen has quit (1!~BTCOxygen@unaffiliated/btcoxygen|Client Quit)
3210 2013-05-11 17:26:11 BTCOxygen has joined
3211 2013-05-11 17:26:19 saracen_ has joined
3212 2013-05-11 17:26:19 shawn_fessenden has joined
3213 2013-05-11 17:26:25 marcop has joined
3214 2013-05-11 17:26:33 tkolsto has joined
3215 2013-05-11 17:27:27 Eiii has joined
3216 2013-05-11 17:27:27 Eiii has quit (!~NA@c-24-21-18-118.hsd1.or.comcast.net|Changing host)
3217 2013-05-11 17:27:27 Eiii has joined
3218 2013-05-11 17:27:36 rdponticelli_ has joined
3219 2013-05-11 17:27:54 andyh2 has quit (Quit: Leaving...)
3220 2013-05-11 17:28:00 BTCOxygen has quit (Disconnected by services)
3221 2013-05-11 17:28:09 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/btcoxygen|btcoxygen
3222 2013-05-11 17:28:31 btcoxygen is now known as BTCOxygen
3223 2013-05-11 17:28:51 aXs___ has joined
3224 2013-05-11 17:29:48 he1kki_ has joined
3225 2013-05-11 17:32:06 dlb76 has joined
3226 2013-05-11 17:32:13 rdponticelli_ has quit (Ping timeout: 264 seconds)
3227 2013-05-11 17:32:55 stochasm has joined
3228 2013-05-11 17:33:36 tonikt3 has joined
3229 2013-05-11 17:33:37 k9quaint has quit (Read error: Connection reset by peer)
3230 2013-05-11 17:33:54 starsoccer has joined
3231 2013-05-11 17:34:18 _nomazda has quit (Ping timeout: 276 seconds)
3232 2013-05-11 17:34:19 vigilyn3 has quit (Read error: Connection reset by peer)
3233 2013-05-11 17:34:22 Neozonz has joined
3234 2013-05-11 17:34:23 Neozonz has quit (Disc!~Neozonz@198-84-191-143.cpe.teksavvy.com|Changing host)
3235 2013-05-11 17:34:23 Neozonz has joined
3236 2013-05-11 17:34:29 jevin has quit (Ping timeout: 276 seconds)
3237 2013-05-11 17:34:42 vigilyn3 has joined
3238 2013-05-11 17:35:09 tsche has quit (Ping timeout: 276 seconds)
3239 2013-05-11 17:35:10 da2ce7_d has joined
3240 2013-05-11 17:35:19 BurtyBB has quit (Write error: Connection reset by peer)
3241 2013-05-11 17:35:31 JyZyXEL has quit (Read error: Connection reset by peer)
3242 2013-05-11 17:35:43 BurtyBB has joined
3243 2013-05-11 17:35:46 muhoo has quit (Remote host closed the connection)
3244 2013-05-11 17:36:03 muhoo has joined
3245 2013-05-11 17:36:18 jevin has joined
3246 2013-05-11 17:36:20 grau_ has quit (Remote host closed the connection)
3247 2013-05-11 17:36:26 Keefe has quit (Ping timeout: 276 seconds)
3248 2013-05-11 17:36:27 validity has joined
3249 2013-05-11 17:36:31 JyZyXEL has joined
3250 2013-05-11 17:36:43 Keefe has joined
3251 2013-05-11 17:36:43 Keefe has quit (Changing host)
3252 2013-05-11 17:36:43 Keefe has joined
3253 2013-05-11 17:36:43 elgrecoFL has quit (Changing host)
3254 2013-05-11 17:36:43 elgrecoFL has joined
3255 2013-05-11 17:36:57 shawn_fessenden has quit (Read error: Connection reset by peer)
3256 2013-05-11 17:36:58 marchon has quit (Quit: Leaving.)
3257 2013-05-11 17:36:59 Guest64850 is now known as |Clown|
3258 2013-05-11 17:36:59  has quit (Clown|!Clown@static-87-79-93-140.netcologne.de|Changing host)
3259 2013-05-11 17:36:59  has joined
3260 2013-05-11 17:37:05 tonikt2 has quit (Ping timeout: 276 seconds)
3261 2013-05-11 17:37:36 da2ce7 has quit (Ping timeout: 256 seconds)
3262 2013-05-11 17:37:37 ThomasV has joined
3263 2013-05-11 17:37:49 viperhr1 has quit (Ping timeout: 268 seconds)
3264 2013-05-11 17:38:23 Neozonz has quit (Ping timeout: 276 seconds)
3265 2013-05-11 17:39:56 rdponticelli has joined
3266 2013-05-11 17:39:56 john_z has joined
3267 2013-05-11 17:39:56 nanotube has joined
3268 2013-05-11 17:39:56 shawn_fessenden1 has joined
3269 2013-05-11 17:39:56 SebX has joined
3270 2013-05-11 17:39:56 shesek has joined
3271 2013-05-11 17:39:56 eipeace_ has joined
3272 2013-05-11 17:40:45 tsche has joined
3273 2013-05-11 17:42:01 sagax__ has joined
3274 2013-05-11 17:42:08 sagax_ has quit (Ping timeout: 264 seconds)
3275 2013-05-11 17:42:15 catcow has quit (Changing host)
3276 2013-05-11 17:42:15 catcow has joined
3277 2013-05-11 17:42:31 Keefe has quit (Read error: Connection reset by peer)
3278 2013-05-11 17:42:43 Keefe has joined
3279 2013-05-11 17:42:43 Keefe has quit (Changing host)
3280 2013-05-11 17:42:43 Keefe has joined
3281 2013-05-11 17:42:45 wallet43 has quit (Ping timeout: 268 seconds)
3282 2013-05-11 17:44:25 Muis has joined
3283 2013-05-11 17:44:25 gribble has joined
3284 2013-05-11 17:44:49 CAP9318 has quit (Quit: • IRcap • 8.71 •)
3285 2013-05-11 17:47:07 ielo has quit (Ping timeout: 264 seconds)
3286 2013-05-11 17:48:13 JDuke128 has joined
3287 2013-05-11 17:49:11 datagutt has joined
3288 2013-05-11 17:51:04 denisx has joined
3289 2013-05-11 17:51:11 freefox has joined
3290 2013-05-11 17:51:58 btcls has joined
3291 2013-05-11 17:52:24 <btcls> hello developers ...how are you today
3292 2013-05-11 17:53:12 <btcls> ?
3293 2013-05-11 17:53:58 redeeman` is now known as redeeman
3294 2013-05-11 17:55:18 <btcls> was just wonder who in this chat room contributes the most ?
3295 2013-05-11 17:55:40 Diapolis has joined
3296 2013-05-11 17:55:41 <btcls> as in volunteering for irc chat mod or helping the system ??
3297 2013-05-11 17:56:09 <btcls> any suggestions ?
3298 2013-05-11 17:57:19 saracen_ has quit (Ping timeout: 264 seconds)
3299 2013-05-11 17:57:20 <btcls> okay cya
3300 2013-05-11 17:57:26 btcls has left ()
3301 2013-05-11 17:57:29 Diapolis has quit (Remote host closed the connection)
3302 2013-05-11 17:57:40 daybyter has joined
3303 2013-05-11 17:59:52 BTCOxygen has joined
3304 2013-05-11 17:59:52 BTCOxygen is now known as Guest55211
3305 2013-05-11 17:59:54 stretchw_ has joined
3306 2013-05-11 18:00:31 Guest55211 has quit (Ping timeout: 256 seconds)
3307 2013-05-11 18:01:22 jarpiain has joined
3308 2013-05-11 18:01:46 jarpiain is now known as Guest38340
3309 2013-05-11 18:01:52 saracen has joined
3310 2013-05-11 18:02:15 Belkaar_ has joined
3311 2013-05-11 18:02:39 Pertito has joined
3312 2013-05-11 18:02:51 porquilho_ has joined
3313 2013-05-11 18:03:12 jeremias_ has joined
3314 2013-05-11 18:03:38 AtashiCon has quit (Disconnected by services)
3315 2013-05-11 18:03:44 Arnavion3 has joined
3316 2013-05-11 18:03:49 BCBot_ has joined
3317 2013-05-11 18:03:50 Arnavion3 is now known as AtashiCon
3318 2013-05-11 18:03:55 alexwaters has joined
3319 2013-05-11 18:04:05 zoinky has quit (Quit: Leaving.)
3320 2013-05-11 18:04:18 franl has joined
3321 2013-05-11 18:04:42 qwertyoruiop_ has joined
3322 2013-05-11 18:04:47 _sgstair has joined
3323 2013-05-11 18:04:48 sgstair has quit (Disconnected by services)
3324 2013-05-11 18:04:48 _sgstair is now known as sgstair
3325 2013-05-11 18:04:51 stretchwarren has quit (Read error: Connection reset by peer)
3326 2013-05-11 18:04:52 Belkaar has quit (Ping timeout: 268 seconds)
3327 2013-05-11 18:04:52 jarpiain_ has quit (Ping timeout: 268 seconds)
3328 2013-05-11 18:04:52 qwertyoruiop has quit (Ping timeout: 268 seconds)
3329 2013-05-11 18:04:52 countbot has quit (Ping timeout: 268 seconds)
3330 2013-05-11 18:04:52 Belkaar_ is now known as Belkaar
3331 2013-05-11 18:04:52 porquilho has quit (Read error: Connection reset by peer)
3332 2013-05-11 18:04:52 denisx has quit (Ping timeout: 268 seconds)
3333 2013-05-11 18:04:52 jeremias has quit (Ping timeout: 268 seconds)
3334 2013-05-11 18:04:52 Irencus has quit (Read error: Connection reset by peer)
3335 2013-05-11 18:04:52 BCBot` has quit (Remote host closed the connection)
3336 2013-05-11 18:04:53 qwertyoruiop_ is now known as qwertyoruiop
3337 2013-05-11 18:04:57 catcow has quit (Ping timeout: 268 seconds)
3338 2013-05-11 18:04:57 bedouin has quit (Ping timeout: 268 seconds)
3339 2013-05-11 18:05:19 bedouin has joined
3340 2013-05-11 18:05:50 catcow has joined
3341 2013-05-11 18:07:14 idstam has joined
3342 2013-05-11 18:07:39 denisx has joined
3343 2013-05-11 18:09:24 JunK-Y_ has joined
3344 2013-05-11 18:09:32 hnz_ has joined
3345 2013-05-11 18:09:53 idstam-se has quit (Read error: Connection reset by peer)
3346 2013-05-11 18:10:27 johnsoft has joined
3347 2013-05-11 18:10:47 jaakkos_ has joined
3348 2013-05-11 18:11:25 RaymanJr_ has joined
3349 2013-05-11 18:12:11 grau has joined
3350 2013-05-11 18:12:20 catcow has quit (Changing host)
3351 2013-05-11 18:12:20 catcow has joined
3352 2013-05-11 18:13:17 dooglus_ has joined
3353 2013-05-11 18:13:18 dooglus_ has quit (Changing host)
3354 2013-05-11 18:13:18 dooglus_ has joined
3355 2013-05-11 18:14:03 Ferroh_ has joined
3356 2013-05-11 18:14:05 o3u_ has joined
3357 2013-05-11 18:16:36 resinate has quit (Quit: resinate)
3358 2013-05-11 18:17:03 TheSeven has joined
3359 2013-05-11 18:17:39 Julius129 has joined
3360 2013-05-11 18:20:28 bVector has joined
3361 2013-05-11 18:20:28 HaltingState has joined
3362 2013-05-11 18:20:28 bedouin has joined
3363 2013-05-11 18:20:28 zebedee_ has joined
3364 2013-05-11 18:20:28 jspilman has joined
3365 2013-05-11 18:21:08 pizzacat has quit (Ping timeout: 264 seconds)
3366 2013-05-11 18:24:07 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/btcoxygen|BTCOxygen
3367 2013-05-11 18:24:46 <matjeh> if i list all the addresses in my wallet with "bitcoind getaddressesbyaccount" and then get the balance of each one from https://blockchain.info/q/addressbalance/$address , then the total is 10x less than what "bitcoind getbalance" outputs.  How exactly can I show how much is at each address?
3368 2013-05-11 18:26:40 <nsh> (incidentally, you should be aware that you are deanonymising yourself to (at least) blockchain.info (and whoever they share http log-derived information with) by doing this)
3369 2013-05-11 18:28:00 Garr2552 has joined
3370 2013-05-11 18:28:02 Liquid_ has joined
3371 2013-05-11 18:28:32 Breign has joined
3372 2013-05-11 18:28:47 neonman has joined
3373 2013-05-11 18:28:54 enikanorov_ has joined
3374 2013-05-11 18:29:02 ry4nn has joined
3375 2013-05-11 18:29:20 MC1984 has joined
3376 2013-05-11 18:29:36 edcba__ has joined
3377 2013-05-11 18:30:10 pierre`_ has joined
3378 2013-05-11 18:30:15 taha has joined
3379 2013-05-11 18:31:03 <matjeh> nsh: yeah i wish i didn't have to resort to using the website, but i can see no way of calculating it from the official client
3380 2013-05-11 18:31:18 <nsh> hopefully a dev will chip in with some genius
3381 2013-05-11 18:31:26 robbak_ has joined
3382 2013-05-11 18:31:30 bitnumus_ has joined
3383 2013-05-11 18:32:01 <matjeh> and even then, i cant see why the sum of the address balances doesn't equal the getbalance result.
3384 2013-05-11 18:32:23 <matjeh> unless blockchain.info is broken
3385 2013-05-11 18:32:29 pierce has joined
3386 2013-05-11 18:32:34 kinlo_ has joined
3387 2013-05-11 18:32:35 linagee_ has joined
3388 2013-05-11 18:32:35 t4ls0 has joined
3389 2013-05-11 18:32:39 jouke_ has joined
3390 2013-05-11 18:32:48 jandd_ has joined
3391 2013-05-11 18:32:49 DonnchaC_ has joined
3392 2013-05-11 18:32:51 vrs_ has joined
3393 2013-05-11 18:32:59 MCM-Mike_ has joined
3394 2013-05-11 18:33:00 sanders_ has joined
3395 2013-05-11 18:33:01 <Julius129> matjeh i have the same dillema/requirement
3396 2013-05-11 18:33:04 Bwild_ has joined
3397 2013-05-11 18:33:07 asoltys_ has joined
3398 2013-05-11 18:33:09 impulse- has joined
3399 2013-05-11 18:33:12 deltab_ has joined
3400 2013-05-11 18:33:18 jaromil_ has joined
3401 2013-05-11 18:33:39 feral_ has joined
3402 2013-05-11 18:34:32 Eliel has joined
3403 2013-05-11 18:35:51 <cjd> an offhand guess is that 'getaddressesbyaccount' skips over the secret change addresses which are only used to pay out
3404 2013-05-11 18:36:13 BCBot_ has quit (Ping timeout: 256 seconds)
3405 2013-05-11 18:36:26 <nsh> i don't think that'd be enough to account for 90% difference
3406 2013-05-11 18:36:33 <nsh> 10x even
3407 2013-05-11 18:37:29 neonman is now known as neon_
3408 2013-05-11 18:37:57 testnode9_ has quit (Quit: Ex-Chat)
3409 2013-05-11 18:38:03 fishfish_ has quit (Quit: Bye!)
3410 2013-05-11 18:38:16 <cjd> ouch @ freenode ddos
3411 2013-05-11 18:38:47 ThomasV_ has joined
3412 2013-05-11 18:39:00 kinlo_ is now known as kinlo
3413 2013-05-11 18:39:10 davout has quit (Remote host closed the connection)
3414 2013-05-11 18:40:05 ivan` has joined
3415 2013-05-11 18:40:05 blackoutx90 has joined
3416 2013-05-11 18:40:05 cuqa has joined
3417 2013-05-11 18:40:05 stavs has joined
3418 2013-05-11 18:40:05 tesserajk has joined
3419 2013-05-11 18:40:05 iddo has joined
3420 2013-05-11 18:40:47 ThomasV has quit (Read error: Operation timed out)
3421 2013-05-11 18:40:55 ThomasV_ has quit (Client Quit)
3422 2013-05-11 18:41:26 ThomasV has joined
3423 2013-05-11 18:41:35 Belxjander has joined
3424 2013-05-11 18:41:40 Guest14712 has joined
3425 2013-05-11 18:43:30 pizzacat has joined
3426 2013-05-11 18:44:21 hsmiths2 has quit (Read error: Connection reset by peer)
3427 2013-05-11 18:44:26 bitnumus_ is now known as bitnumus
3428 2013-05-11 18:46:02 jok has joined
3429 2013-05-11 18:46:02 jMyles has joined
3430 2013-05-11 18:46:02 gmaxwell has joined
3431 2013-05-11 18:46:32 hsmiths has joined
3432 2013-05-11 18:47:32 trang has joined
3433 2013-05-11 18:47:41 JDuke128 has quit (Quit: Computer has gone to sleep.)
3434 2013-05-11 18:48:24 gribble has quit (Remote host closed the connection)
3435 2013-05-11 18:49:11 optimator has joined
3436 2013-05-11 18:49:39 brocktice has quit (Ping timeout: 256 seconds)
3437 2013-05-11 18:49:43 <jgm> Most of the apps out there don't quite do it for me, so I ended up dumping the whole blockchain in to a database and can query from there.  I can now get pretty much whatever I need, although it is fundamentally separate from bitcoind and its wallets (batch update from bitcoind to database)
3438 2013-05-11 18:49:54 default_ has quit (Quit: Leaving)
3439 2013-05-11 18:50:30 brocktice has joined
3440 2013-05-11 18:51:19 mrkent has joined
3441 2013-05-11 18:51:34 <john_z> jgm, how did you do this dump?
3442 2013-05-11 18:53:08 Plarkplark_ has joined
3443 2013-05-11 18:53:09 <jgm> I tweaked znort's blockparser to dump to CSV, and then load it in to a database from there.  blockparser did have a dump for mysql but it was missing a lot of the fields which were useful so I rewrote it
3444 2013-05-11 18:53:13 iwilcox is now known as gribb|e
3445 2013-05-11 18:53:26 gribb is now known as e!~iwilcox@unaffiliated/iwilcox|iwilcox
3446 2013-05-11 18:53:32 BCBot` has joined
3447 2013-05-11 18:54:03 Darin has joined
3448 2013-05-11 18:54:03 CodesInChaos has joined
3449 2013-05-11 18:54:03 geb_ has joined
3450 2013-05-11 18:54:03 joeykrim__ has joined
3451 2013-05-11 18:54:03 kcud_dab has joined
3452 2013-05-11 18:54:03 Wasp27 has joined
3453 2013-05-11 18:54:36 ecoloco has joined
3454 2013-05-11 18:54:37 <ecoloco> "Verifying database integrity block" <- Is this done over the internet? Or is this done only over the computer?
3455 2013-05-11 18:54:59 <john_z> jgm, ah thanks.
3456 2013-05-11 18:55:09 donpdonp has joined
3457 2013-05-11 18:55:09 ahbritto_ has joined
3458 2013-05-11 18:55:09 rlifchitz has joined
3459 2013-05-11 18:55:09 Fnar has joined
3460 2013-05-11 18:55:09 da2ce7_d has joined
3461 2013-05-11 18:55:09 Arnavion has joined
3462 2013-05-11 18:55:09 tg has joined
3463 2013-05-11 18:55:09 Tril_ has joined
3464 2013-05-11 18:55:09 TheSeven has joined
3465 2013-05-11 18:55:09 jeremias_ has joined
3466 2013-05-11 18:55:09 sacarlson has joined
3467 2013-05-11 18:55:09 [\\\] has joined
3468 2013-05-11 18:55:09 SirDefaced has joined
3469 2013-05-11 18:55:09 EvanR has joined
3470 2013-05-11 18:55:09 phungus has joined
3471 2013-05-11 18:55:09 Sargun has joined
3472 2013-05-11 18:55:09 cyberdo has joined
3473 2013-05-11 18:55:09 ^A has joined
3474 2013-05-11 18:55:09 Plinker has joined
3475 2013-05-11 18:55:09 molecular has joined
3476 2013-05-11 18:55:09 Guest64249 has joined
3477 2013-05-11 18:55:09 doublec has joined
3478 2013-05-11 18:55:09 implr has joined
3479 2013-05-11 18:55:09 Squidicuz has joined
3480 2013-05-11 18:55:09 thecell has joined
3481 2013-05-11 18:55:09 oru_ has joined
3482 2013-05-11 18:55:09 clarkm_ has joined
3483 2013-05-11 18:55:09 dugo_ has joined
3484 2013-05-11 18:55:09 petertod1 has joined
3485 2013-05-11 18:55:09 quaz0r has joined
3486 2013-05-11 18:55:09 EasyAt_ has joined
3487 2013-05-11 18:55:09 mikola has joined
3488 2013-05-11 18:55:09 zeph97 has joined
3489 2013-05-11 18:55:09 a_meteorite has joined
3490 2013-05-11 18:55:19 edcba__ is now known as edcba
3491 2013-05-11 18:56:59 matt__ has joined
3492 2013-05-11 18:57:22 Diapolis has joined
3493 2013-05-11 18:58:18 vrs_ is now known as vrs
3494 2013-05-11 18:58:25 xexe_ has quit (Quit: Leaving)
3495 2013-05-11 18:59:01 oru has joined
3496 2013-05-11 18:59:20 franl has joined
3497 2013-05-11 18:59:20 mow has joined
3498 2013-05-11 18:59:20 DBordello has joined
3499 2013-05-11 18:59:20 BlueMatt has joined
3500 2013-05-11 18:59:20 EPiSKiNG- has joined
3501 2013-05-11 18:59:20 tcatm_ has joined
3502 2013-05-11 18:59:20 ahbritto__ has joined
3503 2013-05-11 18:59:20 Dagger2 has joined
3504 2013-05-11 18:59:20 bakingbread has joined
3505 2013-05-11 18:59:20 chorao has joined
3506 2013-05-11 18:59:20 BitCoroner has joined
3507 2013-05-11 18:59:20 Ry4an has joined
3508 2013-05-11 18:59:20 filleokus_ has joined
3509 2013-05-11 18:59:20 sl1982 has joined
3510 2013-05-11 18:59:20 capuchin has joined
3511 2013-05-11 18:59:20 [Author] has joined
3512 2013-05-11 18:59:20 rler has joined
3513 2013-05-11 18:59:20 jordandotdev has joined
3514 2013-05-11 18:59:20 DaQatz has joined
3515 2013-05-11 18:59:20 flound1129 has joined
3516 2013-05-11 18:59:20 copumpkin has joined
3517 2013-05-11 18:59:20 kuzetsa has joined
3518 2013-05-11 18:59:20 Benjojo has joined
3519 2013-05-11 18:59:20 felixhandte has joined
3520 2013-05-11 18:59:20 pecket has joined
3521 2013-05-11 18:59:20 Beef has joined
3522 2013-05-11 18:59:20 sneak has joined
3523 2013-05-11 18:59:20 Uisgdlyast has joined
3524 2013-05-11 18:59:20 mologie has joined
3525 2013-05-11 18:59:20 ntu has joined
3526 2013-05-11 18:59:20 zerogravity has joined
3527 2013-05-11 18:59:23 RedEmerald has joined
3528 2013-05-11 18:59:23 bVector has joined
3529 2013-05-11 18:59:23 HaltingState has joined
3530 2013-05-11 18:59:23 bedouin has joined
3531 2013-05-11 18:59:23 zebedee_ has joined
3532 2013-05-11 18:59:23 jspilman has joined
3533 2013-05-11 18:59:29 pizzacat has quit (Read error: Operation timed out)
3534 2013-05-11 18:59:36 john_z has quit (Quit: Bye..)
3535 2013-05-11 18:59:59 Breign is now known as Blackreign
3536 2013-05-11 19:00:29 zoinky has joined
3537 2013-05-11 19:00:41 BTCOxygen has quit ()
3538 2013-05-11 19:00:53 zoinky1 has joined
3539 2013-05-11 19:00:57 MobiusL has quit (Quit: Ex-Chat)
3540 2013-05-11 19:01:23 <matjeh> i was missing the hidden addresses
3541 2013-05-11 19:01:35 <matjeh> i should have been using listaddressgroupings
3542 2013-05-11 19:01:58 <matjeh> this outputs the correct balance: tb=0;while read line;do if echo $line|grep -q '"1';then echo $line;read b;tb=$(echo "$tb+$b"|bc);echo $b;fi ; done < <(bitcoind listaddressgroupings); echo $tb
3543 2013-05-11 19:02:48 concurx has left ()
3544 2013-05-11 19:03:33 OneFixt has joined
3545 2013-05-11 19:03:43 mrkent has quit (Quit: Leaving)
3546 2013-05-11 19:03:50 Diapolis has quit (Remote host closed the connection)
3547 2013-05-11 19:04:00 mrkent has joined
3548 2013-05-11 19:04:14 Diapolis has joined
3549 2013-05-11 19:04:15 Uisgdlyast has quit (Read error: Operation timed out)
3550 2013-05-11 19:04:15 sneak has quit (Read error: Operation timed out)
3551 2013-05-11 19:04:15 BlueMatt has quit (Read error: Operation timed out)
3552 2013-05-11 19:04:17 bakingbread has quit (Read error: Operation timed out)
3553 2013-05-11 19:04:44 Uisgdlyast has joined
3554 2013-05-11 19:05:08 zoinky has quit (Ping timeout: 256 seconds)
3555 2013-05-11 19:05:08 <nsh> matjeh, what address can i use to send you some chr(32) via asciicoin?
3556 2013-05-11 19:05:23 john_z has joined
3557 2013-05-11 19:05:44 sneak has joined
3558 2013-05-11 19:07:52 BlueMatt has joined
3559 2013-05-11 19:08:05 cypher__ has joined
3560 2013-05-11 19:08:22 CaptainBlaze has quit (Ping timeout: 240 seconds)
3561 2013-05-11 19:08:49 * iwilcox smilesatnshsconstantpunctuationpedantry
3562 2013-05-11 19:09:00 bakingbread has joined
3563 2013-05-11 19:09:39 <matjeh> nsh: ;)
3564 2013-05-11 19:09:43 CaptainBlaze has joined
3565 2013-05-11 19:10:18 <nsh> I'VE GOT MY GOD DAMN FINGER IN THE DIJKSTRA HERE
3566 2013-05-11 19:10:21 <nsh> ;)
3567 2013-05-11 19:10:52 CaptainBlaze has quit (Client Quit)
3568 2013-05-11 19:11:14 <nsh> (it was funnier in my head where dvorak and dijkstra momentarily occupied the same sector)
3569 2013-05-11 19:11:15 Diapolis has quit (Remote host closed the connection)
3570 2013-05-11 19:11:47 <iwilcox> Your head has sectors?
3571 2013-05-11 19:12:03 <nsh> yeah, i've been sectioned multiple time
3572 2013-05-11 19:12:06 <nsh> hehehe
3573 2013-05-11 19:12:31 <nsh> (not really, they only tried once and i laughed the guy out of home because he had an NVQ)
3574 2013-05-11 19:12:59 Lolcust- has joined
3575 2013-05-11 19:13:01 Lolcust has joined
3576 2013-05-11 19:13:01 GNULinuxGuy has joined
3577 2013-05-11 19:13:01 Zoop_ has joined
3578 2013-05-11 19:13:01 Lolcust- has quit (Remote host closed the connection)
3579 2013-05-11 19:13:03 Lolcust has quit (Client Quit)
3580 2013-05-11 19:13:15 franl has quit (Quit: O Elbereth!  Gilthoniel!  We still remember ...)
3581 2013-05-11 19:13:27 Lolcust has joined
3582 2013-05-11 19:14:03 Guest14712 has quit (Changing host)
3583 2013-05-11 19:14:03 Guest14712 has joined
3584 2013-05-11 19:14:13 Lolcust has quit (Client Quit)
3585 2013-05-11 19:14:23 bitnumus has quit (Changing host)
3586 2013-05-11 19:14:23 bitnumus has joined
3587 2013-05-11 19:14:27 Lolcust has joined
3588 2013-05-11 19:14:30 bakingbread has quit (Changing host)
3589 2013-05-11 19:14:30 bakingbread has joined
3590 2013-05-11 19:14:30 ivan` has quit (Changing host)
3591 2013-05-11 19:14:30 ivan` has joined
3592 2013-05-11 19:14:30 BlueMatt has quit (Changing host)
3593 2013-05-11 19:14:30 BlueMatt has joined
3594 2013-05-11 19:14:52 OneFixt is now known as Guest94451
3595 2013-05-11 19:14:52 john_z is now known as Guest17492
3596 2013-05-11 19:14:53 gmaxwell is now known as Guest39011
3597 2013-05-11 19:14:53 ThomasV is now known as Guest76613
3598 2013-05-11 19:14:53 taha is now known as Guest61647
3599 2013-05-11 19:14:53 tesserajk is now known as Guest83699
3600 2013-05-11 19:14:53 brocktice is now known as Guest10502
3601 2013-05-11 19:14:53 Uisgdlyast is now known as Guest3107
3602 2013-05-11 19:14:53 MC1984 is now known as Guest44573
3603 2013-05-11 19:14:53 a_meteorite is now known as Guest80603
3604 2013-05-11 19:14:53 mrkent is now known as Guest1684
3605 2013-05-11 19:15:12 Guest94451 has quit ()
3606 2013-05-11 19:15:35 OneFixt_ has joined
3607 2013-05-11 19:15:58 xnyhps_ is now known as xnyhps
3608 2013-05-11 19:16:30 Plinker has quit (Remote host closed the connection)
3609 2013-05-11 19:16:49 MobiusL has joined
3610 2013-05-11 19:16:57 Plinker has joined
3611 2013-05-11 19:17:28 MobiusL has quit (Changing host)
3612 2013-05-11 19:17:28 MobiusL has joined
3613 2013-05-11 19:17:29 zoinky1 has quit (Quit: Leaving.)
3614 2013-05-11 19:18:11 cypher__ has quit ()
3615 2013-05-11 19:18:49 <Guest44573> lol nickserve has taken a holiday
3616 2013-05-11 19:19:26 Plarkplark_ is now known as Plarkplark
3617 2013-05-11 19:19:38 brwyatt_ is now known as Away!~brwyatt@brwyatt.net|brwyatt_
3618 2013-05-11 19:19:53 Y3N has joined
3619 2013-05-11 19:20:32 Guest17492 is now known as john_z_
3620 2013-05-11 19:22:00 Darin has quit (Ping timeout: 255 seconds)
3621 2013-05-11 19:23:13 lianj_ is now known as lianj
3622 2013-05-11 19:23:20 Darin has joined
3623 2013-05-11 19:23:48 saulimus has joined
3624 2013-05-11 19:24:34 john_z_ is now known as john_z
3625 2013-05-11 19:25:09 GNULinuxGuy has quit (Ping timeout: 255 seconds)
3626 2013-05-11 19:25:13 ielo has joined
3627 2013-05-11 19:25:17 nsillik has joined
3628 2013-05-11 19:25:20 john_z has left ("Bye..")
3629 2013-05-11 19:26:22 zeph97 has quit (Ping timeout: 255 seconds)
3630 2013-05-11 19:27:06 nizeguy has quit (Read error: Connection reset by peer)
3631 2013-05-11 19:27:46 nizeguy has joined
3632 2013-05-11 19:27:54 dwon has joined
3633 2013-05-11 19:27:58 ecoloco has quit ()
3634 2013-05-11 19:28:33 talengix has joined
3635 2013-05-11 19:28:57 zeph97 has joined
3636 2013-05-11 19:31:04 paracyst has joined
3637 2013-05-11 19:31:55 john_z has joined
3638 2013-05-11 19:32:05 gribble has joined
3639 2013-05-11 19:33:09 Y3N has quit ()
3640 2013-05-11 19:35:55 iwilcox is now known as BtBargain
3641 2013-05-11 19:36:41 BtBargain is now known as iwilcox
3642 2013-05-11 19:37:30 Guest3107 is now known as Uisgdlyast
3643 2013-05-11 19:37:37 gribble has quit (Remote host closed the connection)
3644 2013-05-11 19:38:06 icellan has joined
3645 2013-05-11 19:39:02 icellan has quit (Client Quit)
3646 2013-05-11 19:42:08 edcba has quit (Read error: Connection reset by peer)
3647 2013-05-11 19:42:30 edcba has joined
3648 2013-05-11 19:42:33 OneFixt_ is now known as OneFixt
3649 2013-05-11 19:44:05 dwon has quit (Read error: Connection reset by peer)
3650 2013-05-11 19:44:33 Plarkplark has quit (Quit: "I've had ENOUGH")
3651 2013-05-11 19:44:43 ielo has quit (Ping timeout: 264 seconds)
3652 2013-05-11 19:48:17 CaptainBlaze has joined
3653 2013-05-11 19:51:17 Plarkplark has joined
3654 2013-05-11 19:55:18 <amiller_> is there an easy way i can modify satoshi client to do a full transaction validation
3655 2013-05-11 19:55:21 <amiller_> for an old block
3656 2013-05-11 19:55:48 <amiller_> i want to output intermediate state during transaction validation
3657 2013-05-11 19:55:57 nsillik has quit (Quit: nsillik)
3658 2013-05-11 19:56:01 <amiller_> i'm starting by using the checkblocks VerifyDB thing
3659 2013-05-11 19:56:22 <amiller_> but the kind of validation that's performed there seems to be only partial (even when i indicate the highest checklevel) and i haven't figured out how to push it further
3660 2013-05-11 19:56:42 <cjd> maybe -loadblock up to the block before the intersting one then do a p2p connect to it and send it the block?
3661 2013-05-11 19:57:26 <cjd> could backup ~/.bitcoin after doing the -loadblock and then do the operation over and over
3662 2013-05-11 19:58:44 luke-jr_ has joined
3663 2013-05-11 19:59:18 MobiusL has quit (Quit: Ex-Chat)
3664 2013-05-11 20:01:19 Guest10502 has quit (Quit: leaving)
3665 2013-05-11 20:01:37 brocktice has joined
3666 2013-05-11 20:02:57 <amiller_> hm yeah it's only in checkinputs that that stuff gets checked
3667 2013-05-11 20:03:22 paracyst has quit (Ping timeout: 240 seconds)
3668 2013-05-11 20:04:07 nizeguy has quit (Remote host closed the connection)
3669 2013-05-11 20:05:38 nimdAHK has joined
3670 2013-05-11 20:11:30 KingCoin has joined
3671 2013-05-11 20:13:31 JDuke256 has joined
3672 2013-05-11 20:13:37 <JDuke256> hi
3673 2013-05-11 20:13:53 <JDuke256> i m having trouble on bitcoinj : http://code.google.com/p/bitcoinj/issues/detail?id=405&can=4&colspec=ID%20Type%20Status%20Priority%20Component%20Owner%20Summary
3674 2013-05-11 20:14:07 <KingCoin> I'm interested in processing bitcoin payments to exchange for dollars on the fly via the exchanges
3675 2013-05-11 20:14:11 <JDuke256> i want to get receiver address when onCoinsReceived method called
3676 2013-05-11 20:14:22 <KingCoin> Is this my best bet? looks like a good solution - https://blockchain.info/api
3677 2013-05-11 20:14:31 <JDuke256> KingCoin , no
3678 2013-05-11 20:14:36 <JDuke256> mtgox has the api for that
3679 2013-05-11 20:14:43 <KingCoin> they do? great
3680 2013-05-11 20:14:56 <JDuke256> yea they do
3681 2013-05-11 20:14:57 <JDuke256> wait
3682 2013-05-11 20:15:00 toffoo has joined
3683 2013-05-11 20:15:04 andyh2 has joined
3684 2013-05-11 20:15:08 <KingCoin> ugh im not verified on gox though
3685 2013-05-11 20:15:12 <KingCoin> i cant wait for that queue
3686 2013-05-11 20:15:31 <JDuke256> KingCoin , check here : https://github.com/adv0r/mtgox-api-v2-java
3687 2013-05-11 20:15:40 <JDuke256> String sellResult = trade.sellBTC(0.1);
3688 2013-05-11 20:15:47 <JDuke256> thats what you want
3689 2013-05-11 20:15:54 <JDuke256> String buyResult = trade.buyBTC(0.1);
3690 2013-05-11 20:16:02 <JDuke256> but i m having trouble too
3691 2013-05-11 20:16:23 <JDuke256> i ve made address per invoice
3692 2013-05-11 20:17:04 toffoo has quit (Client Quit)
3693 2013-05-11 20:17:06 <JDuke256> but the problem is , i can't get receiver bit coin address onCoinsReceived called
3694 2013-05-11 20:17:23 toffoo has joined
3695 2013-05-11 20:17:32 <JDuke256> no one know how to do it ?
3696 2013-05-11 20:18:14 toffoo has quit (Client Quit)
3697 2013-05-11 20:18:34 <JDuke256> waow
3698 2013-05-11 20:18:34 shawn_fessenden1 has left ()
3699 2013-05-11 20:18:39 <JDuke256> i got the solution i think
3700 2013-05-11 20:18:46 <JDuke256> i can't get ECKey but i can get wallet
3701 2013-05-11 20:18:47 <JDuke256> so...
3702 2013-05-11 20:18:53 <JDuke256> its better to make multi wallet
3703 2013-05-11 20:22:52 marchon has joined
3704 2013-05-11 20:22:58 marchon has quit (Client Quit)
3705 2013-05-11 20:24:20 marchon has joined
3706 2013-05-11 20:24:52 shawn_fessenden1 has joined
3707 2013-05-11 20:25:09 diki has quit (Read error: Connection reset by peer)
3708 2013-05-11 20:25:18 diki has joined
3709 2013-05-11 20:28:05 n5 has quit (Remote host closed the connection)
3710 2013-05-11 20:28:16 n5 has joined
3711 2013-05-11 20:28:48 grau has quit (Remote host closed the connection)
3712 2013-05-11 20:29:21 graingert has quit (Quit: Ex-Chat)
3713 2013-05-11 20:31:00 Bwild_ has quit (Quit: leaving)
3714 2013-05-11 20:32:07 Bwild has joined
3715 2013-05-11 20:33:55 RBecker is now known as rbecker
3716 2013-05-11 20:34:52 paybitcoin has quit (Read error: Connection reset by peer)
3717 2013-05-11 20:35:12 pizzacat has joined
3718 2013-05-11 20:36:28 paybitcoin has joined
3719 2013-05-11 20:37:16 Guest76613 has quit (Quit: Quitte)
3720 2013-05-11 20:37:31 diki has quit (Ping timeout: 264 seconds)
3721 2013-05-11 20:37:40 ThomasV has joined
3722 2013-05-11 20:37:50 grau has joined
3723 2013-05-11 20:38:11 diki has joined
3724 2013-05-11 20:38:12 grau has quit (Remote host closed the connection)
3725 2013-05-11 20:40:32 sud3n has joined
3726 2013-05-11 20:42:12 kaptah has quit (Quit: Reconnecting)
3727 2013-05-11 20:44:59 CodesInChaos has quit (Read error: Connection reset by peer)
3728 2013-05-11 20:45:59 dwon has joined
3729 2013-05-11 20:46:44 Wasp51 has joined
3730 2013-05-11 20:47:22 diki has quit (Remote host closed the connection)
3731 2013-05-11 20:47:31 diki has joined
3732 2013-05-11 20:48:17 variousnefarious has joined
3733 2013-05-11 20:48:42 quaz has joined
3734 2013-05-11 20:49:11 defaced has joined
3735 2013-05-11 20:49:23 joeykrim has joined
3736 2013-05-11 20:49:42 EricJ has joined
3737 2013-05-11 20:49:47 Guest80603 is now known as a_meteorite
3738 2013-05-11 20:50:07 Diablo-D3 has quit (Ping timeout: 264 seconds)
3739 2013-05-11 20:50:11 Sargun_ has joined
3740 2013-05-11 20:50:20 clarkm has joined
3741 2013-05-11 20:50:38 _W_ has quit (Ping timeout: 256 seconds)
3742 2013-05-11 20:50:56 Diablo-D3 has joined
3743 2013-05-11 20:51:18 mikola_ has joined
3744 2013-05-11 20:52:54 geb has joined
3745 2013-05-11 20:52:58 EasyAt has joined
3746 2013-05-11 20:53:02 _A has joined
3747 2013-05-11 20:53:15 jeremias has joined
3748 2013-05-11 20:53:20 sacarlson1 has joined
3749 2013-05-11 20:53:23 dugo has joined
3750 2013-05-11 20:54:01 joeykrim__ has quit (Ping timeout: 276 seconds)
3751 2013-05-11 20:54:01 Zoop_ has quit (Ping timeout: 276 seconds)
3752 2013-05-11 20:54:02 quaz0r has quit (Ping timeout: 276 seconds)
3753 2013-05-11 20:54:02 Wasp51 is now known as Zoop_
3754 2013-05-11 20:54:02 TheSeven has quit (Ping timeout: 276 seconds)
3755 2013-05-11 20:54:02 Sargun has quit (Ping timeout: 276 seconds)
3756 2013-05-11 20:54:02 Guest64249 has quit (Ping timeout: 276 seconds)
3757 2013-05-11 20:54:02 clarkm_ has quit (Ping timeout: 276 seconds)
3758 2013-05-11 20:54:04 Squidicuz has quit (Ping timeout: 276 seconds)
3759 2013-05-11 20:54:04 mikola has quit (Ping timeout: 276 seconds)
3760 2013-05-11 20:54:05 SirDefaced has quit (Remote host closed the connection)
3761 2013-05-11 20:54:05 EasyAt_ has quit (Ping timeout: 276 seconds)
3762 2013-05-11 20:54:06 geb_ has quit (Ping timeout: 276 seconds)
3763 2013-05-11 20:54:06 sacarlson has quit (Ping timeout: 276 seconds)
3764 2013-05-11 20:54:06 ^A has quit (an^!~Alan@173.216.132.131|Ping timeout: 276 seconds)
3765 2013-05-11 20:54:06 jeremias_ has quit (Remote host closed the connection)
3766 2013-05-11 20:54:06 dugo_ has quit (Remote host closed the connection)
3767 2013-05-11 20:54:39 Squidicuz has joined
3768 2013-05-11 20:54:42 tg has quit (Ping timeout: 276 seconds)
3769 2013-05-11 20:54:42 kcud_dab has quit (Ping timeout: 276 seconds)
3770 2013-05-11 20:54:56 bad_duck has joined
3771 2013-05-11 20:55:39 phma has quit (Ping timeout: 248 seconds)
3772 2013-05-11 20:55:51 phma has joined
3773 2013-05-11 20:56:01 cyberdo_ has joined
3774 2013-05-11 20:56:02 XRPTrader2 has left ()
3775 2013-05-11 20:57:53 iwilcox is now known as gmaxwell
3776 2013-05-11 20:58:08 gmaxwell is now known as iwilcox
3777 2013-05-11 20:58:10 nsh is now known as satoshi
3778 2013-05-11 20:58:23 satoshi is now known as Satoshi
3779 2013-05-11 21:01:38 BlackPrapor has quit (Ping timeout: 264 seconds)
3780 2013-05-11 21:01:52 diki has quit (Ping timeout: 240 seconds)
3781 2013-05-11 21:01:58 EvanR_ has joined
3782 2013-05-11 21:02:13 iwilcox is now known as gribbIe
3783 2013-05-11 21:02:27 diki has joined
3784 2013-05-11 21:02:27 pizzacat has quit (Read error: Operation timed out)
3785 2013-05-11 21:02:28 tg has joined
3786 2013-05-11 21:02:47 petertodd has joined
3787 2013-05-11 21:03:21 Guest44573 is now known as FBI
3788 2013-05-11 21:03:53 milone has quit (Ping timeout: 240 seconds)
3789 2013-05-11 21:04:14 milone has joined
3790 2013-05-11 21:04:44 doublec_ has joined
3791 2013-05-11 21:04:57 paracyst has joined
3792 2013-05-11 21:05:03 Zx82 has joined
3793 2013-05-11 21:05:57 shawn_fessenden1 has left ()
3794 2013-05-11 21:06:44 molecular has joined
3795 2013-05-11 21:06:58 diki has quit (Ping timeout: 256 seconds)
3796 2013-05-11 21:08:17 brson has joined
3797 2013-05-11 21:08:28 thecell has joined
3798 2013-05-11 21:08:50 Zx82 has quit (Client Quit)
3799 2013-05-11 21:11:50 ThomasV has quit (Ping timeout: 264 seconds)
3800 2013-05-11 21:12:10 diki has joined
3801 2013-05-11 21:12:45 implr has joined
3802 2013-05-11 21:14:17 gribbIe is now known as iwilcox
3803 2013-05-11 21:14:59 resinate has joined
3804 2013-05-11 21:15:24 daybyter has quit (Quit: Konversation terminated!)
3805 2013-05-11 21:19:25 stalled has quit (Ping timeout: 245 seconds)
3806 2013-05-11 21:19:34 defaced has quit (Excess Flood)
3807 2013-05-11 21:19:44 SirDefaced has joined
3808 2013-05-11 21:20:30 dikidera has joined
3809 2013-05-11 21:21:05 diki has quit (Read error: Connection reset by peer)
3810 2013-05-11 21:21:15 <sipa> amiller_: -reindex ?
3811 2013-05-11 21:21:25 GUEST95743859723 has joined
3812 2013-05-11 21:21:31 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3813 2013-05-11 21:21:31 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3814 2013-05-11 21:21:31 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3815 2013-05-11 21:21:31 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3816 2013-05-11 21:21:32 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3817 2013-05-11 21:21:32 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3818 2013-05-11 21:21:32 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3819 2013-05-11 21:21:32 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3820 2013-05-11 21:21:33 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3821 2013-05-11 21:21:33 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3822 2013-05-11 21:21:34 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3823 2013-05-11 21:21:34 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3824 2013-05-11 21:21:35 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3825 2013-05-11 21:21:35 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3826 2013-05-11 21:21:40 <buZz_> nice
3827 2013-05-11 21:21:41 <amiller_> help help
3828 2013-05-11 21:21:45 <Haifisch> ;-;
3829 2013-05-11 21:21:48 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3830 2013-05-11 21:21:48 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3831 2013-05-11 21:21:48 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3832 2013-05-11 21:21:48 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3833 2013-05-11 21:21:50 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3834 2013-05-11 21:21:50 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3835 2013-05-11 21:21:50 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3836 2013-05-11 21:21:50 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3837 2013-05-11 21:21:52 <buZz_> yes more!
3838 2013-05-11 21:21:52 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3839 2013-05-11 21:21:52 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3840 2013-05-11 21:21:52 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3841 2013-05-11 21:21:52 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3842 2013-05-11 21:21:53 <buZz_> more!
3843 2013-05-11 21:21:53 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3844 2013-05-11 21:21:53 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3845 2013-05-11 21:21:53 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3846 2013-05-11 21:21:54 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3847 2013-05-11 21:21:54 <buZz_> more!
3848 2013-05-11 21:21:54 <buZz_> more!
3849 2013-05-11 21:21:55 <buZz_> more!
3850 2013-05-11 21:22:03 <Haifisch> what the fuck
3851 2013-05-11 21:22:07 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3852 2013-05-11 21:22:07 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3853 2013-05-11 21:22:07 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3854 2013-05-11 21:22:07 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3855 2013-05-11 21:22:08 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3856 2013-05-11 21:22:08 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3857 2013-05-11 21:22:08 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3858 2013-05-11 21:22:08 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3859 2013-05-11 21:22:09 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3860 2013-05-11 21:22:10 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3861 2013-05-11 21:22:10 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3862 2013-05-11 21:22:10 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3863 2013-05-11 21:22:11 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3864 2013-05-11 21:22:19 <Haifisch> right
3865 2013-05-11 21:22:23 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3866 2013-05-11 21:22:24 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3867 2013-05-11 21:22:24 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3868 2013-05-11 21:22:24 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3869 2013-05-11 21:22:25 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3870 2013-05-11 21:22:25 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3871 2013-05-11 21:22:25 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3872 2013-05-11 21:22:25 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3873 2013-05-11 21:22:27 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3874 2013-05-11 21:22:27 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3875 2013-05-11 21:22:27 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3876 2013-05-11 21:22:27 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3877 2013-05-11 21:22:29 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3878 2013-05-11 21:22:29 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3879 2013-05-11 21:22:29 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3880 2013-05-11 21:22:40 <sipa> aaargh chanserv is offline
3881 2013-05-11 21:22:43 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3882 2013-05-11 21:22:43 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3883 2013-05-11 21:22:43 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3884 2013-05-11 21:22:43 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3885 2013-05-11 21:22:43 <sipa> i can' t get op
3886 2013-05-11 21:22:45 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3887 2013-05-11 21:22:46 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3888 2013-05-11 21:22:46 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3889 2013-05-11 21:22:46 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3890 2013-05-11 21:22:47 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3891 2013-05-11 21:22:47 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3892 2013-05-11 21:22:47 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3893 2013-05-11 21:22:47 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3894 2013-05-11 21:22:49 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3895 2013-05-11 21:22:49 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3896 2013-05-11 21:22:49 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3897 2013-05-11 21:22:49 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3898 2013-05-11 21:23:00 sipa has left ()
3899 2013-05-11 21:23:00 sipa has joined
3900 2013-05-11 21:23:01 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3901 2013-05-11 21:23:03 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3902 2013-05-11 21:23:04 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3903 2013-05-11 21:23:04 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3904 2013-05-11 21:23:04 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3905 2013-05-11 21:23:04 sipa has quit (Quit: leaving)
3906 2013-05-11 21:23:06 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3907 2013-05-11 21:23:06 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3908 2013-05-11 21:23:06 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3909 2013-05-11 21:23:06 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3910 2013-05-11 21:23:08 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3911 2013-05-11 21:23:08 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3912 2013-05-11 21:23:08 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3913 2013-05-11 21:23:08 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3914 2013-05-11 21:23:10 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3915 2013-05-11 21:23:10 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3916 2013-05-11 21:23:10 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3917 2013-05-11 21:23:10 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3918 2013-05-11 21:23:19 FBI has left ("Leaving")
3919 2013-05-11 21:23:22 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3920 2013-05-11 21:23:22 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3921 2013-05-11 21:23:22 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3922 2013-05-11 21:23:22 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3923 2013-05-11 21:23:23 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3924 2013-05-11 21:23:23 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3925 2013-05-11 21:23:23 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3926 2013-05-11 21:23:23 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3927 2013-05-11 21:23:24 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3928 2013-05-11 21:23:25 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3929 2013-05-11 21:23:25 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3930 2013-05-11 21:23:26 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3931 2013-05-11 21:23:26 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3932 2013-05-11 21:23:27 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3933 2013-05-11 21:23:31 <lianj> the art of spamming
3934 2013-05-11 21:23:36 sipa1024 has joined
3935 2013-05-11 21:23:38 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3936 2013-05-11 21:23:38 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3937 2013-05-11 21:23:39 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3938 2013-05-11 21:23:39 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3939 2013-05-11 21:23:40 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3940 2013-05-11 21:23:40 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3941 2013-05-11 21:23:41 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3942 2013-05-11 21:23:41 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3943 2013-05-11 21:23:42 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3944 2013-05-11 21:23:42 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3945 2013-05-11 21:23:43 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3946 2013-05-11 21:23:43 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3947 2013-05-11 21:23:44 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3948 2013-05-11 21:23:44 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3949 2013-05-11 21:23:45 <GUEST95743859723> 89ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43
3950 2013-05-11 21:23:45 <GUEST95743859723> 789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry239
3951 2013-05-11 21:23:46 <GUEST95743859723> 8y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398a
3952 2013-05-11 21:23:46 <GUEST95743859723> uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry24389ry2398y2398uewhf43789ry289ry243
3953 2013-05-11 21:23:52 GUEST95743859723 has quit (Excess Flood)
3954 2013-05-11 21:23:57 <Haifisch> yey
3955 2013-05-11 21:24:19 <Satoshi> (jgarzik, spam)
3956 2013-05-11 21:24:26 <Haifisch> so, that had no point
3957 2013-05-11 21:24:27 uifhweiu4238 has joined
3958 2013-05-11 21:24:32 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3959 2013-05-11 21:24:32 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3960 2013-05-11 21:24:32 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
3961 2013-05-11 21:24:32 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
3962 2013-05-11 21:24:36 <Haifisch> fuck
3963 2013-05-11 21:24:37 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3964 2013-05-11 21:24:37 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3965 2013-05-11 21:24:37 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
3966 2013-05-11 21:24:37 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
3967 2013-05-11 21:24:42 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3968 2013-05-11 21:24:42 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3969 2013-05-11 21:24:42 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
3970 2013-05-11 21:24:42 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
3971 2013-05-11 21:24:46 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3972 2013-05-11 21:24:46 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3973 2013-05-11 21:24:46 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
3974 2013-05-11 21:24:46 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
3975 2013-05-11 21:24:48 diki has joined
3976 2013-05-11 21:24:50 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3977 2013-05-11 21:24:50 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3978 2013-05-11 21:24:50 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
3979 2013-05-11 21:24:50 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
3980 2013-05-11 21:24:51 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3981 2013-05-11 21:24:51 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3982 2013-05-11 21:24:51 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
3983 2013-05-11 21:24:51 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
3984 2013-05-11 21:24:52 <Haifisch> y u do this
3985 2013-05-11 21:24:57 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3986 2013-05-11 21:24:58 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3987 2013-05-11 21:24:58 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
3988 2013-05-11 21:24:58 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
3989 2013-05-11 21:24:59 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3990 2013-05-11 21:24:59 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3991 2013-05-11 21:24:59 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
3992 2013-05-11 21:24:59 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
3993 2013-05-11 21:25:04 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3994 2013-05-11 21:25:04 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3995 2013-05-11 21:25:04 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
3996 2013-05-11 21:25:04 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
3997 2013-05-11 21:25:05 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
3998 2013-05-11 21:25:06 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
3999 2013-05-11 21:25:06 <uifhweiu4238> 389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf4
4000 2013-05-11 21:25:06 <uifhweiu4238> 78fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378
4001 2013-05-11 21:25:07 <uifhweiu4238> jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry23
4002 2013-05-11 21:25:07 <uifhweiu4238> 8ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2389f3289ry4287tgf478fg4q87fg478tfg4378t875&^$%^$*&^@^%$(*&^$*&@($^&#*Y#&*V Br37r v23r vb23r872365872465837265f3287462389974cfh2378jskhf4978ty238ry238ry2389r2ry8392ru2
4003 2013-05-11 21:25:15 <lianj> backing up his wallet to irc logs?
4004 2013-05-11 21:25:21 <jgarzik> ;;kban uifhweiu4238
4005 2013-05-11 21:25:21 <altgribble> Error: You don't have the #bitcoin-dev,op capability. If you think that you should have this capability, be sure that you are identified before trying again. The 'whoami' command can tell you if you're identified.
4006 2013-05-11 21:25:31 dikidera has quit (Ping timeout: 264 seconds)
4007 2013-05-11 21:25:41 <lianj> jgarzik: thanks
4008 2013-05-11 21:25:46 <Haifisch> thanks
4009 2013-05-11 21:26:35 RazielZ has joined
4010 2013-05-11 21:27:44 grazs has joined
4011 2013-05-11 21:27:49 Wojtek_ has joined
4012 2013-05-11 21:27:49 forrestv has quit (Ping timeout: 245 seconds)
4013 2013-05-11 21:27:49 luke-jr__ has joined
4014 2013-05-11 21:27:49 sytse has quit (Ping timeout: 245 seconds)
4015 2013-05-11 21:27:49 grazs_ has quit (Ping timeout: 245 seconds)
4016 2013-05-11 21:27:49 sytse has joined
4017 2013-05-11 21:27:49 agath has quit (Read error: Connection reset by peer)
4018 2013-05-11 21:27:49 RazielXYZ has quit (Ping timeout: 245 seconds)
4019 2013-05-11 21:27:53 Arbition has quit (Read error: Connection reset by peer)
4020 2013-05-11 21:27:53 luke-jr_ has quit (Read error: Connection reset by peer)
4021 2013-05-11 21:27:54 buZz_ is now known as buZz
4022 2013-05-11 21:28:01 sipa1024 has quit (Client Quit)
4023 2013-05-11 21:28:05 sud3n has quit (Ping timeout: 245 seconds)
4024 2013-05-11 21:28:24 agath has joined
4025 2013-05-11 21:28:31 JDuke128 has joined
4026 2013-05-11 21:28:31 BCBot` has quit (Ping timeout: 264 seconds)
4027 2013-05-11 21:28:49 * Satoshi frowns at (newly /ignore'd) Lolcust
4028 2013-05-11 21:28:50 forrestv has joined
4029 2013-05-11 21:29:01 sud3n has joined
4030 2013-05-11 21:29:33 stalled has joined
4031 2013-05-11 21:29:36 Wojtek_ has left ("Leaving")
4032 2013-05-11 21:30:30 sipa1024 has joined
4033 2013-05-11 21:32:00 MobiusL has joined
4034 2013-05-11 21:32:01 * Lolcust begs pardon for his less than stellar behavior in regards to Satoshi
4035 2013-05-11 21:35:13 * cjd scrolls up
4036 2013-05-11 21:35:17 * cjd scrolls down
4037 2013-05-11 21:35:20 * cjd shrugs
4038 2013-05-11 21:35:23 MJR_ has joined
4039 2013-05-11 21:35:32 deltab_ is now known as deltab
4040 2013-05-11 21:35:44 trang has quit (Ping timeout: 264 seconds)
4041 2013-05-11 21:37:45 RazielXYZ has joined
4042 2013-05-11 21:38:02 trang has joined
4043 2013-05-11 21:40:00 Hunner_ has joined
4044 2013-05-11 21:40:18 freefox_ has joined
4045 2013-05-11 21:40:40 saracen_ has joined
4046 2013-05-11 21:41:00 ^A has joined
4047 2013-05-11 21:41:16 phma_ has joined
4048 2013-05-11 21:41:26 hnz has joined
4049 2013-05-11 21:41:31 Liquid3xB has joined
4050 2013-05-11 21:41:41 Belxjander has quit (Max SendQ exceeded)
4051 2013-05-11 21:41:50 feral has joined
4052 2013-05-11 21:42:04 Belxjander has joined
4053 2013-05-11 21:42:41 EvanR has joined
4054 2013-05-11 21:42:56 hnz_ has quit (Ping timeout: 264 seconds)
4055 2013-05-11 21:43:01 john_z_ has joined
4056 2013-05-11 21:43:02 Guest1684 has quit (Ping timeout: 264 seconds)
4057 2013-05-11 21:43:10 jeremias_ has joined
4058 2013-05-11 21:43:10 kinlo_ has joined
4059 2013-05-11 21:43:20 doublec has joined
4060 2013-05-11 21:43:33 djoot_ has joined
4061 2013-05-11 21:44:02 edcba__ has joined
4062 2013-05-11 21:44:07 BCBot` has joined
4063 2013-05-11 21:44:17 kcud_dab has joined
4064 2013-05-11 21:44:30 vrs_ has joined
4065 2013-05-11 21:44:31 ThomasV has joined
4066 2013-05-11 21:44:44 Plarkplark_work has joined
4067 2013-05-11 21:44:57 grazs_ has joined
4068 2013-05-11 21:45:06 debianto1user has joined
4069 2013-05-11 21:45:12 Eiii has joined
4070 2013-05-11 21:46:03 JyZyXEL- has joined
4071 2013-05-11 21:46:12 Breign has joined
4072 2013-05-11 21:46:19 idstam-se has joined
4073 2013-05-11 21:47:18 tonikt3 has quit (Quit: Leaving)
4074 2013-05-11 21:47:36 o3u has joined
4075 2013-05-11 21:47:39 tyn has joined
4076 2013-05-11 21:47:57 Irencus has joined
4077 2013-05-11 21:48:06 trang has quit (Quit: trang)
4078 2013-05-11 21:48:11 neon has joined
4079 2013-05-11 21:48:17 CaptainBlaze has joined
4080 2013-05-11 21:48:17 molecular has joined
4081 2013-05-11 21:48:32 debiantoruser has quit (Ping timeout: 264 seconds)
4082 2013-05-11 21:48:33 ForceMajeure has quit (Ping timeout: 264 seconds)
4083 2013-05-11 21:48:33 hsmiths has quit (Read error: Connection reset by peer)
4084 2013-05-11 21:48:33 Hunger- has quit (Ping timeout: 264 seconds)
4085 2013-05-11 21:48:33 o3u is now known as 52AAAUG96
4086 2013-05-11 21:48:33 freefox_ has quit (Ping timeout: 264 seconds)
4087 2013-05-11 21:48:33 johnsoft has quit (Ping timeout: 264 seconds)
4088 2013-05-11 21:48:33 Hunner_ has quit (Ping timeout: 264 seconds)
4089 2013-05-11 21:48:33 Eliel has quit (Ping timeout: 264 seconds)
4090 2013-05-11 21:48:33 djoot_ has quit (Ping timeout: 264 seconds)
4091 2013-05-11 21:48:33 john_z_ has quit (Ping timeout: 264 seconds)
4092 2013-05-11 21:48:33 paybitcoin has quit (Ping timeout: 264 seconds)
4093 2013-05-11 21:48:33 zeph97 has quit (Ping timeout: 264 seconds)
4094 2013-05-11 21:48:33 idstam has quit (Ping timeout: 264 seconds)
4095 2013-05-11 21:48:36 Eliel_ has joined
4096 2013-05-11 21:48:44 johnsoft has joined
4097 2013-05-11 21:48:44 neon is now known as neon_
4098 2013-05-11 21:48:50 Hunger- has joined
4099 2013-05-11 21:48:51 ForceMajeure has joined
4100 2013-05-11 21:48:56 Pertito has quit (Ping timeout: 264 seconds)
4101 2013-05-11 21:48:56 rbecker has quit (Ping timeout: 264 seconds)
4102 2013-05-11 21:48:57 zeph97_ has joined
4103 2013-05-11 21:49:12 paybitcoin has joined
4104 2013-05-11 21:49:14 kinlo_ is now known as kinlo
4105 2013-05-11 21:49:32 tkolsto has quit (Ping timeout: 264 seconds)
4106 2013-05-11 21:49:57 greenstar has joined
4107 2013-05-11 21:49:58 Darin has joined
4108 2013-05-11 21:50:05 tkolsto has joined
4109 2013-05-11 21:50:08 jiffe98 has quit (Ping timeout: 264 seconds)
4110 2013-05-11 21:50:12 djoot has joined
4111 2013-05-11 21:50:12 jMyles has joined
4112 2013-05-11 21:50:12 bitnumus has joined
4113 2013-05-11 21:50:12 variousnefarious has joined
4114 2013-05-11 21:50:17 GNULinuxGuy has joined
4115 2013-05-11 21:50:30 brson has quit (Changing host)
4116 2013-05-11 21:50:30 brson has joined
4117 2013-05-11 21:50:39 andyh2 has quit (Quit: Leaving...)
4118 2013-05-11 21:51:56 MobiusL has quit (Ping timeout: 264 seconds)
4119 2013-05-11 21:52:04 Jezzz has joined
4120 2013-05-11 21:52:04 hsmiths has joined
4121 2013-05-11 21:52:14 rbecker has joined
4122 2013-05-11 21:52:21 da2ce7_d has joined
4123 2013-05-11 21:52:21 Fnar has joined
4124 2013-05-11 21:52:21 rlifchitz has joined
4125 2013-05-11 21:52:21 ahbritto_ has joined
4126 2013-05-11 21:53:35 greenstar has left ()
4127 2013-05-11 21:54:45 trang has joined
4128 2013-05-11 21:55:50 Plarkplark_work has quit (Quit: bye)
4129 2013-05-11 21:56:31 stochasm has quit (Quit: ZNC - http://znc.in)
4130 2013-05-11 21:59:36 gribble has joined
4131 2013-05-11 22:00:38 k9quaint has joined
4132 2013-05-11 22:03:21 <amiller_> sipa1024, thanks -reindex helped me
4133 2013-05-11 22:04:57 <sipa1024> amiller_: actually, -checklevel=4 does similar validation to importing from scratch
4134 2013-05-11 22:05:07 <amiller_> including input validation?
4135 2013-05-11 22:05:07 <sipa1024> though you need a large dbcache to be roll back far enough first
4136 2013-05-11 22:05:15 <sipa1024> yes, even including signature checks
4137 2013-05-11 22:05:22 <amiller_> that's strange i didn't observe that... what happens when checklevel=4 and there's no dbcache?
4138 2013-05-11 22:05:38 <sipa1024> it rolls back as far at fits in the dbcache, and rolls back from there
4139 2013-05-11 22:05:47 <sipa1024> it's reported in debug.lof
4140 2013-05-11 22:05:51 sipa1024 is now known as sipa
4141 2013-05-11 22:06:43 trang has quit (Quit: trang)
4142 2013-05-11 22:07:58 <sipa> eh, and revalidates from there
4143 2013-05-11 22:09:49 mappum has joined
4144 2013-05-11 22:10:05 _pr has quit (Remote host closed the connection)
4145 2013-05-11 22:13:25 JDuke256 has quit (Quit: ["Textual IRC Client: www.textualapp.com"])
4146 2013-05-11 22:14:00 Guest61647 has left ("Leaving")
4147 2013-05-11 22:15:05 Tom_Servo is now known as TomServo
4148 2013-05-11 22:15:27 donpdonp has joined
4149 2013-05-11 22:18:43 gagecolton has joined
4150 2013-05-11 22:18:52 ovidiusoft has quit (Quit: leaving)
4151 2013-05-11 22:20:43 JDuke128 has quit (Quit: Computer has gone to sleep.)
4152 2013-05-11 22:20:52 Irencus has quit ()
4153 2013-05-11 22:21:41 joeykrim has quit (Quit: joeykrim)
4154 2013-05-11 22:28:54 wumpus has quit (No Ping reply in 180 seconds.)
4155 2013-05-11 22:29:09 wump has joined
4156 2013-05-11 22:29:11 lianj_ has joined
4157 2013-05-11 22:29:21 mhanne_ has joined
4158 2013-05-11 22:29:47 ido_ has joined
4159 2013-05-11 22:30:04 tholenst has quit (Quit: Page closed)
4160 2013-05-11 22:30:13 JDuke128 has joined
4161 2013-05-11 22:31:10 FredEE has quit (Changing host)
4162 2013-05-11 22:31:10 FredEE has joined
4163 2013-05-11 22:31:11 doublec has quit (Changing host)
4164 2013-05-11 22:31:11 doublec has joined
4165 2013-05-11 22:31:11 rbecker has quit (Changing host)
4166 2013-05-11 22:31:11 rbecker has joined
4167 2013-05-11 22:31:17 Raccoon^ has joined
4168 2013-05-11 22:31:17 Arnavion has joined
4169 2013-05-11 22:31:17 rdponticelli has joined
4170 2013-05-11 22:31:17 imsaguy_e has joined
4171 2013-05-11 22:31:25 ngc0202 has joined
4172 2013-05-11 22:31:25 stochasm has joined
4173 2013-05-11 22:31:32 gagecolton is now known as Guest76453
4174 2013-05-11 22:31:32 ido_ is now known as Guest43457
4175 2013-05-11 22:31:32 Jezzz is now known as Guest12415
4176 2013-05-11 22:31:32 dwon is now known as Guest31714
4177 2013-05-11 22:31:32 Hunner is now known as Guest5080
4178 2013-05-11 22:31:32 a_meteorite is now known as Guest67777
4179 2013-05-11 22:31:32 tg is now known as Guest21202
4180 2013-05-11 22:31:32 Namworld is now known as Guest89657
4181 2013-05-11 22:31:32 sud3n is now known as Guest83603
4182 2013-05-11 22:31:32 EricJ is now known as Guest69832
4183 2013-05-11 22:31:32 nimdAHK is now known as Guest15075
4184 2013-05-11 22:31:32 Uisgdlyast is now known as Guest49810
4185 2013-05-11 22:31:32 clarkm is now known as Guest13133
4186 2013-05-11 22:31:32 Diablo-D3 is now known as Guest73014
4187 2013-05-11 22:31:32 EasyAt is now known as Guest97412
4188 2013-05-11 22:31:32 ThomasV is now known as Guest93187
4189 2013-05-11 22:31:32 petertodd is now known as Guest63892
4190 2013-05-11 22:31:32 Guest31714 is now known as 50UACKLAG
4191 2013-05-11 22:31:32 ForceMajeure is now known as Guest48387
4192 2013-05-11 22:31:32 johnsoft is now known as Guest22932
4193 2013-05-11 22:31:32 bitnumus is now known as Guest1319
4194 2013-05-11 22:31:32 EvanR is now known as Guest92590
4195 2013-05-11 22:31:32 diki is now known as Guest93222
4196 2013-05-11 22:31:33 djoot is now known as Guest73990
4197 2013-05-11 22:31:33 brocktice is now known as Guest74055
4198 2013-05-11 22:31:33 Guest93187 has quit (Quit: Quitte)
4199 2013-05-11 22:31:45 CodeShark has joined
4200 2013-05-11 22:31:47 stretchwarren has joined
4201 2013-05-11 22:31:53 Satoshi is now known as nsh
4202 2013-05-11 22:31:58 Guest1319 is now known as bitnumus
4203 2013-05-11 22:32:00 bitnumus has quit (Changing host)
4204 2013-05-11 22:32:00 bitnumus has joined
4205 2013-05-11 22:32:03 ThomasV_ has joined
4206 2013-05-11 22:32:08 Guest76453 has quit (Quit: Yaaic - Yet another Android IRC client - http://www.yaaic.org)
4207 2013-05-11 22:32:15 Someguy123 has quit (Disconnected by services)
4208 2013-05-11 22:32:24 _W_ has joined
4209 2013-05-11 22:32:25 gagecolton has joined
4210 2013-05-11 22:32:26 ThomasV_ has quit (Client Quit)
4211 2013-05-11 22:32:29 k9quaint has quit (Changing host)
4212 2013-05-11 22:32:29 k9quaint has joined
4213 2013-05-11 22:32:37 CodesInChaos has joined
4214 2013-05-11 22:32:53 troj_ has joined
4215 2013-05-11 22:33:00 balrog_ has joined
4216 2013-05-11 22:33:07 turboroot_ is now known as turboroot
4217 2013-05-11 22:33:07 turboroot has quit (Changing host)
4218 2013-05-11 22:33:08 Raccoon^ is now known as Raccoon
4219 2013-05-11 22:33:09 MiningBuddy- has joined
4220 2013-05-11 22:33:24 Guest74055 has quit (Ping timeout: 241 seconds)
4221 2013-05-11 22:33:52 Guest582 has joined
4222 2013-05-11 22:34:04 Guest582 is now known as Someguy123
4223 2013-05-11 22:34:17 Someguy123 has quit (Changing host)
4224 2013-05-11 22:34:17 Someguy123 has joined
4225 2013-05-11 22:35:11 balrog_ is now known as balrog
4226 2013-05-11 22:35:28 turboroot has joined
4227 2013-05-11 22:35:28 datagutt has joined
4228 2013-05-11 22:35:28 fpgaminer has joined
4229 2013-05-11 22:35:28 Apexseals has joined
4230 2013-05-11 22:35:28 gdbz has joined
4231 2013-05-11 22:35:33 matt__ has quit (Read error: Connection reset by peer)
4232 2013-05-11 22:35:46 realazthat_ has joined
4233 2013-05-11 22:36:09 Cory has quit (Ping timeout: 264 seconds)
4234 2013-05-11 22:36:29 Guest67777 is now known as a_meteorite
4235 2013-05-11 22:36:29 BTCOxygen has joined
4236 2013-05-11 22:36:36 a_meteorite has quit (Changing host)
4237 2013-05-11 22:36:36 a_meteorite has joined
4238 2013-05-11 22:36:41 suporte85 has joined
4239 2013-05-11 22:37:57 kantlivelong has joined
4240 2013-05-11 22:37:57 nanotube has joined
4241 2013-05-11 22:38:42 Cory has joined
4242 2013-05-11 22:39:35 50UACKLAG has quit (Quit: Leaving)
4243 2013-05-11 22:39:49 dwon has joined
4244 2013-05-11 22:39:49 Guest21202 has quit (Quit: Reconnecting)
4245 2013-05-11 22:40:07 jgarzik has joined
4246 2013-05-11 22:40:39 Hasimir- is now known as Hasimir
4247 2013-05-11 22:40:42 Hasimir has quit (Changing host)
4248 2013-05-11 22:40:42 Hasimir has joined
4249 2013-05-11 22:40:44 tg has joined
4250 2013-05-11 22:41:05 Neozonz has quit (Disc!~Neozonz@unaffiliated/neozonz|Ping timeout: 245 seconds)
4251 2013-05-11 22:41:14 roland has joined
4252 2013-05-11 22:41:15 licnep has joined
4253 2013-05-11 22:41:15 jgarzik has joined
4254 2013-05-11 22:41:15 shesek has joined
4255 2013-05-11 22:42:20 sipa has quit (Changing host)
4256 2013-05-11 22:42:20 sipa has joined
4257 2013-05-11 22:47:41 Guest49810 is now known as Uisgdlyast
4258 2013-05-11 22:48:10 Uisgdlyast is now known as Guest84303
4259 2013-05-11 22:48:21 cheako is now known as Guest13659
4260 2013-05-11 22:49:01 Guest84303 has quit (Changing host)
4261 2013-05-11 22:49:01 Guest84303 has joined
4262 2013-05-11 22:49:16 LainZ has joined
4263 2013-05-11 22:49:56 paracyst has quit (Changing host)
4264 2013-05-11 22:49:56 paracyst has joined
4265 2013-05-11 22:50:01 Guest84303 is now known as Uisgdlyast_
4266 2013-05-11 22:51:03 Uisgdlyast_ is now known as Uisgdlyast
4267 2013-05-11 22:51:44 one_zero has joined
4268 2013-05-11 22:51:46 stalled has quit (Quit: ...)
4269 2013-05-11 22:52:02 zoinky has joined
4270 2013-05-11 22:52:19 rbecker is now known as RBecker
4271 2013-05-11 22:52:53 Neozonz has joined
4272 2013-05-11 22:53:42 Guest89657 is now known as Namworld
4273 2013-05-11 22:56:29 vrs_ is now known as vrs
4274 2013-05-11 22:56:33 vrs has quit (Changing host)
4275 2013-05-11 22:56:33 vrs has joined
4276 2013-05-11 22:56:42 Ogig has joined
4277 2013-05-11 22:56:45 XertroV has joined
4278 2013-05-11 22:57:26 zoinky has quit (Quit: Leaving.)
4279 2013-05-11 22:58:04 stalled has joined
4280 2013-05-11 22:58:43 ProfMac has joined
4281 2013-05-11 22:59:51 savetheinternet has joined
4282 2013-05-11 23:01:37 Guest39011 is now known as gmaxwell
4283 2013-05-11 23:02:07 gmaxwell is now known as Guest90842
4284 2013-05-11 23:03:16 GNULinuxGuy has quit (Ping timeout: 255 seconds)
4285 2013-05-11 23:03:23 GNULinuxGuy has joined
4286 2013-05-11 23:03:36 jrra has quit (Quit: quit)
4287 2013-05-11 23:04:07 MobiusL has joined
4288 2013-05-11 23:04:07 MobiusL has quit (Changing host)
4289 2013-05-11 23:04:07 MobiusL has joined
4290 2013-05-11 23:04:08 lianj_ has quit (Changing host)
4291 2013-05-11 23:04:08 lianj_ has joined
4292 2013-05-11 23:04:11 lianj_ is now known as lianj
4293 2013-05-11 23:05:57 twobitcoins has joined
4294 2013-05-11 23:06:32 Guest13659 has quit (Quit: Client exiting)
4295 2013-05-11 23:07:13 Guest13659 has joined
4296 2013-05-11 23:07:17 Guest13659 has quit (Read error: Connection reset by peer)
4297 2013-05-11 23:07:29 jrra has joined
4298 2013-05-11 23:07:30 cheako911 has joined
4299 2013-05-11 23:07:45 t2che has joined
4300 2013-05-11 23:07:58 Garr2551 has joined
4301 2013-05-11 23:08:05 mps has quit (Ping timeout: 256 seconds)
4302 2013-05-11 23:08:09 idstam has joined
4303 2013-05-11 23:08:10 ngc0202 has quit (Read error: Connection reset by peer)
4304 2013-05-11 23:08:13 mapppum has joined
4305 2013-05-11 23:08:40 Apexseals has joined
4306 2013-05-11 23:08:49 ivan\ has quit (Ping timeout: 256 seconds)
4307 2013-05-11 23:08:59 ngc0202 has joined
4308 2013-05-11 23:09:00 bonks has quit (Ping timeout: 245 seconds)
4309 2013-05-11 23:09:02 tvbcof1 has joined
4310 2013-05-11 23:09:12 Internet13 has quit (Ping timeout: 256 seconds)
4311 2013-05-11 23:09:12 ppr has quit (Ping timeout: 256 seconds)
4312 2013-05-11 23:09:12 pooler has quit (Ping timeout: 256 seconds)
4313 2013-05-11 23:09:12 tvbcof has quit (Ping timeout: 256 seconds)
4314 2013-05-11 23:09:15 BenderCoin has quit (Ping timeout: 256 seconds)
4315 2013-05-11 23:09:15 azizLIGHTS has quit (Ping timeout: 256 seconds)
4316 2013-05-11 23:09:16 clopez has quit (Disconnected by services)
4317 2013-05-11 23:09:42 treaki_ has joined
4318 2013-05-11 23:09:46 WKNiGHT has quit (Ping timeout: 256 seconds)
4319 2013-05-11 23:09:46 Scrat has quit (Ping timeout: 256 seconds)
4320 2013-05-11 23:09:49 clopez_ has joined
4321 2013-05-11 23:09:51 Azelphur has quit (Ping timeout: 245 seconds)
4322 2013-05-11 23:10:00 FabianB has joined
4323 2013-05-11 23:10:00 FabianB has quit (Changing host)
4324 2013-05-11 23:10:00 FabianB has joined
4325 2013-05-11 23:10:08 bonks has joined
4326 2013-05-11 23:10:19 mE\Ta has quit (Ping timeout: 256 seconds)
4327 2013-05-11 23:10:20 Toresh has quit (Ping timeout: 256 seconds)
4328 2013-05-11 23:10:52 Guest36968 has joined
4329 2013-05-11 23:10:53 brson_ has joined
4330 2013-05-11 23:10:57 peper has joined
4331 2013-05-11 23:11:03 mariorz has quit (Ping timeout: 256 seconds)
4332 2013-05-11 23:11:03 Scrat has joined
4333 2013-05-11 23:11:07 Azelphur has joined
4334 2013-05-11 23:11:08 azizLIGHTS has joined
4335 2013-05-11 23:11:09 rdponticelli_ has joined
4336 2013-05-11 23:11:27 JDuke128_ has joined
4337 2013-05-11 23:11:28 clopez_ is now known as clopez
4338 2013-05-11 23:11:29 MKCoin has quit (Ping timeout: 256 seconds)
4339 2013-05-11 23:11:56 ivan\ has joined
4340 2013-05-11 23:11:57 doublec_ has joined
4341 2013-05-11 23:12:01 zylche__ has joined
4342 2013-05-11 23:12:06 hnz_ has joined
4343 2013-05-11 23:12:22 zoinky has joined
4344 2013-05-11 23:12:23 theorbtwo has quit (Ping timeout: 256 seconds)
4345 2013-05-11 23:12:23 artfoo_ has quit (Ping timeout: 256 seconds)
4346 2013-05-11 23:12:26 twobitcoins_ has joined
4347 2013-05-11 23:12:44 Internet13 has joined
4348 2013-05-11 23:12:47 artfoo has joined
4349 2013-05-11 23:12:49 EvilPete has joined
4350 2013-05-11 23:12:57 Toresh has joined
4351 2013-05-11 23:13:17 nimdAHK_ has joined
4352 2013-05-11 23:13:21 savethei_ has joined
4353 2013-05-11 23:13:24 smiddi_ has quit (Ping timeout: 258 seconds)
4354 2013-05-11 23:13:24 p8m has quit (Ping timeout: 258 seconds)
4355 2013-05-11 23:13:27 tumdum_ has joined
4356 2013-05-11 23:13:30 smickles_ has quit (Ping timeout: 256 seconds)
4357 2013-05-11 23:13:30 tumdum has quit (Ping timeout: 256 seconds)
4358 2013-05-11 23:13:36 GMP has quit (Read error: Connection reset by peer)
4359 2013-05-11 23:13:43 segy has quit (Ping timeout: 256 seconds)
4360 2013-05-11 23:13:43 klmist has quit (Ping timeout: 256 seconds)
4361 2013-05-11 23:13:46 Bwild_ has joined
4362 2013-05-11 23:13:46 smickles has joined
4363 2013-05-11 23:13:51 impulse has joined
4364 2013-05-11 23:13:53 devrando1 has joined
4365 2013-05-11 23:14:12 BenderCoin has joined
4366 2013-05-11 23:14:13 altgribble has quit (Quit: Ctrl-C at console.)
4367 2013-05-11 23:14:19 tsche has quit (Ping timeout: 256 seconds)
4368 2013-05-11 23:14:23 roland has quit (Ping timeout: 256 seconds)
4369 2013-05-11 23:14:23 brson has quit (Ping timeout: 256 seconds)
4370 2013-05-11 23:14:23 marcop has quit (Ping timeout: 256 seconds)
4371 2013-05-11 23:14:29 sacarlson1 has quit (Ping timeout: 256 seconds)
4372 2013-05-11 23:14:34 Guest62957 has joined
4373 2013-05-11 23:14:38 Hawkwood has joined
4374 2013-05-11 23:14:39 MKCoin has joined
4375 2013-05-11 23:15:27 roland has joined
4376 2013-05-11 23:15:38 AtashiCon has quit (Disconnected by services)
4377 2013-05-11 23:15:43 mE\Ta has joined
4378 2013-05-11 23:15:43 Arnavion3 has joined
4379 2013-05-11 23:15:46 brson_ has quit (Changing host)
4380 2013-05-11 23:15:46 brson_ has joined
4381 2013-05-11 23:15:48 xnyhps_ has joined
4382 2013-05-11 23:15:49 Arnavion3 is now known as AtashiCon
4383 2013-05-11 23:15:53 pooler has joined
4384 2013-05-11 23:16:08 <Guest62957> is it safe yet
4385 2013-05-11 23:16:20 <nsh> nope, everything could explode at any moment
4386 2013-05-11 23:16:32 jaakkos has joined
4387 2013-05-11 23:16:35 <nsh> i'd find the nearest source of opiates and sex work and make the best of your last moments
4388 2013-05-11 23:16:56 defaced has joined
4389 2013-05-11 23:17:02 marcop has joined
4390 2013-05-11 23:17:03 fiesh has joined
4391 2013-05-11 23:17:10 segy has joined
4392 2013-05-11 23:17:10 segy has quit (Changing host)
4393 2013-05-11 23:17:10 segy has joined
4394 2013-05-11 23:17:23 Liquid_ has joined
4395 2013-05-11 23:17:57 bibbybob has quit (Quit: Leaving)
4396 2013-05-11 23:18:27 paybitcoin1 has joined
4397 2013-05-11 23:18:42 savetheinternet has quit (Ping timeout: 256 seconds)
4398 2013-05-11 23:18:42 JDuke128 has quit (Ping timeout: 256 seconds)
4399 2013-05-11 23:18:42 idstam-se has quit (Ping timeout: 256 seconds)
4400 2013-05-11 23:18:42 jok has quit (Ping timeout: 256 seconds)
4401 2013-05-11 23:18:43 Garr2552 has quit (Ping timeout: 256 seconds)
4402 2013-05-11 23:18:43 mappum has quit (Ping timeout: 256 seconds)
4403 2013-05-11 23:18:43 doublec has quit (Ping timeout: 256 seconds)
4404 2013-05-11 23:18:43 FabianB_ has quit (Ping timeout: 256 seconds)
4405 2013-05-11 23:18:43 zylche_ has quit (Ping timeout: 256 seconds)
4406 2013-05-11 23:18:44 tg has quit (Ping timeout: 256 seconds)
4407 2013-05-11 23:18:44 rdponticelli has quit (Ping timeout: 256 seconds)
4408 2013-05-11 23:18:44 hnz has quit (Ping timeout: 256 seconds)
4409 2013-05-11 23:18:44 Guest15075 has quit (Ping timeout: 256 seconds)
4410 2013-05-11 23:18:44 impulse- has quit (Ping timeout: 256 seconds)
4411 2013-05-11 23:18:44 Bwild has quit (Ping timeout: 256 seconds)
4412 2013-05-11 23:18:44 Guest83699 has quit (Ping timeout: 256 seconds)
4413 2013-05-11 23:18:44 Julius129 has quit (Ping timeout: 256 seconds)
4414 2013-05-11 23:18:44 devrandom has quit (Ping timeout: 256 seconds)
4415 2013-05-11 23:18:44 xorgate has quit (Ping timeout: 256 seconds)
4416 2013-05-11 23:18:44 paybitcoin has quit (Ping timeout: 256 seconds)
4417 2013-05-11 23:18:47 twobitcoins has quit (Ping timeout: 256 seconds)
4418 2013-05-11 23:18:48 SirDefaced has quit (Ping timeout: 256 seconds)
4419 2013-05-11 23:18:48 jaakkos_ has quit (Ping timeout: 256 seconds)
4420 2013-05-11 23:18:48 fiesh_ has quit (Ping timeout: 256 seconds)
4421 2013-05-11 23:18:48 n5 has quit (Remote host closed the connection)
4422 2013-05-11 23:18:48 ivan` has quit (Ping timeout: 256 seconds)
4423 2013-05-11 23:18:48 Mr_G has joined
4424 2013-05-11 23:18:48 feral has quit (Ping timeout: 256 seconds)
4425 2013-05-11 23:18:48 saracen_ has quit (Ping timeout: 256 seconds)
4426 2013-05-11 23:18:48 Liquid3xB has quit (Ping timeout: 256 seconds)
4427 2013-05-11 23:18:55 xnyhps has quit (Read error: Connection reset by peer)
4428 2013-05-11 23:19:07 feral has joined
4429 2013-05-11 23:19:07 saracen has joined
4430 2013-05-11 23:19:18 Julius129 has joined
4431 2013-05-11 23:19:21 Guest83699 has joined
4432 2013-05-11 23:19:23 xorgate has joined
4433 2013-05-11 23:19:24 smiddi has joined
4434 2013-05-11 23:19:28 twobitcoins__ has joined
4435 2013-05-11 23:19:35 RazielZ has joined
4436 2013-05-11 23:19:54 CaptainBlaze has quit (Quit: CaptainBlaze)
4437 2013-05-11 23:20:07 p8m has joined
4438 2013-05-11 23:20:09 jMyles has quit (Ping timeout: 256 seconds)
4439 2013-05-11 23:20:48 ivan` has joined
4440 2013-05-11 23:20:48 topace has quit (Ping timeout: 246 seconds)
4441 2013-05-11 23:20:51 mps has joined
4442 2013-05-11 23:21:02 rdymac has joined
4443 2013-05-11 23:21:22 ghash has joined
4444 2013-05-11 23:21:25 tg has joined
4445 2013-05-11 23:22:18 <ghash> Hi guys, I got a problem. I've installed bitcoin on debian (kvm vps server) with this guide: http://wp.geeklab.com.ar/gl-en/2013/03/04/how-to-install-bitcoin-0-8-0-on-debian-squeeze/
4446 2013-05-11 23:22:31 phma__ has joined
4447 2013-05-11 23:22:53 <ghash> then I tried running bitcoind with the following script
4448 2013-05-11 23:22:53 <ghash> https://bitcointalk.org/index.php?topic=171782.0
4449 2013-05-11 23:23:07 <ghash> it did not work, so I installed bitcoind with apt-get install bitcoind
4450 2013-05-11 23:23:21 <ghash> so after that it worked, but I'm running on version 32400 (which I understand is 0.7?)
4451 2013-05-11 23:23:22 LainZ has quit (Ping timeout: 240 seconds)
4452 2013-05-11 23:23:23 cyberdo_ has quit (Ping timeout: 240 seconds)
4453 2013-05-11 23:23:23 Guest69832 has quit (Ping timeout: 240 seconds)
4454 2013-05-11 23:23:32 xnyhps has joined
4455 2013-05-11 23:23:37 <sipa> 32400 is 0.3.24 and it is ancient
4456 2013-05-11 23:23:39 impulse- has joined
4457 2013-05-11 23:23:47 <sipa> do not use the version from debian's repo
4458 2013-05-11 23:23:54 <ghash> Ok. But where do I get the bitcoind then?
4459 2013-05-11 23:24:07 clopez has quit (Disconnected by services)
4460 2013-05-11 23:24:09 <sipa> elaborate on "it did not work"
4461 2013-05-11 23:24:12 <cjd> i just git clone it from github and build manually
4462 2013-05-11 23:24:17 grazs has joined
4463 2013-05-11 23:24:26 <cjd> it's not that difficult really
4464 2013-05-11 23:24:34 <ghash> It did not work it gave a lot of errors, especially that it could not find bitcoind in /usr/lib/
4465 2013-05-11 23:24:42 clopez_ has joined
4466 2013-05-11 23:24:53 <cjd> boo sounds like a broken package :(
4467 2013-05-11 23:25:35 <ghash> I am really nooby. Any guide you can recommend to get bitcoind from github and build it manually?
4468 2013-05-11 23:25:46 <cjd> git clone git://github.com/bitcoin/bitcoin.git && cd bitcoin
4469 2013-05-11 23:25:49 <cjd> qmake
4470 2013-05-11 23:25:50 <cjd> make
4471 2013-05-11 23:25:56 <cjd> fix errors as they appear
4472 2013-05-11 23:26:10 brendyn has quit (Ping timeout: 252 seconds)
4473 2013-05-11 23:26:22 <nsh> cjd has worked out the elusive step 2. ???? of software
4474 2013-05-11 23:26:34 <cjd> :D
4475 2013-05-11 23:26:40 <cjd> oh
4476 2013-05-11 23:26:41 Guest7845 has joined
4477 2013-05-11 23:26:48 <kinlo> cjd: I recommend running it from the binaries as supplied
4478 2013-05-11 23:27:01 <ghash> what now
4479 2013-05-11 23:27:14 <cjd> git checkout v0.8.2rc1  if you're a chicken
4480 2013-05-11 23:27:14 cyberdo has joined
4481 2013-05-11 23:27:28 <kinlo> don't try to recompile it - if you don't get the berkley db stuff right, you might end up with a wallet you might not be able to read afterwards
4482 2013-05-11 23:27:36 <kinlo> unless you are going to develop ofcourse
4483 2013-05-11 23:27:40 ivan\_ has joined
4484 2013-05-11 23:27:52 theorb has joined
4485 2013-05-11 23:27:53 <ghash> holy shit you are confusing!
4486 2013-05-11 23:28:20 <cjd> what he means is if you open a wallet using a compiled version and then try to copy it over to a downloaded version, the downloaded version will be like "wut is this"
4487 2013-05-11 23:28:32 <cjd> he doesn't mean "if you compile it it will eat your wallet"
4488 2013-05-11 23:28:45 <cjd> although backups are always nice :)
4489 2013-05-11 23:28:46 theorb is now known as theorbtwo
4490 2013-05-11 23:28:46 brendyn has joined
4491 2013-05-11 23:28:54 hnz has joined
4492 2013-05-11 23:29:10 <sipa> actually, with 0.8.2 that should be possible (at least in one way)
4493 2013-05-11 23:29:17 <sipa> though yes, have backups
4494 2013-05-11 23:29:18 <cjd> cool
4495 2013-05-11 23:29:39 <ghash> <cjd> git checkout v0.8.2rc1  if you're a chicken
4496 2013-05-11 23:29:44 <ghash> explain yourself? I am a chicken
4497 2013-05-11 23:29:48 <cjd> hehe
4498 2013-05-11 23:29:56 <cjd> that's the tagged release candidate
4499 2013-05-11 23:30:01 ivan\_ is now known as ivan\
4500 2013-05-11 23:30:10 sacarlson has joined
4501 2013-05-11 23:30:14 <cjd> if you don't check that out, you get the git trunk which is what developers are working on right now
4502 2013-05-11 23:30:22 <cjd> I *think* right now, they are equivilant
4503 2013-05-11 23:30:25 jok has joined
4504 2013-05-11 23:30:35 <cjd> but if you want more safety, checkout the tag :)
4505 2013-05-11 23:30:37 tyn has quit (Read error: Operation timed out)
4506 2013-05-11 23:30:40 ngc0202 has joined
4507 2013-05-11 23:30:40 d34th has joined
4508 2013-05-11 23:30:40 forrestv has joined
4509 2013-05-11 23:30:40 luke-jr__ has joined
4510 2013-05-11 23:30:40 Guest83603 has joined
4511 2013-05-11 23:32:07 <ghash> I want to run it with eloipool - any pro hints for that?
4512 2013-05-11 23:32:28 sytse has joined
4513 2013-05-11 23:32:32 <cjd> not sure what that is :)
4514 2013-05-11 23:32:40 <ghash> a python3 pool software
4515 2013-05-11 23:32:50 <Guest62957> there seems to be a ban threshold assinged to peers, ive got one on 60 points on whatever
4516 2013-05-11 23:32:56 topace has joined
4517 2013-05-11 23:33:14 <Guest62957> whats the value that triggers banning
4518 2013-05-11 23:33:20 topace is now known as Guest3369
4519 2013-05-11 23:34:12 Guest73990 has quit (Quit: leaving)
4520 2013-05-11 23:34:32 djoot has joined
4521 2013-05-11 23:34:32 djoot has quit (Changing host)
4522 2013-05-11 23:34:32 djoot has joined
4523 2013-05-11 23:36:07 <sipa> Guest62957: 100
4524 2013-05-11 23:36:48 <sipa> Guest62957: i assume it's the not-understood "vin missing" problem
4525 2013-05-11 23:37:00 <sipa> we've been seeing it for a while, and don't really know what causes it
4526 2013-05-11 23:37:21 <Guest62957> interesting
4527 2013-05-11 23:37:29 fishfish has joined
4528 2013-05-11 23:37:34 <Guest62957> i suppose it will turn up one day
4529 2013-05-11 23:37:44 <Guest62957> like dropping a washer into your engine
4530 2013-05-11 23:38:16 andyh2 has joined
4531 2013-05-11 23:38:27 <Guest62957> this peer is getting banned for inputs already spent though lol
4532 2013-05-11 23:38:31 <Guest62957> seeing a lot of that actually
4533 2013-05-11 23:39:07 <ghash> cjd: I hope you dont mind highlighting you, I've done as you said, no errors etc.
4534 2013-05-11 23:39:19 <ghash> Now I have bitcoin-qt in the dir
4535 2013-05-11 23:39:24 <ghash> butbut... I want bitcoind?
4536 2013-05-11 23:39:35 Guest43457 is now known as ido
4537 2013-05-11 23:39:41 ido has quit (Quit: Reconnecting)
4538 2013-05-11 23:39:57 ido has joined
4539 2013-05-11 23:40:04 MJR_ has quit (Quit: MJR_)
4540 2013-05-11 23:40:11 Guest90842 is now known as gmaxwell
4541 2013-05-11 23:40:21 gmaxwell has quit (Changing host)
4542 2013-05-11 23:40:21 gmaxwell has joined
4543 2013-05-11 23:41:18 resinate has joined
4544 2013-05-11 23:41:24 NxTitle_ has joined
4545 2013-05-11 23:41:35 NxTitle has quit (Disconnected by services)
4546 2013-05-11 23:41:37 <sipa> ghash: cd src; make -f makefile.unix bitcoind
4547 2013-05-11 23:41:37 Corndawg has joined
4548 2013-05-11 23:41:58 NxTitle_ is now known as NxTitle
4549 2013-05-11 23:42:03 NxTitle has quit (Changing host)
4550 2013-05-11 23:42:03 NxTitle has joined
4551 2013-05-11 23:42:12 skeledrew1 has joined
4552 2013-05-11 23:42:46 <ghash>  thank you sipa, I'll report in again!
4553 2013-05-11 23:43:00 SkillsToShow_ has joined
4554 2013-05-11 23:43:03 rdymac has quit (Changing host)
4555 2013-05-11 23:43:03 rdymac has joined
4556 2013-05-11 23:43:12 <cjd> ghash: sorry, was away
4557 2013-05-11 23:43:36 Guest92590 is now known as EvanR
4558 2013-05-11 23:43:40 EvanR has quit (Changing host)
4559 2013-05-11 23:43:40 EvanR has joined
4560 2013-05-11 23:44:34 <ghash> oh no problem :D
4561 2013-05-11 23:44:44 Aexoden_ has joined
4562 2013-05-11 23:44:56 phma has joined
4563 2013-05-11 23:45:00 ido has quit (Quit: leaving)
4564 2013-05-11 23:45:16 pigeons has joined
4565 2013-05-11 23:45:18 ido has joined
4566 2013-05-11 23:45:26 <cjd> Ok so wild idea, lets use a NOP for an OP_EVAL which is implemented by some bitcoin engines but not intended to be standard.
4567 2013-05-11 23:45:37 knotwork_ has joined
4568 2013-05-11 23:45:41 pigeons is now known as Guest18906
4569 2013-05-11 23:45:58 rdymac has quit (Ping timeout: 245 seconds)
4570 2013-05-11 23:46:33 <sipa> cjd: you mean BIP12?
4571 2013-05-11 23:46:40 <cjd> mmm
4572 2013-05-11 23:46:44 jiffe98 has joined
4573 2013-05-11 23:46:50 sbbodhtimrj has joined
4574 2013-05-11 23:46:58 parus_ has joined
4575 2013-05-11 23:47:09 <cjd> sort of
4576 2013-05-11 23:47:14 avarab has joined
4577 2013-05-11 23:47:21 gonffen has joined
4578 2013-05-11 23:47:30 <gmaxwell> What do you mean sort of?
4579 2013-05-11 23:47:30 jchp_ has joined
4580 2013-05-11 23:47:35 <cjd> Obvious example is sorting/defragmenting colorcoins... I have 10 inputs and each one has a few colorsatoshis and I need to securely communicate to another colorcoin impls that I want these satoshis to be shuffled over here and those ones shuffled over there.
4581 2013-05-11 23:47:45 cmiller has joined
4582 2013-05-11 23:47:50 <cjd> This is not information which traditional bitcoinds should know or care about
4583 2013-05-11 23:47:57 gonffen has quit (Changing host)
4584 2013-05-11 23:47:57 gonffen has joined
4585 2013-05-11 23:48:19 <sipa> if it's not information necessary for validating transactions, it doesn't belong in the chain
4586 2013-05-11 23:48:51 cut_ has joined
4587 2013-05-11 23:48:54 sturles_ has joined
4588 2013-05-11 23:48:55 guest892835 has joined
4589 2013-05-11 23:48:55 <cjd> so I push a script in my own scripting language on to the stack and use OP_APPLICATION_SPECIFIC_EVAL and everyone else ignores it
4590 2013-05-11 23:49:02 Nesetalis has joined
4591 2013-05-11 23:49:18 ido has quit (Client Quit)
4592 2013-05-11 23:49:29 Cusipzzz_ has joined
4593 2013-05-11 23:49:31 <cjd> alternatively I could push the hash of some external data onto the stack then drop it and my nodes are happy because they can authenticate the script which is hosted elsewhere...
4594 2013-05-11 23:49:31 msiren_ has joined
4595 2013-05-11 23:49:35 ido has joined
4596 2013-05-11 23:49:37 warren_2 has joined
4597 2013-05-11 23:49:38 grubles_ has joined
4598 2013-05-11 23:49:40 bd___ has joined
4599 2013-05-11 23:49:51 grubles_ is now known as Guest18743
4600 2013-05-11 23:50:48 Corndawg_ has quit (Ping timeout: 264 seconds)
4601 2013-05-11 23:50:58 cut_ is now known as cut
4602 2013-05-11 23:50:58 sbbodhtimrj is now known as jrmithdobbs
4603 2013-05-11 23:50:58 warren_2 is now known as warren
4604 2013-05-11 23:50:58 warren has quit (Changing host)
4605 2013-05-11 23:51:00 rdymac has joined
4606 2013-05-11 23:52:02 Guest73014 has quit (Quit: do coders dream of sheep()?)
4607 2013-05-11 23:52:03 JDuke128_ has quit (Quit: Computer has gone to sleep.)
4608 2013-05-11 23:53:05 Diablo-D3 has joined
4609 2013-05-11 23:53:47 OpenOcean has joined
4610 2013-05-11 23:53:49 roland has quit (Ping timeout: 276 seconds)
4611 2013-05-11 23:53:54 Breign is now known as Blackreign
4612 2013-05-11 23:54:09 CodesInChaos has quit (Ping timeout: 256 seconds)
4613 2013-05-11 23:54:09 <ghash> hey guys thank you
4614 2013-05-11 23:54:13 <ghash> it seems like finally running
4615 2013-05-11 23:54:16 sud3n has joined
4616 2013-05-11 23:54:17 <cjd> cool
4617 2013-05-11 23:54:22 hsmiths has quit (Read error: Connection reset by peer)
4618 2013-05-11 23:54:22 <ghash> cjd, sipa
4619 2013-05-11 23:54:26 <ghash> :)
4620 2013-05-11 23:54:37 <sipa> next time, read the readme :)
4621 2013-05-11 23:54:42 hsmiths has joined
4622 2013-05-11 23:54:55 <cjd> in his defense, building from source is not trivial
4623 2013-05-11 23:55:00 <cjd> and there are a lot of readmes out there
4624 2013-05-11 23:55:00 sdfsdf has joined
4625 2013-05-11 23:55:05 nsh_ has joined
4626 2013-05-11 23:55:16 savethei_ has quit (Quit: Computer has gone to sleep.)
4627 2013-05-11 23:55:30 theorb has joined
4628 2013-05-11 23:55:44 hopey has joined
4629 2013-05-11 23:55:52 jercos has joined
4630 2013-05-11 23:56:24 nsh_ has quit (Changing host)
4631 2013-05-11 23:56:24 nsh_ has joined
4632 2013-05-11 23:56:28 sacarlson1 has joined
4633 2013-05-11 23:56:30 nsh has quit (Disconnected by services)
4634 2013-05-11 23:57:55 gonffen_ has joined
4635 2013-05-11 23:58:49 gonffen has quit (Disconnected by services)
4636 2013-05-11 23:58:57 gonffen_ is now known as gonffen
4637 2013-05-11 23:59:02 gonffen has quit (Changing host)
4638 2013-05-11 23:59:02 gonffen has joined
4639 2013-05-11 23:59:32 gritball has joined
4640 2013-05-11 23:59:50 luke-jr__ has joined
4641 2013-05-11 23:59:52 gonffen is now known as gonffen_
4642 2013-05-11 23:59:58 sytse has joined