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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
/* $OpenBSD: theo.c,v 1.49 2003/04/18 03:19:02 mickey Exp $ */
/*
* Copyright (c) 2002 Artur Grabowski <art@openbsd.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "def.h"
#include "kbd.h"
#include "funmap.h"
void theo_init(void);
static int theo_analyze(int, int);
static int theo(int, int);
static PF theo_pf[] = {
theo_analyze,
};
static struct KEYMAPE (1 + IMAPEXT) theomap = {
1,
1 + IMAPEXT,
rescan,
{
{ CCHR('M'), CCHR('M'), theo_pf, NULL },
}
};
static BUFFER *tbuf;
void
theo_init(void)
{
funmap_add(theo, "theo");
maps_add((KEYMAP *)&theomap, "theo");
}
static int
theo(int f, int n)
{
BUFFER *bp;
MGWIN *wp;
bp = bfind("theo", TRUE);
if (bclear(bp) != TRUE)
return FALSE;
bp->b_modes[0] = name_mode("fundamental");
bp->b_modes[1] = name_mode("theo");
bp->b_nmodes = 1;
if ((wp = popbuf(bp)) == NULL)
return FALSE;
tbuf = curbp = bp;
curwp = wp;
return TRUE;
}
static const char *talk[] = {
"Write more code.",
"Make more commits.",
"That's because you have been slacking.",
"slacker!",
"That's what happens when you're lazy.",
"idler!",
"slackass!",
"lazy bum!",
"Stop slacking you lazy bum!",
"slacker slacker lazy bum bum bum slacker!",
"I could search... but I'm a lazy bum ;)",
"sshutup sshithead, ssharpsshooting susshi sshplats ssharking assholes.",
"Lazy bums slacking on your asses.",
"35 commits an hour? That's pathetic!",
"Fine software takes time to prepare. Give a little slack.",
"emacs on the vax",
"Just a minute ago we were hugging and now you, guys, do not love me anymore",
"I'll let you know when I need to floss my teeth",
"If you can't figure out yourself, you're lacking some mental faculties",
"I am just stating a fact",
"blah blah",
"i'd love to hack, but i can't",
"Wait, yes, I am on drugs",
"during release it is a constant. almost noone helps.",
"i let you guys do whatever you wanted",
"you bring new meaning to the terms slackass. I will have to invent a new term.",
"if they cut you out, muddy their back yards",
"Make them want to start over, and play nice the next time.",
"It is clear that this has not been thought through.",
"avoid using abort(). it is not nice.",
"if you do not test that, you are banned from editing theo.c",
"That's the most ridiculous thing I've heard in the last two or three minutes!",
"I'm not just doing this for crowd response. I need to be right.",
"i admit you are better than i am...",
"I'd put a fan on my bomb.. And blinking lights...",
"I love to fight",
"I am not concerned with commit count",
"No sane people allowed here. Go home.",
"you have to stop peeing on your breakfast",
"feature requests come from idiots",
"henning and darren / sitting in a tree / t o k i n g / a joint or three",
"KICK ASS. TIME FOR A JASON LOVE IN! WE CAN ALL GET LOST IN HIS HAIR!",
"shame on you for following my rules.",
"altq's parser sucks dead whale farts through the finest chemistry pipette's",
"screw this operating system shit, i just want to drive!",
"That is the most stupid thing I have heard all week.",
"Search for fuck. Anytime you see that word, you have a paragraph to write.",
"what I'm doing [...] is hell. it's kind of fun.",
"Yes, but the ports people are into S&M.",
"Buttons are for idiots.",
"We are not hackers. We are turd polishing craftsmen.",
"if ya break cvs, we hunt ya and break yer legs",
"who cares. style(9) can bite my ass",
"The argument is totally Linux.",
"It'd be one fucking happy planet if it wasn't for what's under this fucking sticker.",
"noone is gonna add that thing to theo.c? wow, i'm stunned. no henning?"
};
static const int ntalk = sizeof(talk)/sizeof(talk[0]);
static int
theo_analyze(int f, int n)
{
const char *str;
int len;
str = talk[arc4random() % ntalk];
len = strlen(str);
newline(FFRAND, 2);
while (len--) {
linsert(1, *str++);
}
newline(FFRAND, 2);
return TRUE;
}
|