This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Down Under - Bill Bryson | |
Star Wars: Heir to the Empire - Timothy Zahn | |
Star Wars: Dark Force Rising - Timothy Zahn | |
Star Wars: The Last Command - Timothy Zahn | |
Star Wars: Before the Awakening - Greg Rucka | |
Hyperbole and a Half - Allie Brosh | |
The Go Programming Language - Alan A. A. Donovan, Brian W. Kernighan | |
Outliers: The Story of Success - Malcolm Gladwell | |
The Fighting Tenth - John Wingate DSC | |
Damned - Chuck Palahniuk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Random; | |
/** | |
* A credit card number generator. | |
* | |
* @author Josef Galea | |
*/ | |
public class CreditCardNumberGenerator { | |
private Random random = new Random(System.currentTimeMillis()); |