Bitcoin Forum
May 06, 2024, 11:55:43 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 [59] 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 »
1161  Economy / Goods / Re: [PENNY AUCTION] [0.01BTC] Brand New Radeon HD 5830 1GB on: July 04, 2011, 05:07:58 PM
Still only one bid? I'm somewhat surprised that no one wants to buy a 5830 for 0.02 BTC. :S

Every one is waiting to get closer to the 24hr waiting period. These types of auctions are awkward, why would you bid before the end time... And if the auction will take 43 bids to break even, any single person bidding will want to recoup the investment, thus making up to 43 bids... Some will drop early, but if 2 members end up fighting over this, it's going to be one slow, long, boring fight... 1 bid per day, 3 months to go Smiley

Anyhow, I would change that to bids within 23:45 from the last bid don't change the bid end, thus giving at least some reason to bid inside that window.
1162  Economy / Goods / Re: 1340 Mh/s - dual 5970 rig for sale (~650W) 1200 euro - delivered within europe on: June 29, 2011, 07:33:54 PM

i already have grease, thermal pads, and coolers (and plenty other stuff that lies around) so it really make me not too much difference if i keep them or post to you

i highly doubt that i could sell 5970 stock coolers for anything more than 10-15 euro each as there is simply no market for them


grease and thermal pads, sure, but coolers are the bulk of the shipping weight. I wasn't trying to get a discount for not getting the coolers, but rather keep the shipping costs as low as possible.

price for today would be €800 \ 76 BTC for just cards shipped within eu

no offense, but as i said, this setup is still highly profitable so i can wait for another buyer, i really don't have to sell it an hour after i created this topic


None taken. I'm not trying to push you into selling quickly or anything, and I much rather hold on to my coins are use cash instead. You feel otherwise which makes this a perfect match. The price is still a bit steep as I am also not in a hurry. I may end up taking it, you may end up wanting cash fast and making me a better price, or just find someone that pays what you ask. All is good either way, no rush from me either Smiley
1163  Economy / Goods / Re: 1340 Mh/s - dual 5970 rig for sale (~650W) 1200 euro - delivered within europe on: June 29, 2011, 06:24:18 PM
i still have both original coolers so i can send them as well with some thermal pads and thermal grease if you want to change them back

i'm not desperate to sell them, actually i was thinking about keeping one for gaming, but i would rather go with nvidia card

i would have to pay around €50-60 of postage for 5kg parcel (depending on your country) so i could accept €820 or 80 BTC for both cards, coolers, thermal pads etc. posted

80 BTC will be much more than €820 soon... how would I be able to pay in cash? SEPA wire, maybe? I would much rather do this in bitcoins, but only for a realistic value. Also, I don't need any cooler, I have the A/C and a stock one from a saphire. Assuming your cards are reference (and the fact they have the accelero shows that) I can use that on them.

How about you quote me on a BTC value for both cards, no coolers, pads or grease, shipped? If you really want to you can also quote a value in € but honestly I'm not paying €10.25 per coin Wink
1164  Economy / Goods / Re: 1340 Mh/s - dual 5970 rig for sale (~650W) 1200 euro - delivered within europe on: June 29, 2011, 05:09:56 PM
I could go for the cards alone, and I most certainly would rather get them without the accelero coolers. Nothing against them, have one on the shelve and it looks sexy, but 3 slots is just too much.

I do think the price is a bit steep though. Granted, €450 is the price most 5970's will net for on ebay, but I'm in no hurry and I have got one for under €300. But I'm not here to haggle, make me a price for both cards, shipped to Europe, in bitcoins and I may very well take you up on that today. With or without A/C coolers.
1165  Economy / Marketplace / Re: Okay, where to start... on: June 29, 2011, 03:21:52 PM

This means more than you know. "Pulling out of this intact" is fantastic, considering what was at risk... at this point the silence is deafening for most users. To be candid, the risk of losing customers due to extremely-less-than-satisfactory customer service is equally as damaging as the hack and leak that has happened.

There was money involved, and those that had money at stake where obviously the loudest. There was an opportunity to kick competition while on the ground, those that have stakes at competing exchanges where the most negative. Then there are the trolls...

My point is that many of the negative remarks on your behavior during the peak of the crisis are somewhat too biased, and when someone is happy or has no stakes on the issue that person tends to stay quiet. I forced myself to make a few positive posts because I felt like you were handling all in a very good way, if a little too silent (which is understandable, but people panic very easily).

