Bitcoin Forum
May 25, 2024, 03:44:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 21 22 23 24 25 »
201  Bitcoin / Project Development / Re: BitCoin Wikipedia page DELETED!!! on: July 31, 2010, 07:20:09 AM
I've started the undelete request here:
http://en.wikipedia.org/wiki/Wikipedia:Requests_for_undeletion#Bitcoin

If anyone wants to participate, just edit my undelete request and add more reasons why you think it wasn't fair to delete the article.
202  Bitcoin / Development & Technical Discussion / Re: Webpage idea: Next predicted difficulty change on: July 31, 2010, 05:40:15 AM
Can you put it on the main site in a box somewhere, kind of a like a mini-dashboard?  Smiley
203  Bitcoin / Development & Technical Discussion / Re: 4 hashes parallel on SSE2 CPUs for 0.3.6 on: July 31, 2010, 04:49:33 AM
Darn, it means the next release, the difficulty is going to have to increase to 1000 or so to keep up, LOL  Grin
204  Bitcoin / Bitcoin Discussion / Re: *** ALERT *** Upgrade to 0.3.6 on: July 30, 2010, 10:20:53 PM
You should see the face my wife makes when she sees me typing it  Grin

First thing she said "What hell are you guys talking about"  Lips sealed
205  Bitcoin / Development & Technical Discussion / Re: Implementation bug prior to 0.3.6 on: July 30, 2010, 10:19:45 PM
If someone started a new chain on the "production" network; it would have to be longer than the current chain. So given how much CPU time it took to generate that one, I don't see anyone trying to start a new chain anytime soon.
206  Bitcoin / Development & Technical Discussion / Re: 4 hashes parallel on SSE2 CPUs for 0.3.6 on: July 30, 2010, 09:51:10 PM
Awesome, I'll have to give it a try myself then.  Shocked
207  Bitcoin / Bitcoin Discussion / Re: *** ALERT *** Upgrade to 0.3.6 ASAP! on: July 30, 2010, 09:47:03 PM
So that last command should simply be
sudo apt-get install libboost1.37-dev
Except that wouldn't work for boost 1.40+ (on Ubuntu 10.04), where you need to get libboost-all-dev.

Seems they changed everything around in Boost recently, "-mt" and all that, makes it hard.

BTW, I tried Boost 1.34 but it didn't have the boost.interprocess stuff.

Mac OSX version is available now.  See bitcoin.org or the SourceForge link.
Oh, ok, that makes more sense now. Didn't know that was being compiled on Ubuntu 10.04, I was thinking of everything from a Ubuntu 9.04 point of view.

Well for me, the libboost1.37-dev was all it needed on a Ubuntu 9.04 box to get a 64bit compile. Seems I'll just need to keep a bunch of virutal box for each one to avoid distro confusion when compiling  Grin
208  Bitcoin / Development & Technical Discussion / Re: 4 hashes parallel on SSE2 CPUs for 0.3.6 on: July 30, 2010, 09:33:29 PM
I take it that you've already tested the hash limit before performance starts to suffer against the stock code? I'm just curious myself.
209  Bitcoin / Bitcoin Discussion / Re: A proposal for a semi-automated Escrow mechanism on: July 30, 2010, 09:09:51 PM
Basically a specialized bitcoind that the buyer sends a payment to and when everything is good, the buyer sends a special "all clear" message to that server that then knows to "release" what it has to whoever it's suppose to go to.

Programming wise, should be possible with direct IP payments for example, where the "From" and "Comment" fields can be used to "reserve" the BTC until later.

One could send a transaction and in the comment field put something like "Escrow=<public hash of seller> Amount=1000.00 Release=<some encrypted string>".

When the buyer gets the stuff and he/she is happy, they send a 0.01 payment to the same escrow server "Escrow=<public hash of seller> Amount=1000.00 Release=<some encrypted string>" and the server sees the match, knows it's ok to send payment to that address, for that amount, etc.

Very doable from a programming standpoint.
210  Bitcoin / Development & Technical Discussion / Re: Implementation bug prior to 0.3.6 on: July 30, 2010, 08:57:55 PM
Find more info about this here: https://www.bitcoin.org/smf/index.php?topic=643.0
211  Bitcoin / Development & Technical Discussion / Re: Compiling under Linux (0.3.6) on: July 30, 2010, 08:11:39 PM
I have a 64bit compile of the linux client bitcoin up here that I just finished. All the debug symbols are stripped as well so the file isn't 60+ megabytes in size.
Test at your own risk (like me right now)

64bit Build Only - Client only (bitcoin)
http://knightmb.dyndns.org/files/bitcoin/bitcoin.tar.gz

64bit Build Only - Daemon only (bitcoind)
http://knightmb.dyndns.org/files/bitcoin/bitcoind.tar.gz

Compiled on a Ubuntu 9.04 box with Glibc 2.9 (so those running 2.9, 2.10, 2.11 should work with this)

[edit]New version has come out since then, so those links are valid not anymore.
212  Bitcoin / Bitcoin Discussion / Re: *** ALERT *** Upgrade to 0.3.6 ASAP! on: July 30, 2010, 08:04:19 PM
I can't understand why you're having so much pain.  I just followed the instructions in build-unix.txt.  I made a couple little corrections for Boost 1.37, which I'll put on SVN the next time I update it, noted below:

