14 lines
447 B
JavaScript
14 lines
447 B
JavaScript
const titles = [
|
|
"Free will is a myth",
|
|
"Religion is a joke",
|
|
"We are all pawns controlled by something greater",
|
|
"Memes, the DNA of a soul",
|
|
"Under the spreading chestnut tree...",
|
|
"Orthodoxy is uncounsciousness",
|
|
"Arrowheads arrowheads arrowheads arrowheads...",
|
|
"Also try Terraria",
|
|
"Praise the sun",
|
|
"There is no cloud, only somebody else's computer"
|
|
];
|
|
document.title = titles[Math.floor(Math.random() * titles.length)];
|