CVS commit: src/games/fortune/datfiles

2023-05-27 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun May 28 03:35:24 UTC 2023

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
add a fortune


To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes
diff -u src/games/fortune/datfiles/fortunes:1.99 src/games/fortune/datfiles/fortunes:1.100
--- src/games/fortune/datfiles/fortunes:1.99	Fri Sep  9 19:37:15 2022
+++ src/games/fortune/datfiles/fortunes	Sun May 28 03:35:24 2023
@@ -16313,3 +16313,5 @@ metropole, n.: The axis on which the sub
 Dryads are usually lucky. It's well known that fortune favors the boled.
 %
 Responsible wizards always run their scrolls past a spell-checker.
+%
+Shampoo doesn't need active product development. It can rest on its lauryls.



CVS commit: src/games/fortune/datfiles

2023-05-27 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun May 28 03:35:24 UTC 2023

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
add a fortune


To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2022-10-25 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Tue Oct 25 19:33:00 UTC 2022

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
-h doesn't sort numerically, pointed out by various


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/netbsd-tips
diff -u src/games/fortune/datfiles/netbsd-tips:1.15 src/games/fortune/datfiles/netbsd-tips:1.16
--- src/games/fortune/datfiles/netbsd-tips:1.15	Tue Oct 25 15:44:02 2022
+++ src/games/fortune/datfiles/netbsd-tips	Tue Oct 25 19:33:00 2022
@@ -1,6 +1,6 @@
 List 20 largest files (larger than 5 MB) sorted by megabytes:
 
- find . -type f -size +1 -exec du -h {} + | sort -nr | head -20
+ find . -type f -size +1 -exec du -m {} + | sort -nr | head -20
 %
 You can keep specific rc.conf configurations in individual files
 under /etc/rc.conf.d/ where each file is named after the $name of



CVS commit: src/games/fortune/datfiles

2022-10-25 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Tue Oct 25 19:33:00 UTC 2022

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
-h doesn't sort numerically, pointed out by various


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2022-10-25 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Tue Oct 25 15:44:02 UTC 2022

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
various tips/simplifications from UnitedBSD


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/netbsd-tips
diff -u src/games/fortune/datfiles/netbsd-tips:1.14 src/games/fortune/datfiles/netbsd-tips:1.15
--- src/games/fortune/datfiles/netbsd-tips:1.14	Fri Nov 26 17:38:07 2021
+++ src/games/fortune/datfiles/netbsd-tips	Tue Oct 25 15:44:02 2022
@@ -1,6 +1,6 @@
 List 20 largest files (larger than 5 MB) sorted by megabytes:
 
- find / -type f -size +1 -print0 | xargs -0 du -m | sort -nr | head -20
+ find . -type f -size +1 -exec du -h {} + | sort -nr | head -20
 %
 You can keep specific rc.conf configurations in individual files
 under /etc/rc.conf.d/ where each file is named after the $name of
@@ -211,3 +211,23 @@ To list connected disk devices:
 screenblank(1) can disable the framebuffer if the keyboard and mouse are
 idle for a period of time, and re-enables the framebuffer when keyboard
 or mouse activity resumes.
+%
+If you want to convert a Microsoft Windows text file to have Unix line
+endings, it's possible to achieve by simply stripping all of the carriage
+return characters from the file:
+
+	tr -d '\r' < IN > OUT
+
+However, you might want to do this more carefully (i.e. only remove
+carriage returns that constitute a line ending).  See "dos2unix" in pkgsrc.
+%
+Some useful X11 commands:
+
+	xset s off		# disable screen blanking
+	xset -dpms		# disable screen power saving
+	xset b 0		# mute bell (beep)
+	xset m 55/20 4		# mouse acceleration 
+%
+Automatically run a make(1) job on each active CPU:
+
+	alias make="make -j $(sysctl -n hw.ncpuonline)"



CVS commit: src/games/fortune/datfiles

2022-10-25 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Tue Oct 25 15:44:02 UTC 2022

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
various tips/simplifications from UnitedBSD


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2022-09-09 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Fri Sep  9 19:37:15 UTC 2022

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
fortunes: add something


To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes
diff -u src/games/fortune/datfiles/fortunes:1.98 src/games/fortune/datfiles/fortunes:1.99
--- src/games/fortune/datfiles/fortunes:1.98	Fri Aug 26 20:07:04 2022
+++ src/games/fortune/datfiles/fortunes	Fri Sep  9 19:37:15 2022
@@ -16311,3 +16311,5 @@ Thereisnospacebar.
 metropole, n.: The axis on which the subway turns.
 %
 Dryads are usually lucky. It's well known that fortune favors the boled.
