Bitcoin Forum
June 22, 2024, 01:17:34 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 »
1  Economy / Goods / Re: [WTS] HIS 5870 (H587FN1GD) on: July 30, 2011, 10:17:28 PM
Hi,
you ship to EU?

I have never done an international package so I don't know what the costs would be >_<.
2  Economy / Goods / [WTS] HIS 5870 (H587FN1GD) on: July 29, 2011, 11:12:04 PM
Cost: $260 (includes shipping to continental US).

Includes:
- 5870 card
- DVI -> VGA Converter
- DVI -> HDMI Converter
- 2x Dual Molex to 6pin PCI-E

Will post pictures sometime later.  I sprained my back yesterday so I don't feel like moving things around >_<
3  Bitcoin / Project Development / Re: BitHub, a bitcoin hackers hub in Seattle, not happening. on: July 25, 2011, 06:24:37 AM
You're pretty much at their mercy when coming in as a non-American.

Fix'd.  American's get fucked over on a day to day basis also.

Talk bad about the TSA and they catch wind?  Enjoy your entry on the exclusive no fly list.
4  Bitcoin / Project Development / Re: BitHub, a bitcoin hackers hub in Seattle, not happening. on: July 25, 2011, 05:54:40 AM
lol at such bullshit.  Did they ask permission before stealing all your data on your devices or was there no way to protest it?  Did they force you to give up your passcodes for any encrypted/locked items or did they just ask you to unlock them and let them peruse through them?
5  Economy / Goods / Re: [WTS] 5850 - $165 on: July 14, 2011, 07:47:58 AM
And now it's gone! (me)

Got it.  I will ship it out in the morning.
6  Economy / Goods / Re: [WTS] 5850 - $165 on: July 14, 2011, 06:08:52 AM
Buyer backed out.  Now available via amazon: http://www.amazon.com/gp/offer-listing/B003G23PQA
7  Economy / Goods / Re: [WTS] 5850 on: July 14, 2011, 04:42:39 AM
Currently pending payment from someone.  If it falls out I will post again.
8  Economy / Goods / Re: [WTS] 5850 on: July 13, 2011, 10:09:57 PM
New price: $165 or 12BTC including shipping

Also have ebay feedback: http://dl.dropbox.com/u/155051/vcard/ebay.png
9  Economy / Goods / Re: [WTS] 5850 on: July 12, 2011, 02:32:39 AM
Video card porn.  Bad cellphone cam >_<

http://dl.dropbox.com/u/155051/vcard/1.jpeg
http://dl.dropbox.com/u/155051/vcard/2.jpeg
http://dl.dropbox.com/u/155051/vcard/3.jpeg
http://dl.dropbox.com/u/155051/vcard/4.jpeg
http://dl.dropbox.com/u/155051/vcard/5.jpeg
http://dl.dropbox.com/u/155051/vcard/6.jpeg
http://dl.dropbox.com/u/155051/vcard/7.jpeg
http://dl.dropbox.com/u/155051/vcard/8.jpeg
http://dl.dropbox.com/u/155051/vcard/9.jpeg
http://dl.dropbox.com/u/155051/vcard/10.jpeg

I will let it go for $180 or 13 BTC including shipping to continental US.
10  Economy / Goods / [WTS] 5850 - SOLD on: July 11, 2011, 01:36:31 AM
Original product: http://www.newegg.com/Product/Product.aspx?Item=N82E16814125318

Works fine 100%.  I purchased it back in 3/31/2010 according to the history at newegg.

I am willing to accept dwolla or bitcoins.  PM/Post offers.

I live in the florida panhandle area around pensacola/destin.
11  Economy / Goods / Re: [WTB] 2*5850 on: July 10, 2011, 07:22:12 PM
You can try post your AD here : wesellrigs.com

Maybe it will help you Wink

You are starting to get very spammy.
12  Bitcoin / Mining / Re: AMD Brand New APU! on: July 10, 2011, 02:10:12 AM
well that was what i wondered about this new apu, since you are able to get a board with crossfire. and run 2 video cards with it.

Crossfire is shitty anyway.  It is enabled on a per game basis in the drivers and there is no easy way to get around it.  So your 2nd card will sit around doing nothing most of the time.
13  Economy / Goods / Re: [WTB] Programming Reference Material (See details inside) on: July 08, 2011, 07:39:47 PM
if (pContract = (*ii).second) // if not null

When I looked at that piece of code it made me go WTF, but essentially it assigns a value to a pointer and if the pointer isn't null it executes the code.

You have to break it down.

- First (*ii) is evaluated.  I think that is transforming the iterator (integer?) into a pointer to an object.  My C++ is rusty.
- Then the expression (*ii).second returns the "second" member from the object.
- It gets assigned to pContract.
- The if statement will only execute if pContract is not 0 which is also the "null" value in C++

This works because you can do expressions like x = y = z where x and y get the value of z.  The value just gets passed to the left.

Quote
-- Open Transactions is open-source, written in C++, object-oriented, and includes a high-level API in Java, Ruby, Python, C, D, C++, Obj-C, C#, Lisp, Perl, PHP, and Tcl.

Once you compile it you should be able to use it in the language of your choice.  For python you would "import namespace" for C# you will need to add the the DLL you built to the references then use the "using namespace".  PHP would add it to the global namespace I think.  C/D/C++/Obj-C you would need to copy the headers and library and link against it.  That is if you intend to use their implementation of the protocol rather then starting from scratch.
14  Economy / Goods / Re: [WTB] Programming Reference Material (See details inside) on: July 08, 2011, 04:40:10 PM
I already know C++, C#, and a little Python and C. I'm a CS major at my university, I'm just struggling with third party libraries and how to use them.

