summaryrefslogtreecommitdiffstats
path: root/games
Commit message (Collapse)AuthorAgeFilesLines
* Move potentially offensive fortune to fortunes-o.brucec2011-02-132-4/+4
| | | | | PR: bin/137702 MFC after: 3 days
* factor(6): Check return values of BN_* functions.uqs2010-12-201-4/+8
| | | | Coverity Prevent: CID 4862, 8771, 8772, 8773
* Drop advertising clause in manpages. It was done a long time agouqs2010-12-068-41/+9
| | | | | | for the source code. Discussed with: core
* mdoc: drop redundant .Pp and .LP callsuqs2010-10-081-2/+0
| | | | They have no effect when coming in pairs, or before .Bl/.Bd
* Add advice to new fathers from Thomas Ptacek.cperciva2010-09-291-0/+6
| | | | | | Suggested by: wilko Approved by: Thomas Ptacek Security: New parents often feel very insecure.
* fix the move so that it matches what the rest of the internetjmg2010-09-031-1/+1
| | | | | | says about this game... This move also makes more sense... MFC after: 1 week
* "whereis netscape" gives empty output for quite a long time already.fjoe2010-08-091-1/+1
| | | | Suggest to use "whereis firefox" instead.
* grdc(6): de-obfuscate the timekeeping of now/delayuqs2010-08-031-6/+8
| | | | | | | | | - 'now' only contains current time readings - delay is only used as parameter to nanosleep - prev_sec contains the time_t of the previous loop iteration Submitted by: bde MFC after: 2 weeks
* grdc(6): Partial backout of r210755uqs2010-08-031-18/+24
| | | | | | | | | | | | | | | | | The previous revision was flawed in numerous ways: - the if condition would depend on garbage stack values - grdc(6) would loop n times, not n seconds. This only makes a difference if it takes more than 1 second to recalculate/redraw the display. - style(9) violations The following change adds argument checking and tracks the elapsed time between loops explicitly and will exit after roughly n seconds. While here sort headers and remove bogus #ifndef Submitted by: bde MFC after: 2 weeks
* grdc(6): fix timekeeping for user-supplied value nuqs2010-08-021-18/+15
| | | | | | | | | - Keep timespec 'now' and 'delay' separate to avoid confusion - Increase user-supplied n to run _at least_ n seconds, not max n PR: bin/149130 (based on) Submitted by: Andy Farkas MFC after: 2 weeks
* Fix indention of attribution line for some recent additions.uqs2010-07-301-3/+3
| | | | MFC after: 3 days
* Fix typo in pom(6) manpageuqs2010-07-301-1/+1
| | | | | | PR: docs/148825 Submitted by: Anatoly Borodin MFC after: 1 week
* Correct a Cecil Beaton quotedougb2010-07-251-1/+1
| | | | | PR: docs/148916 Submitted by: Rob Farmer <rfarmer@predatorlabs.net>
* Add -p option to have pom(6) print just the percentage, without extra text.emaste2010-07-152-4/+17
| | | | | | PR: bin/51070 Submitted by: Matt Koivisto mkoivisto sandvine com MFC after: 1 week
* Taken from actual police videos ...dougb2010-06-261-0/+33
|
* random(6): avoid dead assignmentsuqs2010-06-142-2/+2
| | | | Found by: clang static analyzer
* mdoc cleanupuqs2010-06-021-0/+1
| | | | | | | Garbage collect unused sections, macros and arguments. Fix prologue and remove empty lines. Found by: mdocml
* Sync fortunes with other *BSDsuqs2010-03-317-1342/+1311
| | | | | | | | | | | | | | | | | | | | | | | - Spelling errors - Typographical fixes - Consistent attributions - Use Jr. more consistently - Capitalization of dictionary-like entries - Sorting using tools/do_sort - Remove duplicate fortunes - Style according to the Notes file - Reflect correct default fortune name in Notes - Remove some no longer needed spelling hints - Drop latin1 characters (sorry MÃ¥rten) This is a partial sync against the DragonflyBSD sources, where a lot of fixes from Free, Net and OpenBSD were merged previously. Only about 50% of the changes originate from there, the rest was done by dougb and yours truly. Partial review by: wilko (earlier version), ed (dito) In collaboration with: dougb Approved by: ed (co-mentor)
* Fix several typos in macros or macro misusage.uqs2010-03-121-1/+0
| | | | | | Found by: make manlint Reviewed by: ru Approved by: philip (mentor)
* s/all ready/already/wilko2010-02-261-1/+1
| | | | Submitted by: ru@, gj@
* On the (non)sense of legal disclaimers in emails.wilko2010-02-251-0/+16
|
* Prefer exit(0) from main over return(0).uqs2010-02-211-1/+1
| | | | | | | | Although not explicitly mentioned in style(9), it allows for easier grepping of exit points. This reverts part of r203926. Requested by: des Approved by: philip (mentor)
* Remove the third clause for the Berkeley parts of games, per theimp2010-02-1511-55/+11
| | | | letter in /COPYRIGHT.
* fortune(6) switch to 3-clause BSDL; style(9)uqs2010-02-157-267/+244
| | | | | | | This reduces the diff to other *BSD and makes it possible to actually see the code differences. Approved by: ed (Co-mentor)
* games: make WARNS=6 the default, remove overridesuqs2010-02-1511-14/+1
| | | | | | This also bumps factor, fortune, primes, and random to WARNS=6. Approved by: ed (Co-mentor)
* fortune(6) make WARNS=6 cleanuqs2010-02-151-106/+71
| | | | | | Fixes taken mostly from DragonflyBSD. Approved by: ed (Co-mentor)
* morse(6) make WARNS=6 cleanuqs2010-02-151-2/+2
| | | | Approved by: ed (Co-mentor)
* grdc(6) make WARNS=6 clean and bump accordinglyuqs2010-02-152-18/+16
| | | | Approved by: ed (Co-mentor)
* Improve time precision for grdc(6):delphij2010-02-101-2/+15
| | | | | | | | | | | | | | | | | | | Traditionally, grdc would obtain time through time(3) which in turn gets only the second part of clock (CLOCK_SECOND), and sleep for 1 second after each screen refresh. This approach would have two problems. First, we are not guaranteed to be waken up at the beginning of a whole second, which will typically exhibit as a "lag" on second number. Second, because we sleep for whole second, and the refresh process would take some time, the error would accumulate from time to time, making the lag variable. Make grdc(6) to use time(3) to get time only at the beginning, and sample time in CLOCK_REALTIME_FAST granularity after refreshing, and use the nanosecond part to caculate how much time we want to sleep. PR: bin/120813 MFC after: 1 month
* Add the definition of Mistakeholdergnn2010-02-091-0/+6
|
* Always compile in the speaker code. There's little savings byimp2010-02-042-4/+3
| | | | | omitting it, and other platforms may implement /dev/speaker in the future.
* Our standard "xterm" termcap entry supports colour, so this tip is redundant.gavin2010-01-111-12/+0
| | | | | | | | As it happens, "xterm-color" has just been an alias for "xterm" since src/share/termcap/termcap.src 1.131 in September 2002. PR: docs/132959 Approved by: ed (mentor)
* For the now-infamous Rumsfeld quote:dougb2010-01-071-3/+3
| | | | | | | | | Change "there're" to "there are" which is consistent with the vast majority of on line references. Remove a spurious trailing " Update the citation text with a suggestion from des.
* Fix build: getopt() returns int so use an integer to get the value.delphij2010-01-061-2/+2
|
* - Move potentially offensive quotes I committed recently to fortunes-o.stas2010-01-052-14/+15
| | | | | | | - Reference date. - Be more clear on context. Suggested by: dougb
* Be able to specify a certain date and/or time for which to calculateedwin2010-01-052-15/+90
| | | | | the phase of the moon. While not worlds best improvements, it will help calendar(1) later on.
* Remove more duplicatesdougb2010-01-051-219/+14
| | | | Minor reformatting on a few
* - Add two particulary interesting quotes from the past decade.stas2010-01-041-0/+14
|
* Use ANSI C function declarations.ed2009-12-291-11/+5
|
* Use ANSI C function declarations.ed2009-12-292-17/+20
|
* Fix a performance bug in factor(6).fanf2009-11-261-21/+27
| | | | | | | | | | | | | | | | Check if large factor is prime before applying Pollard's algorithm; fixes "factor 2147483647111311". Increase base if p-1 algorithm reaches 1; fixes "factor 99999999999991". Testcases from David A Bagley <bagleyd@tux.org>. Fixes from Joseph Myers <jsm@NetBSD.org>. Problem rediscovered by an attempt to factor my phone number. A few other incidental fixes: correct a couple of factually incorrect comments; use ident string macros; move from 4-clause to 3-clause BSD licence (University of California copyright). Obtained from: NetBSD
* Properly sort a math fortune after the changes in r193486dougb2009-11-071-26/+26
| | | | Properly sort fortunes added in r174879 and r174959
* Move Warner's very funny comparison of VCS to anal sex into fortunes-odougb2009-11-072-6/+6
|
* Remove the svn:executable property from this filedougb2009-11-071-0/+0
|
* Fix not only the grammar, but also the formatting that makes the gagdougb2009-11-041-1/+2
|
* Make number(6) build with WARNS=6.ed2009-10-132-4/+4
|
* "Potluck Pogo" was a collection of Walt Kelly's "Pogo" cartoonsdougb2009-10-062-2/+2
| | | | first published in 1955. "Putluck Pogo" seems to be a typo.
* Fix several instances of spaces before commas, and one of a spacedougb2009-07-162-6/+6
| | | | | | | | before a ). PR: docs/136723 Submitted by: Ulrich Sporlein <uqs@spoerlein.net> Approved by: re (kib)
* Misc fixed to fortunesedwin2009-06-052-17/+18
| | | | | | PR: conf/112024 Submitted by: Niclas Zeising <niclas.zeising@gmail.com> MFC after: 2 days
* [patch] fortune(6): George Bernard Shaw quote fixedwin2009-06-041-3/+3
| | | | | | | | | | | | | | | | | | From the original PR: s/milestones/millstones/ and less important.. s/man/Man/ Not every source I've seen capitalizes 'Man', but it seems right. Uncapitalized 'man' would usually be preceded by an 'a'. But I haven't seen any reference cite the orignal source yet, so I can't say for sure. http://quotationsbook.com/quote/31568/ PR: conf/131469 Submitted by: John Hein <jhein@timing.com> MFC after: 2 days
OpenPOWER on IntegriCloud