+%
+Responsible wizards always run their scrolls past a spell-checker.



CVS commit: src/games/fortune/datfiles

2022-09-09 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Fri Sep  9 19:37:15 UTC 2022

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
fortunes: add something


To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2022-08-26 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Fri Aug 26 20:07:04 UTC 2022

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
fortunes: add something


To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes
diff -u src/games/fortune/datfiles/fortunes:1.97 src/games/fortune/datfiles/fortunes:1.98
--- src/games/fortune/datfiles/fortunes:1.97	Sun Jul 11 00:35:05 2021
+++ src/games/fortune/datfiles/fortunes	Fri Aug 26 20:07:04 2022
@@ -16309,3 +16309,5 @@ Iamonthemoonandthereisnowheretogetabeer.
 Thereisnospacebar.
 %
 metropole, n.: The axis on which the subway turns.
+%
+Dryads are usually lucky. It's well known that fortune favors the boled.



CVS commit: src/games/fortune/datfiles

2022-08-26 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Fri Aug 26 20:07:04 UTC 2022

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
fortunes: add something


To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2021-11-26 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Fri Nov 26 17:38:07 UTC 2021

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
describe screenblank(1)


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/netbsd-tips
diff -u src/games/fortune/datfiles/netbsd-tips:1.13 src/games/fortune/datfiles/netbsd-tips:1.14
--- src/games/fortune/datfiles/netbsd-tips:1.13	Tue Sep  7 13:29:41 2021
+++ src/games/fortune/datfiles/netbsd-tips	Fri Nov 26 17:38:07 2021
@@ -207,3 +207,7 @@ command:
 To list connected disk devices:
 
 	sysctl hw.disknames
+%
+screenblank(1) can disable the framebuffer if the keyboard and mouse are
+idle for a period of time, and re-enables the framebuffer when keyboard
+or mouse activity resumes.



CVS commit: src/games/fortune/datfiles

2021-11-26 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Fri Nov 26 17:38:07 UTC 2021

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
describe screenblank(1)


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2021-09-18 Thread Valeriy E. Ushakov
Module Name:src
Committed By:   uwe
Date:   Sat Sep 18 14:24:04 UTC 2021

Modified Files:
src/games/fortune/datfiles: fortunes-o.real

Log Message:
Ken Thompson on the i960.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/games/fortune/datfiles/fortunes-o.real

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes-o.real
diff -u src/games/fortune/datfiles/fortunes-o.real:1.13 src/games/fortune/datfiles/fortunes-o.real:1.14
--- src/games/fortune/datfiles/fortunes-o.real:1.13	Wed Dec 13 21:11:27 2017
+++ src/games/fortune/datfiles/fortunes-o.real	Sat Sep 18 14:24:04 2021
@@ -1733,3 +1733,6 @@ There is a road to freedom.  Its milesto
 Order, Cleanliness, Sobriety, Truthfulness, Sacrifice, and love of the
 Fatherland.
 -- Adolf Hitler
+%
+I just hate to be pushed around by some fucking machine.
+		-- Ken Thompson, on the i960



CVS commit: src/games/fortune/datfiles

2021-09-18 Thread Valeriy E. Ushakov
Module Name:src
Committed By:   uwe
Date:   Sat Sep 18 14:24:04 UTC 2021

Modified Files:
src/games/fortune/datfiles: fortunes-o.real

Log Message:
Ken Thompson on the i960.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/games/fortune/datfiles/fortunes-o.real

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2021-09-07 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Tue Sep  7 13:29:41 UTC 2021

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
person on internet is confused by how to list disks because there's
so much in /dev


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/netbsd-tips
diff -u src/games/fortune/datfiles/netbsd-tips:1.12 src/games/fortune/datfiles/netbsd-tips:1.13
--- src/games/fortune/datfiles/netbsd-tips:1.12	Thu Aug 19 14:03:43 2021
+++ src/games/fortune/datfiles/netbsd-tips	Tue Sep  7 13:29:41 2021
@@ -203,3 +203,7 @@ Network interface traffic can be monitor
 command:
 
 	sysstat ifstat
+%
+To list connected disk devices:
+
+	sysctl hw.disknames



