02-23-2014, 03:57 PM
Assuming that our universe is a sequence of bits,
Mini-guide to creating a universe:
If you do not like static universes,
Mini-guide to creating a universe:
Code:
cat /dev/urandom >> universe
If you do not like static universes,
Code:
SIZE=$(stat -c%s "universe")
while true; do
(( N=($RANDOM % $SIZE) ))
printf $RANDOM | dd if=universe of=universe bs=1 seek=$N count=1 conv=notrunc
done