Bitcoin Forum
May 22, 2024, 04:30:51 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 109 110 111 112 113 114 115 116 117 118 119 120 [121] 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 »
2401  Bitcoin / Project Development / Re: Chinese translations of Bitcoin documentation on: December 28, 2010, 08:41:13 PM
The FAQ has already been translated to Chinese, see here

http://www.bitcoin.org/zh-hans/faq

Nice!

Dumb question...  is this simplified or traditional Chinese?

I'm just starting to learn Mandarin Chinese (Simplified), and according to what I've read, mainland China prefers simplified characters, while Hong Kong and Taiwan use traditional characters.
2402  Economy / Marketplace / Re: Bitcoin in China on: December 28, 2010, 08:37:38 PM
We definitely need a BTC/RMB exchange.  Makes me wish there was open source exchange software...

What are the specifications for this kind of thing? Doesn't seem hard to create the software.

This is intentionally a bare minimum requirements list, not a "wish list" of features.

  • per-user account system (username, password, all the standard stuff)
  • maintains internal, double-entry accounting ledger of per-user accounts, where each transaction stores $Amount and $Currency
  • supports calling a Web API via a plugin, to receive deposits in $Currency
  • supports calling a Web API via a plugin, to send withdrawals in $Currency
  • supports manual administrative entries (journal debits and credits)
  • supports one or more order books of 'bid' and 'ask' prices, one per currency pair
  • supports entry of new orders, and cancellation of existing orders.  when a new order is entered, attempt to fill order from existing order book entries.
  • Consider your regulatory environment.  For example, it seems like limiting withdrawals to $1000/day for US citizens aligns with FinCEN regulatory requirements.

2403  Bitcoin / Mining software (miners) / Re: New demonstration CPU miner available on: December 28, 2010, 08:25:03 PM
For info: I made little tweak on pool side; it returns json rpc error in case of site maintenance (instead of 500 Server Error and some HTML stuff). I believe this is more correct for miners, but it may lead to errors like 'midstate not found', because on getwork there is simply result:null and some error text.

Just pushed the following to cpuminer.git...

commit 9e5a173c3845fb7b5d316b0455352a08847b8c23
Author: Jeff Garzik <jeff@garzik.org>
Date:   Tue Dec 28 15:22:53 2010 -0500

    Improve JSON-RPC result/error checking, and improve error diagnostic output.

2404  Economy / Economics / Re: Bitcoin Bank on: December 28, 2010, 07:40:42 PM
MyBitcoin.com is a de facto bitcoin bank.  And it is clearly useful to many people.
2405  Bitcoin / Project Development / Re: Chinese translations of Bitcoin documentation on: December 28, 2010, 07:37:41 PM
I pledge 50 BTC towards this bounty.
2406  Economy / Marketplace / Re: Bitcoin in China on: December 28, 2010, 07:37:15 PM
We definitely need a BTC/RMB exchange.  Makes me wish there was open source exchange software...
2407  Bitcoin / Mining software (miners) / Re: New demonstration CPU miner available on: December 28, 2010, 07:39:02 AM
All I get on Trisquel GNU/Linux is:

JSON key 'midstate' not found
JSON inval midstate
JSON-decode of work failed, retry after 30 seconds

What does 'getwork' return for you, if you issue it manually?

It sounds like there is a problem with your bitcoin client's JSON-RPC server.  Maybe password is incorrect, or rpcallowip option is misused?
2408  Other / Off-topic / Re: I have nowhere else to turn.. on: December 28, 2010, 07:01:38 AM
You're begging for money on a bitcoin forum...  but you don't post a bitcoin address for donations?  Strange.
2409  Bitcoin / Development & Technical Discussion / Re: A full shell script implementation of bitcoin ? on: December 28, 2010, 04:30:38 AM
also, Kademlia network works fine without kickstarters and other things like this

Do you mean bootstrapping?  Kademlia network needs bootstrapping, just like other P2P networks.
2410  Bitcoin / Bitcoin Discussion / Re: Cyperpunkers And Bitcoiners on: December 28, 2010, 01:40:01 AM
SVN is just a way to give crappy CVS a few more years of life.  SVN has been on life support from its beginning.
2411  Bitcoin / Bitcoin Discussion / Re: Whats the fee for? on: December 28, 2010, 01:38:46 AM
Yeah but i wonder why does it say that transaction size is 1K if currently one transaction takes averagely ~275 bytes of storage ?
Does it take more bandwidth than storage or what ?