CVS commit: src/games/fortune/datfiles

2021-09-07 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Tue Sep  7 13:29:41 UTC 2021

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
person on internet is confused by how to list disks because there's
so much in /dev


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2021-08-19 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Thu Aug 19 14:03:43 UTC 2021

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
moar tips


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2021-08-19 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Thu Aug 19 14:03:43 UTC 2021

Modified Files:
src/games/fortune/datfiles: netbsd-tips

Log Message:
moar tips


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/games/fortune/datfiles/netbsd-tips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/netbsd-tips
diff -u src/games/fortune/datfiles/netbsd-tips:1.11 src/games/fortune/datfiles/netbsd-tips:1.12
--- src/games/fortune/datfiles/netbsd-tips:1.11	Sun Aug 15 08:57:01 2021
+++ src/games/fortune/datfiles/netbsd-tips	Thu Aug 19 14:03:43 2021
@@ -162,3 +162,44 @@ You can use progress(1) to monitor the p
 %
 Press CTRL+T to send SIGINFO and see the current status of the
 command running in the current terminal.
+%
+To enable the Multicast DNS responder, add
+
+	mdnsd=YES
+
+to /etc/rc.conf.  Your system will now be reachable on the network as
+hostname.local.
+
+To enable Multicast DNS lookups, add mdnsd to the 'hosts' field in
+/etc/nsswitch.conf.
+%
+NetBSD includes a tutorial on using vi(1), the classic BSD text
+editor:
+
+	less /usr/share/doc/usd/vi/vitut.txt
+%
+A login shell will read initial commands from ~/.profile.
+
+When using the X Window System, initializing with 'startx' will
+read ~/.xinitrc.  Initializing with xdm will read commands from
+~/.xsession, but logins through xdm will not read ~/.profile.
+%
+After installing NetBSD, additional sets can be installed with
+sysinst(8).
+%
+Depending on the version of NetBSD, the system may raise the sysctl(8)
+variable kern.securelevel to 1 on boot.  The system's securelevel may be
+raised by the superuser, but never lowered.
+
+To learn more about the different securelevel settings, see:
+
+	man secmodel_securelevel
+%
+To learn more about the various security features in NetBSD, see:
+
+	man 7 security
+%
+Network interface traffic can be monitored with the following
+command:
+
+	sysstat ifstat



Re: catman (Was: CVS commit: src/games/fortune/datfiles)

2020-11-08 Thread Kamil Rytarowski
On 08.11.2020 23:20, Valery Ushakov wrote:
> It's (partially) past-tensed, which looks stupid and cripples the
> joke.

catman has zero to do with current UNIX or any other standard I checked
(SVID, XPG, POSIX, XNS, SUS, ISO, ANSI). It was a historical utility.
I've changed it to be relatively accurate for a historical reference to
Unix/BSD. I object to calling it a current Unix thing and suggesting to
users that they can find it in section 8.

If catman(8) is still delivered somewhere, it is documenting a dead toy.

On 09.11.2020 01:05, Thomas Klausner wrote:
> On Mon, Nov 09, 2020 at 12:46:42AM +0300, Valeriy E. Ushakov wrote:
>> Also, come to think of it... Removing catman (i.e. user's ability to
>> generate cat pages) is rather different from removing MKCATPAGES,
>> what's going on here?
> 
> I asked kamil about something else on this topic and he mentioned
> catman.  On reading the man pages I didn't really see a reason for it
> to stay if we remove the cat pages completely.
> 
> Do you see it differently? If yes, why?
>  Thomas
> 

catman is still reachable for users (I still have no evidence that I was
not the last user of .cat pages in NetBSD) that really want it in
contrib/ of mandoc, but out of the distribution.

I'm still test-building the final removal and I will land it once I feel
comfortable about it.



signature.asc
Description: OpenPGP digital signature


Re: catman (Was: CVS commit: src/games/fortune/datfiles)

2020-11-08 Thread Thomas Klausner
On Mon, Nov 09, 2020 at 12:46:42AM +0300, Valeriy E. Ushakov wrote:
> Also, come to think of it... Removing catman (i.e. user's ability to
> generate cat pages) is rather different from removing MKCATPAGES,
> what's going on here?

I asked kamil about something else on this topic and he mentioned
catman.  On reading the man pages I didn't really see a reason for it
to stay if we remove the cat pages completely.

