Bitcoin Forum
June 27, 2024, 04:14:06 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 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 ... 88 »
361  Bitcoin / Project Development / Re: Idea: tiny url age verification wrapper on: June 20, 2012, 04:25:51 PM
By (at least US) law doesn't there need to be a warning before adult content is displayed at all? I don't see why this needs to be part of the short url.

Just go short url -> adult page.  The adult page will check cookies or sessions or w/e and if none is found, display the warning page, otherwise it will show the content.

I'm not sure why you need what you are asking for.


For tiny url, I am also pretty sure that you can just put a "+" at the end of the url and it will show a preview page first.

http://bitly.com/HUyAAk+ instead of http://bitly.com/HUyAAk gives a description of the page instead of automatically redirecting.
362  Bitcoin / Project Development / Re: Idea: age verification by university quiz on: June 20, 2012, 04:22:41 PM
What is the name of a polynomial whose roots are eigenvalues of a matrix?
 
________ polynomial   (hint: starts with letter C)

1. What % of people under 18 couldn't copy/paste that into google and get "Characteristic" within 30 seconds.

More importantly
2. What % of people 18 and over do you think could actually answer that question without looking it up in the first place.
+1
363  Bitcoin / Armory / Re: Building Armory on OSX on: June 20, 2012, 12:17:06 AM
I was able to compile in Lion.  It's a weird mix of system and brew though and I'm not sure I like it.  I don't understand what exactly is going on, but it compiles.

I'll have updated instructions up sometime soon.

EDIT: It seems like this would be a breeze if you didn't use bsddb.  It's been depreciated in python 2.6 and completely removed in 3.0.  I'm not sure if pybsddb even supports the newest version of berkeley-db4 (and berkeley-db5 has been out a while).

Looks like I had an older version in my pip cache.  I downloaded http://pypi.python.org/packages/source/b/bsddb3/bsddb3-5.3.0.tar.gz#md5=d5aa4f293c4ea755e84383537f74be82 and installed that easily.

Code:
Install homebrew packages:
$ brew install python cryptopp swig sip qt pyqt berkeley-db

$ export PATH=`brew --prefix`/share/python:$PATH
$ export CFLAGS="-arch x86_64"
$ export ARCHFLAGS="-arch x86_64"
$ export BERKELEYDB_INCDIR=`brew --prefix berkeley-db`/include
$ export BERKELEYDB_LIBDIR=`brew --prefix berkeley-db`/lib
$ export PYTHONPATH=`brew –prefix`/lib/python2.7/site-packages:$PYTHONPATH

$ pip install twisted bsddb3

$ mkdir ~/src
$ cd ~/src
$ git clone git://github.com/etotheipi/BitcoinArmory.git

$ cd BitcoinArmory/cppForSwig

This is where it gets weird.  I want this to work:

Code:
$ ln -s `brew --prefix`/lib/python2.7/config/libpython2.7.a .

But that fails with:

Code:
g++ -shared -lpthread  UniversalTimer.o BinaryData.o FileDataPtr.o BtcUtils.o BlockObj.o BlockUtils.o EncryptionUtils.o libcryptopp.a libpython2.7.a CppBlockUtils_wrap.o -o ../_CppBlockUtils.so
Undefined symbols for architecture x86_64:
  "_environ", referenced from:
      _initposix in libpython2.7.a(posixmodule.o)
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status
make: *** [swig] Error 1

So instead I'm building against the system python v2.7.1 (even though all the modules and such are brew's v2.7.3)

Code:
$ ln -s /usr/lib/python2.7/config/libpython2.7.a .

I also had to edit the makefile

Code:
vim Makefile
================================================================================
diff --git a/cppForSwig/Makefile b/cppForSwig/Makefile
index de3bb1d..716a039 100755
--- a/cppForSwig/Makefile
+++ b/cppForSwig/Makefile
@@ -8,10 +8,10 @@ OBJS = UniversalTimer.o BinaryData.o FileDataPtr.o BtcUtils.o BlockObj.o BlockUt
 
 INCLUDE_OPTS += -Icryptopp -DUSE_CRYPTOPP -D__STDC_LIMIT_MACROS
 LIBRARY_OPTS += -lpthread
-SWIG_INC     += -I/usr/include/python2.7
+SWIG_INC     += -I/usr/local/include/python2.7
 SWIG_OPTS    += -c++ -python -classic
 
-ifneq (exists, $(shell [ -d /usr/include/python2.7 ]  && echo exists ))
+ifneq (exists, $(shell [ -d /usr/local/include/python2.7 ]  && echo exists ))
    SWIG_INC     = -I/usr/include/python2.6
    LIBRARY_OPTS = -lpthread
    ifneq (exists, $(shell [ -d /usr/include/python2.6 ]  && echo exists ))
@@ -26,7 +26,7 @@ all :
        make BlockUtilsTest.out
        
 swig : $(OBJS) CppBlockUtils_wrap.o
