- Manually configure static interface
- Install Bind DNS - sudo apt-get install bind9 bind9utils bind9-doc
Configure BIND server options
#!/bin/bash | |
while true; do | |
read -p "Do you wish to continue (yes or no)? " yn | |
case $yn in | |
[Yy]* ) break;; | |
[Nn]* ) exit;; | |
* ) echo "Please answer yes or no.";; | |
esac | |
done |
# Ignore docs files | |
_gh_pages | |
_site | |
.ruby-version | |
# Numerous always-ignore extensions | |
*.diff | |
*.err | |
*.orig | |
*.log |
import org.apache.commons.lang3.RandomStringUtils; | |
import java.util.Calendar; | |
import java.util.Date; | |
import java.util.Random; | |
public final class Randomness { | |
private static final Random random = new Random(System.currentTimeMillis()); |