Bitcoin Forum
June 21, 2024, 05:57:41 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 »
2881  Bitcoin / Electrum / Re: Several questions for a web service based on Electrum on: January 23, 2014, 11:51:19 PM
You can generate addresses even now. You don't need to have electrum running. There is some code here:

https://github.com/prusnak/addrgen

But to learn about coins you've received you have to have bitcoind or use blockchain.info's api. I suppose you could use electrum as well but you'd need to know python to fix that merchant script.

Electrum can be run over the command line. No gui required Smiley

Electrum 2.0 is going to feature a full featured daemon process for servers:

https://bitcointalk.org/index.php?topic=427617.0

There is no electrum network fee but if you want to support the electrum servers you can donate to them. You'll find their address on the console tab in the Electrum window.
2882  Bitcoin / Electrum / Re: Electrum - State of the Alloy on: January 23, 2014, 11:17:46 PM
Nice!

Also 2.0 has a lot of features. About 3, that sounds a lot like http keepalive for electrum.
2883  Bitcoin / Bitcoin Discussion / Re: Ebay almost getting into bed with Bitcoin, PayPal c$ckblocking on: January 22, 2014, 09:45:24 PM
Ebay owns Paypal.

Yeah ebay will be the last. Newegg seems more likely to accept btc soon.
2884  Bitcoin / Bitcoin Technical Support / Re: How to run Bitcoind in the background/startup? (Ubuntu 12.04) on: January 22, 2014, 08:43:29 PM
Have you tried changing $cmd to:

Quote
cmd="$home/bin/bitcoind -daemon"
2885  Bitcoin / Electrum / Re: Electrum console scripts - Script #1: Fastest servers on: January 22, 2014, 04:06:20 AM
Nice! Gotta learn python.
2886  Bitcoin / Project Development / Re: [BOUNTY] 0.15 BTC per transcript of LetsTalkBitcoin on: January 22, 2014, 03:26:29 AM

Thanks.
2887  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 22, 2014, 02:58:18 AM
I want to be able to use the clipboard for input and output.

What?? Linux has a clipboard too.

When did he mention Linux? And the condescending tone of your comments is sometimes annoying. Please stop doing that.

Hey feel free to add me to your ignore list. But I will continue to post what I like.
2888  Bitcoin / Bitcoin Discussion / Re: Bitcoin, The most dangerous currency in the world? on: January 21, 2014, 04:14:07 PM
People known to be killed over Bitcoin: 0


This is not true. Distorting facts does not help the Bitcoin cause. DPR put hits on all sorts of people for bitcoins.
2889  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 21, 2014, 03:21:58 PM
I want to be able to use the clipboard for input and output.

What?? Linux has a clipboard too.
2890  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 21, 2014, 09:36:04 AM
The script does not need to sign messages.

When i want to spend the coins i will import the private key to an online system.

I was referring to flatfly's post above where he talks about how a message signature would provide proof of the correct address.
2891  Bitcoin / Bitcoin Technical Support / Re: Emailing your wallet.dat file to yourself on: January 20, 2014, 11:11:11 PM
In a pinch, if you don't have a thumb drive to back up your wallet.dat file, is it a good, or bad idea to email the file to yourself like on yahoo.mail ?

You can do this if you are willing to a) set a password before you email it and b) make absolutely sure to switch wallets as soon as you get the chance. b will entail moving coins to a new wallet and abandoning addresses in the old one. So basically you are trading inconvenience later for convenience now. Might be worth it in a pinch as you say.
2892  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 20, 2014, 10:59:31 PM
I had the computer lying around, i though i would generate addresses offline with it and then keep it offline in case there is a virus that can upload the addresses that the computer generated offline once it gets online again.

Well the problem is that with a Windows version that old you don't even know whether you are getting cryptographically secure private keys. MS software that old did have a weak random number generator if I remember correctly.

You know you can install Linux on old computers. A debian wheezy + xfce installation uses barely any resources. Not sure how feasible that might be for you though. Depends on your skill level.

I want to generate the private keys myself

Oh, I see you are generating the private keys manually using dice? So you just want to do the EC math and hashing on the Win 95 computer? Unique use case.

You know if I were in your situation I would worry about whether the address corresponds with the private key you have. Using well tested, widely used software gives you at least some degree of comfort that the hashing is done correctly. Not sure the same can be said about bespoke one off scripts.

Converting a hex number to a bitcoin address does not require a very complex script, and I've actually worked with that for a couple years now... Also my scripts use the python-ecdsa library for the more critical parts, which has been battle tested in the field (by electrum).

And finally the integrity of the result could be cross-checked using the verifymessage function of bitcoind or electrum (for instance).

