1 2011-08-25 00:00:04 <luke-jr> Diablo-D3: that is, limit your miner to half or a quarter of the full nonce range, and run it on a specific worker name on Eligius for a few mins
   2 2011-08-25 00:00:27 <Diablo-D3> no.
   3 2011-08-25 00:01:00 <luke-jr> then I'm just going to think you're talking bs again :D
   4 2011-08-25 00:01:16 <mtrlt> you're just talking about different things.
   5 2011-08-25 00:01:24 <luke-jr> maybe
   6 2011-08-25 00:01:26 <Diablo-D3> luke-jr: dude, the world does not fucking rotate around you.
   7 2011-08-25 00:01:29 <dikidera> Diablo-D3:reading on "racing", i will be "pausing" the threads so just ONE thread can set the variable and read it and then all the other threads
   8 2011-08-25 00:01:40 <Diablo-D3> dikidera: wrong. thats a race condition.
   9 2011-08-25 00:01:40 <dikidera> that is, if my theory works
  10 2011-08-25 00:01:47 <vsrinivas> dikidera: hrm, what are you trying to do?
  11 2011-08-25 00:01:52 <Diablo-D3> you need atomic read/write for any of that to work.
  12 2011-08-25 00:02:00 <dikidera> it is similar to luke-jr's proposal
  13 2011-08-25 00:02:05 <dikidera> but its for cpu miners
  14 2011-08-25 00:02:22 <luke-jr> dikidera: my proposal is for CPU miners too… O.o
  15 2011-08-25 00:02:26 <vsrinivas> sorry, haven't read luke-jr's proposal;
  16 2011-08-25 00:02:46 <dikidera> Usually miners today request one work per thread, i'd like to change that
  17 2011-08-25 00:02:51 <dikidera> each thread works on the same work
  18 2011-08-25 00:02:56 <dikidera> but with a small noncerange
  19 2011-08-25 00:03:07 <dikidera> it is but a small improvement
  20 2011-08-25 00:03:22 <dikidera> but it will make > 6 core cpus a bit better hehe
  21 2011-08-25 00:03:40 zapnap has quit (Remote host closed the connection)
  22 2011-08-25 00:03:45 <dikidera> Again, this is for CPUs
  23 2011-08-25 00:03:45 <mtrlt> it'll improve efficiency from 1% to 6% or something like that :P
  24 2011-08-25 00:03:48 <Diablo-D3> luke-jr: why the fuck dont you test it yourself
  25 2011-08-25 00:03:58 <dikidera> mtrlt:depends on how much threads are running
  26 2011-08-25 00:04:39 <dikidera> the more threads, the bigger the effectiveness
  27 2011-08-25 00:04:39 <mtrlt> well yea but for 6-cores.
  28 2011-08-25 00:04:39 <mtrlt> and i do that in my gpu miner :p
  29 2011-08-25 00:04:39 <dikidera> what for?
  30 2011-08-25 00:04:39 <mtrlt> one thread per GPU
  31 2011-08-25 00:04:39 <mtrlt> and 4 GPUs per rig
  32 2011-08-25 00:04:46 <mtrlt> so it really does help
  33 2011-08-25 00:04:48 <dikidera> right, that has no connection to this
  34 2011-08-25 00:04:51 <mtrlt> efficiency is around 1000% :p
  35 2011-08-25 00:05:14 <Diablo-D3> luke-jri: its all done in update and recieveWork
  36 2011-08-25 00:05:17 <dikidera> 3mh/s per core means around 15 minutes to scan all the nonces
  37 2011-08-25 00:05:22 <dikidera> and that is one core
  38 2011-08-25 00:05:32 <dikidera> if we split it, then that is ~7.5
  39 2011-08-25 00:05:35 <vsrinivas> depends on how you're doing things... generally wll need some interlocking when one thread can update some vars and many can read it.
  40 2011-08-25 00:05:35 <dikidera> for 2 threads
  41 2011-08-25 00:05:46 <vsrinivas> pthreads has an rwlock you may want to use
  42 2011-08-25 00:05:59 <mtrlt> yeah and actually i have 3 threads per GPU. so 12 threads are sharing the same work >_>
  43 2011-08-25 00:06:04 <luke-jr> Diablo-D3: I did. it failed.
  44 2011-08-25 00:06:17 <Diablo-D3> ha ha you fail
  45 2011-08-25 00:06:24 <dikidera> mtrlt:that seems kinda...stupid
  46 2011-08-25 00:06:36 <dikidera> the CPU has X physical cores
  47 2011-08-25 00:06:38 <Diablo-D3> theres a line that says base + delta > TWO32 or something like that
  48 2011-08-25 00:06:39 <dikidera> the GPU is one
  49 2011-08-25 00:06:48 <dikidera> thus one thread is good
  50 2011-08-25 00:06:57 <dikidera> unless the gpu yields more mh/s with more threads
  51 2011-08-25 00:06:57 <mtrlt> dikidera: no, it's actually faster that way. when thread 1 is still processing information, thread 2 puts another work on the gpu.
  52 2011-08-25 00:07:03 <Diablo-D3> you want to change TWO32 to the variable that has the shit from that header
  53 2011-08-25 00:07:05 <mtrlt> at least that's my hypothesis :P
  54 2011-08-25 00:07:16 <luke-jr> vsrinivas: https://en.bitcoin.it/wiki/Getwork#noncerange
  55 2011-08-25 00:07:17 <Diablo-D3> and base = 0 needs to be changed to the lower limit
  56 2011-08-25 00:07:37 <luke-jr> I think the examples are probably far better than my failure of an explanation
  57 2011-08-25 00:07:48 Rabbit67890_ has joined
  58 2011-08-25 00:07:52 <dikidera> small suggestion, i doubt that in the next 2 quindecillion hashes we will find a hash with nonce < 1 mill
  59 2011-08-25 00:08:01 <dikidera> so isnt it better to just set the base nonce to a bit higher
  60 2011-08-25 00:08:07 Rabbit67890_ has quit (Client Quit)
  61 2011-08-25 00:08:14 <luke-jr> …………..
  62 2011-08-25 00:08:17 <mtrlt> umh
  63 2011-08-25 00:08:21 <mtrlt> every nonce is just as probable
  64 2011-08-25 00:08:31 <dikidera> yup, but the faster the better
  65 2011-08-25 00:08:40 <mtrlt> you won't hash any faster
  66 2011-08-25 00:08:56 <dikidera> i've done some research
  67 2011-08-25 00:09:03 <mtrlt> i've actually coded a miner from scratch
  68 2011-08-25 00:09:11 <mtrlt> and understand how shit works
  69 2011-08-25 00:09:12 <dikidera> and found out that very rarely a hash is found with a nonce near 25 mills
  70 2011-08-25 00:09:20 <luke-jr> ………….
  71 2011-08-25 00:09:24 <mtrlt> well duh, of course <25M is less probable than >25M
  72 2011-08-25 00:09:25 <copumpkin> ..................
  73 2011-08-25 00:09:33 <mtrlt> but individual values are what matter
  74 2011-08-25 00:09:36 <dikidera> in fact, i havent seen such a hash
  75 2011-08-25 00:09:38 <mtrlt> and every value is equally probable
  76 2011-08-25 00:09:40 <Diablo-D3> you know what.
  77 2011-08-25 00:09:44 <mtrlt> oh, have you seen 587183671?
  78 2011-08-25 00:09:56 <mtrlt> just as probable as 281
  79 2011-08-25 00:09:59 * Diablo-D3 just ends bitcoin development forever.
  80 2011-08-25 00:10:17 <copumpkin> Diablo-D3: too sad about steve jobs resigning, eh?
  81 2011-08-25 00:10:21 <copumpkin> lots of people are
  82 2011-08-25 00:10:23 <dikidera> i am just saying
  83 2011-08-25 00:10:25 <copumpkin> life just ain't worth living anymore
  84 2011-08-25 00:10:33 <Diablo-D3> copumpkin: fuck that dude
  85 2011-08-25 00:10:33 theorb has joined
  86 2011-08-25 00:10:36 <Diablo-D3> wake me when ellison retires
  87 2011-08-25 00:10:40 <dikidera> for solo minting i'd not touch the nonces
  88 2011-08-25 00:10:44 <Diablo-D3> or dies
  89 2011-08-25 00:10:47 <dikidera> but for pooling, fuck them 25 mills
  90 2011-08-25 00:10:48 <Diablo-D3> preferably, dies
  91 2011-08-25 00:10:53 <luke-jr> out of 65536 valid shares, the average nonce is 80007aad :P
  92 2011-08-25 00:10:56 <phantomcircuit> dikidera, just stop talking please
  93 2011-08-25 00:11:06 <mtrlt> dikidera: you just don't understand because you don't read anything. you just imagine something and decide "that's the truth"
  94 2011-08-25 00:11:13 <dikidera> imagine?
  95 2011-08-25 00:11:17 <imsaguy> haha
  96 2011-08-25 00:11:17 <dikidera> its from experimenting
  97 2011-08-25 00:11:22 theorbtwo has quit (Ping timeout: 264 seconds)
  98 2011-08-25 00:11:24 <dikidera> and i've done that a lot
  99 2011-08-25 00:11:25 <mtrlt> understand the theory behind it
 100 2011-08-25 00:11:26 <phantomcircuit> facepalm
 101 2011-08-25 00:11:29 theorb is now known as theorbtwo
 102 2011-08-25 00:11:34 <mtrlt> and understand that what you're suggesting does not help in any way
 103 2011-08-25 00:11:46 ppr is now known as peper
 104 2011-08-25 00:11:55 <dikidera> it will for the cpu by decreasing the nonces scan time by a few percent
 105 2011-08-25 00:11:58 Rabbit67890_ has joined
 106 2011-08-25 00:12:03 <mtrlt> startled realization: i'm trying to have a sensible conversation with diki
 107 2011-08-25 00:12:13 Rabbit67890 has quit (Ping timeout: 268 seconds)
 108 2011-08-25 00:12:13 Rabbit67890_ is now known as Rabbit67890
 109 2011-08-25 00:12:28 <phantomcircuit> dikidera, just stop talking please
 110 2011-08-25 00:12:35 <mtrlt> dikidera: no it won't
 111 2011-08-25 00:12:35 <dikidera> phantomcircuit:same goes to you
 112 2011-08-25 00:12:43 <dikidera> mtrlt:really?
 113 2011-08-25 00:12:53 <mtrlt> yes.
 114 2011-08-25 00:13:05 <phantomcircuit> dikidera, just stop talking please
 115 2011-08-25 00:13:06 <mtrlt> because every nonce is equally probable to be a share/block
 116 2011-08-25 00:13:10 <mtrlt> phantomcircuit: stfu
 117 2011-08-25 00:13:11 <dikidera> so if i set start nonce to 0 and end nonce to 2, the miner wouldnt use them in < 1 second and request the next work?
 118 2011-08-25 00:13:16 <phantomcircuit> mtrlt, lol
 119 2011-08-25 00:13:23 <mtrlt> dikidera: of course it would
 120 2011-08-25 00:13:28 <dikidera> same thing
 121 2011-08-25 00:13:30 <mtrlt> dikidera: but it wouldn't exactly be an optimization, now would it
 122 2011-08-25 00:13:34 <dikidera> i'd rather lose a few probabilities
 123 2011-08-25 00:13:38 <dikidera> and go to the next work
 124 2011-08-25 00:13:40 <mtrlt> it would just cause the miner to get work more often
 125 2011-08-25 00:13:42 <dikidera> than wait for it to go stale
 126 2011-08-25 00:13:43 <mtrlt> which strains the pool
 127 2011-08-25 00:13:50 <dikidera> i dont care for the pool
 128 2011-08-25 00:13:58 <dikidera> the operator will deal with it
 129 2011-08-25 00:14:05 <dikidera> earning money is not easy
 130 2011-08-25 00:14:07 <mtrlt> at the same time it would not make the chance of you finding a share any better
 131 2011-08-25 00:14:14 <mtrlt> or any worse for that matter
 132 2011-08-25 00:14:16 <mtrlt> it would be exactly the same
 133 2011-08-25 00:14:23 <luke-jr> dikidera: wtf?
 134 2011-08-25 00:14:25 <dikidera> ah well, we wouldnt want it to be worse now
 135 2011-08-25 00:14:27 <phantomcircuit> dikidera, what you're suggesting would make the miners *slower* because it would end up spending a higher % of it's time waiting for a new work unit
 136 2011-08-25 00:14:29 <mtrlt> (assuming getwork takes 0)
 137 2011-08-25 00:14:29 <luke-jr> dikidera: the *miner* earns money, not the pool operator
 138 2011-08-25 00:14:30 <b4epoche_> the operator will deal with it?  and we're left dealing with you?
 139 2011-08-25 00:14:41 <mtrlt> (if getwork takes longer than 0 milliseconds, it's strictly worse)
 140 2011-08-25 00:14:42 <dikidera> luke-jr:fees
 141 2011-08-25 00:14:46 <luke-jr> dikidera: what fees?
 142 2011-08-25 00:14:51 <luke-jr> dikidera: not my fault you use crappy pools :p
 143 2011-08-25 00:14:54 <dikidera> erm, donation or whatever
 144 2011-08-25 00:15:05 <mtrlt> tx fees :-P
 145 2011-08-25 00:15:14 <mtrlt> get a can of coke every two years
 146 2011-08-25 00:15:14 <dikidera> crappy pools? what the fuck are u talking about?
 147 2011-08-25 00:15:15 <luke-jr> dikidera: donations don't cover much
 148 2011-08-25 00:15:24 <luke-jr> dikidera: pools with big fees
 149 2011-08-25 00:15:34 <luke-jr> I don't know *any* pool with fees so large they make more money than the miner
 150 2011-08-25 00:15:50 <dikidera> deepbit?
 151 2011-08-25 00:15:55 <luke-jr> they take at most 10%
 152 2011-08-25 00:15:57 <dikidera> they mint blocks faster
 153 2011-08-25 00:16:00 <luke-jr> that's 10% of what the miner earns
 154 2011-08-25 00:16:03 fabianhjr__ has joined
 155 2011-08-25 00:16:12 <dikidera> so 10k users * 10% = profit???
 156 2011-08-25 00:16:20 <luke-jr> not compared to the miners' profit
 157 2011-08-25 00:17:20 <fabianhjr__> makomk: you there? I finally used your tool(sudo ./recover-wallet /dev/sdb1 recovered-wallet.dat) and I am amazed that it claims to have gotten 3431 keys and the dat file being only 160 KB :/
 158 2011-08-25 00:17:45 <fabianhjr__> I am right now downloading the blockchain so I don't yet know the results.
 159 2011-08-25 00:18:00 <dikidera> luke-jr:my profit?
 160 2011-08-25 00:18:05 <dikidera> its 0.30 on good days
 161 2011-08-25 00:18:09 <fabianhjr__> The recieving address book only has one address.
 162 2011-08-25 00:18:10 <imsaguy> fabianhjr__, downloading the blockchain from BlueMatt's site or from the network?
 163 2011-08-25 00:18:24 <fabianhjr__> imsaguy: from the network
 164 2011-08-25 00:18:26 <dikidera> if that was profit, i'd eat my hat
 165 2011-08-25 00:18:29 <dikidera> oh wait, i dont have one
 166 2011-08-25 00:18:34 <imsaguy> get it over http, must faster.
 167 2011-08-25 00:18:44 <luke-jr> dikidera: and the pool gets 0.03 for that
 168 2011-08-25 00:18:54 <luke-jr> dikidera: clearly you are raking in more
 169 2011-08-25 00:19:23 <imsaguy> fabianhjr__: http://bitcoin.bluematt.me/bitcoin-nightly/blockchain-nightly/
 170 2011-08-25 00:19:26 <luke-jr> dikidera: in any case, if you don't want fees, mine on Eligius :P
 171 2011-08-25 00:19:32 <dikidera> you know what i like about pools, that sometimes by a small coincidence
 172 2011-08-25 00:19:42 <dikidera> they think you have a higher hashrate
 173 2011-08-25 00:19:51 <dikidera> that is because of share submission time
 174 2011-08-25 00:19:58 <dikidera> i like them lucky getworks
 175 2011-08-25 00:20:37 <mtrlt> you can get lucky mining solo too.
 176 2011-08-25 00:20:41 <mtrlt> equally
 177 2011-08-25 00:20:44 <dikidera> i did already
 178 2011-08-25 00:20:48 <dikidera> was a nice feast
 179 2011-08-25 00:20:58 <dikidera> But i need more sadly
 180 2011-08-25 00:21:22 fabianhjr has joined
 181 2011-08-25 00:21:45 <dikidera> Well mining bitcoins is nice, but when you can earn more by mining on the other chains...
 182 2011-08-25 00:21:52 <dikidera> no reason i shouldnt switch
 183 2011-08-25 00:22:00 <imsaguy> are you really earning more?
 184 2011-08-25 00:22:04 <dikidera> yup
 185 2011-08-25 00:22:07 <imsaguy> quantity maybe, but value?
 186 2011-08-25 00:22:12 <dikidera> value is nice
 187 2011-08-25 00:22:15 <dikidera> for now
 188 2011-08-25 00:22:26 <imsaguy> what chains you talking?
 189 2011-08-25 00:22:28 <dikidera> but with ixcoins i was able to make 16 bitcoins in just one day
 190 2011-08-25 00:22:37 <dikidera> with an avg of 0.30 per day
 191 2011-08-25 00:22:46 fabianhjr__ has quit (Ping timeout: 252 seconds)
 192 2011-08-25 00:22:52 <dikidera> i was able to make 5 of i0
 193 2011-08-25 00:23:03 <dikidera> and 1 from solidcoins
 194 2011-08-25 00:23:46 bikcmp has quit (Quit: Reconnecting)
 195 2011-08-25 00:23:52 bikcmp has joined
 196 2011-08-25 00:23:53 <dikidera> i would've made more from solidcoins
 197 2011-08-25 00:24:02 <dikidera> but i sold at 0.001 and the price is 0.005 now
 198 2011-08-25 00:24:08 <dikidera> so i would've made like three times more
 199 2011-08-25 00:24:09 <fabianhjr> BlueMattBot: help
 200 2011-08-25 00:24:10 <BlueMattBot> Available commands:
 201 2011-08-25 00:24:10 <BlueMattBot> abort <job> - specify which job to abort
 202 2011-08-25 00:24:11 <BlueMattBot> alias [<alias> [<command>]] - defines a new alias, deletes one or lists all existing aliases
 203 2011-08-25 00:24:11 <BlueMattBot> botsnack [<snack>] - om nom nom
 204 2011-08-25 00:24:12 <BlueMattBot> build <job> [now|<delay>[s|m|h]] [<parameterkey>=<value>]* - schedule a job build, with standard, custom or no quiet period
 205 2011-08-25 00:24:12 <dikidera> i.e around 5
 206 2011-08-25 00:24:12 <BlueMattBot> cb - list jobs which are currently in progress
 207 2011-08-25 00:24:13 <BlueMattBot> comment <job> <build-#> <comment> - adds a description to a build
 208 2011-08-25 00:24:13 <BlueMattBot> currentlyBuilding - list jobs which are currently in progress
 209 2011-08-25 00:24:14 <BlueMattBot> h [<job>|-v <view>] - show the health of a specific job, jobs in a view or all jobs
 210 2011-08-25 00:24:14 <BlueMattBot> health [<job>|-v <view>] - show the health of a specific job, jobs in a view or all jobs
 211 2011-08-25 00:24:15 <BlueMattBot> jobs [<job>|-v <view>] - show the status of a specific job, jobs in a view or all jobs
 212 2011-08-25 00:24:15 <BlueMattBot> q - show the state of the build queue
 213 2011-08-25 00:24:15 <dikidera> ZOMG
 214 2011-08-25 00:24:16 <BlueMattBot> queue - show the state of the build queue
 215 2011-08-25 00:24:16 <BlueMattBot> s [<job>|-v <view>] - show the status of a specific job, jobs in a view or all jobs
 216 2011-08-25 00:24:17 <BlueMattBot> schedule <job> [now|<delay>[s|m|h]] [<parameterkey>=<value>]* - schedule a job build, with standard, custom or no quiet period
 217 2011-08-25 00:24:17 <BlueMattBot> status [<job>|-v <view>] - show the status of a specific job, jobs in a view or all jobs
 218 2011-08-25 00:24:17 bikcmp is now known as Guest29764
 219 2011-08-25 00:24:18 <BlueMattBot> testresult [<job>|-v <view>] - show the test results of a specific job, jobs in a view or all jobs
 220 2011-08-25 00:24:18 <BlueMattBot> userstat <username> - prints information about a Jenkins user
 221 2011-08-25 00:24:25 <Backburn> it burns!
 222 2011-08-25 00:24:31 Guest29764 has quit (Changing host)
 223 2011-08-25 00:24:31 Guest29764 has joined
 224 2011-08-25 00:24:58 Guest29764 is now known as bikcmp
 225 2011-08-25 00:25:07 theymos has joined
 226 2011-08-25 00:26:28 <fabianhjr> Damn, now I got I/O errors.
 227 2011-08-25 00:26:35 <fabianhjr> BRB Rebooting
 228 2011-08-25 00:26:44 fabianhjr has quit (Quit: Page closed)
 229 2011-08-25 00:26:53 <imsaguy> ;;later tell BlueMatt Could you make bluemattbot put its help into a pm/notice rather than to the whole room? It seems a bit long.
 230 2011-08-25 00:26:54 <gribble> The operation succeeded.
 231 2011-08-25 00:27:02 <phantomcircuit> rofl
 232 2011-08-25 00:27:14 <imsaguy> just sayin
 233 2011-08-25 00:27:18 <phantomcircuit> BlueMattBot, botsnack peanuts
 234 2011-08-25 00:27:18 <BlueMattBot> phantomcircuit: thanks a lot! om nom nom. I could eat peanuts all day long
 235 2011-08-25 00:27:32 <phantomcircuit> oh dear i cant help myself here
 236 2011-08-25 00:27:33 Lopuz has joined
 237 2011-08-25 00:27:33 <phantomcircuit> BlueMattBot, botsnack penis
 238 2011-08-25 00:27:34 <BlueMattBot> phantomcircuit: yummy! I just love penis!
 239 2011-08-25 00:27:56 <imsaguy> one more reason we can't have nice things
 240 2011-08-25 00:28:05 <phantomcircuit> rofl
 241 2011-08-25 00:31:20 larsivi has joined
 242 2011-08-25 00:32:19 owowo has joined
 243 2011-08-25 00:32:31 <CIA-101> bitcoin: Con Kolivas * r81aedc972a67 cgminer/main.c: Add message about needing one server.
 244 2011-08-25 00:32:31 <CIA-101> bitcoin: Con Kolivas * ra4ec961eccf9 cgminer/main.c: We can queue all the necessary work without hitting frequent stales now with the time and string stale protection active all the time. This prevents a pool being falsely labelled as not providing work fast enough.
 245 2011-08-25 00:33:32 Cablesaurus has joined
 246 2011-08-25 00:33:32 Cablesaurus has quit (Changing host)
 247 2011-08-25 00:33:33 Cablesaurus has joined
 248 2011-08-25 00:34:16 egecko has joined
 249 2011-08-25 00:35:08 mtve- has joined
 250 2011-08-25 00:35:10 gwillen has quit (Read error: Operation timed out)
 251 2011-08-25 00:35:19 gwillen has joined
 252 2011-08-25 00:35:38 mtve has quit (Ping timeout: 252 seconds)
 253 2011-08-25 00:36:02 wolfspraul has joined
 254 2011-08-25 00:37:05 Lopuz has quit (Ping timeout: 276 seconds)
 255 2011-08-25 00:38:11 someone42 has quit (Read error: Connection reset by peer)
 256 2011-08-25 00:39:21 larsivi has quit (Ping timeout: 268 seconds)
 257 2011-08-25 00:39:25 mtve- has quit (Ping timeout: 260 seconds)
 258 2011-08-25 00:41:17 LobsterMan has quit (Ping timeout: 250 seconds)
 259 2011-08-25 00:41:37 Lopuz has joined
 260 2011-08-25 00:41:42 someone42 has joined
 261 2011-08-25 00:43:43 normanrichards has quit (Quit: normanrichards)
 262 2011-08-25 00:44:15 mtve has joined
 263 2011-08-25 00:46:07 zapnap has joined
 264 2011-08-25 00:46:10 sneak has quit (Ping timeout: 264 seconds)
 265 2011-08-25 00:48:58 sneak has joined
 266 2011-08-25 00:48:58 sneak has quit (Changing host)
 267 2011-08-25 00:48:58 sneak has joined
 268 2011-08-25 00:49:17 <b4epoche_> woohoo…  I can get $10 for being spammed by classmates.com
 269 2011-08-25 00:49:45 <b4epoche_> and the lawyers get $1M
 270 2011-08-25 00:50:48 <nanotube> the main point of the class action suit is not for you to make a crapload of money, but for the defendant to lose a crapload of money.
 271 2011-08-25 00:51:11 <nanotube> (and the nice lawyer payday is just to compensate them for all their effort)
 272 2011-08-25 00:51:12 <Diablo-D3> but neither happened.
 273 2011-08-25 00:51:17 <b4epoche_> and the lawyers to make a crapload of money
 274 2011-08-25 00:51:24 <b4epoche_> and, yes, I am aware...
 275 2011-08-25 00:51:33 <b4epoche_> and won't be filing my claim for $10
 276 2011-08-25 00:51:59 * b4epoche_ would like to know the hourly rate the lawyers were charging
 277 2011-08-25 00:52:01 <nanotube> Diablo-D3: well, paying 2-3M for spam is quite some discouragement, don't you think?
 278 2011-08-25 00:52:28 <Diablo-D3> not when they made several times over that.
 279 2011-08-25 00:52:33 <dikidera> nanotube:Anonymous wouldnt like that
 280 2011-08-25 00:52:42 fahadsadah has quit (Quit: ZNC - http://znc.sourceforge.net)
 281 2011-08-25 00:52:47 <nanotube> Diablo-D3: well yea... but it's better than nothing.
 282 2011-08-25 00:52:51 <nanotube> anyway, bbl food
 283 2011-08-25 00:52:56 <nanotube> dikidera: anonymous doesn't spam. :P
 284 2011-08-25 00:52:59 bikcmp has quit (Read error: Operation timed out)
 285 2011-08-25 00:53:05 bikcmp has joined
 286 2011-08-25 00:53:17 <b4epoche_> but I'm really not sure what classmates spammed me with…  seems like I should start a lawsuit against LinkedIn
 287 2011-08-25 00:53:28 backwardation25 has joined
 288 2011-08-25 00:53:30 bikcmp is now known as Guest73684
 289 2011-08-25 00:53:55 <b4epoche_> I think I get more crap-mail from them than I ever did from classmates
 290 2011-08-25 00:54:08 normanrichards has joined
 291 2011-08-25 00:54:12 <Diablo-D3> I use gmail
 292 2011-08-25 00:54:12 <Diablo-D3> so hah
 293 2011-08-25 00:54:27 <b4epoche_> and gmail filters linkedin?
 294 2011-08-25 00:54:39 asherkin has joined
 295 2011-08-25 00:54:52 <Diablo-D3> it filters spam.
 296 2011-08-25 00:55:02 Guest73684 has quit (Changing host)
 297 2011-08-25 00:55:02 Guest73684 has joined
 298 2011-08-25 00:55:06 Guest73684 is now known as bikcmp
 299 2011-08-25 00:55:10 <b4epoche_> eh, yea, obviously…  like everyone else
 300 2011-08-25 00:55:19 bikcmp has left ()
 301 2011-08-25 00:55:53 <b4epoche_> but LinkedIn and ClassMates spam is not your typical spam
 302 2011-08-25 00:55:54 JStoker has joined
 303 2011-08-25 00:56:04 <jrmithdobbs> new toys are fun
 304 2011-08-25 00:56:18 <b4epoche_> HP Tablet?
 305 2011-08-25 00:56:28 <jrmithdobbs> 00:0c.0 Co-processor: Hifn Inc. 7955 Security Processor
 306 2011-08-25 00:56:31 <jrmithdobbs> better ;p
 307 2011-08-25 00:57:04 fahadsadah has joined
 308 2011-08-25 00:58:00 <b4epoche_> what the heck is that?
 309 2011-08-25 00:59:48 Uri2011 has quit (Ping timeout: 252 seconds)
 310 2011-08-25 01:00:35 <jrmithdobbs> hw crypto accel
 311 2011-08-25 01:01:09 <jrmithdobbs> can do aes256-cbc at 240Mbit (it's in my router which is a geode 450mhz)
 312 2011-08-25 01:01:39 <jrmithdobbs> and bunch of bignum funcs and a hw rng
 313 2011-08-25 01:01:46 <jrmithdobbs> and other stuff
 314 2011-08-25 01:02:11 <jrmithdobbs> forget what all atm, fully supported by *bsd /dev/crypto for userland openssl accel ;p
 315 2011-08-25 01:02:30 <b4epoche_> and you plan to use it for what?
 316 2011-08-25 01:02:47 denisx has quit (Quit: denisx)
 317 2011-08-25 01:02:48 noagendamarket has joined
 318 2011-08-25 01:03:51 hahuang65 has quit (Quit: Computer has gone to sleep.)
 319 2011-08-25 01:03:56 zeropointo has joined
 320 2011-08-25 01:06:08 <b4epoche_> too bad it doesn't do sha2
 321 2011-08-25 01:07:23 <jrmithdobbs> for making my p2p openvpn tunnel stop dropping every 1/10-1/20 times on key renewal
 322 2011-08-25 01:07:26 <jrmithdobbs> lol
 323 2011-08-25 01:07:35 <jrmithdobbs> because: geode450 + 4096bit rsa certs == fail
 324 2011-08-25 01:08:02 <jrmithdobbs> and more good entropy is never a bad thing, after all
 325 2011-08-25 01:08:56 <jrmithdobbs> b4epoche_: it does do sha2 iirc
 326 2011-08-25 01:09:40 <jrmithdobbs> oh, no, just sha1
 327 2011-08-25 01:09:45 <b4epoche_> http://www.hifn.com/Common/Content/Document.ashx?id=20768&LanguageId=1033
 328 2011-08-25 01:10:28 zeropointo has quit (Remote host closed the connection)
 329 2011-08-25 01:10:36 <b4epoche_> if it did sha2 could it be used for mining?
 330 2011-08-25 01:11:05 <jrmithdobbs> not very efficiently
 331 2011-08-25 01:12:39 <jrmithdobbs> pretty sure it's using the same design that artforzz did for the sha2 portion of his asic
 332 2011-08-25 01:12:58 <jrmithdobbs> the chips they make that do do sha2, anyways
 333 2011-08-25 01:13:02 <b4epoche_> hmm…  could someone use secure routers for clandestine mining?
 334 2011-08-25 01:13:05 Herodes has quit (Quit: Leaving)
 335 2011-08-25 01:13:23 <vsrinivas> too slow.
 336 2011-08-25 01:13:39 <jrmithdobbs> b4epoche_: there's not enough of them on the chip
 337 2011-08-25 01:13:42 <jrmithdobbs> so not really
 338 2011-08-25 01:13:56 <b4epoche_> I guess it would be hard to get a complete header in and out too
 339 2011-08-25 01:14:11 <jrmithdobbs> nah they have bignum functions
 340 2011-08-25 01:14:16 <jrmithdobbs> that's not the problem ;p
 341 2011-08-25 01:14:30 <b4epoche_> no, I mean if you didn't control the router
 342 2011-08-25 01:14:41 <vsrinivas> anyone here mining w/ fpgas?
 343 2011-08-25 01:14:43 <jrmithdobbs> oh ya definitely
 344 2011-08-25 01:14:50 <jrmithdobbs> vsrinivas: #bitcoin-mining
 345 2011-08-25 01:15:00 <vsrinivas> jrmithdobbs: thanks;
 346 2011-08-25 01:15:48 <jrmithdobbs> wow, that shit is fast. the make test the debian package is doing just blips right past the aes and other acceled stuff
 347 2011-08-25 01:15:58 Darnoth has quit (Ping timeout: 252 seconds)
 348 2011-08-25 01:16:17 <vsrinivas> jrmithdobbs: the via chips do that too :)
 349 2011-08-25 01:16:23 toffoo has quit ()
 350 2011-08-25 01:16:32 <jrmithdobbs> they don't on linux
 351 2011-08-25 01:16:38 <vsrinivas> o?
 352 2011-08-25 01:16:50 <jrmithdobbs> because linux's hw crypto support is crap
 353 2011-08-25 01:17:30 Xunie has quit (Ping timeout: 260 seconds)
 354 2011-08-25 01:17:52 <vsrinivas> interesting, okay; ... (iiuc opencrypto works pretty well on *bsd; on dfly we even use >1 cpu if there's no h/w support)
 355 2011-08-25 01:18:23 <jrmithdobbs> vsrinivas: someone's made a /dev/crypto module that seems to work alright but it's not been merged upstream yet
 356 2011-08-25 01:18:36 <jrmithdobbs> and previous attempts at getting full ports of the openbsd hw crypto stuff merged failed repeatedly
 357 2011-08-25 01:18:39 <luke-jr> jrmithdobbs: cpuminer has native support
 358 2011-08-25 01:18:54 <vsrinivas> oh :\
 359 2011-08-25 01:21:16 devon_hillard has quit (Read error: Connection reset by peer)
 360 2011-08-25 01:22:57 toffoo has joined
 361 2011-08-25 01:23:33 backwardation25 has quit (Remote host closed the connection)
 362 2011-08-25 01:24:32 theymos has quit (Remote host closed the connection)
 363 2011-08-25 01:28:23 zapnap has quit (Remote host closed the connection)
 364 2011-08-25 01:29:56 zeropointo has joined
 365 2011-08-25 01:32:52 pixglen has joined
 366 2011-08-25 01:35:35 <b4epoche_> damn it, why does mtgox websocket go down whenever I'm trying to test stuff?
 367 2011-08-25 01:36:01 Cablesaurus has quit (Quit: Easy as 3.14159265358979323846...)
 368 2011-08-25 01:36:11 <imsaguy> maybe you're crashing it?
 369 2011-08-25 01:36:52 <b4epoche_> I'd like to think I have that kind of power
 370 2011-08-25 01:37:26 Cusipzzz has joined
 371 2011-08-25 01:37:32 <b4epoche_> hmm…  looks like I took down mtgox.com too
 372 2011-08-25 01:38:24 <jrmithdobbs> quality
 373 2011-08-25 01:38:54 <imsaguy> someone forgot to pay the light bill
 374 2011-08-25 01:38:56 Cablesaurus has joined
 375 2011-08-25 01:38:56 Cablesaurus has quit (Changing host)
 376 2011-08-25 01:38:56 Cablesaurus has joined
 377 2011-08-25 01:39:21 <jrmithdobbs> spent too much money on his 64core 96G/ram servers to be able to afford it
 378 2011-08-25 01:39:22 <jrmithdobbs> ;p
 379 2011-08-25 01:41:06 eoss has joined
 380 2011-08-25 01:41:06 eoss has quit (Changing host)
 381 2011-08-25 01:41:06 eoss has joined
 382 2011-08-25 01:42:23 spenvo has joined
 383 2011-08-25 01:45:34 <phantomcircuit> jrmithdobbs, rofl
 384 2011-08-25 01:47:03 <jrmithdobbs> phantomcircuit: see my fun new toy? https://twitter.com/jrmithdobbs/status/106511583487860736
 385 2011-08-25 01:48:07 theorb has joined
 386 2011-08-25 01:48:21 theorbtwo has quit (Ping timeout: 258 seconds)
 387 2011-08-25 01:48:31 theorb is now known as theorbtwo
 388 2011-08-25 01:50:35 spenvo has quit (Quit: This computer has gone to sleep)
 389 2011-08-25 01:55:32 shLONG has joined
 390 2011-08-25 01:55:59 Runnigan has quit ()
 391 2011-08-25 01:56:35 coblee has quit (2!~chocobo@nat/google/x-nshufclxqewlnyrw|Ping timeout: 260 seconds)
 392 2011-08-25 02:01:59 brunner has quit (Quit: Leaving.)
 393 2011-08-25 02:02:55 noagendamarket has quit (Ping timeout: 258 seconds)
 394 2011-08-25 02:05:48 owowo has quit (Quit: Leaving)
 395 2011-08-25 02:08:32 huk has quit (Read error: Connection reset by peer)
 396 2011-08-25 02:09:20 huk has joined
 397 2011-08-25 02:11:34 BTCTrader has joined
 398 2011-08-25 02:23:05 Cory has quit (Ping timeout: 240 seconds)
 399 2011-08-25 02:23:29 LobsterMan has joined
 400 2011-08-25 02:23:30 LobsterMan has quit (Changing host)
 401 2011-08-25 02:23:30 LobsterMan has joined
 402 2011-08-25 02:30:17 clr_ has joined
 403 2011-08-25 02:31:56 noagendamarket has joined
 404 2011-08-25 02:34:49 <gjs278> ;;bc,stats
 405 2011-08-25 02:34:51 <gribble> Current Blocks: 142466 | Current Difficulty: 1805700.8361937 | Next Difficulty At Block: 143135 | Next Difficulty In: 669 blocks | Next Difficulty In About: 4 days, 11 hours, 2 minutes, and 24 seconds | Next Difficulty Estimate: 1853813.36093974
 406 2011-08-25 02:35:06 hnz has quit (Ping timeout: 240 seconds)
 407 2011-08-25 02:40:23 hnz has joined
 408 2011-08-25 02:43:14 bittwist has quit (Remote host closed the connection)
 409 2011-08-25 02:44:24 brunner has joined
 410 2011-08-25 02:46:54 bittwist has joined
 411 2011-08-25 02:46:54 bittwist has quit (Changing host)
 412 2011-08-25 02:46:54 bittwist has joined
 413 2011-08-25 02:56:08 Cory has joined
 414 2011-08-25 02:56:56 Miner-TE has joined
 415 2011-08-25 03:08:56 Matth1a3 has quit (Ping timeout: 260 seconds)
 416 2011-08-25 03:09:10 johntobey253 has joined
 417 2011-08-25 03:14:25 peterpansen_ has quit (Ping timeout: 252 seconds)
 418 2011-08-25 03:22:13 <Blitzboom> justmoon: what was the name of your project with the online wallet?
 419 2011-08-25 03:23:52 <Blitzboom> nvm, got it
 420 2011-08-25 03:25:39 eoss has quit (Remote host closed the connection)
 421 2011-08-25 03:27:13 peterpansen_ has joined
 422 2011-08-25 03:28:18 asher^ has joined
 423 2011-08-25 03:30:12 Cusipzzz has quit (Quit: KVIrc 4.0.2 Insomnia http://www.kvirc.net/)
 424 2011-08-25 03:33:12 BTCTrader is now known as BTCT_away
 425 2011-08-25 03:36:33 Rabbit67890 has quit (Quit: Rabbit67890)
 426 2011-08-25 03:37:59 ephcon has quit (Ping timeout: 245 seconds)
 427 2011-08-25 03:41:55 dikidera has quit (Ping timeout: 252 seconds)
 428 2011-08-25 03:44:29 Diablo-D3 has quit (Ping timeout: 252 seconds)
 429 2011-08-25 03:47:33 jimon has quit (Ping timeout: 276 seconds)
 430 2011-08-25 03:50:45 Rabbit67890 has joined
 431 2011-08-25 03:51:01 jimon has joined
 432 2011-08-25 03:58:11 Burgundy has quit (Quit: Burgundy)
 433 2011-08-25 03:58:34 Burgundy has joined
 434 2011-08-25 04:01:00 Miner-TE has quit (Quit: Page closed)
 435 2011-08-25 04:06:34 Matth1a3 has joined
 436 2011-08-25 04:11:54 Rabbit67890 has quit (Quit: Rabbit67890)
 437 2011-08-25 04:12:39 Le-Shrak has joined
 438 2011-08-25 04:13:32 Le-Shrak has left ()
 439 2011-08-25 04:15:25 ephcon has joined
 440 2011-08-25 04:17:18 <CIA-101> bitcoin: Con Kolivas * r413d97..ebf799 cgminer/ (9 files in 2 dirs): (5 commits)
 441 2011-08-25 04:19:39 Rabbit67890 has joined
 442 2011-08-25 04:20:03 sacarlson has quit (Ping timeout: 276 seconds)
 443 2011-08-25 04:23:15 MC1984 has quit (Quit: Leaving)
 444 2011-08-25 04:24:02 johntobey253 has quit (Ping timeout: 252 seconds)
 445 2011-08-25 04:25:22 kisom_devious has quit (Ping timeout: 246 seconds)
 446 2011-08-25 04:26:17 kisom_devious has joined
 447 2011-08-25 04:26:47 kisom_devious is now known as Guest32678
 448 2011-08-25 04:31:46 dvide has quit ()
 449 2011-08-25 04:32:35 Maged has joined
 450 2011-08-25 04:34:03 sacarlson has joined
 451 2011-08-25 04:35:17 gjs278 has quit (Remote host closed the connection)
 452 2011-08-25 04:41:42 Rabbit67890 has quit (Quit: Rabbit67890)
 453 2011-08-25 04:42:53 agricocb has joined
 454 2011-08-25 04:49:32 Wamo has joined
 455 2011-08-25 04:49:36 <Wamo> Hey guys.  I'm a Comp Sci major working on my own website which will promote Bitcoins by giving them out.  I am looking for people to beta test my system.  Take a look at www.wesmeredith.com/bitbybit if you have 10 seconds to help me out.
 456 2011-08-25 04:50:02 <imsaguy> just did Wamo
 457 2011-08-25 04:50:06 <lfm> wamo what school you go to man?
 458 2011-08-25 04:50:12 <Wamo> Texas A&M
 459 2011-08-25 04:50:50 <lfm> Wamo: cool, where you getting the btc that you are giving out?
 460 2011-08-25 04:50:59 shLONG has quit (Ping timeout: 264 seconds)
 461 2011-08-25 04:51:14 <Wamo> Got a few machines mining
 462 2011-08-25 04:52:10 <CIA-101> bitcoin: Con Kolivas * r3d5f555407cb cgminer/ (configure.ac main.c miner.h ocl.c): Allow a custom kernel path to be entered on the command line.
 463 2011-08-25 04:52:37 Taveren93HGK has joined
 464 2011-08-25 04:53:08 <nanotube> Wamo: "Any user may input their Bitcoin wallet on the submission page to receive .001 BTC for free." <- s/wallet/address/
 465 2011-08-25 04:53:18 <nanotube> otherwise it sounds like you're trying to get people to upload their wallet :P
 466 2011-08-25 04:53:32 <Wamo> lol, your right
 467 2011-08-25 04:53:38 <imsaguy> maybe he is! weirder things have been tried ;)
 468 2011-08-25 04:54:08 <nanotube> haha yea like that "wallet verification" site
 469 2011-08-25 04:54:53 <imsaguy> 'verfied empty'
 470 2011-08-25 04:55:01 <imsaguy> verified*
 471 2011-08-25 04:56:00 <lfm> well the "submitions page" only demands a btc address
 472 2011-08-25 04:56:06 <cjdelisle> https://3woapc2khixooeit.tor2web.org/ <-- that one is a joke/lesson
 473 2011-08-25 04:56:22 <Wamo> yeah, its only suppost to ask for the address
 474 2011-08-25 04:56:29 <cjdelisle> you can click the verify button with nothing in it to see the "you idiot" page
 475 2011-08-25 04:56:48 <imsaguy> cjdelisle, it says 503 now
 476 2011-08-25 04:57:00 <imsaguy> just for me?
 477 2011-08-25 04:57:41 <cjdelisle> nop, I spoke too soon, I guess the guy who ran it got bored and killed his tor daemon
 478 2011-08-25 04:57:50 <imsaguy> lol
 479 2011-08-25 04:57:57 <imsaguy> too many idiots
 480 2011-08-25 04:58:00 <lfm> wamo you're taking paypal donations? you know about the paypal clawbacks eh?
 481 2011-08-25 04:58:27 <Wamo> yeah, working on a way to handle that
 482 2011-08-25 04:58:37 Rabbit67890 has joined
 483 2011-08-25 04:58:42 Rabbit67890 has quit (Client Quit)
 484 2011-08-25 04:58:54 <imsaguy> especially donations for bitcoin
 485 2011-08-25 04:59:22 <cjdelisle> well if someone reverses a donation you have not lost much
 486 2011-08-25 04:59:36 <imsaguy> paypal will suspend you if you're using it for bitcoin though
 487 2011-08-25 04:59:46 <imsaguy> so a single reverse will be the least of your issues
 488 2011-08-25 05:00:14 <lfm> I think they consider bitcoin competition and they hate competition
 489 2011-08-25 05:00:21 <phantomcircuit> Wamo, captcha looks weak
 490 2011-08-25 05:00:33 <cjdelisle> paypal will suspend you if  rand() & 0xFF
 491 2011-08-25 05:01:03 <imsaguy> paypal will suspend you if 1
 492 2011-08-25 05:01:05 <Wamo> Yeah, the captcha is weak, but with the ip checking and other behind the scenes scripts running wasn't focusing on it
 493 2011-08-25 05:01:06 <Wamo> for now
 494 2011-08-25 05:01:41 <cjdelisle> He has it working again...
 495 2011-08-25 05:01:42 <cjdelisle> https://3woapc2khixooeit.tor2web.org/dumbass.html
 496 2011-08-25 05:02:31 b4epoche has quit (Ping timeout: 260 seconds)
 497 2011-08-25 05:02:31 b4epoche_ is now known as b4epoche
 498 2011-08-25 05:02:36 <imsaguy> cjdelisle, 503 still
 499 2011-08-25 05:02:51 <lfm> imsguy worked for me
 500 2011-08-25 05:03:02 <imsaguy> werid
 501 2011-08-25 05:03:02 b4epoche_ has joined
 502 2011-08-25 05:03:09 <lfm> imsguy clear  your browser cache maybe
 503 2011-08-25 05:03:29 <imsaguy> I dont wanna close my browser, I got other things going on
 504 2011-08-25 05:03:31 <imsaguy> :p
 505 2011-08-25 05:03:48 <lfm> you can clear your cache without exiting
 506 2011-08-25 05:04:00 Rabbit67890 has joined
 507 2011-08-25 05:04:04 <imsaguy> yes, but I'll lose my session states
 508 2011-08-25 05:04:05 <lfm> on firefox at least
 509 2011-08-25 05:04:20 <lfm> imsguy ya ok, I spoze your right
 510 2011-08-25 05:04:23 <cjdelisle> ctrl+f5?
 511 2011-08-25 05:04:23 <imsaguy> and a different browser completely gives a 503
 512 2011-08-25 05:04:35 <imsaguy> totally different browser gave 503
 513 2011-08-25 05:04:40 <imsaguy> so its not the cache
 514 2011-08-25 05:04:41 <cjdelisle> are you using your own tor node?
 515 2011-08-25 05:04:41 <imsaguy> nbd
 516 2011-08-25 05:04:45 <imsaguy> nope
 517 2011-08-25 05:04:54 <lfm> imsguy you're isp is blocking them?
 518 2011-08-25 05:04:54 <cjdelisle> tor2web? o_O
 519 2011-08-25 05:05:04 <imsaguy> comcast, I get to tor2web
 520 2011-08-25 05:05:09 ThomasV has joined
 521 2011-08-25 05:05:14 <imsaguy> tor2web is showing the 503
 522 2011-08-25 05:05:42 RazielZ has joined
 523 2011-08-25 05:05:50 <imsaguy> I'm not worried abou tit
 524 2011-08-25 05:05:53 <imsaguy> I'll take your word for it
 525 2011-08-25 05:05:59 <cjdelisle> hmm sounds like a tor2web problem which only affects you
 526 2011-08-25 05:06:12 <cjdelisle> like asif they use prolexic or something :P
 527 2011-08-25 05:06:37 Rabbit67890 has quit (Client Quit)
 528 2011-08-25 05:08:29 Rabbit67890 has joined
 529 2011-08-25 05:08:59 <lfm> yay! I got the btc bit from Wamo, thank you!
 530 2011-08-25 05:09:21 <Wamo> NP, thanks for your input on the site
 531 2011-08-25 05:09:44 <Wamo> For anyone that missed it, I am trying to beta test my new BTC giveaway site.  If you have a min please check out www.wesmeredith.com/bitbybit
 532 2011-08-25 05:10:33 Sami345 has quit (Ping timeout: 240 seconds)
 533 2011-08-25 05:10:59 agricocb has quit (Remote host closed the connection)
 534 2011-08-25 05:11:13 <imsaguy> I didn't lfm :(
 535 2011-08-25 05:11:43 <lfm> ;;calc [bc,avgprice]*0.001
 536 2011-08-25 05:11:43 <imsaguy> and I just filled the form out 3 times in a row without an error
 537 2011-08-25 05:11:43 <gribble> Error: "bc,avgprice" is not a valid command.
 538 2011-08-25 05:11:56 <lfm> ;;calc [bc,avgprc]*0.001
 539 2011-08-25 05:11:57 <gribble> Google's calculator didn't come up with anything.
 540 2011-08-25 05:12:04 <nanotube> ;;bc,avgprc
 541 2011-08-25 05:12:05 <gribble> {"USD": {"7d": "11.1592", "30d": "10.3511", "24h": "10.8609"}, "AUD": {"7d": "10.1758", "30d": "10.8153", "24h": "10.2735"}, "BGN": {"7d": "11.2306", "30d": "12.3322", "24h": "11.0000"}, "CNY": {"7d": "70.4771", "30d": "71.6077", "24h": "68.2104"}, "SLL": {"7d": "3021.8059", "30d": "2996.7655", "24h": "2927.1032"}, "BRL": {"7d": "19.3803", "30d": "20.4855"}, "INR": {"7d": "503.8088", (1 more message)
 542 2011-08-25 05:12:10 <nanotube> that's why :)
 543 2011-08-25 05:12:23 <CIA-101> libbitcoin: genjix * r8f4c8d38cfcd / (23 files in 8 dirs): Use const ref everywhere
 544 2011-08-25 05:12:30 <lfm> oh! I thot it was like a single average of them all
 545 2011-08-25 05:13:14 <nanotube> average of 500 rupees and 10 usd is not a very sensible number :)
 546 2011-08-25 05:13:33 <lfm> ;; calc 10.8609 * 0.001
 547 2011-08-25 05:13:33 <gribble> 10.8609 * 0.001 = 0.0108609
 548 2011-08-25 05:13:52 <lfm> so about a penny anyway
 549 2011-08-25 05:14:06 <nanotube> there's ,,bc,24hprc for the 24hour avg in usd. :)
 550 2011-08-25 05:14:07 <gribble> 10.8604
 551 2011-08-25 05:14:55 <lfm> ok so its worth ,,calc [bc,24hprc]*0.001 USD
 552 2011-08-25 05:14:56 <gribble> (calc <expression>) -- Uses Google's calculator to calculate the value of <expression>.
 553 2011-08-25 05:15:27 <lfm> ;;calc [bc,24hprc]*0.001
 554 2011-08-25 05:15:29 <gribble> 10.8603 * 0.001 = 0.0108603
 555 2011-08-25 05:16:04 <nanotube> for multiargument stuff, try delimiting with parens, like ,,(calc [bc,24hprc]*.001)
 556 2011-08-25 05:16:05 <gribble> 10.8603 * .001 = 0.0108603
 557 2011-08-25 05:16:50 <lfm> nanotube: do you offer a full course? Can I get university credit for it?
 558 2011-08-25 05:17:03 <imsaguy> hehe
 559 2011-08-25 05:17:05 <nanotube> ;;bc,wiki gribble
 560 2011-08-25 05:17:06 <gribble> https://en.bitcoin.it/wiki/Gribble | Jun 12, 2011 ... gribble is a modified Supybot IRC bot, carrying some useful bitcoin-related ... You can also PM commands to gribble and it will PM back. ...
 561 2011-08-25 05:17:09 <nanotube> ^ full course
 562 2011-08-25 05:17:16 <nanotube> non-credit :)
 563 2011-08-25 05:18:48 <nanotube> (that'll be 1 btc plz :) )
 564 2011-08-25 05:19:56 <lfm> nanotube: do you have the CDN $ exchange rates yet  from https://www.cavirtex.com
 565 2011-08-25 05:20:45 <nanotube> well, #bitcoin-market reports them... but i don't have the virtex ticker command (yet).
 566 2011-08-25 05:21:39 <lfm> nanotube: should I bug them to talk to you?
 567 2011-08-25 05:21:40 <nanotube> if they had a nice ticker api like mtgox and tradehill, would be trivial to add
 568 2011-08-25 05:22:14 <nanotube> well, if they have api, no need to talk to me, i can shove up a ,,bc,mtgox equivalent in a jiffy.
 569 2011-08-25 05:22:15 <gribble> {"ticker":{"high":11.03545,"low":10.71,"avg":10.919099222,"vwap":10.896915379,"vol":7876,"last":10.71,"buy":10.71,"sell":10.75}}
 570 2011-08-25 05:22:24 <nanotube> if they don't.... then maybe :)
 571 2011-08-25 05:24:28 <nanotube> a quick look at the site doesn't reveal any api...
 572 2011-08-25 05:24:38 <nanotube> and yet, bcharts does get the trade data from them somehow....
 573 2011-08-25 05:26:49 clr_ has quit (Quit: Ex-Chat)
 574 2011-08-25 05:37:24 Rabbit67890 has quit (Quit: Rabbit67890)
 575 2011-08-25 05:42:44 agricocb has joined
 576 2011-08-25 05:44:20 hahuang65 has joined
 577 2011-08-25 05:47:47 Rabbit67890 has joined
 578 2011-08-25 05:58:08 mr_moon has quit (Read error: Connection reset by peer)
 579 2011-08-25 05:58:57 mr_moon has joined
 580 2011-08-25 06:01:57 Backburn has quit ()
 581 2011-08-25 06:04:12 brunner has quit (Quit: Leaving.)
 582 2011-08-25 06:04:49 <Wamo> Hey guys.  I'm a Comp Sci major working on my own website which will promote Bitcoins by giving them out.  I am looking for people to beta test my system.  Take a look at www.wesmeredith.com/bitbybit if you have 10 seconds to help me out.
 583 2011-08-25 06:04:56 piotrpopieluch has joined
 584 2011-08-25 06:05:07 JackRabiit has joined
 585 2011-08-25 06:05:21 JackRabiit has left ()
 586 2011-08-25 06:05:55 <lfm> Wamo: so how does this tie into your stdudies of it does?
 587 2011-08-25 06:07:28 <Wamo> Several ways.  The php & HTML coding needed for the site are a huge advantage.  I am also taking a cryptology class in which we have to come up with a real world applications of crypt. practises
 588 2011-08-25 06:08:13 <Wamo> The Mysql and unix the web server are running on are also proving me a great place to practise those skills aswell
 589 2011-08-25 06:09:17 <lfm> cool, good luck and have fun with it all.
 590 2011-08-25 06:09:48 <Wamo> Thanks
 591 2011-08-25 06:10:04 <upb> why th e obsession with crap rdbms's
 592 2011-08-25 06:11:16 <lfm> upb you dont like mysql? what would you recomend?
 593 2011-08-25 06:13:25 freewil has quit (Ping timeout: 240 seconds)
 594 2011-08-25 06:18:44 <upb> pg:)
 595 2011-08-25 06:21:05 <upb> why choose mysql over pg, there is no reason
 596 2011-08-25 06:22:08 [1]mr_moon has joined
 597 2011-08-25 06:22:37 vigilyn has quit (Ping timeout: 240 seconds)
 598 2011-08-25 06:24:09 mr_moon has quit (Ping timeout: 255 seconds)
 599 2011-08-25 06:24:28 [1]mr_moon is now known as mr_moon
 600 2011-08-25 06:32:00 <midnightmagic> i am sad to see html r
 601 2011-08-25 06:32:12 <midnightmagic> eferred to as "coding" :-(
 602 2011-08-25 06:34:22 piotrpopieluch has quit (Quit: piotrpopieluch)
 603 2011-08-25 06:43:36 AStove has joined
 604 2011-08-25 06:45:40 Maged has quit (Ping timeout: 268 seconds)
 605 2011-08-25 06:49:15 Maged has joined
 606 2011-08-25 06:53:21 slush1 has quit (Ping timeout: 260 seconds)
 607 2011-08-25 06:54:04 Baksch has joined
 608 2011-08-25 06:56:21 slush1 has joined
 609 2011-08-25 07:01:24 Rabbit67890 has quit (Ping timeout: 258 seconds)
 610 2011-08-25 07:02:15 huk has quit ()
 611 2011-08-25 07:02:39 Backburn has joined
 612 2011-08-25 07:06:49 wolfspraul has quit (Quit: leaving)
 613 2011-08-25 07:07:08 freewil has joined
 614 2011-08-25 07:10:31 mnass_ has joined
 615 2011-08-25 07:13:06 Rabbit67890 has joined
 616 2011-08-25 07:14:15 mnass has quit (Ping timeout: 245 seconds)
 617 2011-08-25 07:29:13 abragin has joined
 618 2011-08-25 07:29:57 DD- has joined
 619 2011-08-25 07:32:55 sacredchao has joined
 620 2011-08-25 07:34:24 jostmey has joined
 621 2011-08-25 07:35:34 <jostmey> Hello, I need help checking that my DNS is setup correctly. Can someone check www.searchbitcoin.com to see if the homepage is up instead of an error message? Thanks.
 622 2011-08-25 07:36:07 shadders has quit (Ping timeout: 246 seconds)
 623 2011-08-25 07:38:28 Rabbit67890 has quit (Quit: Rabbit67890)
 624 2011-08-25 07:38:51 <arcatan> jostmey: works
 625 2011-08-25 07:43:48 <lfm>                           Site Temporarily Unavailable
 626 2011-08-25 07:44:39 <lfm> error id: "bad_httpd_conf"
 627 2011-08-25 07:44:46 larsivi has joined
 628 2011-08-25 07:49:19 nr9 has joined
 629 2011-08-25 07:49:19 newbie has quit (Read error: Connection reset by peer)
 630 2011-08-25 07:50:46 gjs278 has joined
 631 2011-08-25 07:56:10 Blitzboom_ has joined
 632 2011-08-25 07:57:07 lookdang has joined
 633 2011-08-25 07:58:00 Blitzboom has quit (Ping timeout: 245 seconds)
 634 2011-08-25 08:02:30 mr_moon has quit (Read error: Connection reset by peer)
 635 2011-08-25 08:03:40 mr_moon has joined
 636 2011-08-25 08:04:53 ThomasV has quit (Ping timeout: 240 seconds)
 637 2011-08-25 08:14:29 larsivi has quit (Read error: Operation timed out)
 638 2011-08-25 08:15:47 erus` has joined
 639 2011-08-25 08:16:31 Wamo has quit (Ping timeout: 252 seconds)
 640 2011-08-25 08:22:10 larsivi has joined
 641 2011-08-25 08:22:18 shadders has joined
 642 2011-08-25 08:23:00 imsaguy has quit ()
 643 2011-08-25 08:24:38 mr_moon has quit (Read error: Connection reset by peer)
 644 2011-08-25 08:25:12 lookdang has quit (Ping timeout: 264 seconds)
 645 2011-08-25 08:25:41 mr_moon has joined
 646 2011-08-25 08:26:04 lookdang has joined
 647 2011-08-25 08:26:21 Elvis- has joined
 648 2011-08-25 08:26:58 hugolp has joined
 649 2011-08-25 08:27:02 Blitzboom_ has quit (Remote host closed the connection)
 650 2011-08-25 08:27:24 Blitzboom has joined
 651 2011-08-25 08:27:44 Baksch has quit (Quit: Leaving)
 652 2011-08-25 08:27:45 mr_moon has quit (Read error: Connection reset by peer)
 653 2011-08-25 08:28:43 mr_moon has joined
 654 2011-08-25 08:41:54 piuk has joined
 655 2011-08-25 08:43:46 <piuk> is a scriptPubKey like this  "4c554b452d4a522049532041205045444f5048494c4521204f682c20616e6420676f642069736e2774207265616c2c207375636b612e2053746f7020706f6c6c7574696e672074686520626c6f636b636861696e207769746820796f7572206e6f6e73656e73652e OP_CHECKSIG" valid?
 656 2011-08-25 08:44:50 <Elvis-> hi guys
 657 2011-08-25 08:45:13 <Elvis-> I just installed bitcoin for the first time, version 0.3.24-beta
 658 2011-08-25 08:45:38 <Elvis-> however, I can not run it, I see two errors and then it crashes
 659 2011-08-25 08:46:15 Blitzboom_ has joined
 660 2011-08-25 08:46:22 Blitzboom_ has quit (Remote host closed the connection)
 661 2011-08-25 08:46:34 <Elvis-> can someone help?
 662 2011-08-25 08:46:50 <Elvis-> (trying to run it both on a unix and mac environment)
 663 2011-08-25 08:47:28 <gjs278> what are the errors
 664 2011-08-25 08:47:33 <piuk> what are the errors?
 665 2011-08-25 08:47:41 <Elvis-> incoming copy/paste:
 666 2011-08-25 08:47:43 <Elvis-> ************************
 667 2011-08-25 08:47:43 <Elvis-> EXCEPTION: 22DbRunRecoveryException
 668 2011-08-25 08:47:43 <Elvis-> Db::open: DB_RUNRECOVERY: Fatal error, run database recovery
 669 2011-08-25 08:47:43 <Elvis-> bitcoin in AppInit()
 670 2011-08-25 08:47:43 <Elvis-> ************************
 671 2011-08-25 08:47:44 <Elvis-> EXCEPTION: 22DbRunRecoveryException
 672 2011-08-25 08:47:46 <Elvis-> Db::open: DB_RUNRECOVERY: Fatal error, run database recovery
 673 2011-08-25 08:47:48 <Elvis-> bitcoin in CMyApp::OnUnhandledException()
 674 2011-08-25 08:47:50 <Elvis-> this is for the mac version
 675 2011-08-25 08:48:01 <Elvis-> Inconsistency detected by ld.so: dynamic-link.h: 62: elf_get_dynamic_info: Assertion `! "bad dynamic tag"' failed!
 676 2011-08-25 08:48:14 <Elvis-> this is what I get when running it on a unix environment
 677 2011-08-25 08:48:25 Blitzboom has quit (Ping timeout: 245 seconds)
 678 2011-08-25 08:49:28 <piuk> DB might be currport, try renaming ~/Library/Application Support/Bitcoin to Bitcoin2
 679 2011-08-25 08:50:37 LightRider has quit (Ping timeout: 260 seconds)
 680 2011-08-25 08:50:45 <Elvis-> did, same issue
 681 2011-08-25 08:51:33 <Elvis-> I got a report 'bitcoin quit unexpectedly'
 682 2011-08-25 08:52:35 erus` has quit (Ping timeout: 245 seconds)
 683 2011-08-25 08:53:19 erus` has joined
 684 2011-08-25 08:53:47 <Elvis-> any other ideas?
 685 2011-08-25 08:53:55 <piuk> Are you building from source?
 686 2011-08-25 08:54:19 <Elvis-> I downloaded it from http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.24/bitcoin-0.3.24-macosx.zip/download
 687 2011-08-25 08:54:23 <Elvis-> unzipped, and ran the app
 688 2011-08-25 08:56:29 <cjdelisle> is it a powerpc mac?
 689 2011-08-25 08:56:35 <Elvis-> nop, it's a mac mini
 690 2011-08-25 08:57:00 <Elvis-> ~/Library/Application Support/Bitcoin $ cat db.log
 691 2011-08-25 08:57:00 <Elvis-> fsync: Inappropriate ioctl for device
 692 2011-08-25 08:57:00 <Elvis-> PANIC: Inappropriate ioctl for device
 693 2011-08-25 08:57:06 <piuk> That binary runs fine for me on a Snow leopard mac mini
 694 2011-08-25 08:57:15 <Elvis-> Bitcoin version 0.3.24-beta
 695 2011-08-25 08:57:15 <Elvis-> OS version Mac OS X (Darwin 10.8.0 i386)
 696 2011-08-25 08:58:29 <piuk> 10.8?
 697 2011-08-25 08:59:37 <Elvis-> that's what it sais
 698 2011-08-25 09:01:13 <Elvis-> hum, weird
 699 2011-08-25 09:01:24 <Elvis-> if I check at 'about this mac' it's actually 10.6.8
 700 2011-08-25 09:01:47 erus` has quit (Read error: Connection reset by peer)
 701 2011-08-25 09:02:55 <piuk> Sorry not sure then, I did get the error "EXCEPTION: 22DbRunRecoveryException" once when I built a binary on 10.7 and ran it on 10.6 but that doesn't appear to be the same issue
 702 2011-08-25 09:03:33 Blitzboom has joined
 703 2011-08-25 09:03:33 Blitzboom has quit (Changing host)
 704 2011-08-25 09:03:33 Blitzboom has joined
 705 2011-08-25 09:04:12 <cjdelisle> ls -la db.log
 706 2011-08-25 09:04:34 <cjdelisle> looks like deeper problems than a bad bitcoin binary
 707 2011-08-25 09:04:54 <Elvis-> -rw-------  1 evelea  SINGEL\rsstaff  241 25 Aug 10:57 db.log
 708 2011-08-25 09:05:27 HaltingState has joined
 709 2011-08-25 09:05:27 HaltingState has quit (Changing host)
 710 2011-08-25 09:05:27 HaltingState has joined
 711 2011-08-25 09:05:38 erus` has joined
 712 2011-08-25 09:05:56 <cjdelisle> I've never heard of it not being able to cat a file, best of luck :S
 713 2011-08-25 09:07:55 <Elvis-> heh :)
 714 2011-08-25 09:08:00 <Elvis-> so, any other ideas? :D
 715 2011-08-25 09:10:04 ThomasV has joined
 716 2011-08-25 09:10:53 <piuk> Can you run the non beta version?
 717 2011-08-25 09:11:35 dbitcoin has quit (Remote host closed the connection)
 718 2011-08-25 09:13:36 <piuk> Does anyone know for this transaction http://blockexplorer.com/tx/9740e7d646f5278603c04706a366716e5e87212c57395e0d24761c0ae784b2c6 how would I decode the output address? Or is it corrupted?
 719 2011-08-25 09:14:15 ephcon has quit (Ping timeout: 245 seconds)
 720 2011-08-25 09:14:42 luke-jr has quit (otg!~luke-jr@2001:470:5:265:222:4dff:fe50:4c49|Ping timeout: 260 seconds)
 721 2011-08-25 09:15:17 luke-jr has quit (Ping timeout: 260 seconds)
 722 2011-08-25 09:15:26 <cjdelisle> piuk: hex decode it, it's a message making fun of luke-jr
 723 2011-08-25 09:15:40 <cjdelisle> (spam transaction)
 724 2011-08-25 09:17:09 <piuk> Ah i see, lol
 725 2011-08-25 09:17:47 <ThomasV> cjdelisle: how does it work ?
 726 2011-08-25 09:18:04 <cjdelisle> how does what work?
 727 2011-08-25 09:18:13 <ThomasV> what do I need to decode?
 728 2011-08-25 09:18:20 <piuk> http://www.string-functions.com/hex-string.aspx
 729 2011-08-25 09:18:24 <piuk> 4c554b452d4a522049532041205045444f5048494c4521204f682c20616e6420676f642069736e2774207265616c2c207375636b612e2053746f7020706f6c6c7574696e672074686520626c6f636b636861696e207769746820796f7572206e6f6e73656e73652e
 730 2011-08-25 09:18:48 piuk has quit (Quit: Page closed)
 731 2011-08-25 09:18:49 <ThomasV> oh the pubkey ?
 732 2011-08-25 09:19:14 piuk has joined
 733 2011-08-25 09:19:14 <Elvis-> can someone point me to the non-beta version of bitcoin 0.3.24?
 734 2011-08-25 09:19:15 luke-jr has joined
 735 2011-08-25 09:20:01 piuk_ has joined
 736 2011-08-25 09:20:06 luke-jr has joined
 737 2011-08-25 09:22:57 <asher^> Elvis- if you click on the download link on github, theres a link that shows all the download versions
 738 2011-08-25 09:23:38 piuk has quit (Ping timeout: 252 seconds)
 739 2011-08-25 09:23:56 kloeri has joined
 740 2011-08-25 09:24:40 fnord0 has quit (Ping timeout: 245 seconds)
 741 2011-08-25 09:25:34 <Elvis-> I may be dumb, but can't find it :)
 742 2011-08-25 09:25:41 <Elvis-> here, right? https://github.com/bitcoin/bitcoin
 743 2011-08-25 09:26:21 <asher^> on the right near the top
 744 2011-08-25 09:27:21 <Elvis-> and which one should I go for? v0.3.24rc3.zip ?
 745 2011-08-25 09:28:04 <asher^> up to you. i use the regular .24 one
 746 2011-08-25 09:28:09 <Elvis-> ok
 747 2011-08-25 09:29:24 fnord0 has joined
 748 2011-08-25 09:32:04 <Elvis-> uhm, do I need to build it?
 749 2011-08-25 09:32:29 <asher^> do you just want a version to download and run on windows?
 750 2011-08-25 09:32:36 <asher^> you can get it right from bitcoin.org
 751 2011-08-25 09:33:58 <Elvis-> on mac :)
 752 2011-08-25 09:34:39 <Elvis-> I got the one from bitcoin.org but I can't run it
 753 2011-08-25 09:34:40 fnord0 has quit (Ping timeout: 245 seconds)
 754 2011-08-25 09:34:51 <Elvis-> doesn't start, keep getting the same errors
 755 2011-08-25 09:35:09 <Elvis-> someone recommended not to use the beta version (which is the one on the website right now)
 756 2011-08-25 09:37:35 <piuk_> try http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.23/bitcoin-0.3.23-macosx.zip/download
 757 2011-08-25 09:40:19 <Elvis-> same problem :(
 758 2011-08-25 09:41:07 <lfm> they're ALL beta versions
 759 2011-08-25 09:42:32 <RealSolid> whats wrong with the latest on mac?
 760 2011-08-25 09:42:44 <RealSolid> solidcoin mac works ok, except a crash on exit
 761 2011-08-25 09:42:49 <RealSolid> im going to fix it soon
 762 2011-08-25 09:43:04 <piuk_> doesn't run for Elvis
 763 2011-08-25 09:43:08 <RealSolid> hmm
 764 2011-08-25 09:43:25 <RealSolid> is he compiling from source or just running binaries
 765 2011-08-25 09:43:33 <piuk_> binary
 766 2011-08-25 09:44:02 <RealSolid> elvis, doesnt help you much with bitcoin, but try the mac download here, http://solidcoin.info/index.php   , its forked from the latest beta of bitcoin
 767 2011-08-25 09:44:06 Uri2011 has joined
 768 2011-08-25 09:44:11 <RealSolid> if that works it could just be the way those are compiled
 769 2011-08-25 09:44:23 <RealSolid> or maybe .25 will work
 770 2011-08-25 09:44:42 lookdang has quit (Ping timeout: 258 seconds)
 771 2011-08-25 09:46:25 <RealSolid> the mac bitcoin client has some issues it seems regardless
 772 2011-08-25 09:47:08 Burgundy has quit (Ping timeout: 252 seconds)
 773 2011-08-25 09:47:10 Qatz has joined
 774 2011-08-25 09:47:16 DaQatz has quit (Read error: Connection reset by peer)
 775 2011-08-25 09:48:02 fnord0 has joined
 776 2011-08-25 09:48:57 someone42 has quit (Ping timeout: 240 seconds)
 777 2011-08-25 09:50:09 <lfm> piuk_: simpler to just do "strings -n 20 ~/.bitcoin/blk0001.dat"
 778 2011-08-25 09:50:45 toffoo has quit ()
 779 2011-08-25 09:55:26 Silverpike has quit (Ping timeout: 258 seconds)
 780 2011-08-25 09:56:19 Silverpike has joined
 781 2011-08-25 09:57:10 <piuk_> When a client does the initial blockchain download does it only down blocks from the best chain i.e. never orphaned blocks?
 782 2011-08-25 09:57:36 <lfm> piuk_: generally yes
 783 2011-08-25 09:58:20 erus`_ has joined
 784 2011-08-25 09:59:43 erus` has quit (Ping timeout: 240 seconds)
 785 2011-08-25 09:59:45 erus`_ is now known as erus`
 786 2011-08-25 10:01:16 <ThomasV> https://bitcointalk.org/index.php?topic=39153.msg479396#msg479396  <--- I predict wallet theft from trojan will happen at some point
 787 2011-08-25 10:01:20 sacredchao has quit (Ping timeout: 245 seconds)
 788 2011-08-25 10:01:26 fn0rd has joined
 789 2011-08-25 10:01:45 fnord0 has quit (Ping timeout: 245 seconds)
 790 2011-08-25 10:02:02 <lfm> ThomasV: hasn't it already?
 791 2011-08-25 10:03:25 erus` has quit (Quit: ChatZilla 0.9.87 [Firefox 6.0/20110811165603])
 792 2011-08-25 10:04:01 <doublec> ThomasV: would you be willing to wager on it?
 793 2011-08-25 10:04:08 <ThomasV> doublec: no
 794 2011-08-25 10:04:23 <ThomasV> not necessarily on solidcoin
 795 2011-08-25 10:04:25 <doublec> not much of a prediction then
 796 2011-08-25 10:04:37 <doublec> "sometime, somewhere, there will be wallet theft from a trojan"
 797 2011-08-25 10:04:51 <doublec> I predict there will be an earthquake at some point
 798 2011-08-25 10:04:57 <doublec> and maybe a wat
 799 2011-08-25 10:05:01 <doublec> s/wat/war
 800 2011-08-25 10:05:12 <ThomasV> all I'm saying is that people downloadin this binary are exposing themselves
 801 2011-08-25 10:05:32 <ThomasV> they are easy targets
 802 2011-08-25 10:06:19 <Elvis-> RealSolid, I get the same errors with solidcoin
 803 2011-08-25 10:06:32 hugolp has quit (Quit: KVIrc 4.1.1 Equilibrium http://www.kvirc.net/)
 804 2011-08-25 10:12:14 hugolp has joined
 805 2011-08-25 10:13:18 <RealSolid> Elvis-: ok good to know
 806 2011-08-25 10:18:45 erus` has joined
 807 2011-08-25 10:24:05 <RealSolid> ThomasV: people running the bitcoin client are exposing themselves
 808 2011-08-25 10:24:22 <ThomasV> RealSolid: are you coinhunter ?
 809 2011-08-25 10:24:32 <RealSolid> what better place for a wallet trojan to hide than bitcoin itself? :)
 810 2011-08-25 10:24:36 <lfm> people running computers are exposing themselves
 811 2011-08-25 10:24:45 <RealSolid> ThomasV: yeah, i also replied to your post
 812 2011-08-25 10:25:11 <ThomasV> RealSolid: the bitcoin client is scrutinized by a large community
 813 2011-08-25 10:25:36 <RealSolid> is it
 814 2011-08-25 10:25:44 <cjdelisle> heh it't true... I can't figure out what that plate of spaghetti is doing
 815 2011-08-25 10:25:46 <RealSolid> a large community releases regular updates, where are they
 816 2011-08-25 10:26:39 <lfm> RealSolid: nonsense
 817 2011-08-25 10:28:56 <RealSolid> ThomasV: just because "a large community" checks the source doesnt mean one guy doesnt compile it
 818 2011-08-25 10:29:04 <RealSolid> that one guy can easily insert a trojan, going by your own Post
 819 2011-08-25 10:29:22 <ThomasV> RealSolid: that's correct
 820 2011-08-25 10:29:24 <RealSolid> i expect you to say the same thing on the bitcoin thread
 821 2011-08-25 10:29:29 <RealSolid> link to your post
 822 2011-08-25 10:29:32 <lfm> Just because some guy issues regular updates, doent mean it has not torjans
 823 2011-08-25 10:29:52 <RealSolid> lfm:  where did i say that?
 824 2011-08-25 10:29:58 <ThomasV> RealSolid: I tend to trust the guy who releases the bitcoin binaries. but if you don't, feel free to issue a warning
 825 2011-08-25 10:29:58 <RealSolid> i was just saying, i doubt a large community checks bitcoins source code
 826 2011-08-25 10:30:18 <RealSolid> if people are going over the source code with a fine tooth comb? why am i fixing bugs
 827 2011-08-25 10:30:28 <RealSolid> why am i seeing junk code everywhere?
 828 2011-08-25 10:30:44 <lfm> RealSolid: and release rate need not have any corelation with the number of people working on it
 829 2011-08-25 10:30:58 <RealSolid> lfm: features, improvements and bug fixes do though
 830 2011-08-25 10:31:22 <lfm> solidcoin is junk code
 831 2011-08-25 10:31:42 <RealSolid> agreed, considering 98% i didnt write
 832 2011-08-25 10:31:50 <RealSolid> its based off bitcoin
 833 2011-08-25 10:32:08 <RealSolid> im plugging the holes though
 834 2011-08-25 10:32:12 <lfm> and what changes you made are steps backwards imho
 835 2011-08-25 10:32:32 <RealSolid> ok, we'll see i guess
 836 2011-08-25 10:32:59 mr_moon has quit (Read error: Connection reset by peer)
 837 2011-08-25 10:33:35 <ThomasV> RealSolid: even if you are not trying to scam people, I believe solidcoin is deemed to fail
 838 2011-08-25 10:33:38 <RealSolid> i have little invested in solidcoin, i just want a better network
 839 2011-08-25 10:33:48 mr_moon has joined
 840 2011-08-25 10:33:56 <RealSolid> ThomasV: ok, but i dont know whether i should value your opinion or not
 841 2011-08-25 10:34:25 Guest69125 has joined
 842 2011-08-25 10:34:54 <ThomasV> RealSolid: my opinion on ixcoin is here : https://bitcointalk.org/index.php?topic=37592.msg463263#msg463263
 843 2011-08-25 10:35:03 <ThomasV> it also holds for solidcoin
 844 2011-08-25 10:35:36 <RealSolid> you sound like all the miners who thought that and are now bitter
 845 2011-08-25 10:35:48 <ThomasV> I am not a miner
 846 2011-08-25 10:36:12 <RealSolid> yes but you sound like them "i though it was a scam, now its gaining popularity and price, boohoohoo"
 847 2011-08-25 10:36:32 <ThomasV> all I am saying is that solidcoin is not "different enough" to gain thrust
 848 2011-08-25 10:37:00 <RealSolid> why is it gaining then
 849 2011-08-25 10:37:04 <RealSolid> why not die like ix/i0
 850 2011-08-25 10:37:13 <ThomasV> because it is more recent
 851 2011-08-25 10:37:20 <RealSolid> ix/i0 died within 2 days
 852 2011-08-25 10:37:29 <RealSolid> http://solidcoin.kicks-ass.org/graphs/graphs.html
 853 2011-08-25 10:37:32 <RealSolid> see the linear growth?
 854 2011-08-25 10:37:37 <ThomasV> well, perhaps it will never die
 855 2011-08-25 10:37:46 <ThomasV> but I do not see it compete with bitcoin
 856 2011-08-25 10:38:03 <RealSolid> thats ok, perphaps youve invested yourself too much into bitcoin and dont want it to fail, i understand
 857 2011-08-25 10:38:05 <ThomasV> network effects are too strong
 858 2011-08-25 10:38:16 <RealSolid> myself ihave a fair amount of btc, but i dont like how bad bitcoin is
 859 2011-08-25 10:38:26 <RealSolid> so i fixed the areas i thought needed improving
 860 2011-08-25 10:38:44 <RealSolid> i wrote some commerical sites using bitcoin, because i like the idea of it
 861 2011-08-25 10:38:53 <ThomasV> what I have invested is not relevant; if I thought solidcoin had a future, I would invest in it
 862 2011-08-25 10:38:57 <RealSolid> but the api is junk, the client is junk, and the future as the developers see it, is junk, in my mind
 863 2011-08-25 10:39:12 <RealSolid> Bank of America? Running bitcoin
 864 2011-08-25 10:39:18 <RealSolid> its hilarity
 865 2011-08-25 10:40:07 <RealSolid> on top of all that . the guys with the most btc refuse to invest back into it
 866 2011-08-25 10:40:25 <RealSolid> so perhaps a fresh start is exactly whats needed
 867 2011-08-25 10:41:28 <lfm> and perhpas bitcoin is good enuf that with its head start none of the competitors will ever get a significant foothold
 868 2011-08-25 10:41:37 <RealSolid> lfm: yep, a likely scenario
 869 2011-08-25 10:42:15 <ThomasV> RealSolid: why didn't you try to start something really different ? why a bitcoin clone ?
 870 2011-08-25 10:42:38 <ThomasV> with a clone, your chances are zero
 871 2011-08-25 10:44:08 Qatz is now known as DaQatz
 872 2011-08-25 10:44:10 <ThomasV> I posted several messages in the forum, advocating for a blockchain with infinite supply
 873 2011-08-25 10:44:37 <RealSolid> good question ThomasV
 874 2011-08-25 10:44:51 <RealSolid> lfm: btw being first is often all you need to succeed, but in some cases it isnt , look at google
 875 2011-08-25 10:45:02 <RealSolid> youd rather be the first if you had a choice though
 876 2011-08-25 10:45:35 <RealSolid> ThomasV: because there are sites which already accept bitcoin and can easily switch over and start slowly migrating to the better API
 877 2011-08-25 10:45:57 <RealSolid> and i understand crypto well enough to know the basic theory in bitcoin security is fine
 878 2011-08-25 10:46:14 <ThomasV> huh? I do not see the relation with my question
 879 2011-08-25 10:46:16 TheAncientGoat has joined
 880 2011-08-25 10:46:20 <RealSolid> the things which arent fine mostly relate to areas outside that, networking, protocol rules, client, etc
 881 2011-08-25 10:46:59 <ThomasV> what is the "better API"
 882 2011-08-25 10:47:15 <RealSolid> moving to integers for a start
 883 2011-08-25 10:47:29 <RealSolid> but also away from needing to run fat clients to access the network
 884 2011-08-25 10:47:37 <RealSolid> but i wont give too much away
 885 2011-08-25 10:47:44 <ThomasV> but this is already happening
 886 2011-08-25 10:47:50 <ThomasV> see libbitcoin
 887 2011-08-25 10:48:00 <ThomasV> and see gavin's last post
 888 2011-08-25 10:48:03 <RealSolid> its already happening is it
 889 2011-08-25 10:48:05 <RealSolid> lol
 890 2011-08-25 10:48:08 <RealSolid> see it in 5 years then
 891 2011-08-25 10:48:25 <ThomasV> bah, these are not reasons to do a blockchain fork
 892 2011-08-25 10:48:36 <RealSolid> anyway if you think sc has no chance you have nothing to worry about
 893 2011-08-25 10:48:37 wolfspraul has joined
 894 2011-08-25 10:48:43 <RealSolid> your fav. will win and you'll be right
 895 2011-08-25 10:48:53 <RealSolid> happy days
 896 2011-08-25 10:49:31 <ThomasV> no, I am asking why you need a fork in order to address the fat client problem
 897 2011-08-25 10:49:39 <ThomasV> this sounds like an excuse
 898 2011-08-25 10:50:24 <RealSolid> if you think that is my only concern you havent been reading what ive written or you havent read the website
 899 2011-08-25 10:50:32 <ThomasV> and I guess the users who are now investing in this bubble do not give a shit about integers
 900 2011-08-25 10:50:58 <ThomasV> they want a et rich quick scheme
 901 2011-08-25 10:51:02 <ThomasV> *get*
 902 2011-08-25 10:51:11 <noagendamarket> http://youtu.be/43wrf_tALSI
 903 2011-08-25 10:52:47 dr_win_ has joined
 904 2011-08-25 10:53:11 <RealSolid> ThomasV: i cant understand all their motivations
 905 2011-08-25 10:53:22 <RealSolid> either way its about 10000% more fair than btc startup as its more known
 906 2011-08-25 10:54:34 <ThomasV> now you are talking about fairness...
 907 2011-08-25 10:55:15 <RealSolid> sure, you think theres only one reason for SC?
 908 2011-08-25 10:55:23 <RealSolid> like i said, read the website instead of trolling
 909 2011-08-25 10:55:26 dr_win has quit (Ping timeout: 268 seconds)
 910 2011-08-25 10:55:48 <ThomasV> no, but I think that the technical reasons you provide are not the real ones
 911 2011-08-25 10:56:21 <ThomasV> I am reading the site
 912 2011-08-25 10:56:39 <RealSolid> right... having a fast network with low block variance, better difficulty against pool attacks and a more fairer share of the early wealth are all poor reasons for SC
 913 2011-08-25 10:56:46 <ThomasV> "Near complete shutdown of network due to pump-n-dumps by large operators" <--- fud ?
 914 2011-08-25 10:57:03 <ThomasV> when was there a near complete shutddown ?
 915 2011-08-25 10:57:06 <RealSolid> ix/i0
 916 2011-08-25 10:57:08 <RealSolid> nmc
 917 2011-08-25 10:57:22 <RealSolid> nmc has 4 hour blocks atm
 918 2011-08-25 10:57:32 <RealSolid> making it nearly unuseable
 919 2011-08-25 10:57:51 <noagendamarket> i0coin is closing down
 920 2011-08-25 10:57:59 <noagendamarket> because of the pump and dump
 921 2011-08-25 10:58:10 <RealSolid> ThomasV: ixcoin is copying solidcoins network defense mechanism
 922 2011-08-25 10:58:13 <ThomasV> oh but that reason is listed in the "But do we need an alternative to Bitcoin?" section, not ixcoin not i0coin
 923 2011-08-25 10:58:22 <RealSolid> artforz is recommending it also
 924 2011-08-25 10:58:32 <RealSolid> im not some amateur programmer here
 925 2011-08-25 10:58:46 <ThomasV> bah artforz knows how to take profit of speculation
 926 2011-08-25 10:58:58 <RealSolid> indeed and hes pissed he missed SC mining
 927 2011-08-25 10:59:01 <RealSolid> haha
 928 2011-08-25 10:59:18 <RealSolid> i timed the release for btcguild and the major miners to be asleep so that more individuals could participate
 929 2011-08-25 11:00:02 <ThomasV> bah, there is no point trying to convince you ; it's your baby
 930 2011-08-25 11:00:18 <RealSolid> thats right, btw how many bitcoin sites/businesses do you run?
 931 2011-08-25 11:00:26 <ThomasV> zero
 932 2011-08-25 11:00:38 <RealSolid> have you used the develop environment for bitcoin?
 933 2011-08-25 11:01:02 <ThomasV> I was planning to launch an online wallet, but the mybitcoin fiasco made me realize this is not the right approach
 934 2011-08-25 11:01:24 <ThomasV> I am now developing something else
 935 2011-08-25 11:05:03 <RealSolid> well it goes to show even the admitted ignorant can have an opinion about something doesnt it ;)
 936 2011-08-25 11:05:39 <ThomasV> ignorant of what ?
 937 2011-08-25 11:06:08 <RealSolid> bitcoin
 938 2011-08-25 11:06:20 <ThomasV> why?
 939 2011-08-25 11:06:34 <erus`> how is bitcoin formed?
 940 2011-08-25 11:07:01 ThomasV is now known as ThomasV_afk
 941 2011-08-25 11:07:02 <lfm> well if you want stupid listen to this "compootr enjineer"! http://www.youtube.com/watch?v=R0CtyUKUbSw&feature=related
 942 2011-08-25 11:07:13 slush1 has quit (Ping timeout: 240 seconds)
 943 2011-08-25 11:07:27 slush1 has joined
 944 2011-08-25 11:08:34 <lfm> erus`: try www.bitcoin.org
 945 2011-08-25 11:09:16 <erus`> how is babby formed?
 946 2011-08-25 11:09:19 Strom- has joined
 947 2011-08-25 11:09:46 <lfm> erus`: ask google
 948 2011-08-25 11:10:14 <erus`> how is formed formed?
 949 2011-08-25 11:10:49 <lfm> erus`: how are trolls created?
 950 2011-08-25 11:11:49 <erus`> lfm: by that evil lady off of power rangers
 951 2011-08-25 11:11:59 brunner has joined
 952 2011-08-25 11:13:43 Strom has quit (Ping timeout: 260 seconds)
 953 2011-08-25 11:14:46 vigilyn has joined
 954 2011-08-25 11:21:31 Strom- is now known as Strom
 955 2011-08-25 11:31:54 [1]mr_moon has joined
 956 2011-08-25 11:34:14 mr_moon has quit (Ping timeout: 255 seconds)
 957 2011-08-25 11:34:14 [1]mr_moon is now known as mr_moon
 958 2011-08-25 11:36:12 gut4 has joined
 959 2011-08-25 11:36:56 HardDisk_WP has quit (Ping timeout: 240 seconds)
 960 2011-08-25 11:38:46 ThomasV_afk is now known as ThomasV
 961 2011-08-25 11:39:29 Lopuz has quit (Ping timeout: 258 seconds)
 962 2011-08-25 11:40:09 gut4 has quit (Client Quit)
 963 2011-08-25 11:47:07 ahihi2 has quit ()
 964 2011-08-25 11:47:15 kish has joined
 965 2011-08-25 11:47:25 Kiba has quit (Read error: Connection reset by peer)
 966 2011-08-25 11:47:45 Kiba has joined
 967 2011-08-25 11:47:47 HardDisk_WP has joined
 968 2011-08-25 11:47:47 HardDisk_WP has quit (Changing host)
 969 2011-08-25 11:47:47 HardDisk_WP has joined
 970 2011-08-25 11:47:56 ahihi2 has joined
 971 2011-08-25 11:50:20 kish has quit (Read error: Connection reset by peer)
 972 2011-08-25 11:50:25 <ThomasV> quite often my bitcoind becomes unresponsive to rpc, possibly a deadlock ; is this a known issue ?
 973 2011-08-25 11:51:45 Lopuz has joined
 974 2011-08-25 11:52:15 kish has joined
 975 2011-08-25 11:57:48 sirky has joined
 976 2011-08-25 11:58:27 hugolp has quit (Quit: KVIrc 4.1.1 Equilibrium http://www.kvirc.net/)
 977 2011-08-25 11:59:08 <Blitzboom> http://lorna-morgan.com/big-nude-boobs/join/images/solidcoin.gif
 978 2011-08-25 11:59:18 <Blitzboom> i hope you people take competition seriously
 979 2011-08-25 11:59:50 <ThomasV> is she as real as  her boobs ?
 980 2011-08-25 12:00:06 <Blitzboom> if bitcoin doesn’t progress fast enough, people will turn to alternatives
 981 2011-08-25 12:00:29 <ThomasV> define "progress"
 982 2011-08-25 12:00:57 <ThomasV> does "progress" mean price increase?
 983 2011-08-25 12:00:59 <Blitzboom> the client mainly
 984 2011-08-25 12:01:18 <Blitzboom> the price increase is a reflection of people’s confidence, so that too
 985 2011-08-25 12:01:57 <JFK911> it happens in every pump and dump
 986 2011-08-25 12:02:12 <CIA-101> bitcoin: Con Kolivas * r5b488811759d cgminer/main.c: Only consider pool lagging if more than one item is queued.
 987 2011-08-25 12:03:14 <doublec> solidcoin has definitely fired some people up
 988 2011-08-25 12:03:28 <doublec> more merchants have started using it than any of the other alternate chains
 989 2011-08-25 12:03:38 <doublec> I wonder what the difference was
 990 2011-08-25 12:03:43 coderrr is now known as coderrr`brb
 991 2011-08-25 12:03:51 <Blitzboom> if solidcoin continues to gain traction, i think bitcoin is in a critical condition
 992 2011-08-25 12:04:19 coderrr`brb is now known as coderrr
 993 2011-08-25 12:04:23 <doublec> it must be RealSolid's winning personality
 994 2011-08-25 12:04:23 <RealSolid> Blitzboom: it only has 4% of hashing power
 995 2011-08-25 12:04:30 <RealSolid> lets not go crazy
 996 2011-08-25 12:04:34 <doublec> hehe
 997 2011-08-25 12:04:46 <ThomasV> 4% would be a lot
 998 2011-08-25 12:04:51 <Blitzboom> RealSolid: solidcoin has 4% of Bitcoin’s hashing power?!
 999 2011-08-25 12:04:58 <Blitzboom> that’s 1/25 …
1000 2011-08-25 12:05:22 <RealSolid> Blitzboom: yeah ive got one thing most bitcoin developers dont have
1001 2011-08-25 12:05:27 <RealSolid> experience
1002 2011-08-25 12:05:40 <Blitzboom> experience with what?
1003 2011-08-25 12:05:47 <doublec> talking
1004 2011-08-25 12:05:49 <RealSolid> nearly everything computer realted
1005 2011-08-25 12:05:54 Guest32678 has quit (Ping timeout: 240 seconds)
1006 2011-08-25 12:05:57 <RealSolid> and yeah, good personality
1007 2011-08-25 12:06:36 <Blitzboom> i thought most bitcoin devs were pretty experienced
1008 2011-08-25 12:06:37 asher^ has quit (Ping timeout: 272 seconds)
1009 2011-08-25 12:06:53 * [Tycho] is
1010 2011-08-25 12:07:11 <RealSolid> if any of them were, theyd have windows experience
1011 2011-08-25 12:07:13 HardDisk_WP has quit (Ping timeout: 264 seconds)
1012 2011-08-25 12:07:15 <RealSolid> going by the code, nearly none do
1013 2011-08-25 12:07:39 <Blitzboom> the code is mostly satoshi’s
1014 2011-08-25 12:08:34 glitch-mod has joined
1015 2011-08-25 12:08:50 <RealSolid> so the developers dont actually do anything now?
1016 2011-08-25 12:08:59 <RealSolid> its not really development if nothing happens
1017 2011-08-25 12:09:55 <Blitzboom> dunno, i think they are very conservative with changes
1018 2011-08-25 12:10:31 gjs278 has quit (Ping timeout: 252 seconds)
1019 2011-08-25 12:10:38 <RealSolid> yah maybe its that
1020 2011-08-25 12:11:02 <RealSolid> either way, btc will get better or solidcoin will succeed
1021 2011-08-25 12:11:08 <RealSolid> both ways i win as end user
1022 2011-08-25 12:11:44 gjs278 has joined
1023 2011-08-25 12:12:27 asher^ has joined
1024 2011-08-25 12:17:03 fn0rd has quit (Read error: Connection reset by peer)
1025 2011-08-25 12:17:48 HardDisk_WP has joined
1026 2011-08-25 12:17:48 HardDisk_WP has quit (Changing host)
1027 2011-08-25 12:17:48 HardDisk_WP has joined
1028 2011-08-25 12:18:14 fn0rd has joined
1029 2011-08-25 12:23:33 <iddo> doublec: merchants using sc? where did you pull that from?
1030 2011-08-25 12:23:52 <iddo> we're under combined attack by 3 sc trolls ? :)
1031 2011-08-25 12:25:33 <doublec> iddo: Blitzboom posted one above
1032 2011-08-25 12:25:39 <doublec> iddo: also http://solidcoin.info/market.php
1033 2011-08-25 12:26:43 <iddo> blah :)
1034 2011-08-25 12:27:39 rafsoaken1 has joined
1035 2011-08-25 12:27:51 <doublec> iddo: a ruxum user said that ruxum wrote in the internal formums that they were going to add support for it as well
1036 2011-08-25 12:27:58 <doublec> which does seem a bit soon
1037 2011-08-25 12:28:14 <doublec> I guess they like being on the edge
1038 2011-08-25 12:28:57 <iddo> they like pump and dumps ?
1039 2011-08-25 12:30:03 datagutt has joined
1040 2011-08-25 12:30:29 <iddo> it's so obvious that all sc participants consider it pump and dump, example http://www.reddit.com/r/BitcoinMining/comments/jppkn/i_made_4_btc_on_a_5770_last_night_mining_these/
1041 2011-08-25 12:31:31 <iddo> too bad for the last morons who'd left holding the bag:(
1042 2011-08-25 12:31:38 <noagendamarket> wtf is wrong with you
1043 2011-08-25 12:31:44 AAA_awright has quit (Ping timeout: 240 seconds)
1044 2011-08-25 12:31:54 <noagendamarket> solidcoin is the opposite of pump and dump
1045 2011-08-25 12:31:57 AAA_awright_ has joined
1046 2011-08-25 12:32:19 <noagendamarket> its a reaction to that very thing
1047 2011-08-25 12:32:30 <doublec> iddo: my point is this has been taken differently by merchants compared to the other alt chains, which were very pump/dump oriented
1048 2011-08-25 12:32:37 <doublec> iddo: people are adopting it, and talking about it
1049 2011-08-25 12:32:43 <doublec> iddo: the interesting question is why
1050 2011-08-25 12:32:50 <iddo> noagendamarket: then go buy some sc :)
1051 2011-08-25 12:33:03 <noagendamarket> I alrready own enough :L)
1052 2011-08-25 12:33:20 <iddo> noagendamarket: hold them!
1053 2011-08-25 12:33:26 <noagendamarket> of course
1054 2011-08-25 12:33:39 <noagendamarket> Ill use it to setup services
1055 2011-08-25 12:33:42 <ThomasV> noagendamarket: did you spend some btc to buy them ?
1056 2011-08-25 12:33:45 <log0s> i read solidcoin's faq a couple days ago and i find it hard to take seriously
1057 2011-08-25 12:33:52 <iddo> doublec: what merchants? the one porn site that you mentioned?
1058 2011-08-25 12:34:10 <doublec> iddo: there are 7 merchants on that page
1059 2011-08-25 12:34:11 <noagendamarket> yeah at .0009
1060 2011-08-25 12:34:28 <doublec> iddo: which is about 6 more than the other chains
1061 2011-08-25 12:34:41 <noagendamarket> wile people like you were shitting on it as a scam
1062 2011-08-25 12:34:42 <iddo> doublec: i see only one porn site
1063 2011-08-25 12:34:55 <doublec> iddo: are you reading the page
1064 2011-08-25 12:34:58 <doublec> iddo: "Businesses which accept SolidCoin directly"
1065 2011-08-25 12:35:05 <doublec> there are 6 listed there
1066 2011-08-25 12:35:13 <iddo> doublec: what page?
1067 2011-08-25 12:35:13 genjix has joined
1068 2011-08-25 12:35:17 <doublec> and the adult one in the adult section, making 7
1069 2011-08-25 12:35:30 <doublec> iddo: the one I pasted before http://solidcoin.info/market.php
1070 2011-08-25 12:37:02 <iddo> doublec: my guess all listed there is fake
1071 2011-08-25 12:37:39 <doublec> iddo: you'd be guessing wrong
1072 2011-08-25 12:37:49 <doublec> iddo: since many of them are long time bitcoin users
1073 2011-08-25 12:38:08 <genjix> funny enough i read iddo's nick combined with doublec's d and l
1074 2011-08-25 12:38:25 <noagendamarket> dildo ?
1075 2011-08-25 12:39:17 <iddo> doublec: ok maybe something like poker isn't fake, but maybe the site takes their cut as btc
1076 2011-08-25 12:40:00 <doublec> genjix, you live! how's your poker site going?
1077 2011-08-25 12:40:13 <genjix> doublec: i've been busy on #bitcoinconsultancy
1078 2011-08-25 12:40:19 <doublec> so abandoned?
1079 2011-08-25 12:40:20 <genjix> irc can be distracting :p
1080 2011-08-25 12:40:25 <doublec> or passed on?
1081 2011-08-25 12:40:29 <genjix> https://gitorious.org/libbitcoin/libbitcoin
1082 2011-08-25 12:40:36 <doublec> yeah I read about that
1083 2011-08-25 12:41:04 <genjix> also the exchange
1084 2011-08-25 12:41:17 <genjix> poker software will happen, just not for a while
1085 2011-08-25 12:41:21 <doublec> ah, ok
1086 2011-08-25 12:41:32 shLONG has joined
1087 2011-08-25 12:41:36 <genjix> we need to build the network infrastructure firstly :)
1088 2011-08-25 12:43:36 <iddo> genjix: can you do it without trusting central website as escrow? using https://en.bitcoin.it/wiki/Contracts
1089 2011-08-25 12:44:15 <genjix> there's a bunch of things you can do to lessen the pain
1090 2011-08-25 12:44:35 <genjix> CHECKMULTISIG for shared wallets, and distributed dealing by the whole table.
1091 2011-08-25 12:46:14 normanrichards has quit (Quit: normanrichards)
1092 2011-08-25 12:46:18 <iddo> if all players lock their bitcoins at start, then using mental poker multiparty computation, that wouldn't involve trust
1093 2011-08-25 12:46:38 <iddo> but someone could refuse to unlock...
1094 2011-08-25 12:46:44 <iddo> if he loses:)
1095 2011-08-25 12:46:45 vigilyn2 has joined
1096 2011-08-25 12:47:24 <iddo> so one way is cope with it is to lock 2x btc when you deposit x btc, so he has incentive to unlock
1097 2011-08-25 12:47:56 <coderrr> iddo, as gmaxwell pointed out to me, there's still an extortion attack there
1098 2011-08-25 12:48:14 <coderrr> if one party needs their coins less than the others, he can tell them to send 1% of theirs to him for him to unlock
1099 2011-08-25 12:48:18 <iddo> the more complex multiparty computation protocol is called gradual release (but there's no low-level support for that in bitcoin)
1100 2011-08-25 12:49:01 vigilyn has quit (Ping timeout: 252 seconds)
1101 2011-08-25 12:49:06 nemesis51 is now known as nemesis51|away
1102 2011-08-25 12:49:10 <iddo> coderrr: yes i talked with gmaxwell about extortion, the basic feature that still holds true is that you only lose money if you are dishonest
1103 2011-08-25 12:49:46 <coderrr> you mean if any one of the people is dishonest? or what ?
1104 2011-08-25 12:49:56 shLONG has quit ()
1105 2011-08-25 12:50:14 <genjix> iddo: yep that's the problem
1106 2011-08-25 12:50:17 <iddo> anyway player could decide if they wish to trust central escrow, or not trust anyone and expose themselves to this extorsion game-theory stuff... there's no way to avoid it
1107 2011-08-25 12:50:34 <coderrr> yea
1108 2011-08-25 12:50:35 <genjix> but CHECKMULTISIG is the way imo
1109 2011-08-25 12:51:58 <lfm> or just OP_AND?
1110 2011-08-25 12:52:00 <iddo> coderrr: if you deposit x btc by unlocking 2x btc (sighash_all default flag, so lock is valid only when all players sign the txn), then if you refule to release the btc after the you lose in poker, then you also lose your extra x btc
1111 2011-08-25 12:52:30 <coderrr> iddo, right, but so does everyone else right ?
1112 2011-08-25 12:52:51 <iddo> coderrr: i.e. all players agree in advance that this is the protocol, and if someone is dishonest and refuse to honor the protocl then he only loses more of his btc
1113 2011-08-25 12:53:16 <iddo> unless players agree to be extorted...
1114 2011-08-25 12:53:30 <coderrr> right, or just , the rich asshole attack
1115 2011-08-25 12:53:31 <genjix> i mean for having a wallet owned by several trusted people
1116 2011-08-25 12:53:39 <coderrr> who throws away his money to piss others off
1117 2011-08-25 12:53:42 <genjix> so one guy cannot steal all funds
1118 2011-08-25 12:53:45 <genjix> anyway afk
1119 2011-08-25 12:54:26 genjix has left ()
1120 2011-08-25 12:54:28 <iddo> genjix: you can do secret sharing for the address that can unlock, but that has other problems
1121 2011-08-25 12:54:41 zeropointo has quit (Ping timeout: 245 seconds)
1122 2011-08-25 12:55:25 <iddo> if not everyone's signature is needed to release the btc, then cheaters can combine together and steal someone elses btc
1123 2011-08-25 12:56:38 <lfm> iddo ya, but then sometimes you want any 2 of 3 signatures also.
1124 2011-08-25 12:56:55 <iddo> the other suggestion that i mentioned is called gradual release, i.e. when someone loses the poker game he receives the rest of the btc that he deposited, in exchange for releasing his control over it
1125 2011-08-25 12:57:00 <iddo> but that's more complex:(
1126 2011-08-25 12:59:11 <iddo> lfm: yes bitcoin has low-level support for threshold secret sharing (2 of 3 etc.), but not sure if there's real-world scenario w.r.t. poker etc.
1127 2011-08-25 12:59:43 <iddo> i think that requiring everyone's signature is the better way
1128 2011-08-25 13:00:21 <lfm> poker isnt real world
1129 2011-08-25 13:00:44 Optimo_ has quit (Ping timeout: 276 seconds)
1130 2011-08-25 13:06:14 kish has quit (Ping timeout: 240 seconds)
1131 2011-08-25 13:06:29 E-sense has joined
1132 2011-08-25 13:09:03 MrTiggrAFK is now known as MrTiggrAFKSick
1133 2011-08-25 13:09:05 MrTiggrAFKSick is now known as MrTiggrSick
1134 2011-08-25 13:09:09 MrTiggrSick is now known as MrTiggrAFKSick
1135 2011-08-25 13:09:29 gronager has joined
1136 2011-08-25 13:10:18 brisket has joined
1137 2011-08-25 13:11:18 <brisket> zzz
1138 2011-08-25 13:11:23 darkmethod has joined
1139 2011-08-25 13:12:07 noagendamarket has quit (Ping timeout: 252 seconds)
1140 2011-08-25 13:14:33 <piuk_> Is it possible to get the public key from a ScriptSig with only the <sig> part?
1141 2011-08-25 13:14:35 <piuk_> e.g. "scriptSig" : "3045022100f866278ecd044a2630d7ffaab14a4d9eab1e18351fcb61c5b2f8cfed9dedd7e30220784074b7118b68de4b1aaa41223c8dff2bfbd5c64577c50fe8d3d616b299340e01"
1142 2011-08-25 13:15:16 <lfm> How do I know I exist? 1. Sit at desk 2. Open drawer 3. Put fingers in drawer 4. Slam drawer shut  ....  Yup I exist!
1143 2011-08-25 13:15:33 b4epoche has quit (Quit: Computer has gone to sleep.)
1144 2011-08-25 13:15:33 b4epoche_ is now known as b4epoche
1145 2011-08-25 13:15:38 AStove has quit (Ping timeout: 260 seconds)
1146 2011-08-25 13:15:40 <lfm> piuk_: no
1147 2011-08-25 13:15:49 AStove has joined
1148 2011-08-25 13:16:10 <piuk_> thanks
1149 2011-08-25 13:17:08 <lfm> piuk_: the "sig" is just a hash of the key. it is the nature of cryptographic hashes that they are not reversable
1150 2011-08-25 13:17:42 wolfspraul has quit (Quit: leaving)
1151 2011-08-25 13:18:32 Optimo_ has joined
1152 2011-08-25 13:20:11 grbgout has quit (Ping timeout: 252 seconds)
1153 2011-08-25 13:20:17 <lfm> nanotube: there is bid/ask
1154 2011-08-25 13:22:02 grbgout has joined
1155 2011-08-25 13:28:09 normanrichards has joined
1156 2011-08-25 13:32:40 somuchwin2 has joined
1157 2011-08-25 13:33:15 somuchwin has quit (Ping timeout: 240 seconds)
1158 2011-08-25 13:33:40 hloti has joined
1159 2011-08-25 13:34:13 <hloti> hi people. had a question about bitcoins p2p capability
1160 2011-08-25 13:34:27 <lfm> what is the question?
1161 2011-08-25 13:34:39 <WildSoil> ;;bc,stats
1162 2011-08-25 13:34:41 <gribble> Current Blocks: 142530 | Current Difficulty: 1805700.8361937 | Next Difficulty At Block: 143135 | Next Difficulty In: 605 blocks | Next Difficulty In About: 4 days, 1 hour, 28 minutes, and 20 seconds | Next Difficulty Estimate: 1850185.35689645
1163 2011-08-25 13:35:11 <hloti> what functions does this p2p support? does it allow searching the shared content of other node? in other words, can one use the technology to further develop file sharing capability to it?
1164 2011-08-25 13:35:59 <lfm> hloti: it support the bitcoin block chain. its not really a general pupose p2p library or anything
1165 2011-08-25 13:36:15 dr_win_ has quit (Remote host closed the connection)
1166 2011-08-25 13:37:27 <hloti> LFM) i want to develop a p2p mobile application with bitcoin paymnet functions in it. but i also want to be able to seach nodes in network for their shared content. this could be a small xml file. is this functionality already built in the core, or it does not exist
1167 2011-08-25 13:37:38 b4epoche_ has joined
1168 2011-08-25 13:37:48 coderrr is now known as coderrr`brb
1169 2011-08-25 13:37:51 <lfm> hloti: no
1170 2011-08-25 13:37:56 coderrr`brb is now known as coderrr
1171 2011-08-25 13:38:39 <hloti> ok so it can only update the block chain. thats it
1172 2011-08-25 13:38:56 RealSolid2 has joined
1173 2011-08-25 13:39:44 <lfm> hloti: thats what it does. it is open source so you could change it to do anything but I dont think people would really want you to be able to check their systems for files really.
1174 2011-08-25 13:39:46 gp5st has joined
1175 2011-08-25 13:40:45 MrTiggrAFKSick is now known as MrTiggr
1176 2011-08-25 13:41:18 p0s has joined
1177 2011-08-25 13:41:21 <hloti> LFM) yes i understand that. i was mainly thinking to search the content of an xlm file that contains some structured data that the user creates through the app and then shares it. but as you say, this part needs to be developed in it
1178 2011-08-25 13:41:45 gronager has quit (Quit: Leaving.)
1179 2011-08-25 13:42:18 <CIA-101> bitcoin: Con Kolivas * re81a362b5f06 cgminer/main.c: Bump threshhold for lag up to maximum queued but no staged work.
1180 2011-08-25 13:42:34 RealSolid has quit (Ping timeout: 268 seconds)
1181 2011-08-25 13:42:48 RealSolid2 is now known as RealSolid
1182 2011-08-25 13:42:58 RealSolid has quit (Changing host)
1183 2011-08-25 13:42:58 RealSolid has joined
1184 2011-08-25 13:43:03 <hloti> LFM) do you know of any other p2p technologies available to do this fucntion for use in developing and android p2p app
1185 2011-08-25 13:44:01 zapnap has joined
1186 2011-08-25 13:45:08 <lfm> hloti: you mean like bittorrent or something? no really
1187 2011-08-25 13:45:16 <lfm> not really
1188 2011-08-25 13:46:09 <hloti> LFM) yes some  thing like that. because those can connect and search files. but any ways, thank you so much for your kind respons. have a great day.
1189 2011-08-25 13:50:58 MrTiggr is now known as MrTiggrAFKSick
1190 2011-08-25 13:52:22 hloti has quit (Quit: Page closed)
1191 2011-08-25 13:53:53 jostmey has quit (Ping timeout: 252 seconds)
1192 2011-08-25 13:59:48 magn3ts has quit (Ping timeout: 260 seconds)
1193 2011-08-25 14:03:40 bittwist has quit ()
1194 2011-08-25 14:03:47 bittwist has joined
1195 2011-08-25 14:03:48 bittwist has quit (Changing host)
1196 2011-08-25 14:03:48 bittwist has joined
1197 2011-08-25 14:04:26 blishchrot has quit (Ping timeout: 276 seconds)
1198 2011-08-25 14:04:36 egecko has quit (Quit: ~ Trillian Astra - www.trillian.im ~)
1199 2011-08-25 14:05:02 blishchrot has joined
1200 2011-08-25 14:05:40 kish has joined
1201 2011-08-25 14:07:35 someone42 has joined
1202 2011-08-25 14:14:02 hypermbax is now known as 14WAB3B8N
1203 2011-08-25 14:14:03 hypermbax has joined
1204 2011-08-25 14:14:30 HaltingState has left ("Leaving")
1205 2011-08-25 14:17:07 Clipse has quit (Read error: Connection reset by peer)
1206 2011-08-25 14:18:03 14WAB3B8N has quit (Ping timeout: 260 seconds)
1207 2011-08-25 14:18:44 hypermbax has quit (Ping timeout: 276 seconds)
1208 2011-08-25 14:21:12 superman2016 has quit (Read error: Connection reset by peer)
1209 2011-08-25 14:22:36 superman2016 has joined
1210 2011-08-25 14:23:41 aldiyen has joined
1211 2011-08-25 14:24:07 copumpkin has quit (Quit: Computer has gone to sleep.)
1212 2011-08-25 14:25:33 larsivi has quit (Ping timeout: 250 seconds)
1213 2011-08-25 14:30:33 18VAAM2B1 has joined
1214 2011-08-25 14:30:54 hypermbax has joined
1215 2011-08-25 14:32:17 Diablo-D3 has joined
1216 2011-08-25 14:34:59 MobiusL has quit (Changing host)
1217 2011-08-25 14:34:59 MobiusL has joined
1218 2011-08-25 14:36:15 hugolp has joined
1219 2011-08-25 14:39:16 fn0rd has quit (Ping timeout: 245 seconds)
1220 2011-08-25 14:40:43 DontMindMe has joined
1221 2011-08-25 14:43:46 gp5st has quit (Read error: Connection reset by peer)
1222 2011-08-25 14:45:09 gp5st has joined
1223 2011-08-25 14:47:52 copumpkin has joined
1224 2011-08-25 14:49:13 paul0 has joined
1225 2011-08-25 14:55:03 egecko has joined
1226 2011-08-25 14:57:16 Rabbit67890 has joined
1227 2011-08-25 15:08:27 DD- has quit ()
1228 2011-08-25 15:08:35 <UukGoblin> I'm trying to understand the Standard Transaction script: <sig> <pubKey> OP_DUP... I understand pubKey is the public address of the recipient of coins... what should signature contain and which key should it use?
1229 2011-08-25 15:09:21 <UukGoblin> on the wiki it says "a signature to show evidence of the private key corresponding to the public key just provided" - but we've provided a public key of the /recipient/, so how would we know his private key?
1230 2011-08-25 15:10:01 <upb> lo
1231 2011-08-25 15:10:05 <upb> lol
1232 2011-08-25 15:10:10 <upb> the recipient knows his private key
1233 2011-08-25 15:10:36 <kinlo> you give the public key, and you give the signature, of the receipient of the transaction you are trying to spend
1234 2011-08-25 15:10:52 <kinlo> as a bitcoin address does not contain the public key...
1235 2011-08-25 15:11:11 <UukGoblin> oh, right... so s/recipient/sender/
1236 2011-08-25 15:12:17 <upb> a sender is a recipient awell yes :)
1237 2011-08-25 15:12:23 <UukGoblin> so you sign your public key with your private key?
1238 2011-08-25 15:12:28 <upb> no
1239 2011-08-25 15:12:42 <upb> you sign the transaction with your private key
1240 2011-08-25 15:12:54 <UukGoblin> ah, the entire transaction
1241 2011-08-25 15:12:59 <UukGoblin> yeah, makes sense
1242 2011-08-25 15:13:26 <log0s> UukGoblin: this might help: https://en.bitcoin.it/wiki/OP_CHECKSIG
1243 2011-08-25 15:14:06 <UukGoblin> log0s, ah, thanks
1244 2011-08-25 15:19:18 LightRider has joined
1245 2011-08-25 15:20:25 huk has joined
1246 2011-08-25 15:21:25 Zarutian has joined
1247 2011-08-25 15:21:45 KenArmitt has quit ()
1248 2011-08-25 15:21:46 <UukGoblin> the whole recipient/sender is confusing ;-)
1249 2011-08-25 15:23:51 Rabbit67890 has quit (Quit: Rabbit67890)
1250 2011-08-25 15:28:09 egecko has quit (Quit: ~ Trillian Astra - www.trillian.im ~)
1251 2011-08-25 15:29:00 E-sense has quit (Quit: System.exit(0);)
1252 2011-08-25 15:30:21 piotrpopieluch has joined
1253 2011-08-25 15:31:30 traviscj_ has joined
1254 2011-08-25 15:32:20 Acip has joined
1255 2011-08-25 15:33:18 traviscj has quit (Ping timeout: 252 seconds)
1256 2011-08-25 15:34:19 traviscj has joined
1257 2011-08-25 15:36:47 traviscj_ has quit (Ping timeout: 245 seconds)
1258 2011-08-25 15:37:41 magn3ts has joined
1259 2011-08-25 15:39:37 BTCT_away has quit (Quit: BTCT_away)
1260 2011-08-25 15:40:19 erus` has quit (Quit: ChatZilla 0.9.87 [Firefox 6.0/20110811165603])
1261 2011-08-25 15:41:52 ThomasV has quit (Quit: Leaving)
1262 2011-08-25 15:42:09 magn3ts has quit (Ping timeout: 240 seconds)
1263 2011-08-25 15:43:32 BlueMatt has joined
1264 2011-08-25 15:45:25 Elvis- has quit (Quit: Leaving)
1265 2011-08-25 15:49:12 piotrpopieluch has quit (Quit: piotrpopieluch)
1266 2011-08-25 15:53:02 MobiusL has quit (Quit: Leaving)
1267 2011-08-25 15:53:33 MobiusL has joined
1268 2011-08-25 15:53:37 erle- has joined
1269 2011-08-25 16:01:08 nr9 has quit (Ping timeout: 260 seconds)
1270 2011-08-25 16:04:04 hypermbax has quit (Remote host closed the connection)
1271 2011-08-25 16:04:04 18VAAM2B1 has quit (Remote host closed the connection)
1272 2011-08-25 16:05:32 <epscy> ;;bc,stats
1273 2011-08-25 16:05:35 <gribble> Current Blocks: 142539 | Current Difficulty: 1805700.8361937 | Next Difficulty At Block: 143135 | Next Difficulty In: 596 blocks | Next Difficulty In About: 4 days, 0 hours, 41 minutes, and 4 seconds | Next Difficulty Estimate: 1840645.47706339
1274 2011-08-25 16:05:59 <epscy> be interested to see if the difficulty drops again this increase
1275 2011-08-25 16:06:12 <epscy> after this increase even
1276 2011-08-25 16:09:02 jimb0 has quit (Ping timeout: 264 seconds)
1277 2011-08-25 16:09:24 danbri has joined
1278 2011-08-25 16:09:36 spin0 has quit (Ping timeout: 252 seconds)
1279 2011-08-25 16:10:27 spin0 has joined
1280 2011-08-25 16:13:27 slush has quit (Quit: Leaving.)
1281 2011-08-25 16:14:38 jimb0 has joined
1282 2011-08-25 16:14:41 sharpbattlesuvc has joined
1283 2011-08-25 16:15:54 <asher^> how does one extract the transations in a block?
1284 2011-08-25 16:17:21 kish has quit (Read error: Connection reset by peer)
1285 2011-08-25 16:18:21 Titeuf_87 has joined
1286 2011-08-25 16:18:23 kish has joined
1287 2011-08-25 16:18:30 gp5st has quit (Quit: Leaving.)
1288 2011-08-25 16:21:05 <UukGoblin> asher^, blockexplorer.com?
1289 2011-08-25 16:22:56 <asher^> UukGoblin i mean how would i do it on my own.. looks like i need a patch
1290 2011-08-25 16:24:35 <UukGoblin> there's various tools for that
1291 2011-08-25 16:25:52 BurningToad_ has quit (Quit: Leaving)
1292 2011-08-25 16:26:08 <asher^> such as?
1293 2011-08-25 16:26:22 BurningToad_ has joined
1294 2011-08-25 16:26:59 BurningToad_ has quit (Read error: Connection reset by peer)
1295 2011-08-25 16:29:16 <UukGoblin> asher^, google shows https://bitcointalk.org/index.php?topic=26484 for instance...
1296 2011-08-25 16:29:27 <UukGoblin> I'm quite sure blockexplorer's source is available somewhere too
1297 2011-08-25 16:29:42 BurningToad has joined
1298 2011-08-25 16:30:18 <asher^> ty
1299 2011-08-25 16:32:18 <phantomcircuit> UukGoblin, it isn't
1300 2011-08-25 16:32:24 b4epoche_ has quit (Quit: Computer has gone to sleep.)
1301 2011-08-25 16:33:20 <UukGoblin> phantomcircuit, oh, that's a shame
1302 2011-08-25 16:33:30 erus` has joined
1303 2011-08-25 16:34:05 gp5st has joined
1304 2011-08-25 16:34:36 BlueMatt has quit (Ping timeout: 276 seconds)
1305 2011-08-25 16:40:16 <asher^> anyone used gavins monitoraddress/blocks patch on .24?
1306 2011-08-25 16:40:32 RealSolid has quit (Ping timeout: 240 seconds)
1307 2011-08-25 16:43:41 mosimo has joined
1308 2011-08-25 16:50:15 topace has quit (Ping timeout: 240 seconds)
1309 2011-08-25 16:50:55 CydeWeys has quit (Ping timeout: 240 seconds)
1310 2011-08-25 16:51:13 kish has quit (Read error: Connection reset by peer)
1311 2011-08-25 16:51:31 kish has joined
1312 2011-08-25 16:51:44 kish has quit (Read error: Connection reset by peer)
1313 2011-08-25 16:52:01 devon_hillard has joined
1314 2011-08-25 16:52:01 devon_hillard has quit (Changing host)
1315 2011-08-25 16:52:01 devon_hillard has joined
1316 2011-08-25 17:01:31 erus` has quit (Quit: ChatZilla 0.9.87 [Firefox 6.0/20110811165603])
1317 2011-08-25 17:03:00 sharpbattlesuvc has quit (Remote host closed the connection)
1318 2011-08-25 17:05:13 coblee has joined
1319 2011-08-25 17:05:24 RazielZ has quit (Quit: Leaving)
1320 2011-08-25 17:10:28 Guest69125 has quit (Ping timeout: 252 seconds)
1321 2011-08-25 17:10:40 erus` has joined
1322 2011-08-25 17:12:33 RazielZ has joined
1323 2011-08-25 17:13:38 supersalzba has joined
1324 2011-08-25 17:21:28 Cablesaurus has quit (Quit: Copywight 2007 Elmer Fudd. All wights wesewved.)
1325 2011-08-25 17:24:27 ThomasV has joined
1326 2011-08-25 17:28:56 osmosis has joined
1327 2011-08-25 17:29:10 Diablo-D3 has quit (Quit: do coders dream of sheep()?)
1328 2011-08-25 17:29:56 Diablo-D3 has joined
1329 2011-08-25 17:31:47 wardearia has quit (Ping timeout: 245 seconds)
1330 2011-08-25 17:33:12 larsivi has joined
1331 2011-08-25 17:34:21 dvide has joined
1332 2011-08-25 17:35:16 zamgo has joined
1333 2011-08-25 17:36:24 vigilyn2 is now known as vigilyn
1334 2011-08-25 17:39:53 gavinandresen has joined
1335 2011-08-25 17:40:56 topace has joined
1336 2011-08-25 17:44:45 imsaguy has joined
1337 2011-08-25 17:44:46 imsaguy has quit (Changing host)
1338 2011-08-25 17:44:46 imsaguy has joined
1339 2011-08-25 17:48:29 wardearia has joined
1340 2011-08-25 17:48:50 <asher^> hmm, what exactly is the difference between getblockcount and getblocknumber?
1341 2011-08-25 17:53:54 copumpkin has quit (Ping timeout: 276 seconds)
1342 2011-08-25 17:54:47 somuchwin2 has quit (Ping timeout: 258 seconds)
1343 2011-08-25 17:56:00 Gekz has quit (Ping timeout: 246 seconds)
1344 2011-08-25 17:56:53 somuchwin has joined
1345 2011-08-25 17:57:13 copumpkin has joined
1346 2011-08-25 17:57:34 BlueMatt has joined
1347 2011-08-25 17:57:37 Gekz has joined
1348 2011-08-25 17:57:37 Gekz has quit (Changing host)
1349 2011-08-25 17:57:37 Gekz has joined
1350 2011-08-25 17:58:15 <BlueMatt> ;;seen sipa
1351 2011-08-25 17:58:15 <gribble> sipa was last seen in #bitcoin-dev 3 weeks, 4 days, 6 hours, 45 minutes, and 22 seconds ago: <sipa> ;;later tell riush could you try again? the 'unknown key' error should be fixed when removing keys
1352 2011-08-25 17:58:19 <BlueMatt> ;;seen gavinandresen
1353 2011-08-25 17:58:19 <gribble> gavinandresen was last seen in #bitcoin-dev 22 hours, 59 minutes, and 0 seconds ago: <gavinandresen> (not the soft-shun of "I just won't include them in blocks I create")
1354 2011-08-25 17:58:37 <gavinandresen> Hey Matt, I'm here
1355 2011-08-25 17:59:30 <BlueMatt> oh, I just wanted to see if you and sipa were, but I suppose sipa is just too busy these days...
1356 2011-08-25 18:00:08 <ThomasV> gavinandresen: there's a bug in the makefile, the line with "ifdef $UPNP" should be "#ifeq ($(UPNP,1))"
1357 2011-08-25 18:00:28 <BlueMatt> again?
1358 2011-08-25 18:00:45 <luke-jr> ThomasV: no.
1359 2011-08-25 18:00:51 <BlueMatt> ThomasV: its deliberate, if not slightly confusing
1360 2011-08-25 18:01:00 <luke-jr> ThomasV: UPNP=0 means "supported, disabled by default"
1361 2011-08-25 18:01:03 <ThomasV> huh? why no ?
1362 2011-08-25 18:01:07 <luke-jr> ThomasV: UPNP=1 means "supported, enabled by default"
1363 2011-08-25 18:01:07 <BlueMatt> see discussion at https://github.com/bitcoin/bitcoin/pull/461
1364 2011-08-25 18:01:12 <luke-jr> ThomasV: UPNP= means "not supported"
1365 2011-08-25 18:01:13 <BlueMatt> (and the like 10 before it)
1366 2011-08-25 18:02:12 <ThomasV> hmm, I will need to have a look. perhaps a comment around it would help ?
1367 2011-08-25 18:02:57 hugolp has quit (Quit: KVIrc 4.1.1 Equilibrium http://www.kvirc.net/)
1368 2011-08-25 18:03:02 <BlueMatt> well its been reported so many times (it is in build-*.txt) it probably just needs changed...
1369 2011-08-25 18:03:05 <asher^> any of you guys use jsonRPCClass.php? im having some trouble, i think with variable types
1370 2011-08-25 18:03:15 <BlueMatt> the original idea was that autotools would come along and it would be clear, but that never happened
1371 2011-08-25 18:03:39 <luke-jr> yeah, --disable-upnp vs --enable-upnp[=0/1] would be much better
1372 2011-08-25 18:03:56 <luke-jr> actually =no/yes
1373 2011-08-25 18:04:06 <ThomasV> BlueMatt: my problem is with  LIBS+=-l miniupnpc
1374 2011-08-25 18:04:33 <BlueMatt> ?
1375 2011-08-25 18:04:39 <ThomasV> so I should set UPNP=
1376 2011-08-25 18:04:42 <BlueMatt> yes
1377 2011-08-25 18:04:47 <ThomasV> ok
1378 2011-08-25 18:04:58 <Optimo_> hiya
1379 2011-08-25 18:05:17 <Optimo_> I go away for 5 minutes and all the support at $10 is gone
1380 2011-08-25 18:05:20 <Optimo_> oops wrong room
1381 2011-08-25 18:05:54 <ThomasV> BlueMatt: why did autotools never happen ?
1382 2011-08-25 18:05:57 <BlueMatt> gavinandresen: so what is up with the sipa's callback branch?
1383 2011-08-25 18:06:06 <BlueMatt> ThomasV: the guy who wrote it left without finishing it
1384 2011-08-25 18:06:31 <gavinandresen> BlueMatt: I'm rewriting it a bit, then will test it and commit it as a fix to the deadlock issue
1385 2011-08-25 18:06:33 <upb> targeting a moving target is frustrating i guess :P
1386 2011-08-25 18:06:49 erle- has quit (Quit: CETERVM•AVTEM•CENSEO•CVTTENBERC•ESSE•DELENDVM)
1387 2011-08-25 18:06:49 supersalzba has quit (Remote host closed the connection)
1388 2011-08-25 18:06:58 <ThomasV> gavinandresen: I too have a deadlock, but I can't say where it is :-)
1389 2011-08-25 18:07:18 <ThomasV> my daemon just becomes unresponsive
1390 2011-08-25 18:07:24 <BlueMatt> upb: not that, he just never finished it, the target really didnt change the entire time he was working on it
1391 2011-08-25 18:07:41 <upb> oh
1392 2011-08-25 18:07:47 <gavinandresen> Latest git-head has deadlock detection code if you compile with -DDEBUG_LOCKORDER
1393 2011-08-25 18:08:13 <ThomasV> gavinandresen: is it documented ?
1394 2011-08-25 18:08:22 <BlueMatt> gavinandresen: no, I meant exactly what this thing does...I think Im just being really thick here
1395 2011-08-25 18:09:11 <BlueMatt> but I dont see it fixing the deadlock at all
1396 2011-08-25 18:09:21 <gavinandresen> BlueMatt: ah, right.  It defers making calls into the wallet when things like new transactions come in, so the main code isn't holding locks that the wallet code might need.
1397 2011-08-25 18:09:52 <BlueMatt> ah ok yes...well that was a part of my grand rearch...
1398 2011-08-25 18:10:00 <BlueMatt> (which sipa mostly planned)
1399 2011-08-25 18:10:16 <luke-jr> BlueMatt: wasn't he waitign until bitcoin-qt got merged?
1400 2011-08-25 18:10:28 <BlueMatt> luke-jr: other way around
1401 2011-08-25 18:10:32 molecular has quit (Ping timeout: 240 seconds)
1402 2011-08-25 18:10:50 <luke-jr> BlueMatt: O.o that seems backward
1403 2011-08-25 18:10:54 <BlueMatt> qt was waiting on autotools
1404 2011-08-25 18:10:55 joeschmoe has quit (Ping timeout: 250 seconds)
1405 2011-08-25 18:11:04 <gavinandresen> I'd like to get 0.4 out before any grand re-architecting.  And send me the grand-rearchitecting design doc, please.....   (is there one?)
1406 2011-08-25 18:11:07 molecular has joined
1407 2011-08-25 18:11:07 joeschmoe has joined
1408 2011-08-25 18:11:21 <luke-jr> gavinandresen: why bump it to 0.4 then?
1409 2011-08-25 18:11:22 <BlueMatt> gavinandresen: just pm logs with sipa, I can send the header of the file that does the work though...
1410 2011-08-25 18:11:38 <BlueMatt> gavinandresen: well if you want 0.4 out, callbacks is also fairly large reorg...
1411 2011-08-25 18:13:30 <BlueMatt> gavinandresen: fairly beta bug general idea: http://pastebin.com/xxji86YF
1412 2011-08-25 18:13:59 <BlueMatt> main.cpp becomes purely chain/tx storage, and communicates via hub to net code
1413 2011-08-25 18:14:06 <BlueMatt> also wallet gets notifications via hub
1414 2011-08-25 18:14:38 magn3ts has joined
1415 2011-08-25 18:14:53 <gavinandresen> You're reinventing Boost.Signals
1416 2011-08-25 18:14:58 <luke-jr> lol
1417 2011-08-25 18:15:04 <luke-jr> also Qt4 signals
1418 2011-08-25 18:15:21 <BlueMatt> to some extent, but putting it in a nice container that is bitcoin-specific
1419 2011-08-25 18:15:27 <luke-jr> Bitcoin-specific is bad :P
1420 2011-08-25 18:15:28 <BlueMatt> the backend would use a boost::asio-type thing
1421 2011-08-25 18:15:38 <gavinandresen> Mmm.  "HubListener" doesn't sound very bitcoin-specific......
1422 2011-08-25 18:15:59 <BlueMatt> s/HubListener/BitcoinHubListener/
1423 2011-08-25 18:16:34 <BlueMatt> the idea is to abstract the block storage and net stuff
1424 2011-08-25 18:16:46 <BlueMatt> so that net can be rearched some by people who know how to do those things
1425 2011-08-25 18:17:01 oscar-spectre has joined
1426 2011-08-25 18:17:06 <BlueMatt> and so that main can be replaced with headers-only without touching much/any net/wallet/etc code
1427 2011-08-25 18:17:14 traviscj has quit (Remote host closed the connection)
1428 2011-08-25 18:17:28 forbiddensaynq has joined
1429 2011-08-25 18:17:29 <BlueMatt> also, if someone wants to extend bitcoin using their own plugins, listening on the hub makes it fairly easy
1430 2011-08-25 18:17:48 <gavinandresen> I like the basic idea.  And Boost.Signals is a very nice framework for de-coupling C++ componenents...
1431 2011-08-25 18:17:50 <luke-jr> plugins in Bitcoin wallet sound like bad idea
1432 2011-08-25 18:17:52 <BlueMatt> you could even easily do a luke-style wallet protocol remotely...
1433 2011-08-25 18:18:00 <gavinandresen> I like the idea of all the networking stuff using Boost.Asio, too
1434 2011-08-25 18:18:05 <BlueMatt> (is what I was getting at)
1435 2011-08-25 18:18:24 <luke-jr> I agree with Gavin for using standard Boost stuff for this tho
1436 2011-08-25 18:18:55 <BlueMatt> I find having 20000 signals defined in main and then used like this to be...dirty
1437 2011-08-25 18:18:56 magn3ts has quit (Ping timeout: 240 seconds)
1438 2011-08-25 18:19:00 <BlueMatt> but maybe thats just me
1439 2011-08-25 18:19:16 piuk_ has quit (Quit: Page closed)
1440 2011-08-25 18:19:17 <gavinandresen> Shouldn't be 20,000 signals if each component has a well-defined interface.
1441 2011-08-25 18:19:30 <BlueMatt> maybe I dont understand the point of Boost.Signal then...
1442 2011-08-25 18:20:09 <BlueMatt> but the backend would be done in signal or asio or whatever which would allow it to be threaded or you could use signal for the wallet and pick it up in another thread or as you like...
1443 2011-08-25 18:20:17 <ThomasV> BlueMatt: will there be a separation between the daemon and the wallet ?
1444 2011-08-25 18:20:30 <BlueMatt> could be implemented, but thats further down the road
1445 2011-08-25 18:20:43 <BlueMatt> in the code, yes there would be complete separation, but they would still be in one process
1446 2011-08-25 18:20:46 <gavinandresen> Just makes it easy to re-use parts of bitcoin, and listen to events that "you" care about.  E.g. GUI could ask to be told when the block chain count changes, Wallets told when transactions enter the memory pool, etc
1447 2011-08-25 18:21:09 <BlueMatt> thats not what hub does?
1448 2011-08-25 18:21:21 MC1984 has joined
1449 2011-08-25 18:21:24 <asher^> gavinandresen, do you have plans to update your getblock patch for .24?
1450 2011-08-25 18:21:29 <BlueMatt> currently you just extend listener and only implement what you want
1451 2011-08-25 18:21:46 <gavinandresen> asher^: nope, too many higher priority things to do
1452 2011-08-25 18:22:15 <asher^> kk
1453 2011-08-25 18:22:23 <BlueMatt> correct me if Im wrong, but to use signal, you would then have a newblock signal and a newtx signal, and a reorg signal, and and and?
1454 2011-08-25 18:24:09 <gavinandresen> I dunno.  Probably just a "there is a new tip-of-chain" signal and "transaction entered/exited the memory pool" would be enough.  But I haven't thought deeply about it.
1455 2011-08-25 18:24:45 DaQatz has quit (Read error: Connection reset by peer)
1456 2011-08-25 18:24:46 <gavinandresen> (for the keep-the-block-chain-organized component)
1457 2011-08-25 18:24:54 <asher^> hmm, are the commands available on the command line automatically available via a json http request? or are they set up separately in bitcoind?
1458 2011-08-25 18:24:57 <BlueMatt> well afaict, you would need a signal for each of the public methods in CHub
1459 2011-08-25 18:25:15 <BlueMatt> and at that point you would be implementing CHub in 20 signal objects
1460 2011-08-25 18:25:18 <gavinandresen> asher^: command-line is just a wrapper for json-http
1461 2011-08-25 18:25:33 <asher^> thats what i though. i wonder what in the world im doing wrong
1462 2011-08-25 18:25:52 <b4epoche> gavinandresen:  would you be willing to share a powerpoint (which it appears you used) of your CIA talk?
1463 2011-08-25 18:26:00 b4epoche_ has joined
1464 2011-08-25 18:26:05 <BlueMatt> he did...dont know where though
1465 2011-08-25 18:26:17 newbie13 has joined
1466 2011-08-25 18:26:38 <gavinandresen> maybe skypaint.com/bitcoin/ ?
1467 2011-08-25 18:27:01 <gavinandresen> hmm, nope, didn't put it there....
1468 2011-08-25 18:27:07 <BlueMatt> wtf is skypaint?
1469 2011-08-25 18:27:22 Optimo_ has quit ()
1470 2011-08-25 18:27:22 <BlueMatt> did you make that?
1471 2011-08-25 18:27:33 <gavinandresen> yup, wrote every line of code in skypaint....
1472 2011-08-25 18:27:40 Optimo_ has joined
1473 2011-08-25 18:29:00 Lopuz has quit (Ping timeout: 276 seconds)
1474 2011-08-25 18:29:41 Optimo_ has quit (Client Quit)
1475 2011-08-25 18:29:47 <BlueMatt> so...I should just drop reorging and rewrite it using boost::signal? it just seems like boost signal would work identically and be slightly messier?
1476 2011-08-25 18:31:33 <phungus> Gavin, did you really tell someone to shove the Bitcoin gui up their ass? and to eat your cock? someone in #bitcoin is saying they saw this on the Bitcoinshow
1477 2011-08-25 18:31:41 <phungus> just curious
1478 2011-08-25 18:31:46 Optimo_ has joined
1479 2011-08-25 18:32:04 thesheff17 has joined
1480 2011-08-25 18:32:08 <phungus> sorry if that should be in PM
1481 2011-08-25 18:32:09 newbie15 has joined
1482 2011-08-25 18:32:22 <phungus> I mean no disrespect, we have no video timestamp yet
1483 2011-08-25 18:32:29 wirehead has joined
1484 2011-08-25 18:32:45 <phungus> no proof
1485 2011-08-25 18:32:59 <b4epoche> sounds like it would have been hilarious
1486 2011-08-25 18:33:03 <BlueMatt> heh, it didnt happen
1487 2011-08-25 18:33:04 <phungus> :-)
1488 2011-08-25 18:33:16 <phungus> this is from TuxBlackEdo so who knows
1489 2011-08-25 18:33:56 newbie13 has quit (Ping timeout: 240 seconds)
1490 2011-08-25 18:34:16 <b4epoche> What's DevDirection.key at skypaint.com/bitcoin/ ?
1491 2011-08-25 18:34:20 <phungus> gotta love bitcoin community rumors
1492 2011-08-25 18:34:26 <gavinandresen> mmm.  don't feed the trolls.
1493 2011-08-25 18:34:45 <gavinandresen> b4epoche: slides from my bitcoin conference talk
1494 2011-08-25 18:34:52 <asher^> if anyone has a moment and can take a look at this it would be appreciated. its failing with getblockbycount/getblockbyhash but works with other methods. http://pastebin.com/wrQVgT3K
1495 2011-08-25 18:34:56 <phungus> werd
1496 2011-08-25 18:35:03 <phungus> I didn't think it sounded like your character bro
1497 2011-08-25 18:35:05 <b4epoche> gavinandresen:  what format?
1498 2011-08-25 18:35:17 <gavinandresen> b4epoche: mac KeyNote
1499 2011-08-25 18:35:18 <phungus> just trying to clear up public nonsense
1500 2011-08-25 18:35:19 <BlueMatt> apple keynote iirc
1501 2011-08-25 18:35:30 <b4epoche> hmm…  that's what I was hoping
1502 2011-08-25 18:35:36 <b4epoche> but not opening for me
1503 2011-08-25 18:35:50 <gavinandresen> oh, yeah, I interrupted the upload because it was 500-frigging meg
1504 2011-08-25 18:35:55 <gavinandresen> (wtf keynote?)
1505 2011-08-25 18:36:09 <b4epoche> you can "Reduce file size..."
1506 2011-08-25 18:36:23 <BlueMatt> iirc keynote stores the original images in raw in the .key "file" aka folder
1507 2011-08-25 18:36:23 <b4epoche> in the File menu
1508 2011-08-25 18:36:39 <b4epoche> no more bundles...
1509 2011-08-25 18:36:42 <BlueMatt> (isnt .key one of osx's files that are really folders but like to hide)
1510 2011-08-25 18:36:48 <b4epoche> not any more
1511 2011-08-25 18:36:55 * b4epoche wishes it still was
1512 2011-08-25 18:37:01 <BlueMatt> oh, meh oh well
1513 2011-08-25 18:37:17 <b4epoche> editing the internal files was easier
1514 2011-08-25 18:37:59 <b4epoche> but transferring via email was a pita (for the average joe)
1515 2011-08-25 18:38:46 <b4epoche> gavinandresen: is CIA talk a Keynote?
1516 2011-08-25 18:38:52 <gavinandresen> b4epoche: yup
1517 2011-08-25 18:41:49 <b4epoche> gavinandresen:  willing to share?
1518 2011-08-25 18:42:00 <gavinandresen> b4epoche: just did
1519 2011-08-25 18:42:07 <gavinandresen> (uploaded cia talk to skypaint.com/bitcoin
1520 2011-08-25 18:42:34 <BlueMatt> anyone have a sec to check that my gitian results are deterministic for you too?
1521 2011-08-25 18:42:53 <BlueMatt> at least the boost+wx ones from https://github.com/bitcoin/bitcoin/pull/464
1522 2011-08-25 18:43:04 <b4epoche> gavinandresen:  awesome, thx
1523 2011-08-25 18:45:55 DaQatz has joined
1524 2011-08-25 18:48:08 <BlueMatt> DaQatz: I like the ip
1525 2011-08-25 18:48:24 llama has joined
1526 2011-08-25 18:48:38 <BlueMatt> ipv6: bringing vanity ip addresses to everyone
1527 2011-08-25 18:49:19 larsivi has quit (Ping timeout: 260 seconds)
1528 2011-08-25 18:50:28 <BlueMatt> gavinandresen: anyway, so Im to read your comments as "meh, grand rearch ok, your implementation here, not so much"?
1529 2011-08-25 18:50:38 <asher^> noob question: how is a scriptPubKey linked to an address?
1530 2011-08-25 18:51:21 huk has quit (Read error: Connection reset by peer)
1531 2011-08-25 18:51:40 <gavinandresen> BlueMatt: I printed out your implementation and will look harder at it soon.  My initial reaction was "looks like he's reimplementing Boost.signals"
1532 2011-08-25 18:52:16 <BlueMatt> ah ok, Im just fishing to see what people's opinions are...no point working hard to implement something no one wants
1533 2011-08-25 18:52:31 <gavinandresen> yup
1534 2011-08-25 18:52:53 <luke-jr> someone give me somethign for the coinbase or I use random IRC quotes
1535 2011-08-25 18:52:56 <gavinandresen> I think you'll need a higher-level design document, and not just proposed .h files
1536 2011-08-25 18:52:57 <luke-jr> I ran out of prayers
1537 2011-08-25 18:53:03 huk has joined
1538 2011-08-25 18:53:29 <ThomasV> luke-jr: try child porn
1539 2011-08-25 18:53:45 datagutt has quit (Quit: kthxbai)
1540 2011-08-25 18:54:08 <luke-jr> ThomasV: no
1541 2011-08-25 18:54:13 <mtrlt> why not /dev/random ?
1542 2011-08-25 18:54:18 <luke-jr> mtrlt: that's boring
1543 2011-08-25 18:54:19 <ThomasV> luke-jr: something like "My name is Robert Brown, Oregon"
1544 2011-08-25 18:54:22 <luke-jr> and doesn't compress well
1545 2011-08-25 18:54:24 <BlueMatt> gavinandresen: well its working, just not 100% abstracted, just the major parts are... in terms of design, well its pretty much what the header suggests it is, but I suppose I could write up a paragraph or two...
1546 2011-08-25 18:54:27 <mtrlt> but serves its purpose :p
1547 2011-08-25 18:54:29 <luke-jr> ThomasV: LOL
1548 2011-08-25 18:54:33 <mtrlt> hmm is the coinbase length fixed?
1549 2011-08-25 18:54:43 <ThomasV> luke-jr: no, don't do it, it's a joke, ok?
1550 2011-08-25 18:54:44 <mtrlt> or is there a minimum or something
1551 2011-08-25 18:55:28 <luke-jr> ThomasV: I know.
1552 2011-08-25 18:55:37 <BlueMatt> (though the actual backend is hacked together with simple for loops atm, it should be rewritten using boost asio or something to allow it to work well, and eventually thread)
1553 2011-08-25 18:55:41 <Eliel> luke-jr: have an irc-bot grab a few quotes each time (or allow people on the channel to nominate them) and provide some way for people to vote on which quote to put there.
1554 2011-08-25 18:55:43 toffoo has joined
1555 2011-08-25 18:55:59 <BlueMatt> luke-jr: this is coinbase for what, eligius blocks?
1556 2011-08-25 18:56:21 <luke-jr> BlueMatt yeah
1557 2011-08-25 18:59:05 theymos has joined
1558 2011-08-25 18:59:06 asher^ has quit (Remote host closed the connection)
1559 2011-08-25 18:59:15 llama has quit (Remote host closed the connection)
1560 2011-08-25 18:59:23 llama has joined
1561 2011-08-25 18:59:23 llama has quit (Changing host)
1562 2011-08-25 18:59:23 llama has joined
1563 2011-08-25 18:59:37 <theymos> What's the bug with OP_CHECKMULTISIG thag gavin was talking about?
1564 2011-08-25 19:01:04 <gavinandresen> see the send/redeemescrow pull request: groffer claims it pops too many args off the stack
1565 2011-08-25 19:01:26 md2k7 has joined
1566 2011-08-25 19:03:38 piotrpopieluch has joined
1567 2011-08-25 19:06:34 piotrpopieluch has quit (Client Quit)
1568 2011-08-25 19:08:19 Qatz has joined
1569 2011-08-25 19:08:53 DaQatz has quit (Disconnected by services)
1570 2011-08-25 19:08:59 Qatz is now known as DaQatz
1571 2011-08-25 19:10:02 <upb> luke-jr: i already gave it: اشهد ان لا اله الا الله
1572 2011-08-25 19:10:52 DaQatz has quit (Read error: Connection reset by peer)
1573 2011-08-25 19:10:56 Qatz has joined
1574 2011-08-25 19:11:02 zeropointo has joined
1575 2011-08-25 19:11:14 Qatz is now known as DaQatz
1576 2011-08-25 19:12:35 Wamo has joined
1577 2011-08-25 19:13:15 RazielZ has quit (Quit: Leaving)
1578 2011-08-25 19:22:42 <log0s> tcatm: bitcoincharts is showing bids that don't really exist
1579 2011-08-25 19:22:47 <log0s> (for mtgox)
1580 2011-08-25 19:24:12 abragin has quit (Read error: No route to host)
1581 2011-08-25 19:26:04 sirky has quit (Quit: Page closed)
1582 2011-08-25 19:26:17 abragin has joined
1583 2011-08-25 19:26:17 abragin has quit (Changing host)
1584 2011-08-25 19:26:17 abragin has joined
1585 2011-08-25 19:28:04 <theymos> gavinandresen: Yeah, it looks like "while (i-- > 0)" should actually be "while (--i > 0)". Too bad.
1586 2011-08-25 19:29:50 mnass_ is now known as mnass
1587 2011-08-25 19:30:33 someone42 has quit (Ping timeout: 252 seconds)
1588 2011-08-25 19:31:04 <tcatm> log0s: ?
1589 2011-08-25 19:31:20 someone42 has joined
1590 2011-08-25 19:31:48 <log0s> tcatm: the mtgox depth shows some 4k+ bid at 9.01...getDepth.php from mtgox doesn't
1591 2011-08-25 19:32:35 <log0s> not sure if there are others, that's just the most noticeable
1592 2011-08-25 19:32:38 <tcatm> log0s: [9.01,4015.18301774] (from getDepth.php)
1593 2011-08-25 19:33:44 normanrichards has quit (Read error: Connection reset by peer)
1594 2011-08-25 19:34:38 <log0s> tcatm: hmmm...you're right
1595 2011-08-25 19:35:25 copumpkin is now known as TraderJoe
1596 2011-08-25 19:35:40 <log0s> i wonder what my code is doing that isn't handling that correctly
1597 2011-08-25 19:37:47 Optimo_ has quit ()
1598 2011-08-25 19:41:02 theymos has quit (Remote host closed the connection)
1599 2011-08-25 19:41:27 somuchwin2 has joined
1600 2011-08-25 19:42:11 TraderJoe is now known as copumpkin
1601 2011-08-25 19:43:13 somuchwin has quit (Ping timeout: 250 seconds)
1602 2011-08-25 19:44:30 p0s has quit (Remote host closed the connection)
1603 2011-08-25 19:48:39 oscar-spectre has quit (Ping timeout: 264 seconds)
1604 2011-08-25 19:50:27 HarryS has quit (Ping timeout: 264 seconds)
1605 2011-08-25 19:52:03 HarryS has joined
1606 2011-08-25 19:57:25 davex__ has joined
1607 2011-08-25 19:57:30 oscar-spectre has joined
1608 2011-08-25 20:01:30 <TuxBlackEdo> phugus
1609 2011-08-25 20:01:53 <TuxBlackEdo> i was kidding
1610 2011-08-25 20:04:05 b4epoche_ has quit (Quit: Computer has gone to sleep.)
1611 2011-08-25 20:05:17 Optimo_ has joined
1612 2011-08-25 20:07:26 ocharles has quit (Remote host closed the connection)
1613 2011-08-25 20:07:26 chinaskibit has quit (Remote host closed the connection)
1614 2011-08-25 20:07:29 Kobier_ has quit (Remote host closed the connection)
1615 2011-08-25 20:08:19 magn3ts has joined
1616 2011-08-25 20:12:16 magn3ts has quit (Ping timeout: 240 seconds)
1617 2011-08-25 20:14:27 Blitzboom_ has joined
1618 2011-08-25 20:16:51 Blitzboom has quit (Ping timeout: 264 seconds)
1619 2011-08-25 20:18:19 piotrpopieluch has joined
1620 2011-08-25 20:18:57 lookdang has joined
1621 2011-08-25 20:20:32 forbiddensaynq has quit (Remote host closed the connection)
1622 2011-08-25 20:20:47 BlueMatt has quit (Ping timeout: 252 seconds)
1623 2011-08-25 20:21:32 tower has quit (Quit: | ReactOS - The FOSS alternative to MS Windows! | http://www.reactos.org/ | join #ReactOS |)
1624 2011-08-25 20:21:57 gavinandresen has quit (Quit: gavinandresen)
1625 2011-08-25 20:23:58 nemesis51 is now known as away!~nemesis@178-25-127-144-dynip.superkabel.de|nemesis51
1626 2011-08-25 20:24:05 RichardG has quit (Ping timeout: 252 seconds)
1627 2011-08-25 20:24:05 Rozz has quit (Ping timeout: 252 seconds)
1628 2011-08-25 20:24:12 RichardG has joined
1629 2011-08-25 20:24:23 <Matth1a3> can anyone recommend a resource(s) for catching up on C++? I haven't touched it for 8+ years but want to contribute to Bitcoin core. Lately I have been coding PHP/Javascript/HTML/CSS in eclipse - but have worked in RoR, and Java briefly. Also, basic back in the 90s
1630 2011-08-25 20:25:16 <Matth1a3> advice for where to learn it quickly, and a development environment for testing patches would be ideal
1631 2011-08-25 20:27:12 <jgarzik> Matth1a3: looking at the code itself helps, as long as you know programming in general.  each C++ codebase develops its own idioms, so that can be a better resource than, say, a book that focuses purely on STL or Boost
1632 2011-08-25 20:29:00 md2k7 has quit (Read error: Connection reset by peer)
1633 2011-08-25 20:29:31 md2k7 has joined
1634 2011-08-25 20:29:55 TheAncientGoat has quit (Ping timeout: 276 seconds)
1635 2011-08-25 20:30:22 <Matth1a3> The only C++ book I have is "C++ from scratch" circa 1999 - I'm guessing that might not be the best reference
1636 2011-08-25 20:30:35 <Matth1a3> jgarzik: thank you, I'll just jump in then =)
1637 2011-08-25 20:30:45 Rozz has joined
1638 2011-08-25 20:30:54 Lopuz has joined
1639 2011-08-25 20:30:58 spiqre has joined
1640 2011-08-25 20:31:36 <zamgo> also, learn git.
1641 2011-08-25 20:31:58 <luke-jr> Matth1a3: C++ has changed quite a bit since 99
1642 2011-08-25 20:32:36 <luke-jr> Matth1a3: also, there are Bitcoin wallets and nodes implemented in other languages too
1643 2011-08-25 20:32:38 <Matth1a3> zamgo: sounds good - it looks pretty straight forward. I've been using SVN for years, but I hear the Git people have made things easier =)
1644 2011-08-25 20:32:52 <luke-jr> Matth1a3: there is a huge learning curve going from svn to git
1645 2011-08-25 20:32:57 <zamgo> advanced git'ing has a bit of learning curve
1646 2011-08-25 20:34:01 tower has joined
1647 2011-08-25 20:34:43 spiqre has quit (Remote host closed the connection)
1648 2011-08-25 20:35:01 piotrpopieluch has quit (Quit: piotrpopieluch)
1649 2011-08-25 20:35:40 Clipse has joined
1650 2011-08-25 20:39:21 ocharles has joined
1651 2011-08-25 20:40:55 <copumpkin> there's even a bitcoin client in haskell!!
1652 2011-08-25 20:40:56 <copumpkin> imagine that
1653 2011-08-25 20:41:13 <npouillard> a working one copumpkin ?
1654 2011-08-25 20:41:14 <ThomasV> where?
1655 2011-08-25 20:41:17 <copumpkin> npouillard
1656 2011-08-25 20:41:21 <copumpkin> mostly working, I think
1657 2011-08-25 20:41:26 <copumpkin> roconnor wrote it from scratch
1658 2011-08-25 20:41:28 <copumpkin> poke him
1659 2011-08-25 20:41:41 <copumpkin> http://r6.ca/Purecoin/
1660 2011-08-25 20:41:43 <copumpkin> darcs get that
1661 2011-08-25 20:42:11 WakiMiko has joined
1662 2011-08-25 20:42:23 * npouillard darcs pull
1663 2011-08-25 20:42:45 larsivi has joined
1664 2011-08-25 20:42:58 * arcatan pull
1665 2011-08-25 20:43:11 <luke-jr> darcs is still around?
1666 2011-08-25 20:43:13 <copumpkin> wow, lots of covert haskellers hiding in here
1667 2011-08-25 20:43:34 <copumpkin> luke-jr: yep, a few people still like it :)
1668 2011-08-25 20:43:36 <luke-jr> IIRC darcs was like the ideal DVCS back some years ago, except for lack of a merge history
1669 2011-08-25 20:43:46 localhost has joined
1670 2011-08-25 20:44:00 <copumpkin> it still has features no other system provides
1671 2011-08-25 20:44:08 <copumpkin> but lacks features other systems do provide
1672 2011-08-25 20:44:13 <luke-jr> did they get a merge history yet?
1673 2011-08-25 20:44:14 md2k7 has quit (Remote host closed the connection)
1674 2011-08-25 20:44:17 <npouillard> some people still like to wait for each command to drink more coffee...
1675 2011-08-25 20:44:20 <luke-jr> I don't know why that's so hard
1676 2011-08-25 20:44:28 <copumpkin> I'm pretty sure it'll track them
1677 2011-08-25 20:44:38 <luke-jr> copumpkin: I mean times and such
1678 2011-08-25 20:44:44 <copumpkin> oh, dunno
1679 2011-08-25 20:44:46 <luke-jr> so you can see what the *repository* looked like at a specific time
1680 2011-08-25 20:44:50 <npouillard> "Shall I pull this patch? (1/18)" <= some progress then
1681 2011-08-25 20:44:53 <copumpkin> the issue is that the history is very non-linear
1682 2011-08-25 20:45:10 hypersoavp has joined
1683 2011-08-25 20:45:15 <luke-jr> copumpkin: can still snapshot which patches are added/removed at what times
1684 2011-08-25 20:45:20 <copumpkin> yeah
1685 2011-08-25 20:45:26 <copumpkin> I think you can do that
1686 2011-08-25 20:45:28 chinaskibit has joined
1687 2011-08-25 20:45:32 <copumpkin> not sure how automatic it is though
1688 2011-08-25 20:45:37 <jrmithdobbs> luke-jr: can you please explain the learning curve of svn->git
1689 2011-08-25 20:45:44 <jrmithdobbs> luke-jr: i keep hearing people say it and don't get it
1690 2011-08-25 20:46:22 <luke-jr> jrmithdobbs: basically the paradigm shift from remotely accessing a repository to maintaining one locally, plus staging
1691 2011-08-25 20:46:24 <jrmithdobbs> an rcs system is an rcs system is an rcs system
1692 2011-08-25 20:46:50 <luke-jr> git is to RCS what svn is to CVS, in this context
1693 2011-08-25 20:47:15 <luke-jr> err
1694 2011-08-25 20:47:22 <jrmithdobbs> i mean rcs as in "revision control system" not rcs as in "the local revision control system software cvs is based on"
1695 2011-08-25 20:47:27 lookdang has quit (Ping timeout: 264 seconds)
1696 2011-08-25 20:47:36 <luke-jr> jrmithdobbs: I know. I meant it as the RCS software
1697 2011-08-25 20:47:44 <luke-jr> RCS maintains a local repository, just like git
1698 2011-08-25 20:47:52 kish has joined
1699 2011-08-25 20:47:53 <jrmithdobbs> ya
1700 2011-08-25 20:47:54 <luke-jr> CVS/Svn work with a remote repository
1701 2011-08-25 20:48:00 <zamgo> want PHP+Mysql client
1702 2011-08-25 20:48:13 <luke-jr> Bazaar can do either ;)
1703 2011-08-25 20:48:17 ThomasV has quit (Ping timeout: 252 seconds)
1704 2011-08-25 20:48:21 <jrmithdobbs> luke-jr: i don't understand how push vs pull is so hard to comprehend though
1705 2011-08-25 20:48:26 <zamgo> bonus
1706 2011-08-25 20:48:31 <jrmithdobbs> i'm not questioning that this is true
1707 2011-08-25 20:48:37 <luke-jr> jrmithdobbs: also, more important is the workflow changes
1708 2011-08-25 20:48:57 <luke-jr> because of superior merging, proper development now consists of daggy fixes and feature branches
1709 2011-08-25 20:49:05 <jrmithdobbs> I know someone who makes big bucks (too much, i'd say) doing cvs->svn and svn->merc/git migrations
1710 2011-08-25 20:49:06 <luke-jr> whereas that was impractical with svn
1711 2011-08-25 20:49:06 <phantomcircuit> jrmithdobbs, git is drcs which confuses people
1712 2011-08-25 20:49:14 <jrmithdobbs> and he says the same thing, it confuses the fuck out of people
1713 2011-08-25 20:49:20 localhost has quit (Quit: Ex-Chat)
1714 2011-08-25 20:49:41 <luke-jr> daggy fixes = go back in time to correct the bug when it was introduced, and merge that to all the mainline branches affected
1715 2011-08-25 20:50:03 <luke-jr> feature branches = add every new feature in a dedicated branch, and merge it to mainline when it's working well
1716 2011-08-25 20:50:26 <Diablo-D3> https://plus.google.com/107117483540235115863/posts/gcSStkKxXTw
1717 2011-08-25 20:50:28 <luke-jr> with Svn/CVS, this stuff is annoyign to do
1718 2011-08-25 20:50:36 <luke-jr> making it impractical for anything other than major features
1719 2011-08-25 20:50:46 magn3ts has joined
1720 2011-08-25 20:53:49 clr_ has joined
1721 2011-08-25 20:54:20 localhost has joined
1722 2011-08-25 20:54:46 localhost has quit (Remote host closed the connection)
1723 2011-08-25 20:55:31 localhost has joined
1724 2011-08-25 20:55:40 clr_ is now known as c00w
1725 2011-08-25 20:55:47 localhost has quit (Client Quit)
1726 2011-08-25 20:58:36 localhost has joined
1727 2011-08-25 21:03:34 Quetzalcoatl_ has joined
1728 2011-08-25 21:04:56 oscar-spectre has quit (Ping timeout: 258 seconds)
1729 2011-08-25 21:05:05 Guest69125 has joined
1730 2011-08-25 21:05:07 Guest69125 has quit (Remote host closed the connection)
1731 2011-08-25 21:05:40 Burgundy has joined
1732 2011-08-25 21:05:56 Burgundy_ has joined
1733 2011-08-25 21:05:58 Burgundy has quit (Client Quit)
1734 2011-08-25 21:06:05 Burgundy_ has quit (Client Quit)
1735 2011-08-25 21:06:15 Burgundy has joined
1736 2011-08-25 21:09:43 paul0 has quit (Ping timeout: 245 seconds)
1737 2011-08-25 21:11:46 slush1 has quit (Ping timeout: 240 seconds)
1738 2011-08-25 21:12:15 Kobier_ has joined
1739 2011-08-25 21:12:27 oscar-spectre has joined
1740 2011-08-25 21:16:51 <Matth1a3> Diablo-D3: haha, nice
1741 2011-08-25 21:17:16 ThomasV has joined
1742 2011-08-25 21:18:30 oscar-spectre has quit (Quit: oscar-spectre)
1743 2011-08-25 21:19:18 agricocb has quit (Ping timeout: 245 seconds)
1744 2011-08-25 21:33:28 paul0 has joined
1745 2011-08-25 21:35:19 Maged has quit (Read error: Connection reset by peer)
1746 2011-08-25 21:35:25 TheZimm has joined
1747 2011-08-25 21:37:15 c00w has quit (Quit: Ex-Chat)
1748 2011-08-25 21:37:30 <aldiyen> jrmithdobbs: git is more difficult because it's more powerful. stashing, rebasing, cherry-picking revisions, local branches... hell, many people have more than enough trouble just understanding merging in subversion
1749 2011-08-25 21:41:51 dvide_ has joined
1750 2011-08-25 21:43:31 paul0 has quit (Ping timeout: 246 seconds)
1751 2011-08-25 21:43:45 dvide has quit (Ping timeout: 240 seconds)
1752 2011-08-25 21:44:08 Titeuf_87 has quit (Quit: Ex-Chat)
1753 2011-08-25 21:44:30 tower has quit (Quit: | ReactOS - The FOSS alternative to MS Windows! | http://www.reactos.org/ | join #ReactOS |)
1754 2011-08-25 21:45:11 tower has joined
1755 2011-08-25 21:48:30 lookdang has joined
1756 2011-08-25 21:50:04 paul0 has joined
1757 2011-08-25 21:50:18 agricocb has joined
1758 2011-08-25 21:50:47 eian has joined
1759 2011-08-25 21:51:57 molecular has quit (Remote host closed the connection)
1760 2011-08-25 21:52:09 molecular has joined
1761 2011-08-25 21:53:40 TheZimm has quit (Remote host closed the connection)
1762 2011-08-25 21:57:38 paul0 has quit (Ping timeout: 245 seconds)
1763 2011-08-25 21:57:49 clr_ has joined
1764 2011-08-25 21:58:19 clr_ is now known as c00w
1765 2011-08-25 21:59:26 Blitzboom_ has quit (Remote host closed the connection)
1766 2011-08-25 21:59:50 Blitzboom has joined
1767 2011-08-25 21:59:50 Blitzboom has quit (Changing host)
1768 2011-08-25 21:59:50 Blitzboom has joined
1769 2011-08-25 22:01:11 eian has quit (Remote host closed the connection)
1770 2011-08-25 22:03:29 paul0 has joined
1771 2011-08-25 22:04:49 larsivi has quit (Read error: Connection reset by peer)
1772 2011-08-25 22:07:22 gp5st has quit (Quit: Leaving.)
1773 2011-08-25 22:10:32 Maged has joined
1774 2011-08-25 22:10:37 Maged has quit (Read error: Connection reset by peer)
1775 2011-08-25 22:15:22 c00w has quit (Ping timeout: 246 seconds)
1776 2011-08-25 22:15:48 Maged has joined
1777 2011-08-25 22:16:01 lookdang has quit (Ping timeout: 258 seconds)
1778 2011-08-25 22:17:12 Maged has quit (Read error: Connection reset by peer)
1779 2011-08-25 22:18:11 lookdang has joined
1780 2011-08-25 22:19:24 dbosk has joined
1781 2011-08-25 22:27:17 Elvis- has joined
1782 2011-08-25 22:27:29 <Elvis-> hi everyone
1783 2011-08-25 22:27:39 Shuro has quit (Read error: Operation timed out)
1784 2011-08-25 22:27:45 Shuro has joined
1785 2011-08-25 22:28:14 mtrlt has quit (Read error: Connection reset by peer)
1786 2011-08-25 22:28:19 <Elvis-> got a question about mining, I've setup guiminer and trying to connect it to a pool, it sais connecting since I set it up and I can't seem to understand why it doesn't connect
1787 2011-08-25 22:28:23 <Elvis-> any ideas?
1788 2011-08-25 22:28:35 <phantomcircuit> #bitcoin-mining
1789 2011-08-25 22:28:35 mtrlt has joined
1790 2011-08-25 22:28:43 <phantomcircuit> irc seems kind of dead though
1791 2011-08-25 22:28:47 <Elvis-> tnx
1792 2011-08-25 22:30:19 ChanneledDan has joined
1793 2011-08-25 22:31:19 b4epoche_ has joined
1794 2011-08-25 22:34:28 c00w has joined
1795 2011-08-25 22:43:47 copumpkin has quit (Quit: Computer has gone to sleep.)
1796 2011-08-25 22:46:48 squeamish has left ("Leaving")
1797 2011-08-25 22:49:43 abragin has quit ()
1798 2011-08-25 22:49:51 ThomasV has quit (Ping timeout: 264 seconds)
1799 2011-08-25 22:53:08 AStove has quit ()
1800 2011-08-25 22:54:37 Rabbit67890 has joined
1801 2011-08-25 22:55:15 mosimo has quit (Read error: Connection reset by peer)
1802 2011-08-25 22:56:30 huk has quit (Ping timeout: 260 seconds)
1803 2011-08-25 22:56:39 ThomasV has joined
1804 2011-08-25 22:57:30 huk has joined
1805 2011-08-25 22:58:53 denisx has joined
1806 2011-08-25 22:59:48 erus` has quit (Remote host closed the connection)
1807 2011-08-25 23:01:43 ThomasV has quit (Ping timeout: 240 seconds)
1808 2011-08-25 23:07:00 ThomasV has joined
1809 2011-08-25 23:10:35 Rabbit67890 has quit (Remote host closed the connection)
1810 2011-08-25 23:10:43 Rabbit67890 has joined
1811 2011-08-25 23:14:27 devon_hillard_ has joined
1812 2011-08-25 23:16:04 devon_hillard has quit (Ping timeout: 252 seconds)
1813 2011-08-25 23:21:15 nemesis51 is now known as nemesis51|away
1814 2011-08-25 23:22:26 copumpkin has joined
1815 2011-08-25 23:22:34 ThomasV has quit (Ping timeout: 246 seconds)
1816 2011-08-25 23:24:20 Elvis- has quit ()
1817 2011-08-25 23:24:42 paul0 has quit (Read error: Connection reset by peer)
1818 2011-08-25 23:24:58 paul0 has joined
1819 2011-08-25 23:26:52 dbosk has quit (Quit: leaving)
1820 2011-08-25 23:28:37 thesheff17 has quit (Read error: Operation timed out)
1821 2011-08-25 23:30:18 minimoose has joined
1822 2011-08-25 23:32:18 lookdang has quit (Ping timeout: 258 seconds)
1823 2011-08-25 23:33:27 Maged has joined
1824 2011-08-25 23:34:33 fabianhjr_ has joined
1825 2011-08-25 23:34:42 <fabianhjr_> makomk: You there?
1826 2011-08-25 23:36:08 Kiba has quit (Read error: Connection reset by peer)
1827 2011-08-25 23:38:04 black888 has joined
1828 2011-08-25 23:41:49 random_cat has quit (Ping timeout: 245 seconds)
1829 2011-08-25 23:42:51 shLONG has joined
1830 2011-08-25 23:42:57 piuk has joined
1831 2011-08-25 23:47:23 shLONG has quit (Remote host closed the connection)
1832 2011-08-25 23:47:44 shLONG has joined
1833 2011-08-25 23:48:43 shLONG has quit (Client Quit)
1834 2011-08-25 23:50:56 denisx has quit (Ping timeout: 255 seconds)
1835 2011-08-25 23:51:58 Zarutian has quit (Ping timeout: 250 seconds)
1836 2011-08-25 23:52:39 noagendamarket has joined
1837 2011-08-25 23:55:42 devon_hillard_ has quit (Quit: Leaving)
1838 2011-08-25 23:56:46 <makomk> fabianhjr_: just thinking of heading to bed, why?
1839 2011-08-25 23:56:46 upb has quit (Ping timeout: 252 seconds)
1840 2011-08-25 23:56:51 upb has joined
1841 2011-08-25 23:58:05 <fabianhjr_> makomk: I ran your tool and it claim to have gotten 3K keys.
1842 2011-08-25 23:58:26 <fabianhjr_> It finished correctly and the recovered wallet was 160 KB. Only one key. ):
1843 2011-08-25 23:58:27 <makomk> Some of those are probably duplicates...
1844 2011-08-25 23:58:44 <makomk> OK, how can you tell there's only one key?
1845 2011-08-25 23:58:47 <fabianhjr_> makomk: no I was looking trough the log, only about 1/2 were duplicates.
1846 2011-08-25 23:58:48 Rabbit67890_ has joined
1847 2011-08-25 23:58:50 Rabbit67890 has quit (Read error: Connection reset by peer)
1848 2011-08-25 23:58:53 Rabbit67890_ is now known as Rabbit67890
1849 2011-08-25 23:59:14 <makomk> I should probably add a note, but the keys it finds don't show up in the list of keys in the Bitcoin client.
1850 2011-08-25 23:59:15 sytse has quit (Read error: Connection reset by peer)
1851 2011-08-25 23:59:19 <fabianhjr_> makomk: I loaded the wallet and since you said that by default it would be public keys.
1852 2011-08-25 23:59:30 <fabianhjr_> Oh really? So I just have to do a scan?
1853 2011-08-25 23:59:35 <makomk> Yep.
1854 2011-08-25 23:59:49 <fabianhjr_> I missinterpreted the "no keys as spare addresses"?
1855 2011-08-25 23:59:58 <fabianhjr_> Or what does it mean if they are hidden?