Do you see it differently? If yes, why?
 Thomas


Re: catman (Was: CVS commit: src/games/fortune/datfiles)

2020-11-08 Thread Kamil Rytarowski
On 08.11.2020 22:46, Valery Ushakov wrote:
> On Sun, Nov 08, 2020 at 17:37:30 +, Kamil Rytarowski wrote:
> 
>> Module Name: src
>> Committed By:kamil
>> Date:Sun Nov  8 17:37:30 UTC 2020
>>
>> Modified Files:
>>  src/games/fortune/datfiles: fortunes
>>
>> Log Message:
>> catman(8) is a past thing
> 
> Please, revert this.  It's completely irrelevant for the joke if
> netbsd ships catman or not.
> 
> Also, come to think of it... Removing catman (i.e. user's ability to
> generate cat pages) is rather different from removing MKCATPAGES,
> what's going on here?
> 
> -uwe
> 

catman(8) is to removed soon as discussed with wiz@.

The fortune is still there, it's not removed.



signature.asc
Description: OpenPGP digital signature


catman (Was: CVS commit: src/games/fortune/datfiles)

2020-11-08 Thread Valery Ushakov
On Sun, Nov 08, 2020 at 17:37:30 +, Kamil Rytarowski wrote:

> Module Name:  src
> Committed By: kamil
> Date: Sun Nov  8 17:37:30 UTC 2020
> 
> Modified Files:
>   src/games/fortune/datfiles: fortunes
> 
> Log Message:
> catman(8) is a past thing

Please, revert this.  It's completely irrelevant for the joke if
netbsd ships catman or not.

Also, come to think of it... Removing catman (i.e. user's ability to
generate cat pages) is rather different from removing MKCATPAGES,
what's going on here?

-uwe


CVS commit: src/games/fortune/datfiles

2019-11-10 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Nov 10 22:42:21 UTC 2019

Modified Files:
src/games/fortune/datfiles: netbsd

Log Message:
https://twitter.com/sei6r/status/1182433546331279360


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/games/fortune/datfiles/netbsd

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/netbsd
diff -u src/games/fortune/datfiles/netbsd:1.28 src/games/fortune/datfiles/netbsd:1.29
--- src/games/fortune/datfiles/netbsd:1.28	Sun Apr 16 20:08:59 2017
+++ src/games/fortune/datfiles/netbsd	Sun Nov 10 22:42:21 2019
@@ -552,3 +552,6 @@ NetBSD: Dead on Target
 		-- Gimpy
 %
 NetBSD JIHBED
+%
+It's my happy place.
+		-- zmh



CVS commit: src/games/fortune/datfiles

2019-11-10 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Nov 10 22:42:21 UTC 2019

Modified Files:
src/games/fortune/datfiles: netbsd

Log Message:
https://twitter.com/sei6r/status/1182433546331279360


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/games/fortune/datfiles/netbsd

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2019-11-09 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Nov 10 00:54:57 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Definition of austerity by Alexei Sayle on Radio 4
https://web.archive.org/web/20190916192807/https://www.bbc.co.uk/sounds/play/m0008bbc


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2019-11-09 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Nov 10 00:54:57 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Definition of austerity by Alexei Sayle on Radio 4
https://web.archive.org/web/20190916192807/https://www.bbc.co.uk/sounds/play/m0008bbc


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes
diff -u src/games/fortune/datfiles/fortunes:1.84 src/games/fortune/datfiles/fortunes:1.85
--- src/games/fortune/datfiles/fortunes:1.84	Sun Oct 27 23:31:15 2019
+++ src/games/fortune/datfiles/fortunes	Sun Nov 10 00:54:57 2019
@@ -16279,3 +16279,7 @@ It was some sort of mental love missile 
 fired myself into it, at oblivious speed, and it exploded, and sparkled and it
 was totally beautiful.
 		-- Chris Packham and the kestrel
+%
+Austerity is the idea that the global financial crash of 2008 was caused by
+there being too many libraries in Wolverhampton.
+		-- Alexei Sayle



CVS commit: src/games/fortune/datfiles

2019-10-27 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Oct 27 23:31:15 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Chris' happiest moment
http://bbc.co.uk/programmes/b09b1zbb


