summaryrefslogtreecommitdiffstats
path: root/games
Commit message (Collapse)AuthorAgeFilesLines
* 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
* [patch] fortune(6): file not Y2.01K compliantedwin2009-06-041-1/+1
| | | | | | | | | Update the time in the fortune to make the joke a little bit more realistic again: Bump year from 2009 to 2039. PR: conf/129860 Submitted by: Alan Amesbury <amesbury@umn.edu> MFC after: 2 days
* Too good to pass.phk2009-03-061-0/+8
|
* netcat is "now" in base, so point people at nc(1) instead of the port.simon2009-01-121-2/+2
| | | | MFC after: 1 week
* Another good day for historical quotes, Oliver Wendell Holmes brought tophk2008-10-081-0/+3
| | | | | | you by Thomas L. Friedman. (http://www.nytimes.com/2008/10/08/opinion/08friedman.html?ref=opinion)
* A Wittgenstein quote according to David Ignatiusphk2008-10-081-0/+3
| | | | http://voices.washingtonpost.com/postpartisan/2008/10/the_town_hall_debate_in_praise.html
* Suggections from bde@ache2008-08-112-5/+11
| | | | | | | | 1) Split too long source lines 2) Portable code should not assume that null pointer == all-bits-0, so back out prev. calloc() change. Submitted by: bde
* All cosmetic.ache2008-08-103-12/+9
| | | | | | 1) Rename RANDOM_MAX to RANDOM_MAX_PLUS1 to not confuse with random()'s max 2) Use calloc() instead of zeroing fields explicitly 3) "too many lines" -> "too many delimiters" for err()
* 1) Fix longstanding math bug with denominator > 1 (wrong probability).ache2008-08-081-8/+16
| | | | | | | | | | Test case: random -f some_small_file 10000 (in most cases must be no output) 2) Prevent number of lines > RANDOM_MAX (overflow or nothing may be choosed) with EFBIG err() 3) After line is found, terminate list loop for -U case too, since nothing to do in the rest of the loop left.
* I was confused a bit by the wrong construction with RAND_MAXache2008-08-083-4/+10
| | | | | | | | | | used in randomize_fd.c. Although the max value is the same currently, RAND_MAX is for rand(), not for random(). So move RANDOM_MAX const to the common file now, make it UL and use in randomize_fd.c too. (in any case its old value was 1 less then must be, as noted in the prev. commit)
* 1) Replace hardcoded RANDOM_MAX macro with wrong (1 less than must be)ache2008-08-081-11/+5
| | | | | | value with ((double)RAND_MAX + 1) 2) For exit code increase valid denominator upper range from 255 to 256 since returned value is [0 .. denom - 1]
* Use __FreeBSD_version check since it is bootstrap toolache2008-08-071-0/+8
|
* Add reference to arc4random_uniform(3)ache2008-08-071-0/+1
|
* Use arc4random_uniform(3)ache2008-08-071-3/+1
|
* Use arc4random_uniform(3)ache2008-08-071-7/+6
| | | | Obtained from: OpenBSD
* Add a quote too good to miss from:phk2008-08-021-5/+9
| | | | | | http://www.schneier.com/blog/archives/2008/08/schneier_misquo.html (and reorder one I appearantly didn't get in the right place last time.)
* o Alan Shepard was first American in the space; fix attribution.maxim2008-07-221-1/+1
| | | | | | | | o Correct Alan's surname. PR: bin/125812 Submitted by: Derek Taylor [1], gavin [2] MFC after: 1 week
* Unmangle an E.W.Dijkstra quote.phk2008-07-141-3/+5
|
* Apply learning from RAIEC (Redundant Array of Independeng English Courses)phk2008-07-071-1/+1
| | | | kindly provided by four different correspondents since my last commit.
* Two quotes too good to miss.phk2008-07-051-0/+7
|
* Months in English are capitalized (even when abbreviated).wollman2008-06-251-1/+1
|
* +Computers can't cruise. Meandering is a foreign concept to them.phk2008-06-231-0/+6
| | | | | | | +The computer assumes that all behavior is in pursuit of an ultimate +goal. Whenever a motorist changes his or her mind and veers off +course, the GPS lady issues that snippy announcement: "Recalculating!" + -- Joel Achenbach (www.slate.com, 20 jun 2008)
* Fixed the output grammar to properly speak non-terminal dits.scf2008-06-082-5/+7
| | | | | | | | Updated Lyndon Nerenberg's radio callsign and E-mail address. PR: bin/7868 Submitted by: Lyndon Nerenberg <lyndon@orthanc.ca> MFC after: 1 week
* Remove a quote about the instant-workstation, this portremko2008-05-311-10/+0
| | | | | | | | has been removed ages ago. PR: docs/124166 Submitted by: keramida Prodded by: novel,keramida
* This bloke has his priorities straight:phk2008-04-291-0/+4
| | | | | | | | +"Can you be more stupid than aggravating the judge AND your lawyer? +No? Oh yes you can: You can aggravate the whole kernel community." + -- Alexander Lyamin (about Hans Reisers murder trial) Found at: http://www.news.com/8301-10784_3-9925607-7.html?tag=nefd.top
* Add a missing quote symbol.yar2008-04-261-1/+1
|
* Just met Kurt Vonnegut's quote remarkably relevantyar2008-04-261-0/+4
| | | | | to open software development (as well as to the other kinds of human activity.)
* Put back the quote from Chinggis Khan removed in rev. 1.259.yar2008-04-031-0/+6
| | | | | | | | The quote predated rev. 1.232, which rev. 1.259 was to correct; therefore it was protected by the "Don't remove fortunes" rule. Noticed by: ceri Pointy hat to: yar
* Improve some quotes of Chinggis Khan.ganbold2008-03-311-56/+37
| | | | | | | | Remove militant and moralized quotes of Chinggis Khan. Add one more quote of Chinggis Khan. Reviewed by: yar Approved by: keramida(mentor)
* Fix typo.dds2008-03-031-1/+1
|
* Add another very relevant quote from "The Elements of Programming Style"yar2008-02-281-0/+3
| | | | by Kernighan and Plauger.
OpenPOWER on IntegriCloud