Bitcoin Forum
June 25, 2024, 11:49:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 [4]
61  Other / Politics & Society / Re: "You've got two, he's got none, give him one!" - Redistribution of Health on: July 05, 2011, 12:02:20 PM
Quote
It is morally wrong for me to make somebody sleep rough because I believe my right to the 14th bedroom of my mansion (I wish) is greater than his.
It isn't. It is morally neutral. It would be a good deed to put up the person in your 14th bedroom but you don't personally have a moral obligation to do so. You are not actively making someone sleep rough - you are simply allowing them to do so. It is definitely morally wrong if you actively make someone sleep rough by, say, bulldosing their house. Everyone has a right to shelter and there is clearly a problem with society if some people have excess shelter and some people have none.

Quote
It is morally acceptable for you to make somebody die because you believe your claim to your kidneys is greater than his.
It is morally acceptable. I am not making someone die, merely letting them die. It would be morally good to give them a kidney and morally bad to remove both kidneys from a healthy person causing them to die. In the case of kidneys, there is a better supply of them than from living humans anyway - from people who have recently died.

Quote
Why are you not advocating forced redistribution of health?
I believe people have a right over their own body. If you force them to give up a kidney that is denying that right.  The operation would cause pain and suffering which should be avoided. Also, any corruption in the system would be much worse than just with money because it is dealing with health. Beaurocratic mistakes could be disastrous.

It should also be noted that there is a great difference between artificial property like money and land and true property - your life and your body. The artificial property is completely dependent on the society you live in. A society where these concepts don't exist is perfectly imaginable. However, your body is indisputably yours.
62  Bitcoin / Bitcoin Discussion / Re: Codename: EasyCoin on: July 03, 2011, 11:44:07 AM
Well I agree with the problems but not the solution. Bitcoins aren't easy enough for most people yet and it's difficult to buy/sell/spend bitcoins but creating a whole new layer of currency isn't really needed to solve these problems. IMO the concept of a currency backed by another currency is more confusing than a 'pure' currency like bitcoins. It's this kind of confusing abstraction that leads to our financial problems today.

I think a much better solution is to provide a set of services around bitcoins as a currency - this is already being started. I'm personally in favour of the bitcoin banking proposal outlined here.
63  Bitcoin / Project Development / Re: Wallet Manager on: July 01, 2011, 03:10:00 PM
.deb package and PPA available

Installation should now be a lot easier. You can install Wallet Manager from:

64  Bitcoin / Project Development / Re: EasyCrypt: secure your wallet.dat and other sensitive files on: July 01, 2011, 10:57:29 AM
You should probably rename this to avoid confusion:

65  Bitcoin / Project Development / Re: Wallet Manager on: June 30, 2011, 11:09:08 PM
Version 1.0.0 is out

This brings in the new file format and breaks compatibility with previous versions.

I made a video showing some typical use of the application.
66  Bitcoin / Project Development / Re: Wallet Manager on: June 30, 2011, 03:59:41 PM
Changes to file formats

I've worked on this project for a couple of days now and I now have a clearer picture of where this project is heading and what problems there are currently.  I have concluded that changing the file formats and the file extensions will help with this. For this reason, if you are using any of the current versions, ensure you keep an unencrypted backup (or a backup encrypted using a different program) because the change will break compatibility with the old encrypted files.

Problem 1 - file recognition
Using set file extensions will help both this application and users recognise which files are wallet backups and which files are encrypted wallet backups. Therefore, when I make the change, I will enforce file extensions when saving.

Problem 2 - verifying decryption
Currently, if a user decrypts a wallet but gets the passcode wrong, the application will spit out a garbled file that is no use to anyone. It is currently unable to check if the decryption was successful. To enable this, I will change the file format of encrypted wallets to include the sha256 digest of the original file which will give an easy way to verify the decryption. A side effect of this is breaking compatibility with the current encrypted format.

The file extensions
I will use the following file extensions:
  • Unencrypted backups: .bw - bitcoin wallet
  • Encrypted backups: .ebw - encrypted bitcoin wallet

As always, feedback is welcome  Cool.
67  Bitcoin / Project Development / Re: Wanted: Application to print your own Bitcoin Money on: June 30, 2011, 01:01:05 PM
It looks like someone has at least started a project to do exactly this. It's called paper-keys. I haven't tested it myself, but it looks like a good start.
68  Other / Beginners & Help / Re: Need to buy BTC via paypal on: June 30, 2011, 12:40:45 PM
If you can prove your authenticity through an Ebay history or something similar, you can use Bitmarket.

If you don't mind waiting 45 days, you can use Youtipit.
69  Other / Beginners & Help / Re: Bitcoin exchanges on: June 29, 2011, 06:32:28 PM
There is a list of exchanges at http://bitcoincharts.com/markets/. From that list, only Britcoin and BitMarket support £s.

What are you looking for from an exchange?
70  Bitcoin / Project Development / Re: Wallet Manager on: June 29, 2011, 12:46:20 PM
What would be a cool feature is the ability to create a ramdisk, decrypt the wallet.dat to there, and then use the -datadir option to use the ramdisk or something. This way the decrypted version is never stored on your hdd and would make it alot harder to recover it Smiley

