Bitcoin Forum
June 29, 2024, 08:32:33 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Altcoin Discussion / Re: ripple is amazing on: December 08, 2013, 03:37:34 PM
I'm really impressed with their infrastructure, not so much with the aspect of premining, but their infrastructure seems like it has yet to be filled but will be filled.

so there are 100,000,000,000 XRP in existence, I am guessing that over time they become pretty rare, the investors behind ripple make it seem like they're in it for the long haul, catering to the mainstream.

I have tried to get ripple since i read about it, but bitstamp makes you send in a bunch of documents and it takes a week to get verified so i never went through with it

but i found kraken.com , they just verify you on your word.  its a really well made site made by forex dudes i guess. 

what ripple is i'm not quite sure, but will it take off in the future i have a feeling it will it has a marketcap larger than litecoin, as number two behind bitcoin, but it has an entirely separate system than bitcoin and actually compliments bitcoin.  they are pretty smart whoever is behind ripple, the keeping half of the currency to the developers is gnarly but they it seems like they are doing a pretty good job so far.

what do you think?



I too am impressed with Ripples. I trade digital goods with people in the US and using Bitcoins is a nightmare for the below reasons.


1. Not everyone trusts online wallets so they download the client -  This problem could be solved if they used Electrum
2. Confirmations sometimes take 40 minutes - This could be solved if we both had Gox accounts and done Bitcoin to Bitcoin withdrawal


My typical Paypal trade is below:

1. I send £ to Payal - This is through online banking transfer and is quicker than Bitcoins but slower than Ripples
2. I send the payment as a personal payment to the US. It costs $2.50  and a 3% fee to convert £ to $

The person trusts me otherwise this trade wouldn't be possible due to charge backs.

If 2 people who already had Bitcoins were to attempt the above trade it would work fine. To be honest Litcoins would be even better.
The problem is how to get the money from the bank to the other persons bank. I believe Ripple can achieve this better than all ALT coins. You can send Currency in the Ripple network with a small fee of 0.2%( Bitstamp)

Ripple labs is a for Profit organisation. They intend to keep 45% of all Ripples. It would be like someone introducing Bitcoins and keeping 9.45 Million Bitcoins. The question you have ask yourself  is:

How much money is spent on electricity and mining equipment for Bitcoins?
Is Bitcoins better the Litecoins?
Is Litcoins better than Ripples




This video below is why I'm going to try to push Ripples in favor of the others.

http://www.youtube.com/watch?v=zX0O8BkKUhw


By the way Ripple isn't a currency and Bitcoins are more like Gold but unlike Gold the day will come when it has 0 value. Ripple may have 0 value as well but its gonna take something brilliant to knock it out while Litecoins are better than Bitcoins as we speak!




 











2  Alternate cryptocurrencies / Altcoin Discussion / Re: Ripple Giveaway! on: June 25, 2013, 08:57:20 PM
rrhomvyHjXrkqnvQ65TnyAE4v9KZsRDUdZ
3  Other / Beginners & Help / Re: The Sha256 Algorithm on: June 25, 2013, 08:42:13 PM
- snip -
If I ran the below program on a computer with near infinite computing power what value of C would the loop terminate?  
- snip -
I'm not sure that it can even be said for certain that the loop would ever terminate.  If it did, I don't think you can predict ahead of time just how many iterations it would take.

You can absolutely be sure that it would terminate.
That is in fact the definition of hash function. A function which accepts an input from an infinite set and maps it into a FINITE set. Therefore, the time that program would take to finish would be finite.
- snip -

A finite set doesn't guarantee any particular pattern of solution.

Here's an extreme example:

Imagine a hash function that maps an infinite set of values to the finite set between 0 and 999.  Imagine that results of the hash function are evenly distributed across the finite set so that any value in the finite set is equally likely to result from the function.  Now imagine that he function results in the following particular results:

  • hash('abc') results in a value of 100
  • hash(100) results in a value of 200
  • hash(200) results in a value of 300
  • hash(300) results in a value of 400
  • hash(400) results in a value of 200

The loop that the OP suggested would NEVER exit.  It would run infinitely generating the sequence 200, 300, 400, 200, 300, 400, 200, 300, 400, etc.  It would never reach a value where hash(y) = 100.

I stand by my statement, "I'm not sure that it can even be said for certain that the loop would ever terminate.  If it did, I don't think you can predict ahead of time just how many iterations it would take."

SHA-256 isn't predictable enough to know if a pattern of results would emerge.

Is the hash space for the SHA256 algorithm cyclic under sha256? I guess I don't know enough about the math involved, and a quick search doesn't turn up anything promising.

Intuition says that it should be, but that not every initial value is a generator. In fact, groups that have this property are very special, so I doubt it.


  • hash(100) results in a value of 200
  • hash(400) results in a value of 200

This would mean there is a collision i.e   hash(100) = hash(400)

I think either the loop would terminate for some value of  C less than 2^256 or it would not terminate, meaning there was a collison in the sha256





4  Other / Beginners & Help / The Sha256 Algorithm on: June 25, 2013, 11:09:32 AM

I was wondering why bitcoin uses   Sha256(Sha256()) instead of sha256() . Is it because the hashing algorithm is not considered safe?


If I ran the below program on a computer with near infinite computing power what value of C would the loop terminate? 

y = "abc"
C = 0
y = sha256(y)
y = sha256(y)

do loop until y = sha256("abc")
   {
    y = sha256(y)
    C = C + 1
   }
   
Print c
5  Other / Beginners & Help / My first post on: June 09, 2013, 09:29:00 AM
Hello

I'll just like to say hello to everyone.


Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!