home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / JOKES / JOKES_C.ZIP / COCNEY.SH < prev    next >
Text File  |  1992-01-08  |  10KB  |  341 lines

  1. From smulrine@cs.strath.ac.uk Sun May 13 19:41:37 1990
  2. From: smulrine@cs.strath.ac.uk (Stephen K Mulrine)
  3. Subject: A translator
  4.  
  5. They thought it would never be posted...
  6. It's my Chirpy Cockney translator which turns plaintext into something
  7. completely different. It was "coming soon" in December 1989 but today I
  8. dragged it out of mothballs and tidied it up for posting.
  9.  
  10. Enjoy.
  11.  
  12. #    This is a shell archive.
  13. #    Remove everything above and including the cut line.
  14. #    Then run the rest of the file through sh.
  15. #-----cut here-----cut here-----cut here-----cut here-----
  16. #!/bin/sh
  17. # shar:    Shell Archiver
  18. #    Run the following text with /bin/sh to create:
  19. #    README
  20. #    Makefile
  21. #    ken.l
  22. # This archive created: Mon May  7 12:54:04 1990
  23. # By:    Stephen K Mulrine (Strathclyde University CS Dept)
  24. echo shar: extracting README '(544 characters)'
  25. sed 's/^:)//' << \FOO > README
  26. :)This programs should work on any flavour of UNIX which has 'lex'.
  27. :)
  28. :)ken:
  29. :)will turn English into Cockney, featuring (dubious) rhyming slang for a lot
  30. :)of computer terminology.
  31. :)
  32. :)To create it in the current directory, type 
  33. :)
  34. :)make ken
  35. :)
  36. :)Use
  37. :)  cat [file_of_text] | ken | more
  38. :)or
  39. :)  man [command] | ken | more
  40. :)for endless hours of fun.
  41. :)
  42. :)Written by Stephen K Mulrine <smulrine%cs.strath.ac.uk@nsfnet-relay.ac.uk>
  43. :)Make copies if you want etc.etc.
  44. :)
  45. :)ken is named after Ken the Chirpy Cockney Character from the Viz Comic (tm),
  46. :)who speaks somewhat like that.
  47. FOO
  48. echo shar: extracting Makefile '(211 characters)'
  49. sed 's/^:)//' << \FOO > Makefile
  50. :)#Makefile for ken
  51. :)
  52. :)#Put in your favourite lex or C compiler here
  53. :)LEX = lex
  54. :)CC = cc
  55. :)
  56. :)CLIBS = -ll
  57. :)CFLAGS = -O -s
  58. :)RM = /bin/rm
  59. :)
  60. :)ken:    ken.l
  61. :)    $(LEX) ken.l
  62. :)    $(CC) $(CFLAGS) -o ken lex.yy.c $(CLIBS)
  63. :)    $(RM) -f lex.yy.c
  64. FOO
  65. echo shar: extracting ken.l '(6975 characters)'
  66. sed 's/^:)//' << \FOO > ken.l
  67. :)%e 3000
  68. :)%p 6000
  69. :)%n 1000
  70. :)%k 500
  71. :)%a 4000
  72. :)%o 2000
  73. :)BW [     ]
  74. :)EW [     .,;!?]
  75. :)%{
  76. :)    char buf[128];
  77. :)%}
  78. :)
  79. :)%%
  80. :)
  81. :)stairs        printf("apples and pears");
  82. :)Downstairs    printf("Down the apples and pears");
  83. :)downstairs    printf("down the apples and pears");
  84. :)Upstairs    printf("Up the apples and pears");
  85. :)upstairs    printf("up the apples and pears");
  86. :)[Mm]outh    printf("North and South");
  87. :)[Ff]ace        printf("Boat Race");
  88. :)[Tt]rouble    printf("Barney Rubble");
  89. :)wife        {    switch(rand()%2)
  90. :)            {
  91. :)            case 0: printf("trouble and strife"); break;
  92. :)            case 1: printf("ole lady"); break;
  93. :)            }
  94. :)        }
  95. :)Road        printf("Frog and Toad");
  96. :)" road"        printf(" frog and toad");
  97. :)"pub "        printf("rub-a-dub ");
  98. :)" bar "        printf(" boozer ");
  99. :)" husband"    printf(" ole man");
  100. :)Party        printf("Knees-up");
  101. :)party        printf("knees-up");
  102. :)Parties        printf("Knees-ups");
  103. :)parties        printf("knees-ups");
  104. :)My        printf("Me");
  105. :)" my"        printf(" me");
  106. :)Your        printf("Yer");
  107. :)your        printf("yer");
  108. :)"You are "      printf("Yer ");
  109. :)"you are "      printf("yer ");
  110. :)You        printf("Yer");
  111. :)you        printf("yer");
  112. :)Those        printf("Them");
  113. :)those        printf("them");
  114. :)" those"    printf(" them");
  115. :)"(those"    printf("(them");
  116. :)"The "        {   switch(rand()%5)
  117. :)            {
  118. :)            case 0: printf("The bleedin' "); break;
  119. :)            default: ECHO; break;
  120. :)            }
  121. :)        }
  122. :)"The"        ECHO;
  123. :)" the "        {   switch(rand()%5)
  124. :)            {
  125. :)            case 0: printf(" the bleedin' "); break;
  126. :)            default: ECHO; break;
  127. :)            }
  128. :)        }
  129. :)[" "(]the    ECHO;
  130. :)"the "        {   switch(rand()%5)
  131. :)            {
  132. :)            case 0: printf(" the bleedin' "); break;
  133. :)            default: ECHO; break;
  134. :)            }
  135. :)        }
  136. :)[Tt]his        ECHO;
  137. :)[" "(]this    ECHO;
  138. :)[Tt]hat        ECHO;
  139. :)[" "(]that    ECHO;
  140. :)Thus        printf("So");
  141. :)" thus"        printf(" so");
  142. :)"(thus"        printf("(so");
  143. :)"thus"        printf("so");
  144. :)[Tt]han        ECHO;
  145. :)[" "(]than    ECHO;
  146. :)Who        ECHO;
  147. :)who        ECHO;
  148. :)" old "        printf(" ole ");
  149. :)" to "        printf(" ter ");
  150. :)"Aren't you "   printf("Aintcha ");
  151. :)"aren't you "   printf("aintcha ");
  152. :)"Aren't"    printf("Ain't");
  153. :)"aren't"    printf("ain't");
  154. :)"Isn't"        printf("Ain't");
  155. :)"isn't"        printf("ain't");
  156. :)"Are not "    printf("Ain't");
  157. :)"are not "    printf("ain't ");
  158. :)"Is not "    printf("Ain't ");
  159. :)" is not "    printf(" ain't ");
  160. :)"What is th"    printf("Woss");
  161. :)"what is th"    printf("woss");
  162. :)"What are you "    printf("Wotcher ");
  163. :)"what are you "    printf("wotcher ");
  164. :)"What you are"    printf("Wotcher");
  165. :)"what you are"    printf("wotcher");
  166. :)"What you're"    printf("Wotcher");
  167. :)"what you're"    printf("wotcher");
  168. :)"What are your"    printf("Wotcher");
  169. :)"what are your"    printf("wotcher");
  170. :)"What do you "  printf("Wotcher ");
  171. :)"what do you "    printf("wotcher ");
  172. :)"What do your"  printf("Wotcher");
  173. :)"what do your"    printf("wotcher");
  174. :)" "H[aeu]llo    printf(" Wotcher");
  175. :)" "h[aeu]llo    printf(" wotcher");
  176. :)What        printf("Wot");
  177. :)what        printf("wot");
  178. :)Were        printf("Was");
  179. :)were         printf("was");
  180. :)Bother        printf("Ars");
  181. :)bother        printf("ars");
  182. :)Mother        printf("Muvver");
  183. :)Other        printf("Uvver");
  184. :)other        printf("uvver");
  185. :)Father        printf("Favver");
  186. :)father        printf("favver");
  187. :)Rather        printf("Ravver");
  188. :)rather        printf("ravver");
  189. :)Weather        printf("Wevver");
  190. :)weather        printf("wevver");
  191. :)Leather        printf("Levver");
  192. :)leather        printf("levver");
  193. :)Wither        printf("Wivver");
  194. :)wither        printf("wivver");
  195. :)Either        printf("Eever");
  196. :)either        printf("eever");
  197. :)With        printf("Wiv");
  198. :)with        printf("wiv");
  199. :)Anything    printf("Anyfink");
  200. :)anything    printf("anyfink");
  201. :)Something    printf("Sumfink");
  202. :)something    printf("sumfink");
  203. :)Nothing        printf("Nuffink");
  204. :)nothing        printf("nuffink");
  205. :)guitars        printf("spoons");
  206. :)guitar        printf("spoons");
  207. :)drums        printf("spoons");
  208. :)drum        printf("spoons");
  209. :)trumpets    printf("spoons");
  210. :)trumpet        printf("spoons");
  211. :)violins        printf("spoons");
  212. :)violin        printf("spoons");
  213. :)clarinets    printf("spoons");
  214. :)clarinet    printf("spoons");
  215. :)trombones    printf("spoons");
  216. :)trombone    printf("spoons");
  217. :)oboes        printf("spoons");
  218. :)oboe        printf("spoons");
  219. :)flutes        printf("spoons");
  220. :)flute        printf("spoons");
  221. :)tubas        printf("spoons");
  222. :)tuba        printf("spoons");
  223. :)Data        printf("Info");
  224. :)data        printf("info");
  225. :)Directory    printf("Lockup");
  226. :)directory    printf("lockup");
  227. :)Directories    printf("Lockups");
  228. :)directories    printf("lockups");
  229. :)[Pp]rocess    {   switch(rand()%2)
  230. :)            {
  231. :)            case 0: printf("Queen Bess"); break;
  232. :)            case 1: printf("Rudolf 'Ess"); break;
  233. :)            }
  234. :)        }
  235. :)[Cc]omputer    printf("French Tutor");
  236. :)[Bb]yte        printf("Jimmy White");
  237. :)[Ff]iles    printf("Nobby Stiles");
  238. :)[Ff]ile        printf("Royal Mile");
  239. :)[Ll]anguage    printf("'Am Sandwich");
  240. :)[Zz]ero        printf("Emperor Nero");
  241. :)[Jj]ob        printf("Uncle Bob");
  242. :)[Ss]hell    printf("Bow Bell");
  243. :)[Ss]ave        printf("Chas'n'Dave");
  244. :)[Ll]oad        printf("Old Kent Road");
  245. :)[Mm]ouse    printf("Doll's 'Ouse");
  246. :)[Bb]uffer    printf("Sausage Stuffer");
  247. :)[Kk]eyboard    printf("Henry Ford");
  248. :)[Mm]anual    printf("Cocker Spaniel");
  249. :)[Ss]creen    printf("James Dean");
  250. :)[Pp]rinter    printf("'Arold Pinter");
  251. :)[Pp]lotter    printf("Pansy Potter");
  252. :)[Cc]ompiler    printf("Martin Tyler");
  253. :)[Ss]tring    printf("Emperor Ming");
  254. :)[Bb]rain    printf("Michael Caine");
  255. :)[Pp][Aa][Ss][Cc][Aa][Ll]    {   switch(rand()%2)
  256. :)                    {
  257. :)                    case 0: printf("Pall Mall"); break;
  258. :)                    case 1: printf("Roald Dahl"); break;
  259. :)                    }
  260. :)                }
  261. :)[Aa][Ll][Gg][Oo][Ll]    printf("Johnny Ball");
  262. :)[Ff][Oo][Rr][Tt][Rr][Aa][Nn]    printf("Manfred Mann");
  263. :)[Cc][Oo][Bb][Oo][Ll]    printf("Albert Hall");
  264. :)Stopped        printf("'Ad the mockers put on");
  265. :)stopped        printf("'ad the mockers put on");
  266. :)Stopping    printf("Putting the mockers on");
  267. :)stopping    printf("putting the mockers on");
  268. :)stops        printf("puts the mockers on");
  269. :)stop        printf("put the mockers on");
  270. :)STOP        printf("Put The Mockers On");
  271. :)[Ll]ondoner    printf("Cockney");
  272. :)friend        {   switch(rand()%3)
  273. :)            {
  274. :)            case 0: printf("mucker"); break;
  275. :)            case 1: printf("mate"); break;
  276. :)            case 2: printf("china"); break;
  277. :)            }
  278. :)        }
  279. :)"a h"        printf("an '");
  280. :)"A h"        printf("An '");
  281. :)" h"        printf(" '");
  282. :)" H"        printf(" '");
  283. :)" C-"        printf(" Bruce Lee-");
  284. :)" C "        {        switch(rand()%4)
  285. :)             {
  286. :)             case 0: printf(" Bruce Lee "); break;
  287. :)             case 1: printf(" Circus Flea "); break;
  288. :)             case 2: printf(" Bumble Bee "); break;
  289. :)             case 3: printf(" Door Key "); break;
  290. :)             }
  291. :)        }
  292. :)" C."        printf(" Circus Flea.");
  293. :)Th        printf("F");
  294. :)Wh        printf("W");
  295. :)wh        printf("w");
  296. :)aw        printf("or");
  297. :)" sing"        ECHO;
  298. :)" ring"        ECHO;
  299. :)"ing "        printf("in' ");
  300. :)" th"        printf(" f");
  301. :)"th"        printf("ff");
  302. :)". "        {   switch(rand()%32)
  303. :)            {
  304. :)            case 0: printf(". I'll get out me spoons. "); break;
  305. :)            case 1: printf(". Yer can't 'ave a knees-up wivout a joanna. "); break;
  306. :)            case 2: printf(". Cor blimey guv, would I lie to you. "); break;
  307. :)            case 3: printf(". I'll make us all a nice cup of tea. "); break;
  308. :)            default: ECHO; break;
  309. :)            }
  310. :)        }
  311. :)"? "        {   switch(rand()%3)
  312. :)            {
  313. :)            case 0: printf(", mate? "); break;
  314. :)            case 1: printf(", guv? "); break;
  315. :)            case 2: printf(", squire? "); break;
  316. :)            }
  317. :)        }
  318. :)"! "        {   switch(rand()%6)
  319. :)            {
  320. :)            case 0: printf(", cor blimey! "); break;
  321. :)            case 1: printf("! Struth! "); break;
  322. :)            case 2: printf(", guv! "); break;
  323. :)            case 3: printf("! Honest guv! "); break;
  324. :)            case 4: printf(", mate! "); break;
  325. :)            case 5: ECHO; break;
  326. :)            }
  327. :)        }
  328. :).        printf(yytext);
  329. :)\n        printf("\n");
  330. :)%%
  331. :)
  332. :)main()
  333. :){
  334. :)    srand(getpid());
  335. :)    yylex();
  336. :)}
  337. FOO
  338. #    End of shell archive
  339. exit 0
  340.  
  341.