Skip to content

Instantly share code, notes, and snippets.

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
@josefeg
josefeg / CreditCardNumberGenerator.java
Last active February 27, 2024 17:04
Credit card number generator in Java
import java.util.Random;
/**
* A credit card number generator.
*
* @author Josef Galea
*/
public class CreditCardNumberGenerator {
private Random random = new Random(System.currentTimeMillis());