To generate a diff of this commit:
cvs rdiff -u -r1.83 -r1.84 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes
diff -u src/games/fortune/datfiles/fortunes:1.83 src/games/fortune/datfiles/fortunes:1.84
--- src/games/fortune/datfiles/fortunes:1.83	Thu Aug 22 22:51:47 2019
+++ src/games/fortune/datfiles/fortunes	Sun Oct 27 23:31:15 2019
@@ -16273,3 +16273,9 @@ you derive from that?
 		   December 9th, 1968
 %
 They made me do it
+%
+It was the first thing that I formed a really powerful bond with.
+It was some sort of mental love missile and I just lit the touch paper and
+fired myself into it, at oblivious speed, and it exploded, and sparkled and it
+was totally beautiful.
+		-- Chris Packham and the kestrel



CVS commit: src/games/fortune/datfiles

2019-10-27 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Oct 27 23:31:15 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Chris' happiest moment
http://bbc.co.uk/programmes/b09b1zbb


To generate a diff of this commit:
cvs rdiff -u -r1.83 -r1.84 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2019-08-22 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Thu Aug 22 22:51:47 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Donnie Darko


To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2019-08-22 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Thu Aug 22 22:51:47 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Donnie Darko


To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes
diff -u src/games/fortune/datfiles/fortunes:1.82 src/games/fortune/datfiles/fortunes:1.83
--- src/games/fortune/datfiles/fortunes:1.82	Fri Jul 26 07:41:22 2019
+++ src/games/fortune/datfiles/fortunes	Thu Aug 22 22:51:47 2019
@@ -16271,3 +16271,5 @@ that was instantly responsive to every a
 you derive from that?
 		-- Douglas Engelbart, Fall Joint Computer Conference,
 		   December 9th, 1968
+%
+They made me do it



CVS commit: src/games/fortune/datfiles

2019-07-26 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Fri Jul 26 07:41:22 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
The mother of all demos


To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes
diff -u src/games/fortune/datfiles/fortunes:1.81 src/games/fortune/datfiles/fortunes:1.82
--- src/games/fortune/datfiles/fortunes:1.81	Mon Jul 22 13:44:13 2019
+++ src/games/fortune/datfiles/fortunes	Fri Jul 26 07:41:22 2019
@@ -16264,3 +16264,10 @@ than a season.
 %
 Computers for the brasses -- art for the masses.
 		-- J.C.R. Licklider
+%
+If, in your office, you as an intellectual worker were supplied with a
+computer display backed up by a computer that was alive for you all day, and
+that was instantly responsive to every action you had, how much value could
+you derive from that?
+		-- Douglas Engelbart, Fall Joint Computer Conference,
+		   December 9th, 1968



CVS commit: src/games/fortune/datfiles

2019-07-26 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Fri Jul 26 07:41:22 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
The mother of all demos


To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2019-07-22 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Mon Jul 22 13:44:13 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Use double dash to simulate em dash


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/games/fortune/datfiles

2019-07-22 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Mon Jul 22 13:44:13 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Use double dash to simulate em dash


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes
diff -u src/games/fortune/datfiles/fortunes:1.80 src/games/fortune/datfiles/fortunes:1.81
--- src/games/fortune/datfiles/fortunes:1.80	Mon Jul 22 09:47:28 2019
+++ src/games/fortune/datfiles/fortunes	Mon Jul 22 13:44:13 2019
@@ -16262,5 +16262,5 @@ I'm going to a commune in Vermont and wi
 than a season.
 		-- Josh Rosen
 %
-Computers for the brasses, art for the masses.
+Computers for the brasses -- art for the masses.
 		-- J.C.R. Licklider



CVS commit: src/games/fortune/datfiles

2019-07-22 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Mon Jul 22 09:47:28 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Art for the masses - The Dream Machine
The text used an em dash which I've replaced with a coma here.


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/fortune/datfiles/fortunes
diff -u src/games/fortune/datfiles/fortunes:1.79 src/games/fortune/datfiles/fortunes:1.80
--- src/games/fortune/datfiles/fortunes:1.79	Sun Feb 24 12:34:00 2019
+++ src/games/fortune/datfiles/fortunes	Mon Jul 22 09:47:28 2019
@@ -16261,3 +16261,6 @@ can perform without thinking about them.
 I'm going to a commune in Vermont and will deal with no unit of time shorter
 than a season.
 		-- Josh Rosen
+%
+Computers for the brasses, art for the masses.
+		-- J.C.R. Licklider



CVS commit: src/games/fortune/datfiles

2019-07-22 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Mon Jul 22 09:47:28 UTC 2019