That's an interesting idea that I may look at in the future. There are some big difficulties in implementing this though - for example, you generally need to be root to create a ramdisk. Although, I could possibly use fuse to do this.
71  Bitcoin / Project Development / Re: Wallet Manager on: June 29, 2011, 08:47:15 AM
how do you ensure that shred in fact overwrites the physical bytes where the wallet is stored? seems like that would be a problem anywhere that hard drive access is abstracted (any modern file system/OS), especially in the case of solid state drives.

Put simply, I don't. This is a problem with shredding algorithms in general. All of the limitations of shred(1) are inherent here as well.

However, it is more secure than a normal delete (which itself is more secure than the default delete function of most file managers which send the file to a rubbish bin) and it should stop most simple undelete programs (It won't stop high grade forensic programs).

The only way to be totally secure is to shred the whole file system!  Shocked
72  Bitcoin / Project Development / Re: Wallet Manager on: June 29, 2011, 08:40:38 AM
Your button says 'import' but the text says 'replaces your current wallet with a differnt one'. That doesnt sould like import to me, that sounds like closeing my current wallet and opening a new one. Or does it delete the current one? I would have though it would add in the keys (or however bitcoin works) - kinda like a merge.

Also how does a normal import differ form a decrypting import? Is the the import methaphore being used consistently?

Import just copies the selected wallet stored somewhere else of the disk to ~/.bitcoin/wallet.dat, overwriting ~/.bitcoin/wallet.dat in the process. So this does delete the current one. It doesn't do a merge. Maybe import/export is a bit confusing and I should use a backup/restore metaphor instead.

Decrypt and import is the same as normal import but first it decrypts the file (which needs to have been encrypted using Wallet Manager), prompting the user for the passcode.

Maybe 'Create Backup', 'Create Encrypted Backup', 'Restore Backup' and 'Restore Encrypted Backup' would be more self explanatory.

Quote
This app *may* need a little work :-)

It *does* need a little work. Smiley Currently its just at the proof of concept stage.
73  Bitcoin / Project Development / Wallet Manager on: June 28, 2011, 08:43:26 PM
Wallet Manager is my little project to create a simple GUI for the common tasks of backing up, restoring and encrypting wallets.

The GUI isn't that great at the moment (just a set of buttons) but its simple and it works:



You can download it here or grab the bzr branch
Code:
bzr branch lp:walletmanager
.

Feedback, bug reports, suggestions etc are all welcome Smiley
74  Other / Beginners & Help / Re: How many bitcoins are you mining each day? (another pissing contest) on: June 28, 2011, 12:47:08 PM
I'm making an average of 0.00013505 BTC/day. Good job I'm not mining with any real intention of making money  Wink
75  Other / Beginners & Help / Re: POLL: What name would you give to the smallest unit of bitcoin (0.00000001)? on: June 28, 2011, 12:09:25 PM
Just use SI prefixes!

1BTC = 1 bitcoin
0.1BTC = 1dBTC = 1 decibitcoin
0.01BTC = 1cBTC = 1 centibitcoin
0.001BTC = 1mBTC = 1milibitcoin
0.0001BTC = 1dmBTC = 1 deci-milibitcoin
0.00001BTC = 1cmBTC = 1 centi-milibitcoin
0.000001BTC = 1µBTC = 1 microbitcoin
0.0000001BTC = 1dµBTC = 1 deci-microbitcoin
0.00000001BTC = 1cµBTC = 1 centi-microbitcoin
76  Other / Beginners & Help / Re: How much money you're planning to spend on bitcoins? on: June 28, 2011, 11:58:58 AM
I don't see bitcoins as an investment. They are a tool for me to easily pay for things online, particularly with donations.

So far, I've put £30 into Youtipit and I am awaiting more people to post things there that I feel are worthy of donations.

The amount I plan to spend is directly related to what I can buy with or donate to using bitcoins and how much I can afford.
77  Other / Beginners & Help / Re: Trojan Wallet stealer be careful on: June 27, 2011, 11:44:55 PM
I'm guessing there isn't a version of this trojan for Linux ... yet.

I don't really have enough bitcoins to be worried about this yet. When I do I will definitely move to a more secure model than just using my installed Linux machine (I'm thinking a couple of USBs and encryption for my 'savings account' walet).

I hope other Linux users aren't being complacent. While it is inherently more secure than Windows, it is still very easy to create a simple trojan. All that's needed is a script to upload ~/.bitcoin/wallet.dat to some remote server and disguise this as some other (probably bitcoin related) software. Stick to the official repositories for your distribution where possible.
78  Other / Beginners & Help / Re: Introduce yourself :) on: June 27, 2011, 11:33:23 PM
Well, I am a student and hobbyist programmer. Bitcoins are a very interesting experiment that I hope will succeed. I plan to do some Bitcoin related coding in the near future Smiley
Pages: « 1 2 3 [4]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!