Bitcoin Forum
May 11, 2024, 07:38:54 PM *
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 »
341  Other / Beginners & Help / Re: Alt-Coins on: May 31, 2013, 03:17:21 PM
There are many alternative currencies. Bitcoin has the advantage that it has value in trade online through a growing number of outlets and of course silkroad.

Second that, SR was the critical kickstarter for bitcoin, and litecoin is more than
just another alt because of Atlantis. Ok, thats exaggerated, but still... you can buy cheap E with it, it must have value.  Wink

342  Alternate cryptocurrencies / Altcoin Discussion / Re: LTC - Trollbox Trader on: May 31, 2013, 01:54:53 PM

It says "Trollbox Trader will buy 0.1LTC at market value",
is market value the ask price, ask + fees, midpoint between bid and ask or midpoint + fees?
That would make a lot of difference over time.

343  Bitcoin / Development & Technical Discussion / Re: . on: May 26, 2013, 01:54:01 PM

I'm running 0.8. Is blockparser working with 0.8?

Yes, should definitely work with 0.8.1, just a bit slower than with the older (0.7.x) versions.

344  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] DividendRippler.com Anonymous BTC/LTC/TRC Ripple Gateway on: May 20, 2013, 05:04:14 PM

•   No trust is needed to destroy an IOU. This means you don’t have to trust DR in order to accept specie payment from DR IOUs!


What about non-DR IOUs, is it possible to send Bitstamp IOUs to DR’s ripple address?
(without risk of instantly getting a bad conversion rate for the specie when there is no liquid DR-IOU/Bitstamp-IOU market)
345  Bitcoin / Project Development / Re: Ripple: A Distributed Exchange for Bitcoin on: May 19, 2013, 06:52:14 PM
Let's see how this develops.