Your script will sign messages too? He will need the private key to sign messages and since the private key is not supposed to leave the offline system he will need message signing software installed on that offline system. Not sure whether bitcoin-qt/d or electrum will work on Win 95 so your script will have to do the signing. The verification he can do on his online system, no problem.
2893  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 20, 2014, 09:57:39 PM
I had the computer lying around, i though i would generate addresses offline with it and then keep it offline in case there is a virus that can upload the addresses that the computer generated offline once it gets online again.

Well the problem is that with a Windows version that old you don't even know whether you are getting cryptographically secure private keys. MS software that old did have a weak random number generator if I remember correctly.

You know you can install Linux on old computers. A debian wheezy + xfce installation uses barely any resources. Not sure how feasible that might be for you though. Depends on your skill level.

I want to generate the private keys myself

Oh, I see you are generating the private keys manually using dice? So you just want to do the EC math and hashing on the Win 95 computer? Unique use case.

You know if I were in your situation I would worry about whether the address corresponds with the private key you have. Using well tested, widely used software gives you at least some degree of comfort that the hashing is done correctly. Not sure the same can be said about bespoke one off scripts.
2894  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 20, 2014, 09:23:28 PM
I had the computer lying around, i though i would generate addresses offline with it and then keep it offline in case there is a virus that can upload the addresses that the computer generated offline once it gets online again.

Well the problem is that with a Windows version that old you don't even know whether you are getting cryptographically secure private keys. MS software that old did have a weak random number generator if I remember correctly.

You know you can install Linux on old computers. A debian wheezy + xfce installation uses barely any resources. Not sure how feasible that might be for you though. Depends on your skill level.
2895  Bitcoin / Development & Technical Discussion / Re: Bitcoin WP Plugin - No Third Party Needed on: January 19, 2014, 10:29:48 PM
Have you looked at woocommerce and this payment plugin for it:

https://bitcointalk.org/index.php?topic=88883.0

Woocommerce has an option for digital files.

http://docs.woothemes.com/document/digitaldownloadable-product-handling/
2896  Bitcoin / Project Development / Re: [BOUNTY] 0.15 BTC per transcript of LetsTalkBitcoin on: January 19, 2014, 10:25:34 PM
If you guys haven't listened to (or read!) the e65 talk by "BSS," you're missing out. It starts ~33m in and takes ~15m if you're short on time. I'm shocked I've never heard the guy speak before today.

One of the things that comes into this is labour mobility. You can target a global market without physically moving anywhere.
2897  Alternate cryptocurrencies / Altcoin Discussion / Re: Installing and Running ALT in Linux on: January 19, 2014, 09:39:18 PM
She's talking about Linux cli commands. The OP is a Linux user as are the rest of us. We understand what she means.
2898  Alternate cryptocurrencies / Altcoin Discussion / Re: Installing and Running ALT in Linux on: January 19, 2014, 05:49:52 PM
Install virtual box. Create a guest OS. Install your alt client in that guest OS. Ideally you would have a separate VM for each alt (You can easily clone a VM) so that if one alt coin client has malware it doesn't steal coins from the other alt coin wallets. But even a single VM is better than installing alt coin clients on your host OS.

Thanks Dear i will follow that ..but is there any other alternative to install the linux version of the wallet inside the Linux ... i do not know how to the linux wallet will be installed ... sure all this to avoid malware

Look how easy to install BTC client

sudo apt-get update
sudo apt-get install bitcoin-qt


Thanks

Don't those alt coins provide linux binaries? In which case you just download, unzip and place the files in bin/32 or bin/64 in your /home/user/bin/ directory. chmod +x the file and run it.
2899  Bitcoin / Bitcoin Technical Support / Re: What's the safest way to store BTC? on: January 19, 2014, 04:30:14 PM
google itJust make a paper wallet(google it)
Only a paper wallet can guarantee safety

Paper wallets are a bad idea. There are so many gotchas with them:

- You get only one address.

- Spending coins safely is hard. If you make a mistake spending your coins you could end up sending large amounts as fees, have change end up in insecure addresses or worse.

Paper wallets IMO are a primitive device. People just parrot this advice that paper wallets are a good thing but they are not. They are only good for those people selling paper wallet kits. For most users an offline wallet on a dedicated device is infinitely better. You get unlimited addresses and a full fledged bitcoin client that can spend, receive and sign messages as well.



2900  Alternate cryptocurrencies / Altcoin Discussion / Re: Installing and Running ALT in Linux on: January 19, 2014, 01:28:48 PM
Install virtual box. Create a guest OS. Install your alt client in that guest OS. Ideally you would have a separate VM for each alt (You can easily clone a VM) so that if one alt coin client has malware it doesn't steal coins from the other alt coin wallets. But even a single VM is better than installing alt coin clients on your host OS.
Pages: « 1 ... 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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!