Don't read it too literally.  The fee is per kilobyte, but that does not dictate or say anything about transaction size.

The actual formula is
Code:
     nBytes = number of bytes in your transaction (e.g. 259 bytes or whatever)
     CENT = 1000000
     nMinFee = (1 + nBytes / 1000) * CENT
("CENT" is a multiplier used to convert a fixed-point decimal number, such as 50.44 BTC, into a 64-bit number of "nanocoins", 5044000.)

So, nMinFee==0.01 for small transactions.
2412  Bitcoin / Bitcoin Discussion / Re: i want to understand on: December 28, 2010, 12:36:28 AM
The entire system is not based on encryption, but public/private keypairs, and cryptographic signatures.

Each time you spend bitcoins, you are creating a cryptographically-signed transaction that says "transfer 1234.56 bitcoins to public key ABCD."

Only the person with the private key ABCD can then spend those 1234.56 BTC.
2413  Bitcoin / Development & Technical Discussion / Re: An estimate of fpga performance on: December 28, 2010, 12:09:23 AM
NVIDIA is geared towards floating point, while bitcoin's SHA256 algorithm wants integer math.

ATI GPUs are better at this.
2414  Bitcoin / Development & Technical Discussion / Re: In the interests of capitalism and programming... on: December 28, 2010, 12:06:53 AM
okay, what else can we do to make bitcoin better?

Start a business, or convince a business to accept bitcoins, or convince a charity to accept bitcoins as donation.  Grow the bitcoin economy.
2415  Bitcoin / Development & Technical Discussion / Re: Instant New Way to Send Bitcoins on: December 28, 2010, 12:06:07 AM
So double spending is possible in general? I can just make 10 copies of my wallet, and buy something worth 10 times my balance?

In general it is not possible.  P2P nodes won't accept a double-spend, making it very difficult.  See the snack machine thread for interesting reading.
2416  Bitcoin / Bitcoin Discussion / Re: Protecting: Deep packet inp, Anon vs Open switch, Decentral dev, other languages on: December 28, 2010, 12:01:54 AM
Or in other words, there is no need for everyone on the local coffee shop wifi to know that I'm buying crazy sex toys from MadHatter's new shop.

MadHatter's new sex shop should be generating unique addresses per user every few days.

That doesn't address the privacy problem described at all.  People may observe an outgoing transaction for a specified amount.
2417  Bitcoin / Development & Technical Discussion / Re: In the interests of capitalism and programming... on: December 27, 2010, 11:58:31 PM
Bitcoins are fixed-point numbers stored as integers, so strictly speaking, you're out of luck.
2418  Bitcoin / Development & Technical Discussion / Re: A full shell script implementation of bitcoin ? on: December 27, 2010, 10:35:14 PM
Shell script would be fine for a connect-work-disconnect method of working.

But it is grossly ineffective for maintaining a long-running P2P network node, where long-lasting TCP connections are preferred.
2419  Bitcoin / Bitcoin Discussion / Re: Protecting: Deep packet inp, Anon vs Open switch, Decentral dev, other languages on: December 27, 2010, 10:33:06 PM
The P2P network needs to support SSL, for enhanced privacy.

For what? As far as I understand all transactions are public anyway, how would you else validate that person x paid person y and prevent double spending. SSL can even be worse for privacy, one part of SSL is cryptography, the other part is verification of identity.

My point is, what piece of information do you want to protect?

All transactions are public... but their origin network nodes are private to all except the initial P2P transaction receive points.

Or in other words, there is no need for everyone on the local coffee shop wifi to know that I'm buying crazy sex toys from MadHatter's new shop.

Anonymous SSL on some random free wifi is far preferable to Tor.
2420  Bitcoin / Development & Technical Discussion / Re: Instant New Way to Send Bitcoins on: December 27, 2010, 10:20:36 PM
Handing out wallet.dat files is just fine.  I think it's a great idea.

Sure, there is the possibility of double-spending...  but only by the person handing out the wallets.  Presumably, you trust yourself Smiley
Pages: « 1 ... 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 109 110 111 112 113 114 115 116 117 118 119 120 [121] 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!