It's packed with suspense... what will happen first?
-server code gets open-sourced
-OpenCoin shut down by authorities
-server successfully reverse engineered (like World of Warcraft Wink
-a ripple clone starts and is the hit of the day

Given the current XRP market cap (if market is right)
it will get finally decentralized and fixed rather than hacked or busted.

346  Bitcoin / Bitcoin Discussion / Re: Just spend it please.. on: May 19, 2013, 04:25:59 PM
To spend Bitcoins (whenever conveniently possible) and just buy them back immediately is the rational thing to do.
The deflationary nature of Btc is not the problem here, you can still hoard.

347  Other / Beginners & Help / Re: Fractional Reserve Bitcoin on: May 14, 2013, 05:25:33 PM
You can't print bitcoins

If you don't find someone who lends them to you, there could still be a futures market.

For example, some big bank sells Btc futures (using dollars for collateral), some ETF buys them and people can
"invest" in Bitcoin without actually driving the price...
348  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Ripple++ on: May 14, 2013, 03:23:04 PM

If Ripple++ depends on computing power like Bitcoin why is it still vulnerable to Sybil attack?

349  Alternate cryptocurrencies / Altcoin Discussion / Re: Help Compiling Litecoin for Windows on: May 10, 2013, 07:06:39 PM
Another daemon compile error, "Building headless Bitcoin and Bitcoin-qt on Windows" says
 3.3 From a Windows command prompt run:
 cd C:\bitcoin\bitcoin-master\src
 mingw32-make -f makefile.mingw


That's ok for bitcoin-master, litecoin0.6.3c gives me this error:
make (e=5): Access is denied

But it works from MinGw/MSYS shell.
350  Other / Beginners & Help / Re: VirtualBox: miner in host, client in guest machine on: May 07, 2013, 05:19:21 PM
Do you mean I literally put an asterisk in the part where it says rpcallowip?
Yes, literally an asterisk.

Ip address of Default Gateway (from Ipconfig on the guest side) seems to work too.
351  Bitcoin / Development & Technical Discussion / Re: How do I have multiple wallets, with one computer? on: May 07, 2013, 03:47:43 PM

VMs are the solution to everything Wink because they can run different clients or different versions of the default client
at the same time (directly connected to each other with "connect=..." in config file), and you have all the
functionality of a special client which supports multiple wallets. Probably more.
352  Alternate cryptocurrencies / Altcoin Discussion / Re: Help Compiling Litecoin for Windows on: May 07, 2013, 02:59:23 PM

do you know which files pthread_t is mentioned I'm going through the files and doing a find & replace and not finding any instances so far.
in Util.h
https://github.com/litecoin-project/litecoin/blob/0.6.3/src/util.h

and only the first 4 "pthread_t" out of 8 (i.e. between "#ifdef WIN32" and  "#else",
it's better to leave the Linux part alone)


But -D__NO_SYSTEM_INCLUDES would be the clean solution.
353  Alternate cryptocurrencies / Altcoin Discussion / Re: Help Compiling Litecoin for Windows on: May 05, 2013, 07:19:16 PM
Found the cause of this error: it's a naming collision, pthread_t in the Ltc source is something different
than pthread_t in Berkeley DB. (and pthread_t doesn't appear in Btc0.8.1)

EDIT: Solution: rename all occurrences of pthread_t between "#ifdef WIN32" and "#else" in Ltc0.6.3 to pthreadfoo_t
Now it compiles with the new Berkeley DB deps. (but is still compatible to the old ones)

354  Alternate cryptocurrencies / Altcoin Discussion / Re: Help Compiling Litecoin for Windows on: May 05, 2013, 05:16:40 PM
where do I find the old qtguit_deps_1.zip

and where do I unpack it to?

qtgui_deps_1.zip: Old link is dead, no mirror,
uploaded what I think is the original: http://www1.datafilehost.com/d/8561ef9a
I don't have the .sig file. Md5 checksum of uploaded file is a3840184ea3bedb8eedb755265ca6e42.

To unpack, copy \lib and \include folder over C:\MinGW\lib and C:\MinGW\include, respectively.

If QtSDK is installed, there is also C:\QtSDK\mingw\lib and C:\QtSDK\mingw\include
but these are normally not used. (?)

Not sure about litecoin-master, or the daemon/makefile.mingw, but the 0.6.3c (the official release) Qt-client is fine.
(compile from Qt4.8.4 command prompt started as admin, not from Qt-Creator)

Also, only DLLs from C:\MinGW\bin and C:\Qt\4.8.4\bin work.
(other versions of the same DLLs crash the executable)
355  Alternate cryptocurrencies / Altcoin Discussion / Re: Help Compiling Litecoin for Windows on: May 05, 2013, 11:55:05 AM
A quick fix for the "pthread_t has a previous declaration as..." error: use the old qtgui_deps_1.zip
for database and only the newest boost and openssl versions, i.e. in the  .pro file:

Code:
# Dependency library locations can be customized with:
#    BOOST_INCLUDE_PATH, BOOST_LIB_PATH, BDB_INCLUDE_PATH,
#    BDB_LIB_PATH, OPENSSL_INCLUDE_PATH and OPENSSL_LIB_PATH respectively
BOOST_LIB_SUFFIX=-mgw46-mt-sd-1_53
BOOST_INCLUDE_PATH=C:\deps\boost_1_53_0
BOOST_LIB_PATH=C:\deps\boost_1_53_0\stage\lib
OPENSSL_INCLUDE_PATH=c:/deps/openssl-1.0.1e/include
OPENSSL_LIB_PATH=c:/deps/openssl-1.0.1e

To get it to compile, I also commented out the  "# regenerate src/build.h"
section, and changed

Code:
#    windows:BOOST_LIB_SUFFIX = -mgw44-mt-1_43
    windows:BOOST_LIB_SUFFIX = -mgw46-mt-1_53

and

Code:
#windows:LIBS += -lole32 -luuid -lgdi32
windows:LIBS += -lole32 -loleaut32 -luuid -lwsock32 -lgdi32 -lm

356  Bitcoin / Development & Technical Discussion / Re: Miners have too much power when deciding about tx inclusion on: May 02, 2013, 08:36:47 PM
2) Include as many tx in the block as you can.

This would be impossible to enforce...
357  Other / Beginners & Help / VirtualBox: miner in host, client in guest machine on: May 02, 2013, 08:22:36 PM
Many alt-coin/modded/patched clients are very interesting but less than fully trustworthy,
and VirtualBox has no good GPU support.

So, for solo mining the miner should run on the physical host machine and connect to the client
in the virtual machine, via "virtual box port forwarding".
Expert level manuals are easy to find, but is there a simple step-by-step howto for beginners?


Very short version would be like:

-Miner: connect to localhost 127.0.0.1 and to some unused port xxxx.

-VBox network settings (for this virtual machine): networking mode: NAT (default)
                                            port forwarding: host IP <empty>
                                                                    host port <the unused port xxxx>
                                                                    guest IP <empty>
                                                                    guest port <the actual rpc port>

-in config file for client in guest machine: rpcallowip=*

This should do it. Guest firewall (in its default state, tested on Linux mint and Win7) is mostly harmless.
358  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: May 01, 2013, 05:40:49 PM

There's a strange little quirk when Bitcoin-qt is built on Windows (7, 64bit, new VirtualBox installation) with Qt4.8.4.

If Qt4.8.4 is uninstalled (or on a different PC) the update spinner in the lower right corner (update_spinner.mng)
is no longer displayed. It's back after (re)installing Qt4.8.4.

All the DLLs in the Qt subfolders don't make a difference. (if copied to bitcoin-qt folder)
Same for libmng.dll (not even included in Qt\4.8.4\src\3rdparty\libmng).
Qt4.8.4 installer unpacks files mostly in the Qt\4.8.4 folder, except a few links.
Does it secretly install codecs, and which?

359  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: April 29, 2013, 02:19:35 PM
is it possible to do this from codeblocks?

The Qt Sdk from Nokia is actually a very good IDE (the best free-as-in-beer one, I think),
and because bitcoin code comes with the project file for it, you should use it for editing.
360  Economy / Economics / Re: Predicting market/exchange movement visually (by looking at a historical graph) on: April 28, 2013, 07:05:32 PM

I feel like there is a certain "look" to the curve when the trend is increasing, and a different one when it is decreasing.. or, more precisely, when the second derivative of the overall trend changes +/-. Specifically, when the second derivative becomes negative, the downward part of each "spike", or wave, is much sharper. It also seems like the upwards, first half of the wave is less. I guess this is due to the upward force weakening...

Most of the time it's randomness, fooling you...
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 [18] 19 20 21 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!