Modified Files:
src/games/fortune/datfiles: fortunes

Log Message:
Art for the masses - The Dream Machine
The text used an em dash which I've replaced with a coma here.


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 src/games/fortune/datfiles/fortunes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



Re: CVS commit: src/games/fortune/datfiles

2017-12-06 Thread Kamil Rytarowski
On 06.12.2017 17:58, Taylor R Campbell wrote:
>> Date: Wed, 6 Dec 2017 16:41:27 +0800 (+08)
>> From: Paul Goyette 
>>
>>> Oh, and I'd also change "its canine barking" to "its barking," (note the
>>> addition of a comma), which would make that sentence flow better, and
>>> avoid the unnecessary re-use of the word 'canine'.
>>
>> Hmmm, it'd be nice if there were a definitive source for this quote; 
>> without that, I'd rather not "adjust" the language.
> 
> I expect the original quote was probably something in Polish.
> 

I was the coauthor of the original translation. There are many other
good quotes but they could be difficult to explain to foreigners,
explain background context etc... or needlessly controversial (even if
true) for fortunes (no need to discuss German-Polish-Russian relations
via fortunes).



signature.asc
Description: OpenPGP digital signature


Re: CVS commit: src/games/fortune/datfiles

2017-12-06 Thread Taylor R Campbell
> Date: Wed, 6 Dec 2017 16:41:27 +0800 (+08)
> From: Paul Goyette 
> 
> > Oh, and I'd also change "its canine barking" to "its barking," (note the
> > addition of a comma), which would make that sentence flow better, and
> > avoid the unnecessary re-use of the word 'canine'.
> 
> Hmmm, it'd be nice if there were a definitive source for this quote; 
> without that, I'd rather not "adjust" the language.

I expect the original quote was probably something in Polish.


Re: CVS commit: src/games/fortune/datfiles

2017-12-06 Thread Paul Goyette

On Wed, 6 Dec 2017, Tom Ivar Helbekkmo wrote:


Tom Ivar Helbekkmo  writes:


"stop out journey" should be "stop our journey", and the last sentence
should probably be "It seems that you care more about barking than the
dog does, and more about winning the war with a lousy puppy than about
reaching the destination quickly."


I fixed these, as suggested.


Oh, and I'd also change "its canine barking" to "its barking," (note the
addition of a comma), which would make that sentence flow better, and
avoid the unnecessary re-use of the word 'canine'.


Hmmm, it'd be nice if there were a definitive source for this quote; 
without that, I'd rather not "adjust" the language.



+--+--++
| Paul Goyette | PGP Key fingerprint: | E-mail addresses:  |
| (Retired)| FA29 0E3B 35AF E8AE 6651 | paul at whooppee dot com   |
| Kernel Developer | 0786 F758 55DE 53BA 7731 | pgoyette at netbsd dot org |
+--+--++


Re: CVS commit: src/games/fortune/datfiles

2017-12-06 Thread Tom Ivar Helbekkmo
Tom Ivar Helbekkmo  writes:

> "stop out journey" should be "stop our journey", and the last sentence
> should probably be "It seems that you care more about barking than the
> dog does, and more about winning the war with a lousy puppy than about
> reaching the destination quickly."

Oh, and I'd also change "its canine barking" to "its barking," (note the
addition of a comma), which would make that sentence flow better, and
avoid the unnecessary re-use of the word 'canine'.

-tih
-- 
Most people who graduate with CS degrees don't understand the significance
of Lisp.  Lisp is the most important idea in computer science.  --Alan Kay


Re: CVS commit: src/games/fortune/datfiles

2017-11-19 Thread Jaromír Doleček
I'd ask you to revert this nonsense.

Jaromir

2017-11-18 21:48 GMT+01:00 Maya Rashish :

> Module Name:src
> Committed By:   maya
> Date:   Sat Nov 18 20:48:50 UTC 2017
>
> Modified Files:
> src/games/fortune/datfiles: fortunes fortunes2 fortunes2-o.real
>
> Log Message:
> Remove a few offensive quotes, put in as many new quotes.
>
> PR bin/52735
>
>
> To generate a diff of this commit:
> cvs rdiff -u -r1.65 -r1.66 src/games/fortune/datfiles/fortunes
> cvs rdiff -u -r1.59 -r1.60 src/games/fortune/datfiles/fortunes2
> cvs rdiff -u -r1.15 -r1.16 src/games/fortune/datfiles/fortunes2-o.real
>
> Please note that diffs are not public domain; they are subject to the
> copyright notices on the relevant files.
>
>


