Exactly. Thats the irony in all this- currency speculation exists everywhere, but faith and an official known cash manager(the gvt) has led the USD to be more trusted...at least as of now.
Having the biggest guns also helps.
Exactly. Thats the irony in all this- currency speculation exists everywhere, but faith and an official known cash manager(the gvt) has led the USD to be more trusted...at least as of now.
OK. Cool.No disrespect intended.Jesus- the beanie babies reference was directed at investing in bitcoin, not using bitcoin as a currency.
I identified the 3 reasons why investing in bitcoin is like the 90s craze of beanie babies.
I did not mean to imply the use of bitcoin is like the beanie babies craze, which is why i specifically said 'investing' in the earlier post.
I see that my post wasnt clear and i transitioned between bitcoin investing and bitcoin transactional use a lot, which didnt help.
Reraise.
![]()
Reraise.
![]()
Oh, I guess I will take my cash down to the court house and trade it in for "faith and credit" whatever that is. Can you eat it?This is exactly right.
Except that the USD is backed by the full faith and credit of the USA. Bitcoin is backed by speculation. It's had an unbelievable run and made a lot of people rich. But it can, and will, crash and crash hard.
From a simplified (yeah, this is simplified) technical perspective:
Bitcoin relies on two computational principles: hashing and public key cryptography.
Hashing: Hashing simply takes a string of letters/numbers/binary data and converts it to a number with a fixed range. For example, a (very bad) hash might be to take all the numbers, add them up, and take the ones digit. So the hash of 1234567 is 8. A good hash function has several important properties. The first two are that they should be fast to compute and that you always get the same answer (if you need randomness, it must be placed in the message before computing the hash). The hash function should also not be invertible (I cannot figure out your message is 1234567 from the hash of "8")8). The hash function should also give a very different answer for a slightly changed input. Finally, I should not be able to easily find another input into the hash function that gives the same output. Easily is defined as anything simpler than a brute force search of all possible inputs.
My example hash fails on the last two properties. The number 12345670 gives me the same hash value even though I added a 0 to the end, and I can also give you the number 44 to get the same hash. Good hash functions are developed by teams of mathematicians and undergo rigorous mathematical proofs of their properties.
The invertibility criteria is not just a function of the hash function, but also of how it is used. For example, if I want to make a prediction of who wins the Gator Bowl, but I don't want to reveal it to you until after the game is over, I can give you the SHA-256 (SHA means Secure Hash Algorithm, and 256 is the number of bits in the output hash) hash of my prediction, which is 003e761d9dbff59ed59224db58962d8600c3521729fe6ec8ead0c196ac912aca. The only problem is that the input space I used was small. Namely, you can try a few variations of team names (mississippi state, msu, M-State, Mississippi State, Lousiville, UL, louisville, etc.) and you'll eventually find my answer. The solution is to add a little bit of randomness to my answer. I can put in Mississippi State-XXXXXXXXXXXX or Lousiville-XXXXXXXXXXXX where the 12 Xs are a 12 random digits, I can hash the answer and you will have to brute force through around 1 trillion combinations to get my prediction. In reality, I can put way more than 12 digits on my prediction at a very low upfront cost and make my prediction uncrackable. Once the game is over, and I want to prove I was right, I provide you with Mississippi State-867930519417, you hash the string, and see that I was correct. The final hash property (not being able to easily find another input that gives the same output) means that I would not feasibly be able to find an input of Louisville-XX...
What does this have to do with Bitcoin? Suppose you have a list of all of today's transactions, along with a hash value that corresponds to yesterday and days before transactions. You can concatenate all the data to get PREVIOUS_HASH++Transaction 1++Transaction 2++...+Transaction Last++Mining Transaction++NONCE. The miners have to determine what "NONCE" is. Nonce means number used once, and in this case the miners are trying to find a NONCE that when added to "PREVIOUS_HASH++Transaction 1++Transaction 2++...+Transaction Last" gives you a hash that is below a certain value. A simpler idea is to find a hash that has a certain number of leading zeros. This is the difficulty level. My hash of "Mississippi State" above had two leading zeros (each digit in the has represents 4 bits, so the first 8 bits out of 256 bits were 0s). For bitcoin, you would have to find a nonce that gives a hash with far more zeros at the beginning. Let's say the first 32 bits need to be 0. It doesn't matter what the final 226 bits are. You will have to try around 4 billion nonces to find an answer that has that many leading 0 bits. For example, Mississippi State-2847158813 has a SHA-256 hash that begins with 8 leading zeros (verify it yourself here: http://www.xorbin.com/tools/sha256-hash-calculator).
This number, 2^32 which is around 4*10^9, is not large enough for bitcoin (this is an extremely small number in computational standards. Your phone could find a solution in less than a couple minutes). I think bitcoin is around 10^19. If you have a single computer computing 1 billion hashes per second, it would take on average 317 years to find the nonce. However, there are millions of processors constantly mining, so a nonce is found, on average, every 10 minutes. If you find the nonce, you claim your bitcoins and publish your nonce. One other thing is that someone else cannot steal your nonce and claim it for himself because one of the transactions in the block will be the coins you award to yourself for mining (the "Mining Transaction" contains your bitcoin address). Since your bitcoin address (more on that later) is different from someone else's address (and should be because if you have the same address they can steal all your coins) and a hash value will radically change with a change in input, the nonce they find will be different from yours because there will be one transaction different.
Public key cryptography:
Public key cryptography allows me to encrypt or sign data with a private key and anyone can decrypt or verify my signature with my public key. Someone else cannot generate a signature or encrypt data with my public key and have it appear as if I signed or generated the encrypted data. Public key cryptography is computationally expensive, so the only time it is used in bitcoin is in signing transactions and verifying transactions. Even then, the transaction itself is not signed, rather the hash of the transaction is signed. For bitcoin, the public key also acts as the address, which indicates who are sending and receiving bitcoins. I can generate a public key/private key pair and have someone send me bitcoin (or mine) and put the public key as the recipient address. I can later spend the coin because I have the private key required to spend it.
The crazy thing is that in bitcoin a validly recorded transaction is itself the bitcoin. If the ledger has a transaction with me as the recipient for 1 bitcoin, I have 1 bitcoin. If I want to spend that 1 bitcoin by sending it to you, I can take your address (public key), the number of bitcoin I'm sending you, and the hash of my bitcoin (that is, the hash of the previous transaction that contains my public key as the recipient). I concatenate them together, digitally sign them with my private key, and broadcast the transaction to the bitcoin network. They are entered into the ledger, which the miners are using as an input to generate their bitcoins. Once the miners have found the nonce, the transaction is final (there are possibilities of a what is called a blockchain fork, but that's beyond the discussion here). You can check the ledger and see that you are the recipient of 1 bitcoin from me. If I ever try to spend that bitcoin again, the hash of the bitcoin I am trying to spend can be checked against the ledger and you can tell that I am trying to double spend and reject the transaction.
I can combine multiple bitcoin inputs and/or generate multiple bitcoin outputs. For example, if I have two 1-bitcoin hashes and want to send you 2 bitcoin, your transaction will have two input hashes and the resulting transaction will indicate you have 2 bitcoin. If I have a 2-bitcoin transaction and want to send you 1 bitcoin, I send you 1 bitcoin and send myself 1 bitcoin; it's a single transaction have the same input hash, but there are two outputs, one for 1 bitcoin to your address and one for 1 bitcoin to my address, and I can verify that the sum of the outputs is less than the sum of the inputs so it is accepted into the network. If I do something like send you 1 bitcoin and forget to send myself the remaining bitcoin, the remaining bitcoin becomes part of the transaction fee and miners can claim it. If I send you 2 bitcoin from a 1 bitcoin block, the network will reject the transaction.
Lost bitcoins can never be reclaimed, or could only be reclaimed if you can generate a private key corresponding to the public key of the lost bitcoin. If someone comes up with a feasible way of doing this, it will be the end of bitcoin unless a new public key system is developed.
"bItCoIn iS a tErRiBlE iNvEsTmEnT" View attachment 9113
mstateglfr is a 17ing idiot. You can buy stuff on AMAZON with bitcoin.
1. Buy an Amazon or any other variety of giftcard through gyft.com using bitcoin.
2. Buy stuff using the Amazon giftcard.
So yes, you can absolutely buy lots of **** with bitcoin.
If you're gonna be a **** and be all "bUt tHeY dON't tAkE dIrEcT pAyMeNtS!1!!"....
Overstock, Newegg, shopify all take direct payment. Here's even a nice list that was SUPER DUPER HARD to look up:
http://spendbitcoins.com/places/
i don't think you understand what money is. Money is something of value that people use as a tool to aid in the exchange of goods. You can buy and sell stuff with bitcoin. Thus it is money. From a tax standpoint it is being viewed as an asset. The Chicago Board of Exchange begins futures trading on Sunday. If you don't know what that is... it is the largest... well f i'm not even gonna try anymore. You guys have fun.
So the fed prints more money so the government can make more regulations. What a great setup to those in charge.
Also Zimbabwe and the Weimar Republic would like a word regarding how good inflation is.
What’s the $20 in your pocket backed up by?its money somebody made up and is traded internationally...different in that it is not backed by physical assets.
I understand Bitcoin and I would not invest in it.
The biggest reason to not invest in Bitcoin is that Bitcoin is not going to be the money of the future. It has too many drawbacks to prevent wide-scale adoption.
1) When money is stolen from people, they want it back. The irreversibility of Bitcoin transactions and anonymity of Bitcoin addresses make it infeasible to get money back. Even if I track down who holds the address of where my Bitcoin first went, that person probably would have spent and/or transferred the bitcoin to other addresses. Does that person also hold the keys to those addresses? I don't know.
2) Bitcoin is too slow to be used as money. It takes on average over 5 minutes for a transaction to enter the ledger. And you thought the line at the grocery store was bad now. It can work for some online transactions, but even for things like in-app purchases, people want instant access. Amazon and the like will take it because they are going to wait a few hours before sending your stuff anyway.
3) People tend to not want to use currency whose value varies too much. In deflationary times, I will hold onto my dollars because they will be more valuable tomorrow. This is bad for money because it keeps it from moving (and hence it becomes more like an asset rather than currency). In inflationary times, I want to get rid of the money as quickly as possible and put it into something more stable.
If people are not using Bitcoin as a currency, and is increasing in value because of speculation, then it is purely an asset. And if it is an asset, what is its intrinsic value? It has none. Sure the proof-of-work is hard to calculate, but so what? I could have used the electricity used for that computation to do something else. At least gold is pretty to look at, can be made into jewelry, and has valuable industrial uses. A barrel of oil can be converted into a variety of fuels and plastics. A grain silo full of corn can be turned into food, planted to generate more corn, or turned into fuel. What can I do with a Bitcoin once no one wants to buy it?