Bitcoin Forum
May 03, 2024, 11:32:36 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 98 99 100 101 102 103 104 105 106 107 108 »
1361  Bitcoin / Development & Technical Discussion / Re: Help Wanted (for pay): Implement "offline account" capabilities on: February 08, 2011, 11:07:22 AM
An account's private keys can be exported to a provided location (eg USB stick).  Private key would then be deleted from the "live" database.

I don't think this will be as straightforward as you may expect. Although an incoming payment (to a receiving address) can be linked to an account, from that point onwards the account balances have no connection to specific private keys.

Therefore the phrase "an account's private keys" doesn't have any meaning in the current implementation.
1362  Bitcoin / Bitcoin Discussion / Re: When Will Satoshi return? on: February 08, 2011, 10:56:28 AM
Maybe he got spooked by what happened to Julian Assange, and has changed his persona.
1363  Economy / Marketplace / Re: Young women for bitcoins on: February 08, 2011, 10:51:53 AM
Whoever pays for the forum hosting, makes the rules. We are guests in his forum. Other people can (and will) open fora with different rules. How can this be controversial?
1364  Economy / Marketplace / Re: FS: Vinyl "Stop The Fed (฿) Use Bitcoin" Automotive Window Decals on: February 07, 2011, 09:30:14 PM
Talkinrock has a great idea: vinyls of the gold-coin image.

These could be used for viral marketing. Flood an area with them (on billboards, shop windows etc), then people will become curious and will start talking about these mysterious "B" coins. Then, when someone works it out, the news will spread by word of mouth like wildfire.
1365  Economy / Marketplace / Re: FS: Vinyl "Stop The Fed (฿) Use Bitcoin" Automotive Window Decals on: February 07, 2011, 09:02:52 PM
Anyway you could make a spray paint stencil for....unconventional.... advertising means?

You can always skip the spray paint and use the stencil for reverse graffiti!
1366  Other / Off-topic / Re: Using Liberty Reserve? READ THIS NOW! on: February 07, 2011, 06:42:57 PM
So it can be argued that limiting daily withdrawals to $1000, exchanging for stored value (==bitcoins), fits this definition.

I wonder what would happen if the value of Bitcoins rises so quickly that someone's MtGox balance increases in value by more than $1000 per day. They will never be able to get the value out!
1367  Economy / Economics / Re: Dept Fiat Money Questions. on: February 07, 2011, 06:37:16 PM
So what does that mean for Bitcoin loans? Where would the money come from to pay interest?

The analogous problem would be if you needed to pay interest on the generated bundles of 50 BTC. Eventually the interest payments on each bundle would exceed 50 BTC and the system would collapse (for lack of coins with which to pay the interest).

