Difference between revisions of "Chumpcoin"

From Bacliff Exploration Society
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[File:Chumpcoin.png|200px|thumb|right|The ChumpCoin logo.]]
 
[[File:Chumpcoin.png|200px|thumb|right|The ChumpCoin logo.]]
  
'''ChumpCoin''' is an exciting new digital currency sponsored by the [[Bacliff Exploration Society]].  Unlike [[Bitcoin]], which is a total scam, ChumpCoin is completely legitimate, safe, and 100% secure.  It is also not monitored by the [[NSA]] in any way.  How does it work, you ask?  Well, nothing could be simpler.  Simply send us real money (e.g., dollars), and we will then give you ChumpCoin.  The US dollar to ChumpCoin exchange rate is currently 1.0.   
+
'''ChumpCoin''' is an exciting new digital currency sponsored by the [[Bacliff Exploration Society]].  Unlike [[Bitcoin]], which is a total scam, ChumpCoin is completely legitimate, safe, and 100% secure.  It is also not monitored by the [[NSA]] in any way.  How does it work, you ask?  Well, nothing could be simpler.  Simply send us real money (e.g., dollars), and we will then give you ChumpCoin.   
  
== Chumpcoin Mining ==
+
== Current exchange rate ==
  
The following software is used to "mine" chumpcoin:
+
The US dollar to ChumpCoin exchange rate is currently: '''$100 / Chumpcoin'''. 
 +
 
 +
== Chumpcoin mining ==
 +
 
 +
The following Fortran code is used to "mine" Chumpcoin:
  
 
  program chumpcoin_miner
 
  program chumpcoin_miner
Line 20: Line 24:
 
  call system_clock(count)
 
  call system_clock(count)
 
  seed = count
 
  seed = count
           
+
call random_seed(put=seed)
 +
 
  do
 
  do
 
     call random_number(r)
 
     call random_number(r)
Line 28: Line 33:
 
  end program chumpcoin_miner
 
  end program chumpcoin_miner
  
 +
Example output (note: you can't use these Chumpcoins because they have already been used, so get your own):
 +
 +
Here is your chumpcoin:  0.383302987   
 +
Here is your chumpcoin:  0.287701428   
 +
Here is your chumpcoin:  0.818586588   
 +
Here is your chumpcoin:  0.189819992   
 +
Here is your chumpcoin:  0.213210166   
 +
Here is your chumpcoin:  0.197449386   
 +
Here is your chumpcoin:  0.441488743   
 +
Here is your chumpcoin:  0.235480905   
 +
Here is your chumpcoin:  0.614930153   
 +
Here is your chumpcoin:  0.730845809   
 +
Here is your chumpcoin:  0.437354267   
 +
Here is your chumpcoin:  0.410235107   
 +
Here is your chumpcoin:  0.793827832   
 +
Here is your chumpcoin:  0.211548746
  
 
== See also ==
 
== See also ==
 
* [[Ponzi scheme]]
 
* [[Ponzi scheme]]
 
* [[Bitcoin]]
 
* [[Bitcoin]]

Latest revision as of 15:55, 1 March 2014

The ChumpCoin logo.

ChumpCoin is an exciting new digital currency sponsored by the Bacliff Exploration Society. Unlike Bitcoin, which is a total scam, ChumpCoin is completely legitimate, safe, and 100% secure. It is also not monitored by the NSA in any way. How does it work, you ask? Well, nothing could be simpler. Simply send us real money (e.g., dollars), and we will then give you ChumpCoin.

Current exchange rate

The US dollar to ChumpCoin exchange rate is currently: $100 / Chumpcoin.

Chumpcoin mining

The following Fortran code is used to "mine" Chumpcoin:

program chumpcoin_miner

implicit none

real :: r
integer :: n
integer,dimension(:),allocatable :: seed
integer :: count

call random_seed(size = n)
allocate(seed(n))
call system_clock(count)
seed = count
call random_seed(put=seed)

do
   call random_number(r)
   write(*,*) 'Here is your Chumpcoin: ', r
end do

end program chumpcoin_miner

Example output (note: you can't use these Chumpcoins because they have already been used, so get your own):

Here is your chumpcoin:   0.383302987    
Here is your chumpcoin:   0.287701428    
Here is your chumpcoin:   0.818586588    
Here is your chumpcoin:   0.189819992    
Here is your chumpcoin:   0.213210166    
Here is your chumpcoin:   0.197449386    
Here is your chumpcoin:   0.441488743    
Here is your chumpcoin:   0.235480905    
Here is your chumpcoin:   0.614930153    
Here is your chumpcoin:   0.730845809    
Here is your chumpcoin:   0.437354267    
Here is your chumpcoin:   0.410235107    
Here is your chumpcoin:   0.793827832    
Here is your chumpcoin:   0.211548746

See also