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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 2015, 2018 VyOS maintainers and contributors <maintainers@vyos.io>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
import random
limericks = [
"""
A programmer whose name was Searle
once wrote a long program in Perl.
Despite very few quirks,
no one got how it works.
Not even the interpreter perl(1).
""",
"""
There was a young lady of Maine
who set up IPsec VPN.
Problems didn't arise
till 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 with 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.
""",
"""
A network admin from Nantucket
used hierarchy token buckets.
Bandwidth limits he set
slowed down his net,
users drove him away from Nantucket.
"""
]
def get_random():
return limericks[random.randint(0, len(limericks) - 1)]
|