Which libraries?  Or more specifically what do you want to do?

"Server Side Requests" can be either with a web server or writing your own implementation from scratch.
15  Economy / Goods / Re: [WTB] Programming Reference Material (See details inside) on: July 08, 2011, 10:38:01 AM
Learn a language.  You can't start writing scientific papers without first knowing english.

I would recommend python.

- Comes with a terminal/command prompt that allows you to evaluate expressions.
- Lots of shortcuts to make life easier along with a strong set of built in libraries.
- The python community within bitcoin is fairly strong so you will have a lot of code examples.
- The module interface is fairly easy to understand compared to say the imports in C.  Also tons of libraries that are easy to use and install via easy_install or pip.

I would recommend learning C at some point because it is fairly important to know and understand.  The problem with C and C++ is implementing 3rd party libs are funky at best.  The amount of pain needed to build a bunch of libraries for a programs dependencies is agonizing.  Also development on windows with C/C++ is god aweful.  Some programs/libraries will only build on GCC and others only MSVC.  >_<

Erlang will leave you frustrated but it is an interesting language.  Functional languages are nifty but the library support is lacking and often times the syntax is extremely verbose and frustrating.

C# is ok.  Especially if you start out using linq as it will make life easier.  Only downside is you are limited to windows only then unless you take special care to be compatible with mono.

16  Bitcoin / Project Development / Re: [BOUNTY] 0.25BTC for a solution from pushpool where the upstream_result is 'Y' on: July 04, 2011, 06:39:08 PM
You might want to use code blocks when posting long lines.

The solution column is 256 characters (+1 for terminator)
Code:
  `solution` varchar(257) NOT NULL,

Code:
>>> len(" 00000001d219003dfd0ec774541ac59c6b566c2b11a64e99d745a2e70028f3e100000000fc415a3 869208702e88db306d9473f116b0412fd76739780b29953fea82d83d24e11de451c00824f8c5b32 da00000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000")
260

Copying directly from the forums adds 4 whitespaces.

Code:
>>> len("00000001d219003dfd0ec774541ac59c6b566c2b11a64e99d745a2e70028f3e100000000fc415a3869208702e88db306d9473f116b0412fd76739780b29953fea82d83d24e11de451c00824f8c5b32da000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
256

Minor nitpick >_<

Code:
00000001d219003dfd0ec774541ac59c6b566c2b11a64e99d745a2e70028f3e100000000fc415a3869208702e88db306d9473f116b0412fd76739780b29953fea82d83d24e11de451c00824f8c5b32da000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
17  Bitcoin / Project Development / Re: [BOUNTY] 0.25BTC for a solution from pushpool where the upstream_result is 'Y' on: July 04, 2011, 01:21:45 AM
Run pushpool on testnet for a few minutes, and you'll have one. Smiley

+
18  Bitcoin / Project Development / Re: Syn - another multiminer server on: July 04, 2011, 01:18:56 AM
I have added an experimental plugin that uses the same schema as pushpool I think.  I really don't feel like setting up a pushpool server to verify things match up 1:1 though.  If someone doesn't mind dumping their shares table to get better sample data I can make sure it is behaving as expected.  It doesn't support the "reason" column because I would need to modify WorkUnit a bit and a lot of the signaling I use rather then just onReject or onAccept.  I got one exception where the data/work was cut off but it should be 256 characters long.  Eh.

The plugins use storm for the ORM (to connect to mysql you need MySQL-python).  I haven't used it before so it was interesting and hacky with omg unicode requirement.

I need to finish up my schema backend as it should consume much, much less space/resources SQL wise then pushpool.  But I was a bit uncertain how to maintain parity with some of the pools like like displaying Mh/s.  Because I want to only sync shares every few minutes.  But it is not guaranteed it would be every x minutes.  Also there is the trick of counting shares delta time.  Do we opt just to resume and keep incrementing shares and update the table entry, or do we insert the shares for the given work into a new row.  Do we need to track rounds in the shares?  Ughghg

Oh well I will sleep on it a bit.  Also this post made no sense whatsoever but I am bored and chatty.
19  Bitcoin / Bitcoin Technical Support / Re: Pushpool - Tech Support on: June 30, 2011, 07:22:47 PM
Also, a database schema question... it appears that the intent is that the password column should be plaintext. Is there an explicit design reason for this? Wouldn't it be far better to encrypt the values stored there and run a database PASSWORD() function to check the match?

Yes.  Theoretically it could pass the username and password and at least let you have access to the databases sha and md5 functions.  >_<

Anyone listening to the HTTP requests would be able to extract the passwords also.  You just need to look in the headers and base64decode it.

In any case you should have separate miner and account passwords.
20  Bitcoin / Bitcoin Technical Support / Re: Help with my builld! on: June 30, 2011, 07:05:46 PM
Well the 850 watt PSU exploded.  The 750 PSU powered 2 of them fine.

I purchased a 1000 watt PSU and it has been running all 3 gpus overclocked for a week solid!  Though thanks to this ridiculous difficulty factor increase this rig I built is not even close to being profitable.

It was worth a shot...

And that kids is why you buy decent power supplies.

Right. Two Gpu's, 850W minimum. Three Gpu's, 1200W.

My rig with a 5850 and a 5870 consume ~550w at full tilt.  That is with multiple hard drives and a power hog of a CPU.  That power supply was just shit because his load should have been somewhere around 750-800w.

Also make sure to run amd cool and quiet and set the affinity for the miners all to one core.  It will underclock 3 of the cores and bump about 50w off your consumption.
Pages: [1] 2 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!