All in all I think the hardcore customers are all still there, and if we look at the volumes of trading, mtgox is still way up there in comparison. Major cookie points to all of you for surviving this and not alienating everyone in the process Smiley
1166  Other / Obsolete (buying) / Re: [WTB] eee pad transformer, was iPad 2 on: June 28, 2011, 09:29:44 PM
Was a sale made? If so how did it turn out? Any issues or suggestions for others looking to purchase an iPad 2 with bitcoins?

I did not sell an iPad to someone on this thread, though I did sell one to someone who PMed me because of this thread.

Yeah, you never got back to me on the price Smiley 20% off is great, but off of what? heh

Anyway, I believe I have found one locally, will know for sure tomorrow. Now I'm looking for an eee pad transformer 32GB (this one is for myself, not as picky as to cosmetic state), anyone?
1167  Bitcoin / Development & Technical Discussion / Re: [PULL] private key and wallet export/import on: June 28, 2011, 02:30:06 PM
There's a crash caused by accessing an array element past the last one in base58.h, in the SecretToASecret function.
Code:
vch.insert(vch.end(), &vchSecret[0], &vchSecret[vchSecret.size()]);
vchSecret.size() is one past the last element, so it crashes here.

Since vchSecret is just a vector anyway, we can use this safer alternative:
Code:
vch.insert(vch.end(), vchSecret.begin(), vchSecret.end());


So the issue I posted above is a simple typo on sipa's commit. Instead of puddinpop's proposed change:

Code:
vch.insert(vch.end(), vchSecret.begin(), vchSecret.end());

You changed the code to

Code:
vch.insert(vch.end(), vch.begin(), vch.end());

The secret "vchSecret" was never being used.
1168  Bitcoin / Development & Technical Discussion / Re: [PULL] private key and wallet export/import on: June 28, 2011, 03:04:27 AM
I've cherry picked the two commits sipa mentions on the pull request onto bitcoin HEAD, compiling on a linux x64 machine (xubuntu 11.04) and while it compiles almost cleanly:

Code:
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DFOURWAYSSE2 -DUSE_SSL -o obj/nogui/rpcdump.o rpcdump.cpp
rpcdump.cpp: In function ‘void GetWalletDump(std::map<uint160, CKeyDump>&)’:
rpcdump.cpp:116:82: warning: converting ‘false’ to pointer type for argument 2 of ‘bool ExtractPubKey(const CScript&, const CKeyStore*, std::vector<unsigned char>&)’

But then calling dumpprivkey on *any* address will output
Code:
26zVKbYFG

I didn't debug the code, too tired to do that now, but maybe it's something obvious Smiley
1169  Bitcoin / Mining software (miners) / Re: another 3% mining increase with poclbm kernel.cl on: June 27, 2011, 10:46:51 PM
Well, marking it __local actually hints the opencl compiler on to where you want that variable to be stored. Local memory is the fastest iirc but there's a limited amount of it and if you are already on the limit you may end up getting the wrong thing in local memory, thus making everything slower.

This is obviously an oversimplification. For a little more " to the metal " kind of facts, my experimentation gives me:
- The 1~2% speed increase on a 5870, which can do -w 256 but is at the performance peak at -w 128.
- A fair amount of speed DECREASE on a 5970, with -w 256 which is where it performs best.
- The 1~2% speed increase on the same 5970, with -w 128, although even with the speed increase it's a little slower than the -w 256.

I'm using one of each 5970 and 5870 on a computer, but I don't want to use separate kernels, one for each card, so I'm stuck with the no __local version Sad
1170  Economy / Currency exchange / Re: PP$'s or Amazon £'s for BTC on: June 24, 2011, 01:52:31 PM
Looking to purchase my first BTC, can swap for PayPal USD, Amazon GBP or whatever other currency is available. Looking for 8-10BTC.

Thanks!

I'm selling BTC for amazon uk gift card. My problem is you are unknown and these can be bought with a credit card (and thus reverted). Can any trusted party around here speak on your behalf?

Still, PM me an offer and I'll consider it. Better yet, get yourself on freenode and #bitcoin-otc-eu Smiley
1171  Other / Obsolete (buying) / Re: [WTB] iPad 2 on: June 24, 2011, 01:29:46 PM
Oh, but see, there's the catch, I get 20 % off. oh well...

You are evil... ok, tell you what, tell me what price you'd make for the 64GB wifi shipped with tracking (so I know if it gets stopped at customs). I would need it to carry an invoice with a low, yet believable value if possible.
1172  Other / Obsolete (buying) / Re: [WTB] iPad 2 on: June 24, 2011, 01:12:40 PM
Today I have the 64GB white Wi-Fi version in stock.

Now you are just kicking me when I'm down Smiley Some 95% of all I buy on the States gets stopped at customs, which means 3~4 weeks of waiting and an extra 23% (VAT) + some fees. That really sucks.