It's not an issue for regular Bitcoin loans, because the money doesn't enter or leave the Bitcoin economy, it just transfers to different people. You could charge 100 BTC interest on every 50 BTC loan, and the system would not collapse, no matter how many such loans you made (provided the loans didn't all mature at the same instant of time).
1368  Bitcoin / Mining software (miners) / Re: OpenCL miner for the masses on: February 07, 2011, 04:55:39 PM
OpenCL HOWTO FOR FEDORA 14 LINUX

Here are some notes which may be useful to anyone who wishes to mine for bitcoins on Fedora 14 Linux. It's simpler than the instructions I posted for Fedora 12, because Bitcoin now supports the 'getwork' call and therefore doesn't need to be recompiled.

===

Check your software versions, and upgrade as necessary. The gcc compiler needs to be 4.x (for PyOpenCL), and Python needs to be 2.4 or newer (again, for PyOpenCL), but not Python 3.x.

Code:
$ gcc --version
gcc (GCC) 4.5.1 20100924 (Red Hat 4.5.1-4)

$ python --version
Python 2.7

You need to have either the full kernel source, or the kernel headers (because the ATI GPU driver is installed by compiling a kernel module). You also need the Python headers.

Code:
$ rpm -q kernel-devel
kernel-devel-2.6.35.10-74.fc14.x86_64

$ rpm -q python-devel
python-devel-2.7-8.fc14.1.x86_64

===

Update your display driver.

I followed the instructions from here:
http://gofedora.com/how-to-install-ati-catalyst-fglrx-98-drivers-fedora-11/
except that I used the version 11.1 11.2 of the ATI Catalyst Display Driver for Linux x86 from here:
http://support.amd.com/us/gpudownload/linux/Pages/radeon_linux.aspx?type=2.4.1&product=2.4.1.3.42&lang=English

Supposedly some of the installation steps are no longer needed with version 11.1, but I wasn't completely certain which ones, so I did them all anyway.

===

Get the ATI Stream SDK v2.1 (NOT any later version, according to brocktice), from here: http://developer.amd.com/gpu/ATIStreamSDK/pages/ATIStreamSDK-Archive.aspx

You need two downloads from that page: the Linux SDK (32-bit or 64-bit according to your version of Linux), plus icd-registration.tgz

Untar the SDK anywhere convenient. Add these lines to your .bash_profile file (in your login directory):

Code:
export ATISTREAMSDKSAMPLESROOT=...<some path>.../ati-stream-sdk-v2.1-lnx64
export ATISTREAMSDKROOT=...<some path>.../ati-stream-sdk-v2.1-lnx64
export LD_LIBRARY_PATH=$ATISTREAMSDKROOT/lib/x86_64:$LD_LIBRARY_PATH

These pathnames will vary slightly if you have a 32-bit Fedora installation.

Move icd-registration.tgz into your root directory and (as root) untar it from there. It puts some essential config files into /etc.

If you like, follow the documentation that is included in the SDK to compile the examples. Execute ati-stream-sdk-v2.1-lnx64/samples/opencl/bin/x86_64/CLInfo to check that things are working and that your GPU card is detected.

===

Install the Python OpenCL module (PyOpenCL). Broadly, follow the instructions here:
http://wiki.tiker.net/PyOpenCL/Installation/Linux

However, in step 2 I couldn't install the Numpy dependency this way. Instead I ran "System | Administration | Add/Remove Software", then searched for numpy and installed it.

In step 3, the OpenCL headers and libraries weren't found, so I had to use the longer configure.py example and provide explicit paths.

I don't think the "Boost C++" libraries are required for this version of PyOpenCL.

===

Install the JSON-RPC module for Python. This was straightforward using the instructions here:
http://json-rpc.org/wiki/python-json-rpc

===

Go to m0mchil's Git repository:
https://github.com/m0mchil/poclbm

Click the "Download" button. Download and unpack these files anywhere convenient. Change poclbm.py to executable and check that it's working:

Code:
chmod 744 poclbm.py
./poclbm.py --help

===

If you don't already have a file bitcoin.conf in your ~/.bitcoin directory, create one and put a username and password in it:

Code:
rpcuser=yourusername
rpcpassword=yourpassword

Go back to the bitcoin/bin/64 directory and start bitcoin in rpc server mode:

Code:
./bitcoin -server &

Go to the directory where you built poclbm.py and run it:

Code:
./poclbm.py --user=yourusername --pass=yourpassword

It will tell you which devices it can see. Choose the one that's not your CPU, and add that one to the command line with the "-d" switch:

Code:
./poclbm.py --user=yourusername --pass=yourpassword -d1

Watch the khash/s figures with sweet delight, and enjoy the few moments before the roar of your GPU fan starts up.

Many thanks to m0mchil and the many others who have offered code or helpful tips.

(PS: If you upgrade your kernel, the ATI driver might hang on startup. If this happens, boot into runlevel 3, delete /etc/X11/xorg.conf , reboot and reinstall the ATI driver.)
1369  Economy / Economics / Re: Dept Fiat Money Questions. on: February 07, 2011, 02:10:34 PM
Do you mean: "The central bank lends out money, then gets back the same amount plus interest. Where does the interest come from?"

It comes from an ongoing increase in the amount of money lent out by the central bank. This, of course, causes monetary inflation. The system can be regarded as lossless if we record the value of money at time "t+1" as less than the value of money at time "t". Then we get:

(P + I)issued [valued at time 't'] + (P + I)collected [valued at time 't+1"] = 0

Or, the amount owing by an insolvent bank could be written off:

(P + I)issued + (P + I)collected + (P+I)written-off = 0
1370  Bitcoin / Bitcoin Discussion / Re: new bitcoin website on: February 07, 2011, 01:48:36 PM
Got error first time trying, worked after refresh.

Same for me.
1371  Bitcoin / Development & Technical Discussion / Re: Will the block chain size ever become too large? on: February 06, 2011, 09:40:31 PM
I cannot forsee a time when BitCoin is out of reach for (well paid) hobbyists.
If the time comes when it has becme impractical for a (non-well-paid) individual to process the block chain, this can only be because Bitcoin has become wildly successful, and that will have opened up millions of new niches for the Bitcoin hobbyist. Really cool things that haven't even been though of yet.
1372  Economy / Marketplace / Re: Dedicated Bitcoin Mining Rigs on: February 06, 2011, 10:41:26 AM
There is a perfect income opportunity for businesses that custom-assemble PCs.

The more reputable ones "burn in" these systems for 48 hours to check that everything is working properly. The "new" way to "burn in" a PC is to have it mining for those 48 hours. Suddenly the cut-throat custom PC business became more profitable!
1373  Other / Off-topic / Re: THE MADNESS OF A LOST SOCIETY on: February 05, 2011, 04:32:05 PM
+1 for miscegenation (I'm learning so many new words at this forum):

http://www.youtube.com/watch?v=4HHT_V294Co
1374  Bitcoin / Bitcoin Discussion / Re: Bitcoin in RALLY mode on: February 05, 2011, 11:29:50 AM
If we could properly understand why the market settled on a particular price, then we would have enough knowledge that centrally planned economies would be successful. The 20th century answered that question dramatically.

A market aggregates the desires and value judgements of everyone who participates in the market. Unless you fully know all of those, you can't know why the market price is what it is.

So just decide what a bitcoin is worth to you, and buy or sell accordingly.
1375  Economy / Economics / Re: What is the soundest fiat currency right now? on: February 05, 2011, 11:15:33 AM
Below commodities and Bitcoin, what currency is the soundest in its backing and future?

Any country with low government debt. There are even countries that have no debt and own sovereign wealth funds too.

If I wanted to hold fiat, I would consider Australian dollars. Central bank interest rates are not artificially low, at 4.5%. Government debt is tiny compared to the USA and Europe. There is plenty of land, and plenty of natural resources, for the population.

However, as is inevitably the case, the market has already priced this into the exchange rates, and the Australian dollar has risen enormously in recent years.
1376  Bitcoin / Pools / Re: Cooperative mining (>10000Mhash/s, join us!) on: February 05, 2011, 11:09:24 AM
When the pool finds a block, it could pay out only for shares that were found in the last time "t", where "t" is 43% of 10 minutes (I think).

Because this is a sliding window, there is never an incentive for a miner to leave the pool at any particular time.
1377  Bitcoin / Bitcoin Discussion / Re: Is bitcoin safe? on: February 04, 2011, 05:17:05 PM
Same for Bitcoin, it's always clever to have multiple wallets.
Yes. And it's easy to have multiple wallets for paper money, and it's cumbersome and error-prone to have multiple wallets for bitcoin.
1378  Bitcoin / Development & Technical Discussion / Re: Suggestion: Introduce penalty for attempted double spend on: February 04, 2011, 04:49:54 PM
So the problem is not to know about it, but to know which of they two transactions is the "second spend".

Bitcoin's answer is that the "second spend" is the one that doesn't make it into the block chain accepted by the majority. Read Satoshi's paper to see how this works.
1379  Bitcoin / Development & Technical Discussion / Re: Suggestion: Introduce penalty for attempted double spend on: February 04, 2011, 03:37:45 PM
There are lots of things wrong with this.

Splitting the payment 50:50? So if I pay someone some bitcoins, any time I want I can take 50% of them back by spending them again?

Destroying the coins? If someone has already spent the coins twice, the spender is the one laughing and only the recipients lose if the coins are destroyed.

In any case I doubt there's a practical way to implement it. If the majority of the network knows about the double-spend attempt, it has rejected the second spend anyway. If the majority of the network doesn't know about the double-spend attempt, it can't do anything in response to it.
1380  Bitcoin / Bitcoin Discussion / Re: Is bitcoin safe? on: February 04, 2011, 03:30:48 PM
The "No, never" option should really say "Not yet".
Pages: « 1 ... 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 98 99 100 101 102 103 104 105 106 107 108 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!