Re: CVS commit: src/games/fortune/datfiles

2017-11-18 Thread John Nemeth
On Nov 18,  8:48pm, "Maya Rashish" wrote:
} 
} Module Name:  src
} Committed By: maya
} Date: Sat Nov 18 20:48:50 UTC 2017
} 
} Modified Files:
}   src/games/fortune/datfiles: fortunes fortunes2 fortunes2-o.real
} 
} Log Message:
} Remove a few offensive quotes, put in as many new quotes.
} 
} PR bin/52735

 Why did you do this while the issue is still being discussed.
That is completely inappropriate.  Please revert.

} To generate a diff of this commit:
} cvs rdiff -u -r1.65 -r1.66 src/games/fortune/datfiles/fortunes
} cvs rdiff -u -r1.59 -r1.60 src/games/fortune/datfiles/fortunes2
} cvs rdiff -u -r1.15 -r1.16 src/games/fortune/datfiles/fortunes2-o.real
} 
}-- End of excerpt from "Maya Rashish"


Re: CVS commit: src/games/fortune/datfiles

2017-11-18 Thread Paul Goyette
Given that the discussion on "add-one, remove-one" is still on-going and 
nowhere near a resolution, I really think that this commit should be 
reverted.


At the very least, those entries that were removed need to be restored.



On Sat, 18 Nov 2017, Maya Rashish wrote:


Module Name:src
Committed By:   maya
Date:   Sat Nov 18 20:48:50 UTC 2017

Modified Files:
src/games/fortune/datfiles: fortunes fortunes2 fortunes2-o.real

Log Message:
Remove a few offensive quotes, put in as many new quotes.

PR bin/52735


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/games/fortune/datfiles/fortunes
cvs rdiff -u -r1.59 -r1.60 src/games/fortune/datfiles/fortunes2
cvs rdiff -u -r1.15 -r1.16 src/games/fortune/datfiles/fortunes2-o.real

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.


!DSPAM:5a109cd695642086813700!




+--+--++
| Paul Goyette | PGP Key fingerprint: | E-mail addresses:  |
| (Retired)| FA29 0E3B 35AF E8AE 6651 | paul at whooppee dot com   |
| Kernel Developer | 0786 F758 55DE 53BA 7731 | pgoyette at netbsd dot org |
+--+--++


Re: CVS commit: src/games/fortune/datfiles

2017-11-18 Thread Tom Ivar Helbekkmo
John Nemeth  writes:

> Log Message:
> add quote about libraries offending everyone

Nice!  Thank you!

-tih
-- 
Most people who graduate with CS degrees don't understand the significance
of Lisp.  Lisp is the most important idea in computer science.  --Alan Kay


Re: CVS commit: src/games/fortune/datfiles

2012-12-08 Thread David Holland
On Sat, Dec 08, 2012 at 10:38:10PM +, John Nemeth wrote:
  Modified Files:
   src/games/fortune/datfiles: fortunes2
  
  Log Message:
  Add some quotes by Henry Ford, found at:
  
  http://www.goodreads.com/author/quotes/203714.Henry_Ford

surely the first and last of these are redundant?

-- 
David A. Holland
dholl...@netbsd.org


Re: CVS commit: src/games/fortune/datfiles

2012-12-08 Thread John Nemeth
On Apr 30,  5:29pm, David Holland wrote:
} On Sat, Dec 08, 2012 at 10:38:10PM +, John Nemeth wrote:
}   Modified Files:
}  src/games/fortune/datfiles: fortunes2
}   
}   Log Message:
}   Add some quotes by Henry Ford, found at:
}   
}   http://www.goodreads.com/author/quotes/203714.Henry_Ford
} 
} surely the first and last of these are redundant?

 Yep, but oh well.  I liked the quote well enough, that I went
ahead and did it anyways.  Probably not the only thing in the fortunes
database that is redundant.

}-- End of excerpt from David Holland


CVS commit: src/games/fortune/datfiles

2009-12-31 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Fri Jan  1 00:16:54 UTC 2010

Modified Files:
src/games/fortune/datfiles: fortunes2

Log Message:
Fix math notation, from PR 41547. While here, fix some potential tab
damage in the same fortune.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/games/fortune/datfiles/fortunes2

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.