Difference between revisions of "Chumpcoin"

From Bacliff Exploration Society
Jump to navigation Jump to search
Line 2: Line 2:
  
 
'''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.  The US dollar to ChumpCoin exchange rate is currently 1.0.   
 +
 +
== Chumpcoin Mining ==
 +
 +
The following software 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
 +
           
 +
do
 +
    call random_number(r)
 +
    write(*,*) 'Here is your Chumpcoin: ', r
 +
end do
 +
 +
end program chumpcoin_miner
 +
  
 
== See also ==
 
== See also ==
 
* [[Ponzi scheme]]
 
* [[Ponzi scheme]]
 
* [[Bitcoin]]
 
* [[Bitcoin]]

Revision as of 15:06, 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. The US dollar to ChumpCoin exchange rate is currently 1.0.

Chumpcoin Mining

The following software 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
            
do
   call random_number(r)
   write(*,*) 'Here is your Chumpcoin: ', r
end do

end program chumpcoin_miner


See also