Bitcoin Forum
May 24, 2024, 02:56:21 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 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 »
41  Bitcoin / Electrum / Re: Why you cannot enter an arbitrary seed in Electrum on: May 16, 2013, 12:24:01 PM
From Thomas...

Quote
The main reason is that the encoding method used in RFC1751 collides with patent US5892470 A.
My personal opinion is of course that this patent is ridiculous and should never have been granted.
However, I did not want to take any risk, because if the site hosting the source code (github, gitorious)
receives a cease and desist letter, they will remove the project rather than hire a lawyer to defend the
case. And if someone decided to target Bitcoin software in general, this patent gives them a reason to
attack Electrum.
 
In order to circumvent that patent, I used a different encoding algorithm and a different dictionary.
Of course I could have changed only the encoding algorithm and kept the same dictionary, but that
would have been a terrible idea, because it means Electrum would have generated RFC 1751 valid
passphrases, but decodes these phrases differently. This would definitely have been considered as a bug.
 
Another reason not to use the same dictionary as in the RFC is that it contains mostly short words,
which are not good for long-term memorization. People often believe that short words are easier to
remember, because they confuse short-term and long-term memory. STM and LTM are separate functions,
that are performed in anatomically distinct parts of the brain (hippocampus and cortex, respectively).
It is true that sequences of short words are easier to store and recall in short term memory (Baddeley
et al 1975), but that does not make them good candidates for long term memory storage. In order
to store a list of words in long term memory, these words must be both familiar and salient (not too
common and with some semantic or emotional load). Another good thing that boosts memory is to
have words from different categories (eg verbs and nouns), as explained in this paper:
http://csjarchive.cogsci.rpi.edu/proceedings/2008/pdfs/p2183.pdf
 
This is why I used words from a poetry list found on Wikimedia; this list contained words that were both
familiar and salient. Starting from this list, I first removed words that I found too short or too common,
and verbs that were conjugated with different tenses. (I also removed nsfw words such as "fuck" and "shit",
although I realize I forgot a few of them). After that, I still had more words than needed, so I ran an
optimization algorithm, in order to select the subset with maximal average Hamming distance between words.
 
cheers
 
Thomas
42  Bitcoin / Electrum / Re: How to test restore on: May 14, 2013, 06:08:26 PM
Code:
$ ./electrum help signmessage
Sign a message with a key
Syntax: signmessage <address> <message>
If you want to lead or end a message with spaces, or want double spaces inside the message make sure you quote the string. I.e. " Hello  This is a weird String "
43  Bitcoin / Electrum / Re: How to test restore on: May 14, 2013, 06:02:22 PM
I just recently updated the help output with more details on the usage. It has not yet been pushed to a new release, so you'll have to pull down the current master to make use of it.
44  Bitcoin / Electrum / Re: Electrum 1.7.3 connects to many different IP addresses on startup. Why? on: May 14, 2013, 04:57:10 PM
One is probably looking for updates at github to tell you of a new updates, another is to look up the exchange rate. Not sure what the 3rd might be.
45  Other / Meta / Re: [NOT CONFIRMED] Bitcointalk users info leaked? on: May 10, 2013, 02:10:59 PM
I have evidence that this list of addresses was scrapped from at least one DNS registrar.
46  Bitcoin / Electrum / Re: How to test restore on: May 10, 2013, 01:57:06 PM
Overview:

sign a message with your existing copy of your wallet. keep this text file handy.
restore your wallet to a new wallet file.
using the restored wallet, verify the message signature.

If you're using linux, I can provide you a script.
47  Bitcoin / Bitcoin Discussion / Re: Tomasz Kaye will make a Bitcoin Video on: May 09, 2013, 12:31:34 PM
Near the "Proof of work" section, I think it is important to include some details of the rule that limits production of monetary units. It is a feedback look that requires looking back ~2000 blocks and determining the date. If the date is greater than 2 weeks, the work is made easier. If the date is less than 2 weeks, the work is made harder. This controls the rate at which the blocks are created, and thus, the amount of new currency generated.

Another rule in the feedback loop is the reward value. The block reward starts off at 50 bitcoins and divides in half every 210,000 blocks. This is what limits the monetary units to 21,000,000 bitcoins.
48  Alternate cryptocurrencies / Altcoin Discussion / Re: Ripple Giveaway! on: May 05, 2013, 04:33:58 AM
raxAkj3HgER2KrehSyLhCg929xVbEhtZo1
49  Bitcoin / Meetups / Re: Magic: the Gathering Tournament at Bitcoin Conference 2013 in San Jose on: May 04, 2013, 10:41:54 PM
I've only played a couple times, so no tourney for me. But I'd like to sit down for a couple games and get schooled.
50  Bitcoin / Electrum / Re: Why you cannot enter an arbitrary seed in Electrum on: April 30, 2013, 04:33:47 PM
Whoops, I was under the impression assumed that Electrum was using RFC 1751 for translating bits to words...