I need something that gets shipped from Europe.
1173  Other / Obsolete (buying) / Re: [WTB] iPad 2 on: June 24, 2011, 02:30:34 AM
I can acquire a 16GB wifi sealed for current BTC rates, And I can ship it tomorrow priority mail or whatever method you prefer. Last I checked, we had 64gb Verizon 3g ones in stock too.

Verizon == US? I don't need 3G, but I'd rather get a 64GB than a 16GB (32 being the sweetspot), but if it is indeed US that's a deal breaker as explained on the original post. If not US, what price would the iPads be going for, in the origin currency?
1174  Other / Obsolete (buying) / Re: [WTB] iPad 2 on: June 24, 2011, 01:49:00 AM
I can do a new 32gb iPad 2 sealed for 55 btc while current tradehill rate holds.  I can ship internationally. 

It would take about a week for me to ship.

Where would you be shipping from? And why a week? I was hoping for something quicker, given apple store says 1 to 2 weeks. The price sounds about right, at current $16/btc rate but given mtgox is opening soon we might want to see how that goes first...
1175  Other / Obsolete (buying) / Re: [WTB] iPad 2 on: June 23, 2011, 12:24:06 AM
Ouch, how did you do that using it 4 times? I guess it only needs to be dropped once Smiley

Anyhow, not gift capable material, I'm afraid and even taking in account current exchange rates 50 coins is 75% of the brand new price on the store, so I guess I'll pass, sorry.

I would haggle a bit if it was for me, as it is working 100%, but not to offer to someone else.

Thanks anyway!
1176  Other / Obsolete (buying) / Re: [WTB] iPad 2 on: June 22, 2011, 01:31:58 AM
The Ipad 2 works 100%, and has only been used four times, there is a light dent at the bottom left corner, and also the screen has a small smash on the top right corner! under apple warranty until april 4 2012, comes in original box with usb cable and charger

Do you have pictures with enough detail to show the dent and smash you can upload somewhere and PM me the link? Also, from which country would you be shipping from?
1177  Other / Obsolete (buying) / Re: [WTB] iPad 2 on: June 22, 2011, 01:18:56 AM
i have a 64 GB Wifi iPad 2

50BTC?



Price seems good, but I need a little more detail; age, warranty, language (can I change it?), original box and accessories included? Oh, and of course, is it 'like new'? Smiley
1178  Other / Obsolete (buying) / [WTB] eee pad transformer, was iPad 2 on: June 22, 2011, 12:39:49 AM
I can't find one locally, and it is supposed to be a gift for an oncoming birthday, but after a month of moving delivery times I'm starting to fear it will just not make it so:

I'm buying an iPad 2, preferably 32GB but can be 16 or 64, preferably new and unopened but will consider 'like new', no need for 3G. The only caveat is that I want it sent from Europe, or I may just end up waiting on customs instead.

Will pay with bitcoins, have no set price so make your bid.

Thanks!

EDIT: I think I have the iPad covered, but I want to buy an eee pad transformer 32GB for myself. Terms as above if anyone is interested in doing this for bitcoins.
1179  Bitcoin / Bitcoin Discussion / Re: I'm Kevin, here's my side. on: June 21, 2011, 12:23:26 AM
I just wished someone on the other side of the table would say something. This actually points to a single account getting compromised, or the wallet itself. How can there be so many crying "ahhh, but I thought I was going to get rich. I didn't know it was stolen, honest..." and no one stating the reverse side of the coin?

Maybe noone noticed yet, and with the reversed transactions never will, but just imaging all your coins had been sold for $0.01 a piece... you could argue that it was mtgox fault, sure, but how would you feel about the guy that knowing something fishy was going on still bought them (I would) and then, when shit hits the fan, throws a public fit because he might have to give the stolen coins back? I know, it sucks to not be freakin' rich anymore, but just imagine your however many k's of coins got sold as a result of a security breach, the site owner had the option to revert these abusive transactions but instead throws in the towel and says "tough luck, I'm out" ?
1180  Bitcoin / Bitcoin Discussion / Re: I'm MtGox, here's my side. on: June 20, 2011, 11:54:59 PM

Agree 100%

Synaptic has to be the worst troll on this site.  He poisons nearly every thread.

He hasn't made any useful contributions that I can see.  If he has something productive to say, he should just say it, once, without profanity, if his infantile mind will allow him to do so.  Better yet, he should actually DO something, like start an exchange or a better fork of the Bitcoin software.

FUCK.

bobR, is that you?

Naah, you can't be, you are much more articulate at reasoning in colorful ways, though much less amusing to be honest Smiley
Pages: « 1 ... 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 [59] 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!