annotate scripts/miscellaneous/fact.m @ 19630:0e1f5a750d00

maint: Periodic merge of gui-release to default.
author John W. Eaton <jwe@octave.org>
date Tue, 20 Jan 2015 10:24:46 -0500
parents 6d8d5d9f2264 446c46af4b42
children 4197fc428c7d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19627
446c46af4b42 strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents: 19287
diff changeset
1 ## Copyright (C) 2007-2013 Jordi GutiƩrrez Hermoso
14117
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
2 ## Copyright (C) 2007 Stallmanfacts.com
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
3 ##
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
4 ## This file is part of Octave.
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
5 ##
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
6 ## Octave is free software; you can redistribute it and/or modify it
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
7 ## under the terms of the GNU General Public License as published by
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
8 ## the Free Software Foundation; either version 3 of the License, or (at
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
9 ## your option) any later version.
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
10 ##
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
11 ## Octave is distributed in the hope that it will be useful, but
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
14 ## General Public License for more details.
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
15 ##
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
16 ## You should have received a copy of the GNU General Public License
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
17 ## along with Octave; see the file COPYING. If not, see
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
18 ## <http://www.gnu.org/licenses/>.
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
19
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
20 ## -*- texinfo -*-
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
21 ## @deftypefn {Command} {} fact
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
22 ## @deftypefnx {Function File} {@var{truth} =} fact ()
14117
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
23 ## Display an amazing and random fact about the world's greatest hacker.
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
24 ## @end deftypefn
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
25
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
26
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
27 function truth = fact ()
14552
86854d032a37 maint: miscellaneous style fixes for .m files
John W. Eaton <jwe@octave.org>
parents: 14378
diff changeset
28 persistent wisdom = ...
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
29 {
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
30 "Richard Stallman takes notes in binary.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
31 "Richard Stallman doesn't need sudo. I will make him a sandwich anyway.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
32 "Richard Stallman is my shephurd, and I am his GNU.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
33 "Richard Stallman doesn't wget, Richard Stallman wdemands!";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
34 "Richard Stallman can touch MC Hammer.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
35 "Richard Stallman doesn't read web pages. They write to him.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
36 "Richard Stallman gets 9 bits to the byte.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
37 "Richard Stallman doesn't really believe in open software, because it's not free enough.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
38 "Richard Stallman can leave neutral or negative feedback on eBay.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
39 "Richard Stallman is the only man alive who can pronounce GNU the way it is meant to be pronounced.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
40 "Richard Stallman does not own a mobile phone because he can fashion a crude convex dish and shout into it at the exact resonant frequency of the ozone, causing a voice to seemingly come from the sky above his intended recipient.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
41 "Richard Stallman is so handsome that when he was young he was responsible for all other geeks not being able to get girls. This is why he has to cover his face with a thick layer of hair.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
42 "Some people check their computers for viruses. Viruses check their computers for Richard Stallman.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
43 "Richard Stallman memorises all his documents. In binary. He just types everything in whenever he needs a document.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
44 "When Richard Stallman makes a sudo command, he loses permissions.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
45 "Richard Stallman's beard is made of parentheses.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
46 "Richard Stallman's DNA is in binary.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
47 "Richard Stallman's nervous system is completely wireless.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
48 "Richard Stallman's brain accepts UNIX commands.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
49 "If Richard Stallman has 1GB of RAM, and if you have 1GB of RAM, Richard Stallman has more RAM than you.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
50 "Richard Stallman eats ethernet cables. That's why they invented wireless.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
51 "Richard Stallman has a katana. 'Nuff said.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
52 "Richard Stallman wrote a program that divides by zero.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
53 "Richard Stallman doesn't use zip drives; he just squeezes the hard drive.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
54 "Richard Stallman's compiler is afraid to report errors.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
55 "Richard Stallman wrote the compiler God used. The Big Bang was the Universe's first segfault.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
56 "Richard Stallman successfully compiled a kernel of popcorn.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
57 "Richard Stallman doesn't write programs; they write themselves out of reverence.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
58 "Richard Stallman can make infinite loops end.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
59 "Richard Stallman's anti-virus programs cures HIV.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
60 "Richard Stallman's computer doesn't have a clock; it defines what time it is.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
61 "Richard Stallman wrote a program to compute the last digit of pi.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
62 "Richard Stallman doesn't use web browsers. He sends a link to a daemon that uses wget to fetch the page and sends it back to him.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
63 "Richard Stallman can solve the halting problem... in polynomial time.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
64 "For Richard Stallman, polynomial time is O(1).";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
65 "Richard Stallman didn't \"write\" Emacs or created it in his own image. Richard Stallman made Emacs an instance of himself.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
66 "Richard Stallman can coerce meaningful data from /dev/null.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
67 "Some people wear Linus Torvalds pyjamas to bed, Linus Torvalds wears Richard Stallman pyjamas.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
68 "There is no software development process, only a bunch of programs Richard Stallman allows to exist.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
69 "Richard Stallman spends his leisure time programming with Guile on GNU Hurd.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
70 "Richard Stallman's left and right hands are named \"(\" and \")\" ";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
71 "Richard Stallman first words were actually syscalls.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
72 "Richard Stallman didn't create the singularity. He is the singularity. GNU/Linux is only the event horizon.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
73 "When Richard Stallman pipes to more, he gets less ";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
74 "Richard Stallman never showers; he runs 'make clean'.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
75 "Richard Stallman needs neither mouse nor keyboard to operate his computer. He just stares it down until it does what he wants.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
76 "Richard Stallman didn't write the GPL. He is the GPL.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
77 "Richard Stallman's pinky finger is really a USB memory stick.";
19289
6d8d5d9f2264 maint: periodic merge of gui-release to default
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents: 19226 19287
diff changeset
78 "Richard Stallman called his operating system GNU because he created it before computers existed, when actual gnus were used for calculations.";
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
79 "In Soviet Russia, Richard Stallman is still Richard Stallman!";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
80 "Richard Stallman's flute only plays free music.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
81 "When Richard Stallman uses floats, there are no rounding errors.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
82 "Richard Stallman wrote a program so powerful it knows the question to 42.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
83 "Richard Stallman released his own DNA under GNU FDL.";
19289
6d8d5d9f2264 maint: periodic merge of gui-release to default
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents: 19226 19287
diff changeset
84 "Richard Stallman knows the entire Wikipedia by heart, markup included.";
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
85 "Richard Stallman wrote the HAL9000 OS.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
86 "Richard Stallman's laser pointer is a lightsaber.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
87 "Richard Stallman never steps down; he shifts the universe up.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
88 "Richard Stallman doesn't maintain code; he stares at it until it fixes itself out of reverence.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
89 "Richard Stallman doesn't use an editor; he sets the fundamental constants of the universe so that a magnetic platter with his code on it evolves itself.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
90 "Richard Stallman doesnā€™t code; he dares the computer to not do his bidding.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
91 "Global warming is caused by Richard Stallman's rage towards non-free software.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
92 "Rather than being birthed like a normal child, Richard Stallman instead instantiated himself polymorphically. Shortly thereafter he grew a beard.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
93 "Richard Stallman discovered extra-terrestrial life but killed them because they distributed non-free software.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
94 "Richard Stallman doesn't evaluate expressions; expressions evaluate to Richard Stallman.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
95 "Richard Stallman can see Russia from his house.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
96 "Richard Stallman proved P=NP, twice!";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
97 "Richard Stallman knows of an unfixed bug in TeX.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
98 "Richard Stallman can write a context-free grammar for C.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
99 "Richard Stallman can determine whether an arbitrary program will terminate.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
100 "Richard Stallman's computer has only two buttons. One is for guests.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
101 "Richard Stallman does not actually write programs. He comes up with a length and digit index in pi.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
102 "Richard Stallman's distributed version control system is a flamewar on Usenet.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
103 "Richard Stallman wrote the first version of Emacs on a typewriter.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
104 "Richard Stallman has no known weaknesses, except for a phobia against soap.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
105 "Richard Stallman is not affected by Godwin's Law.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
106 "Richard Stallman can write an anti-virus program that cures HIV. Too bad he never writes anti-virus programs.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
107 "Richard Stallman' facial hair is \"free as in beard\"";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
108 "Richard Stallman is licensed under GPL, so you can clone him and redistribute copies so you can help your neighbor. For example a version that take a bath more often.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
109 "Richard Stallman doesn't code; he just travels around the world.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
110 "Richard Stallman was coded by himself in lisp with Emacs.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
111 "Richard Stallman doesn't eat McDonald's because the machine that kills the cows uses proprietary software.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
112 "There is no chin behind Richard Stallman's legendary beard, there is only another Emacs.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
113 "In an average living room there are 1,242 objects Richard Stallman could use to write an OS, including the room itself.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
114 "Vendor lock-in is when vendors lock themselves inside of a building out of fear of Richard Stallman's wrath.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
115 "When Richard Stallman executes ps -e, you show up.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
116 "When Richard Stallman gets angry he doesn't swear; he recurses.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
117 "On Richard Stallman's computer the bootloader is contained in his .emacs.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
118 "Richard Stallman can make any operating system free, free from drivers.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
119 "Richard Stallman programmed Chuck Norris.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
120 "Behind Richard Stallman's beard there is another fist, to code faster.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
121 "Richard Stallman won a Sudoku that started with only one number in each line.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
122 "Richard Stallman's brain compiles and runs C code.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
123 "Richard Stallman wrote the first version of Emacs using Emacs.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
124 "Richard Stallman never gonna give you up, never gonna let you down, never gonna run around and desert you, never gonna make you cry, never gonna say goodbye, never gonna tell a lie and hurt you.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
125 "Richard Stallman, upon reading these facts, didn't laugh at all. Instead, he complained that he is being linked to that dirty \"open source\" software. He also asked it to be changed to \"free software\", in order to raise awareness for software freedom in our society.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
126 "Richard Stallman has no problem using Emacs. He wrote it with his 4 hands.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
127 "Richard Stallman will revert the big rip by adding parenthesis to the dark matter.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
128 "When you make a Google search and it doesn't find the answer, Google gently consults Richard Stallman.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
129 "Richard Stallman's uptime is over 53 years. And counting up.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
130 "Richard Stallman's portable music player can play ogg and WMA, but is too afraid to invoke Richard Stallman's wrath by playing WMA. Ogg it is, then.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
131 "Richard Stallman will never die, but may some day go to /dev/null.";
19289
6d8d5d9f2264 maint: periodic merge of gui-release to default
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents: 19226 19287
diff changeset
132 "Richard Stallman once got swine flu, but it got cleansed by hereditary GPL and thus got assimilated.";
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
133 "Richard Stallman don't cut his hair because there are no GNU/Scissors.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
134 "Richard Stallman is the one who trims Chuck Norris beard. And he does it freely, of course.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
135 "Richard Stallman does not take bath, for the hydroelectric company uses proprietary software.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
136 "Agent Smith loves Richard Stallman's scent.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
137 "Richard Stallman is the One.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
138 "\"They can take our lives, but they can never take our freedom.\" -- William Wallace after a little talk with Richard Stallman.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
139 "Richard Stallman can connect to any brain using an Emacs ssh client.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
140 "Richard Stallman ported Emacs to Intel 4004 chip.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
141 "Richard Stallman did not write GNU Emacs, he simply read the source code from /dev/null.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
142 "Richard Stallman once used GDB to reverse-engineer Windows 7 into a free operating system - able to run on GNU Emacs!";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
143 "Richard Stallman does not contribute to open source projects; open source projects contribute to Richard Stallman, and then call themselves free software projects.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
144 "Richard Stallman programmed himself before he could even exist";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
145 "Richard Stallman can fill up /dev/null.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
146 "Richard Stallman is so zealous about privacy he has /dev/null as his home.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
147 "When Richard Stallman runs /bin/false, it returns \"true\".";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
148 "Richard Stallman doesn't like money, because banks don't run on free software.";
19289
6d8d5d9f2264 maint: periodic merge of gui-release to default
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents: 19226 19287
diff changeset
149 "Richard Stallman uses GNU tar to compress air.";
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
150 "When Richard Stallman reports a bug, the bug prefers to squash itself instead of facing Richard Stallman's wrath.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
151 "There are no Windows in Richard Stallman's house... only Doors...";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
152 "Richard Stallman doesn't like neither PCs-Intel nor Burger King... He prefers e-Macs...";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
153 "Richard Stallman can use grep to find Jimmy Hoffa.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
154 "Richard Stallman made it possible to not absolutely abhor HPUX.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
155 "When Richard Stallman pours his alphabets cereal into a bowl, only G's, N's, and U's come out.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
156 "Richard Stallman is pronounced \"GNU slash Stallman\"";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
157 "Richard Stallman doesn't mind if you read his mail as long as you don't delete it before he reads it.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
158 "Richard Stallman is just a guy who has strong principles and decided to follow them.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
159 "Richard Stallman knows that you don't have class because it is a keyword that he defined.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
160 "Richard Stallman doesn't need a qwerty/dvorak keyboard only two buttons \"1\" and \"0\" and his erect penis.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
161 "On the first day Richard Stallman said M-x create-light.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
162 "Richard Stallman once went out of scope for a while. The garbage collector never dared to touch him.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
163 "Richard Stallman does not compile; he closes his eyes, and see energy lines created between bit blocks by the compiler optimizations.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
164 "intx80 first calls Richard Stallman before calling sys_call.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
165 "Tron is actually a biographical story about Richard Stallman. The director decided to tone it down or audiences wouldn't find it believable.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
166 "Richard Stallman always wears a red shirt to make sure that whatever attacks his away-team has to go through him first.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
167 "kill -9 invokes Richard Stallman's rage against a process.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
168 "If Richard were to stumble upon stallmanfacts.com, he would find it a gnuisance.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
169 "Richard Stallman can telnet into Mordor.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
170 "sudo chown Richard:Stallman /all/your/base";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
171 "Richard Stallman's nervous system is completely wireless.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
172 "Richard Stallman does not sleep. He yields.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
173 "Some people say M-x psychoanalyse-pinhead is a merely a program. Others say M-x psychoanalyse-pinhead *is* Richard Stallman. All I know is, Richard Stallman is The Stig.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
174 "If you execute Emacs backward it either undoes the industrial revolution or induces the rapture. But only Richard Stallman knows which.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
175 "If Richard Stallman's beard were ever trimmed, the clippings would re-marshal into an exact copy of Richard Stallman.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
176 "Richard Stallman never sleeps because he altered his own source to gain background garbage collection.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
177 "Richard Stallman's doctor can retrieve a blood sample via CVS.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
178 "Richard Stallman can touch this.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
179 "Because Richard Stallman's DNA is licensed under the FDL, his doctor can't draw his blood without violating HIPAA.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
180 "Richard Stallman can remove his own appendix, using only GDB.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
181 "Richard Stallman's DNA includes debugging symbols. But he doesn't need them.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
182 "Richard Stallman met Chuck Norris once. Chuck tried a roundhouse, but Richard bashed him in the skull.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
183 "Richard Stallman doesn't need to buy a bigger hard drive. He can compress data infinitely.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
184 "When Richard Stallman cannot take your call, his beard answers the phone for you.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
185 "The R in RMS stands for RMS.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
186 "Richard Stallman can parse HTML with regular expressions.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
187 "Richard Stallman's traceroute goes all the way through an infinite number of anonymous proxies back to the traffic's source.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
188 "Richard Stallman's beard is in fact not a just a beard, but a microprinted hard copy of Emacs source code. New patches must be checked against new hair growth before being approved.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
189 "In the beginning-of-buffer there was Richard Stallman.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
190 "The NOOP was created to give Richard Stallman some time to comb his beard.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
191 "Whenever Richard Stallman looks at a Windows computer, it segfaults. Whenever Richard Stallman doesn't look at a Windows computer, it segfaults.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
192 "Richard Stallman can walk on Windows!";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
193 "After being unable to satisfy my wife for years, Richard Stallman was able to single-handedly unlock her orgasm within seconds and managed to write a texinfo manual minutes later for other users.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
194 "Richard Stallman's tabbed browser is a set to wget/telnet fg/bg processes.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
195 "There is no chin under Richard Stallman' beard. There's only another beard. Recursively.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
196 "Richard Stallman can chown anything! stallman@stallman~$ chown stallman:stallman Earth (for example)";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
197 "Richard Stallman freed his beard so he can always check what's in it.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
198 "In the beginning was the Word, and the Word was with RMS, and the Word was GNU.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
199 "RMS means \"RMS means Stallman\"";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
200 "Richard Stallman is the babelfish of his own speeches.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
201 "Richard Stallman wrote his own library and lives in it.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
202 "Richard Stallman found Waldo using grep in /dev/null";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
203 "Richard Stallman doesn't sleep; he is compiling.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
204 "Richard Stallman will get Coca Cola to release their recipe under the GPL.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
205 "Richard Stallman doesn't change clothes. He makes case mods.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
206 "Richard Stallman compiled the first version of gcc with an hexadecimal editor.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
207 "Richard Stallman will be the last guest on Linux Outlaws.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
208 "Richard Stallman calculates the universe's entropy by exploiting forced stack overflows.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
209 "Richard Stallman's consciousness will one day become the singularity, which will create Deep Thought, and answer the meaning of life, the universe and everything.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
210 "C is actually written in RMS.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
211 "Richard Stallman can write software that does not have a buffer overflow when counting money lost by Jerome Kerviel.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
212 "There were no double rainbows before Richard Stallman.";
19289
6d8d5d9f2264 maint: periodic merge of gui-release to default
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents: 19226 19287
diff changeset
213 "Chuck Norris had to shorten his beard in the presence of Richard Stallman because two beards that awesome, so close would segfault the universe (again).";
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
214 "RMS is Titanic.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
215 "Richard Stallman is the answer to the Turing Test.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
216 "Richard Stallman's beard makes ads for Gillette and Braun appear.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
217 "for i = 1 to Stallman will never stop.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
218 "\"RMS\" stands for \"RMS Makes Software\"";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
219 "Whenever someone writes a \"Hello, world\" program, Richard Stallman says \"Hello\" back.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
220 "Richard Stallman wasn't born. He was compiled from source.";
19289
6d8d5d9f2264 maint: periodic merge of gui-release to default
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents: 19226 19287
diff changeset
221 "Richard Stallman has a URL tattooed on the left side of his chest where you can download his genetic code.";
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
222 "The GNU command line idiom that Richard Stallman never needs: \"date | more\"";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
223 "Richard Stallman's toe cheese is aged to perfection.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
224 "Richard Stallman doesn't always run an OS kernel, but when he does he prefers GNU/Hurd. He is... the most interesting hacker in the world. Stay free, my friends.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
225 "When Richard Stallman gets hungry, he just picks debris from his foot and eats it.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
226 "Richard Stallman can GPL your code just by looking at it funny.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
227 "Richard Stallman loves birds. Birds make auricular love to Richard Stallman.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
228 "Richard Stallman is so free that the primitive recursive function for computing his liberty causes a stack overflow.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
229 "GNU Hurd is taking more than twenty years to develop because Richard Stallman is using a programming language comprised entirely of different lengths of time.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
230 "Richard Stallman's beard contains Richard Stallman, whose beard contains Richard Stallman....";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
231 "Richard Stallman could have had a Google Plus account in 2010. Too bad he didn't want it.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
232 "Richard Stallman pipes the Emacs binaries to /dev/dsp before he goes to sleep.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
233 "When Richard Stallman counted his fingers as a kid, he always started with 0.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
234 "When Richard Stallman's computer gets a virus, he simply applies a GPL license to it which converts the whole botnet to Linux. I mean, GNU/Linux.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
235 "Richard Stallman's beard trimmings can cure cancer. Too bad he never shaves.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
236 "Richard Stallman's doesn't kill a process; he just dares it to stay running.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
237 "Richard Stallman exists because he compiled himself into being.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
238 "Richard Stallman's first words were in binary. When they couldn't understand him, he wrote a parser.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
239 "Richard Stallman doesn't need any codecs, he just opens a multimedia file with Emacs, and reads the bytes of the file as plain text. He then performs all the necessary decoding in his mind. But he refuses to decode files encrypted with DRM, although his mind is able to.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
240 "Richard Stallman was right. Sadly.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
241 "Richard Stallman can wiretap the NSA.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
242 "This is how Richard Stallman created Emacs: http://stallman.org/photos/rms-working/img_0631.jpg";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
243 "Join Richard Stallman now and share the software, you'll be a free hacker, you'll be free!";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
244 "Richard Stallman has not agreed to the terms and conditions and privacy policy because only he can actually read all of it.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
245 "Richard Stallman knows how of a backdoor to AES, but he respects your freedom and privacy too much to actually use it.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
246 "Richard Stallman will never get tired of being mocked for the foot cheese incident.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
247 "You like to release non-free software around Richard Stallman? I too like to live dangerously...";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
248 "Yeah, if could just go ahead and make all software free for Richard Stallman, that'd be great, thanks.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
249 "Richard Stallman knows exactly what you mean when you talk about the cloud. But do you?";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
250 "Richard Stallman satisfies Greenspun's Tenth Rule of programming, since his DNA also contains a complete implementation of all of Common Lisp.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
251 "Richard Stallman can violate the GPL. In a vulgar display of power, he once did so with the Emacs source code, but he undid the violation before most people noticed.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
252 "Good guy Richard Stallman does not try to shake you down for money. He will just kindly ask you to comply with the GPL.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
253 "Richard Stallman is in fact also a little sad that Steve Jobs is gone because it has diminished the size of the loyal opposition.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
254 "Richard Stallman can release LLVM and clang under the GPL.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
255 "No, really, Richard Stallman has a katana.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
256 "Every day Richard Stallman finds at least fifteen things in the world to rage about. You can read his findings here: http://stallman.org/archives/polnotes.html"
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
257 "Some of these Richard Stallman facts are completely true. Seriously.";
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
258 };
14117
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
259
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
260 w = wisdom{randi(numel(wisdom))};
14552
86854d032a37 maint: miscellaneous style fixes for .m files
John W. Eaton <jwe@octave.org>
parents: 14378
diff changeset
261 if (nargout > 0)
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
262 truth = w;
14117
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
263 else
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
264 w = wordwrap (w);
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
265 printf ("%s", w);
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
266 endif
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
267
14117
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
268 endfunction
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
269
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
270 function out = wordwrap (w)
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
271 ncol = terminal_size ()(2);
16724
b7667fcb9fbc Substitute ostrsplit() for strsplit().
Ben Abbott <bpabbott@mac.com>
parents: 16403
diff changeset
272 wc = ostrsplit (w, " ");
14117
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
273 out = "\n";
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
274 i = 1;
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
275 numwords = numel (wc);
14552
86854d032a37 maint: miscellaneous style fixes for .m files
John W. Eaton <jwe@octave.org>
parents: 14378
diff changeset
276 while (i <= numwords);
14117
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
277 line = wc{i};
14552
86854d032a37 maint: miscellaneous style fixes for .m files
John W. Eaton <jwe@octave.org>
parents: 14378
diff changeset
278 while (i < numwords
19226
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 19212
diff changeset
279 && length (newline = [line " " wc{i+1}]) < ncol)
14117
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
280 line = newline;
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
281 i++;
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
282 endwhile
16994
333243133364 Use matrix concatenation for strings, rather than cstrcat(), for clarity and performance.
Rik <rik@octave.org>
parents: 16724
diff changeset
283 out = [out, line, "\n"];
14117
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
284 i++;
acdc4520286a Trivial merge
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
diff changeset
285 endwhile
16994
333243133364 Use matrix concatenation for strings, rather than cstrcat(), for clarity and performance.
Rik <rik@octave.org>
parents: 16724
diff changeset
286 out = [out, "\n"];
16403
1de4ec2a856d Matlab compatibility for strsplit()
Ben Abbott <bpabbott@mac.com>
parents: 14552
diff changeset
287 endfunction
16994
333243133364 Use matrix concatenation for strings, rather than cstrcat(), for clarity and performance.
Rik <rik@octave.org>
parents: 16724
diff changeset
288
19212
e360368bd49c fact.m: Mark documentation m-file as tested for BIST purposes.
Rik <rik@octave.org>
parents: 18731
diff changeset
289
e360368bd49c fact.m: Mark documentation m-file as tested for BIST purposes.
Rik <rik@octave.org>
parents: 18731
diff changeset
290 ## Mark file as being tested. No real test needed for a documentation .m file
e360368bd49c fact.m: Mark documentation m-file as tested for BIST purposes.
Rik <rik@octave.org>
parents: 18731
diff changeset
291 %!assert (1)
e360368bd49c fact.m: Mark documentation m-file as tested for BIST purposes.
Rik <rik@octave.org>
parents: 18731
diff changeset
292