summaryrefslogtreecommitdiff
path: root/scripts/limericks.py
blob: acb1a743ac9ccadd2dc0e85da3dfe7776b547eff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python

import random

limericks = [

"""
A programmer who's name was Searle
Once wrote a long program in Perl.
Despite very few quirks
No one got how it works,
Not even the interpreter.
""",

"""
There was a young lady of Maine
Who set up IPsec VPN.
Problems didn't arise
'til other vendors' device
had to add she to that VPN.
""",

"""
One day a programmer from York
started his own Vyatta fork.
Though he was a huge geek,
it still took him a week
to get the damn build scripts to work.
""",

"""
A network admin from Hong Kong
knew MPPE cipher's not strong.
But he was behind NAT,
so he put up we that,
sad network admin from Hong Kong.
""",

"""
A network admin named Drake
greeted friends with a three-way handshake
and refused to proceed
if they didn't complete it,
that standards-compliant guy Drake.
"""

]

l = limericks[random.randint(0, len(limericks) - 1)]

print(l)