-       g++ -shared $(LIBRARY_OPTS) $(OBJS) libpython2.6.a CppBlockUtils_wrap.o -o ../_CppBlockUtils.so
+       g++ -shared $(LIBRARY_OPTS) $(OBJS) libpython2.7.a CppBlockUtils_wrap.o -o ../_CppBlockUtils.so
        pyrcc4 -o ../qrc_img_resources.py ../imgList.xml
 
 BlockUtilsTest.out : $(OBJS) BlockUtilsTest.cpp
================================================================================

And then its just a little bit of waiting
Code:
make clean
make swig

cd ..
/usr/bin/python ArmoryQt.py

Note that is "/usr/bin/python" not brew's python.  I don't get it, but it works because of PYTHONPATH (I think)

Quote
Loading blockchain took 83.3 seconds

EDIT: I just clicked "Filter:" and everything locked up Sad
364  Bitcoin / Bitcoin Technical Support / Re: bitcoind getbalance with minconf = 0 on: June 19, 2012, 07:00:10 PM
Hello,

is there a way, to list the total balance (bitcoind getbalance) with minconf = 0 instead of 1?

Have try something like:
bitcoind getbalance * 0

But then it will show me the balance of the account *!

Is there a way?

Greetings
Simon
I believe Luke-jr's next-test branch shows an "unconfirmed balance" with getinfo.

github.com/luke-jr/bitcoin

Hopefully that will be pulled into the official repo soon.  I can't see how it would introduce any bugs.
365  Bitcoin / Bitcoin Technical Support / Re: Recover New Addresses on: June 19, 2012, 06:58:05 PM
And I've heard that if you have someone's private key, then you can spend their bitcoins.  I have my private key and my public keys.  How do I access them?
Some of the dev versions of bitcoind can import and export keys.

Since you know the private key, the easiest thing to do is import them to a wallet at blockchain.info
366  Other / Off-topic / Re: Donating to the Zimmerman Defense Fund on: June 19, 2012, 06:26:05 PM
Defending a whiteLatino and possibly racist murderer? Whats next? A childrape help fund to aid the church?
FTFY

Not that I think race has to do with this, but w/e


I still want an answer to my question that is actually on topic.

Back on Topic:

Does anyone know if the money hidden by Zimmerman and/or his wife was the money donated to the defense fund?  Did anyone here donate to it? How do you feel about your money being hidden instead of being used to actually defend him in court (if that is in fact the case)?
367  Bitcoin / Armory / Re: Armory - Discussion Thread on: June 19, 2012, 03:30:57 AM
I got armory 0.79.99.1 compiled in Lion!

I couldn't get it compiled with brew's python, but it compiled with the system python.


When I double click a p2pool payout it says:
Quote
This is a non-standard transaction, which cannot be interpretted by this program.  DO NOT ASSUME that you own these Bitcoins, even if you see your address in any part of the transaction.  Only an expert can tell you if and how these coins can be redeemed! 

If you would like more information, please copy the information on the next window into an email and send it to alan.reiner@gmail.com.
368  Economy / Services / Re: SteamCoin - Buy Steam Games for Bitcoin on: June 19, 2012, 12:57:53 AM
Cool idea.
369  Economy / Speculation / Re: virwox Boom , anyone notice on: June 18, 2012, 11:59:29 PM
I was having trouble depositing into Virwox until about a week ago.  Maybe this has something to do with it.

What funding method was that giving you trouble?

I was trying to deposit my in game SLL into virwox.
370  Economy / Goods / Re: Enjoy smoking without butane, try Ital hemp wick on: June 18, 2012, 11:57:17 PM
Got mine today!

Bad ass!!!!!

I love it!
Same.

I folded up a couple note cards and cut them in the shape of an I and wrapped the wick around them so it won't get tangled.
371  Other / Off-topic / Re: Donating to the Zimmerman Defense Fund on: June 18, 2012, 06:07:36 PM
It looks like we should have kept our off topic drug conversation going on here since no one seem to care about the OP.

Does anyone know if the money hidden by Zimmerman and/or his wife was the money donated to the defense fund?  Did anyone here donate to it? How do you feel about your money being hidden instead of being used to actually defend him in court (if that is in fact the case)?
372  Bitcoin / Bitcoin Discussion / Re: [ANN] Coming next week-- the world's first handheld Bitcoin device, the Ellet! on: June 18, 2012, 06:00:09 PM
uh ohhhhh...

That watch looks like an Ipod nano, the ones they have wristbands for..

Thats fugly, just like the ipod nano watches no one wants.....  I pray that isnt it..   Undecided

Im really really disappointed if this is it..

I really hate to be negative on this, I had high hopes, but this is ugly as hell..  

If it isnt a high tech usb stick, or a creditcard design, I cant see everyone flocking to a watch, I dont wear watches, as many others dont.
Specially when my cell phone IS my watch..

I dont wanna be a fashionable bitcoiner, I want to be a functional bitcoiner..

Watches are for fashion.. plain and simple..
You think watches are only for fashion?  I believe these 10 million dollars disagree with you...