http://tools.ietf.org/html/rfc1751

Can I ask what the reason for not using it and going with a poetry frequency list instead?
51  Economy / Speculation / Re: This is just the beginning of the crash. on: April 29, 2013, 01:29:21 PM
Africa's and Argentina's interest and adoption?

African adoption, that's some complete 'bull'shit there.

So I can put you on record as saying Bitcoin will not ever become widely used in Africa. Check.
52  Economy / Speculation / Re: This is just the beginning of the crash. on: April 29, 2013, 01:02:58 PM
Are you bears completely missing the fact of entire countries just now becomming aware of Bitcoin?

Tens of thousands waiting in line for verification at MTSMucks, China tops downloads of the client, Africa's and Argentina's interest and adoption?

I think you guys are either blind, crazy, or butthurt manipulators.
53  Bitcoin / Electrum / Server Selection Bug in 1.7 on: March 19, 2013, 08:12:22 PM
Restored a wallet via command line and connected to Electrum.be

Clicking the Network icon results in this and I'm unable to change servers (no dialog)

Code:
Traceback (most recent call last):
  File "/usr/lib/python2.7/site-packages/electrum_gui/gui_classic.py", line 1188, in <lambda>
    self.status_button = StatusBarButton( QIcon(":icons/status_disconnected.png"), _("Network"), lambda: self.network_dialog(self.wallet, self) )
  File "/usr/lib/python2.7/site-packages/electrum_gui/gui_classic.py", line 2206, in network_dialog
    change_server(host,protocol)
  File "/usr/lib/python2.7/site-packages/electrum_gui/gui_classic.py", line 2201, in change_server
    server_protocol.model().setData(j, QtCore.QVariant(0,False), QtCore.Qt.UserRole-1)
TypeError: arguments did not match any overloaded call:
  QVariant(): too many arguments
  QVariant(Type): argument 1 has unexpected type 'int'
  QVariant(int, sip.voidptr): argument 2 has unexpected type 'bool'
  QVariant(QVariant): too many arguments
  QVariant(object): too many arguments
54  Bitcoin / Bitcoin Discussion / Re: Bitcoin 2013: The Future of Payments - San Jose, CA - May 17-19, 2013 on: March 17, 2013, 02:12:56 PM
I'm going. Riding in from Vegas on my motorcycle.
55  Bitcoin / Bitcoin Discussion / Re: ZeroHedge on: March 11, 2013, 12:42:26 PM
Bitcoin's biggest problem is that it is near perfect money and from our earliest ages we're taught that if something sounds too good to be true, it probably is.
56  Alternate cryptocurrencies / Altcoin Discussion / Re: Ripple Giveaway! on: March 04, 2013, 01:03:45 PM
raxAkj3HgER2KrehSyLhCg929xVbEhtZo1
57  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - Lightweight Bitcoin Client on: February 13, 2013, 03:06:41 AM
Your keys are easily exportable from the electrum wallet file and thus importable into another wallet system.

The command line way to do it (is there another way?) is

Code:
electrum -w wallet.dat -ak addresses 
58  Bitcoin / Project Development / Bitcoins In Vegas on: February 08, 2013, 11:19:44 PM

Take my poll


Please take a minute to vote on my poll. I'd like to know what services you most want to spend your bitcoins on while in vegas.

Please keep in mind that this is a family friendly site. I am working on a similar version that is more appropriate for adult entertainment.

But for now, please vote on your favorite category and I will focus my bitcoin promotions on those top categories. Your vote here will be discussed with those merchants to demonstrate the potential market they would be filling.

Thanks for your help and feel free to check out the current merchants and hospitality workers that currently support bitcoin in Las Vegas and give them your support when you come and visit.
59  Bitcoin / Electrum / Re: Electrum - Bitcoin client for the common users (friendly and instant) on: February 02, 2013, 02:24:55 AM
- can't remember if it's http or socks. To get the proxy option you need the "classic gui" and click on the green circle bottom right

socks
60  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - Lightweight Bitcoin Client on: February 01, 2013, 02:04:12 PM
A basic question here, is the electrum wallet.dat the exact same as the satoshi wallet.dat?

electrum supports arbitrary wallet filenames - you can easily maintain multiple wallets.

The internal structure is entirely different.

Electrum in a deterministic wallet - all addresses you ever need or will use are generated by a pretetermined pseudo random sequence. bitcoin-qt generates completely unrelated random keys as needed. The difference being that it's idiot simple to backup an electrum wallet by recording the initial seed value. the bitcoin-qt wallet.dat must be physically backed up ever 100 or so transactions
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!