As much as I see myself as wild person when it comes to offshoot bets, I still can't reason myself into buying bitcoins. Not sure I must be too Gen X to find this reasonable. Anyone here comment "how well they did?" and if you've pulled out or are seriously thinking about pulling out? I feel silly, but I'm still not going to put my hard earned cash in it any time soon... In fact, I wouldn't really know how.
What If Bitcoin – Shoot I didn't invest
21–30 of 36 posts
Re: What If Bitcoin – Shoot I didn't invest
#22What if I didn't buy AMD? What if I didn't buy SPY? What if I didn't buy NVDA? What if I didn't buy Ethereum?
Re: What If Bitcoin – Shoot I didn't invest
#23As much as I see myself as wild person when it comes to offshoot bets, I still can't reason myself into buying bitcoins. Not sure I must be too Gen X to find this reasonable. Anyone here comment "how well they did?" and if you've pulled out or are seriously thinking about pulling out? I feel silly, but I'm still not going to put my hard earned cash in it any time soon... In fact, I wouldn't really know how.
The technology and ecosystem is very interesting in many ways, buying into it is probably a good way to kick start your interest -- nothing better than having your money on the line to keep you engaged -- but who knows where it's going to be in 10 years. Which would feel worse: buying Bitcoin now and having coins worth nothing in 10 years, or not buying Bitcoin now and in 10 years looking back and thinking "I had the perfect opportunity and I didn't take it, I'm an idiot!"? I imagine for most people they'd take the risk and buy in (hence the price growth) but for me personally it's too consuming and that's why I'm out.
Re: What If Bitcoin – Shoot I didn't invest
#24Earlier quoted context omitted.
Not only is it tremendously volatile, it's very easy for it to be lost or stolen from your wallet, or defrauded by the exchanges. (Unless you're really good at information security and very disciplined. I'd be very uncomfortable keeping a £10k investment on a PC in my house.)
That's actually the biggest issue with Bitcoin. And what I meant with "dabble with the tech". There is just no way to securely create a secret key. Because the algorithm is so complex, you have to trust somebody else's software to create the key. How do you know that software is neither malicious nor buggy?
http://www.swansontec.com/bitcoin-dice.html
https://www.reddit.com/r/Bitcoin/comments/2s2w1r/generate_ad...
Re: What If Bitcoin – Shoot I didn't invest
#25Earlier quoted context omitted.
I guess there's another side to this story: Some people got their bitcoins stolen. Also all this wealth is purely speculative. If everybody converted their bitcoins to fiat currency now the exchange rate would collapse quickly.
> If everybody converted their bitcoins to fiat currency now the exchange rate would collapse quickly. You can say the same about literally any asset or currency. If everyone sells, and no one is buying, then yes, the value drops to 0.
Or even better: it's nearly impossible to do that with fiat currency, because there are checks and balances in place.
Re: What If Bitcoin – Shoot I didn't invest
#26Earlier quoted context omitted.
I guess there's another side to this story: Some people got their bitcoins stolen. Also all this wealth is purely speculative. If everybody converted their bitcoins to fiat currency now the exchange rate would collapse quickly.
> If everybody converted their bitcoins to fiat currency now the exchange rate would collapse quickly. You can say the same about literally any asset or currency. If everyone sells, and no one is buying, then yes, the value drops to 0.
For example, the federal reserve and legislators can manipulate the interest rates and the deficit to encourage people to hold or sell their USD.
Re: What If Bitcoin – Shoot I didn't invest
#27Earlier quoted context omitted.
Not only is it tremendously volatile, it's very easy for it to be lost or stolen from your wallet, or defrauded by the exchanges. (Unless you're really good at information security and very disciplined. I'd be very uncomfortable keeping a £10k investment on a PC in my house.)
That's actually the biggest issue with Bitcoin. And what I meant with "dabble with the tech". There is just no way to securely create a secret key. Because the algorithm is so complex, you have to trust somebody else's software to create the key. How do you know that software is neither malicious nor buggy?
That is wrong. You can generate one relatively easily with dice (google for it).
> Because the algorithm is so complex, you have to trust somebody else's software to create the key.
You're conflating generating the key, which is just generating a random number in a certain range, with calculating the public address, which involves some operations on elliptic curves.
The algorithm is not that complex. Using a library like openssl/ec it is not that hard to generate the public address. It takes about 30 lines of C code using that library.
> How do you know that software is neither malicious nor buggy?
You can read the source code.
Re: What If Bitcoin – Shoot I didn't invest
#28Earlier quoted context omitted.
I guess there's another side to this story: Some people got their bitcoins stolen. Also all this wealth is purely speculative. If everybody converted their bitcoins to fiat currency now the exchange rate would collapse quickly.
> If everybody converted their bitcoins to fiat currency now the exchange rate would collapse quickly. You can say the same about literally any asset or currency. If everyone sells, and no one is buying, then yes, the value drops to 0.
It's related to the distinction between investing and speculating. Investing is based on whether the intrinsic value is below or above the price, while speculating is just based on the price.
Re: What If Bitcoin – Shoot I didn't invest
#29Earlier quoted context omitted.
That's actually the biggest issue with Bitcoin. And what I meant with "dabble with the tech". There is just no way to securely create a secret key. Because the algorithm is so complex, you have to trust somebody else's software to create the key. How do you know that software is neither malicious nor buggy?
If you really want to be sure, you can create your own private key with dice: http://www.swansontec.com/bitcoin-dice.html https://www.reddit.com/r/Bitcoin/comments/2s2w1r/generate_ad...
Re: What If Bitcoin – Shoot I didn't invest
#30Earlier quoted context omitted.
That's actually the biggest issue with Bitcoin. And what I meant with "dabble with the tech". There is just no way to securely create a secret key. Because the algorithm is so complex, you have to trust somebody else's software to create the key. How do you know that software is neither malicious nor buggy?
> There is just no way to securely create a secret key. That is wrong. You can generate one relatively easily with dice (google for it). > Because the algorithm is so complex, you have to trust somebody else's software to create the key. You're conflating generating the key, which is just generating a random number in a certain range, with calculating the public address, which involves some operations on elliptic cur…
You can read the source code.
Which code? Any link to that 30 lines of C code?