Dependencies
------------
sudo apt-get install build-essential
sudo apt-get install libgtk2.0-dev
sudo apt-get install libssl-dev
sudo apt-get install libdb4.7-dev
sudo apt-get install libdb4.7++-dev
sudo apt-get install libboost-all-dev (or libboost1.37-dev)
That part I highlighted is what got me. You can't install all the libboost packages with that command (I tried to cheat with a * also), but part of my issue is I took it too literal like install *everything* that had to do with libboost, LOL.

Really, all that was needed was the libboost1.37-dev package and that made all the compile errors go away. Everything else worked out just fine as far as compiling your own wxWidgets, compiling Boost 1.4, etc.

So that last command should simply be
sudo apt-get install libboost1.37-dev

On a side note, I compiled mine on a Ubuntu 64bit system, so the finished program came out 64bit aware. I'm testing it out on some 64bit systems to see how well things go.
213  Bitcoin / Development & Technical Discussion / Re: Compiling under Linux (0.3.6) on: July 30, 2010, 07:33:43 PM
Victory at last, finally installed enough files to compile, LOL.

But then, I just noticed a 32bit build on Ubuntu 9.04 was just put up, haha.
214  Bitcoin / Bitcoin Discussion / Re: *** ALERT *** Upgrade to 0.3.6 ASAP! on: July 30, 2010, 07:24:07 PM
I can only imagine the pain you went through to get these builds because I'm trying to build the program on a Ubuntu 9.04 box and so far I can't seem to find all the dependencies to compile no matter how much I keep installing packages and compiling source, LOL.
215  Bitcoin / Development & Technical Discussion / Re: Compiling under Linux (0.3.6) on: July 30, 2010, 07:17:38 PM
As far as I know, but I finally got past the wxWidgets problem (typo in a command while installing, grrr)

I've finally landed at the libboost-dev-all package to install, but it's not found in the Ubuntu repository for some reason? I guess I'll just install anything/everything that has to do with boost-dev  Grin

That's what I did and it seemed to work.  Cheers!
Is there a blanket command with apt-get to install everything that has to do with libboost without it error out on package conflicts? I tried to cheat with a "apt-get install libboost*" but it just complains that it's not possible due to conflicts (which I understand since I can't install 2 versions of the same thing at the same time).
216  Bitcoin / Development & Technical Discussion / Re: Compiling under Linux (0.3.6) on: July 30, 2010, 07:06:46 PM
That's what I'm hoping for as well, between compiling from the website then downloading another hundred megabytes worth of files anyway, hehe.
217  Bitcoin / Development & Technical Discussion / Re: Compiling under Linux (0.3.6) on: July 30, 2010, 06:55:55 PM
As far as I know, but I finally got past the wxWidgets problem (typo in a command while installing, grrr)

I've finally landed at the libboost-dev-all package to install, but it's not found in the Ubuntu repository for some reason? I guess I'll just install anything/everything that has to do with boost-dev   Grin
218  Bitcoin / Development & Technical Discussion / Re: Compiling under Linux (0.3.6) on: July 30, 2010, 06:12:48 PM
I've built a Ubuntu 9.04 box and the irony is, when it finally came time to compile, I get the same errors I got on my Mandriva box.

So I'm stuck at the wxWidgets again. I guess I'm not understanding what my wxWidgets issue is. I've downloaded the 2.9 source directly from the website, compiled and installed without any errors. When it comes time to compile bitcoin, it just throws up a ton of wxWidget errors, too long to really paste here.

Has anyone done a successful build of Bitcoin in Linux, if so I'm curious to which Distro you were using?

Have you read the directions in `path-to-bitcoin-folder`/src/build-unix.txt?
It contains information about how to compile wx 2.9 that you need to follow.  Apologies if you already know this.
Yeah, I'm following those to the letter, but I think that's my issue is, there might be a step missing because when compiling bitcoin, the errors point towards something else missing in the wx2.9 stuff (maybe an additional step) necessary. I think I'm close to figuring it out, if I do, I'll be sure to post it and hopefully have the text updated for future people to avoid any frustration  Grin
219  Bitcoin / Development & Technical Discussion / Re: Compiling under Linux (0.3.6) on: July 30, 2010, 05:39:37 PM
I've built a Ubuntu 9.04 box and the irony is, when it finally came time to compile, I get the same errors I got on my Mandriva box.

So I'm stuck at the wxWidgets again. I guess I'm not understanding what my wxWidgets issue is. I've downloaded the 2.9 source directly from the website, compiled and installed without any errors. When it comes time to compile bitcoin, it just throws up a ton of wxWidget errors, too long to really paste here.

Has anyone done a successful build of Bitcoin in Linux, if so I'm curious to which Distro you were using?
220  Bitcoin / Development & Technical Discussion / Re: Compiling under Linux (0.3.6) on: July 30, 2010, 03:51:01 PM
Thanks for the help, I did finally get past those errors, got hung up on the wxWidgets even though it's installed exactly as the instructions showed, I don't know enough about wxWidgets to troubleshoot the error.

But I'm building a Ubuntu box on the same setup (well older version) of what the program is being compiled on for release here in hopes it will speed things up for testing rather than troubleshooting different distro builds.
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 21 22 23 24 25 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!