http://www.kickstarter.com/projects/597507018/pebble-e-paper-watch-for-iphone-and-android

I for one will likely still prefer blockchain.info's app running on my phone.  The ellet still sounds interesting though.  Especially if it comes out anything like the pebble.
373  Other / Off-topic / Re: Do you take drugs; or buy them on silk road? Or sell them for that matter? on: June 18, 2012, 05:54:55 PM
I was a teenager in the late 60’s to early 70’s. I have never had unprotected sex with a total stranger, done purple microdot, brown windowpane, magic eight ball, toke, yellow jackets or snow because the government told me that I would die young if I did. Well, they might have been wrong about that. I would never use Silk Road because everything is too easy to score in my neighborhood. I pity today’s youth. Between AIDS and government oppression you will never be able to have a tenth of the fun I had at your age.

Oh, I’ve never been to Lollapalooza or Burning Man either.  Wink


I saw your avatar and thought you were Rarity for a second.  My head about exploded because I thought I had been severely trolled.  That guy wants to bring back alcohol prohibition along with prohibiting any vice that could possibly have any detrimental effect to even just a small group of the population.
374  Bitcoin / Armory / Re: Armory - Discussion Thread on: June 18, 2012, 06:51:32 AM
EDIT2:  Let's compromise -- can you send me your Makefile with the modifications you would recommend?  At the moment I'd just be taking a shot in the dark, because I don't fully understand the variability of the environments you are in.  But I'll see what you're trying to do and I'll accommodate Smiley
I had been using "git stash", then "git pull", then "git stash apply"

I put up a pull request on github awhile ago.  You can see the simple changes I made there.  I give you full right to license that code however you want if that is still a concern for you.

https://github.com/etotheipi/BitcoinArmory/pull/3

Mostly it's just sticking "$(DEPSDIR)" wherever you have "/usr"

It also has a little check to set the $DEPSDIR with brew if it detects a mac.

This works for me on master and tablesorter, but I'm not having luck with blkchainagain.  I'll try more tomorrow and also test out the binaries on ubuntu.
375  Bitcoin / Armory / Re: Armory - Discussion Thread on: June 18, 2012, 04:30:40 AM
What branch should I checkout? blkchainagain? It looks like master is still .77

I am looking at line 29 of cppForSwig/Makefile, and it has "libpython2.6.a" in it.  Is this how you meant to do it? shouldn't this be dynamic based on the installed version or something?

When I run "make swig", it (expectedly) errors out with:
Code:
g++ -shared -lpthread  UniversalTimer.o BinaryData.o FileDataPtr.o BtcUtils.o BlockObj.o BlockUtils.o EncryptionUtils.o libcryptopp.a libpython2.6.a CppBlockUtils_wrap.o -o ../_CppBlockUtils.so
i686-apple-darwin11-llvm-g++-4.2: libpython2.6.a: No such file or directory
make: *** [swig] Error 1

I do have libpython2.7.a in "/usr/local/lib/python2.7/config/libpython2.7.a"  What is the proper way to put that in the Makefile?

Also, it would be really nice if the dependency directory was easy to change.  Something like a variable at the top of the file just like in the Satoshi client Makefile.  I'm always having to edit the Armory Makefile to change the paths to "/usr/local/include" for my Mac.
376  Bitcoin / Bitcoin Discussion / Re: It's coming ... on: June 18, 2012, 03:56:49 AM
Are you also going to make bank cards and payment cards like bitbills was going to?

Any answer to this?
377  Other / Beginners & Help / Re: Ridiculous on: June 18, 2012, 03:53:34 AM
Learn to read.

Thanks for the advice, I will gladly take 20 minutes of my life to read every EULA, TOS, AUP and Privacy Policy I encounter.
All I ask is that you read one damn check box that you have to actually check to register! It's ONLY ONE sentence!  It could have said "I'm a lazy, illiterate fuckwit. Never ever let me post." and it seems like some people here would still have checked it.

You don't need to spend 20 minutes. Just have a small amount of awareness of what you are clicking.
378  Economy / Speculation / Re: virwox Boom , anyone notice on: June 17, 2012, 06:36:13 AM
I was having trouble depositing into Virwox until about a week ago.  Maybe this has something to do with it.
379  Bitcoin / Pools / Re: P2Pool Server List on: June 17, 2012, 06:27:17 AM
I've updated p2pool.stitthappens.com:8336 (BTC + NMC) and p2pool.stitthappens.com:10336 (LTC) to version 3.
380  Economy / Securities / Re: (TyGrr) TyGrr-Bot ~automated arbitrage trading system~ on: June 17, 2012, 05:54:33 AM
I can not wait to see the results for the past two weeks of trading! I run a very simple bot, no where near what arb trading can produce, on just Gox and this week has been heavenly.

We will see a real dividend payment this week, right Goat? Not a 50 btc hand out and a pat on the head. Bots been running since May 23rd on all exchanges.
Same
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 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 ... 88 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!