wukong 3.0.0.pre → 3.0.0.pre2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (476) hide show
  1. data/.gitignore +46 -33
  2. data/.gitmodules +3 -0
  3. data/.rspec +1 -1
  4. data/.travis.yml +8 -1
  5. data/.yardopts +0 -13
  6. data/Guardfile +4 -6
  7. data/{LICENSE.textile → LICENSE.md} +43 -55
  8. data/README-old.md +422 -0
  9. data/README.md +279 -418
  10. data/Rakefile +21 -5
  11. data/TODO.md +6 -6
  12. data/bin/wu-clean-encoding +31 -0
  13. data/bin/wu-lign +2 -2
  14. data/bin/wu-local +69 -0
  15. data/bin/wu-server +70 -0
  16. data/examples/Gemfile +38 -0
  17. data/examples/README.md +9 -0
  18. data/examples/dataflow/apache_log_line.rb +64 -25
  19. data/examples/dataflow/fibonacci_series.rb +101 -0
  20. data/examples/dataflow/parse_apache_logs.rb +37 -7
  21. data/examples/{dataflow.rb → dataflow/scraper_macro_flow.rb} +0 -0
  22. data/examples/dataflow/simple.rb +4 -4
  23. data/examples/geo.rb +4 -0
  24. data/examples/geo/geo_grids.numbers +0 -0
  25. data/examples/geo/geolocated.rb +331 -0
  26. data/examples/geo/quadtile.rb +69 -0
  27. data/examples/geo/spec/geolocated_spec.rb +247 -0
  28. data/examples/geo/tile_fetcher.rb +77 -0
  29. data/examples/graph/minimum_spanning_tree.rb +61 -61
  30. data/examples/jabberwocky.txt +36 -0
  31. data/examples/models/wikipedia.rb +20 -0
  32. data/examples/munging/Gemfile +8 -0
  33. data/examples/munging/airline_flights/airline.rb +57 -0
  34. data/examples/munging/airline_flights/airline_flights.rake +83 -0
  35. data/{lib/wukong/settings.rb → examples/munging/airline_flights/airplane.rb} +0 -0
  36. data/examples/munging/airline_flights/airport.rb +211 -0
  37. data/examples/munging/airline_flights/airport_id_unification.rb +129 -0
  38. data/examples/munging/airline_flights/airport_ok_chars.rb +4 -0
  39. data/examples/munging/airline_flights/flight.rb +156 -0
  40. data/examples/munging/airline_flights/models.rb +4 -0
  41. data/examples/munging/airline_flights/parse.rb +26 -0
  42. data/examples/munging/airline_flights/reconcile_airports.rb +142 -0
  43. data/examples/munging/airline_flights/route.rb +35 -0
  44. data/examples/munging/airline_flights/tasks.rake +83 -0
  45. data/examples/munging/airline_flights/timezone_fixup.rb +62 -0
  46. data/examples/munging/airline_flights/topcities.rb +167 -0
  47. data/examples/munging/airports/40_wbans.txt +40 -0
  48. data/examples/munging/airports/filter_weather_reports.rb +37 -0
  49. data/examples/munging/airports/join.pig +31 -0
  50. data/examples/munging/airports/to_tsv.rb +33 -0
  51. data/examples/munging/airports/usa_wbans.pig +19 -0
  52. data/examples/munging/airports/usa_wbans.txt +2157 -0
  53. data/examples/munging/airports/wbans.pig +19 -0
  54. data/examples/munging/airports/wbans.txt +2310 -0
  55. data/examples/munging/geo/geo_json.rb +54 -0
  56. data/examples/munging/geo/geo_models.rb +69 -0
  57. data/examples/munging/geo/geonames_models.rb +78 -0
  58. data/examples/munging/geo/iso_codes.rb +172 -0
  59. data/examples/munging/geo/reconcile_countries.rb +124 -0
  60. data/examples/munging/geo/tasks.rake +71 -0
  61. data/examples/munging/rake_helper.rb +62 -0
  62. data/examples/munging/weather/.gitignore +1 -0
  63. data/examples/munging/weather/Gemfile +4 -0
  64. data/examples/munging/weather/Rakefile +28 -0
  65. data/examples/munging/weather/extract_ish.rb +13 -0
  66. data/examples/munging/weather/models/weather.rb +119 -0
  67. data/examples/munging/weather/utils/noaa_downloader.rb +46 -0
  68. data/examples/munging/wikipedia/README.md +34 -0
  69. data/examples/munging/wikipedia/Rakefile +193 -0
  70. data/examples/munging/wikipedia/articles/extract_articles-parsed.rb +79 -0
  71. data/examples/munging/wikipedia/articles/extract_articles-templated.rb +136 -0
  72. data/examples/munging/wikipedia/articles/textualize_articles.rb +54 -0
  73. data/examples/munging/wikipedia/articles/verify_structure.rb +43 -0
  74. data/examples/munging/wikipedia/articles/wp2txt-LICENSE.txt +22 -0
  75. data/examples/munging/wikipedia/articles/wp2txt_article.rb +259 -0
  76. data/examples/munging/wikipedia/articles/wp2txt_utils.rb +452 -0
  77. data/examples/munging/wikipedia/dbpedia/dbpedia_common.rb +4 -0
  78. data/examples/munging/wikipedia/dbpedia/dbpedia_extract_geocoordinates.rb +78 -0
  79. data/examples/munging/wikipedia/dbpedia/extract_links.rb +193 -0
  80. data/examples/munging/wikipedia/dbpedia/sameas_extractor.rb +20 -0
  81. data/examples/munging/wikipedia/n1_subuniverse/n1_nodes.pig +18 -0
  82. data/examples/munging/wikipedia/page_metadata/extract_page_metadata.rb +21 -0
  83. data/examples/munging/wikipedia/page_metadata/extract_page_metadata.rb.old +27 -0
  84. data/examples/munging/wikipedia/pagelinks/augment_pagelinks.pig +29 -0
  85. data/examples/munging/wikipedia/pagelinks/extract_pagelinks.rb +14 -0
  86. data/examples/munging/wikipedia/pagelinks/extract_pagelinks.rb.old +25 -0
  87. data/examples/munging/wikipedia/pagelinks/undirect_pagelinks.pig +29 -0
  88. data/examples/munging/wikipedia/pageviews/augment_pageviews.pig +32 -0
  89. data/examples/munging/wikipedia/pageviews/extract_pageviews.rb +85 -0
  90. data/examples/munging/wikipedia/pig_style_guide.md +25 -0
  91. data/examples/munging/wikipedia/redirects/redirects_page_metadata.pig +19 -0
  92. data/examples/munging/wikipedia/subuniverse/sub_articles.pig +23 -0
  93. data/examples/munging/wikipedia/subuniverse/sub_page_metadata.pig +24 -0
  94. data/examples/munging/wikipedia/subuniverse/sub_pagelinks_from.pig +22 -0
  95. data/examples/munging/wikipedia/subuniverse/sub_pagelinks_into.pig +22 -0
  96. data/examples/munging/wikipedia/subuniverse/sub_pagelinks_within.pig +26 -0
  97. data/examples/munging/wikipedia/subuniverse/sub_pageviews.pig +29 -0
  98. data/examples/munging/wikipedia/subuniverse/sub_undirected_pagelinks_within.pig +24 -0
  99. data/examples/munging/wikipedia/utils/get_namespaces.rb +86 -0
  100. data/examples/munging/wikipedia/utils/munging_utils.rb +68 -0
  101. data/examples/munging/wikipedia/utils/namespaces.json +1 -0
  102. data/examples/rake_helper.rb +85 -0
  103. data/examples/server_logs/geo_ip_mapping/munge_geolite.rb +82 -0
  104. data/examples/server_logs/logline.rb +95 -0
  105. data/examples/server_logs/models.rb +66 -0
  106. data/examples/server_logs/page_counts.pig +48 -0
  107. data/examples/server_logs/server_logs-01-parse-script.rb +13 -0
  108. data/examples/server_logs/server_logs-02-histograms-full.rb +33 -0
  109. data/examples/server_logs/server_logs-02-histograms-mapper.rb +14 -0
  110. data/{old/examples/server_logs/breadcrumbs.rb → examples/server_logs/server_logs-03-breadcrumbs-full.rb} +26 -30
  111. data/examples/server_logs/server_logs-04-page_page_edges-full.rb +40 -0
  112. data/examples/string_reverser.rb +26 -0
  113. data/examples/text/pig_latin.rb +2 -2
  114. data/examples/text/regional_flavor/README.md +14 -0
  115. data/examples/text/regional_flavor/article_wordbags.pig +39 -0
  116. data/examples/text/regional_flavor/j01-article_wordbags.rb +4 -0
  117. data/examples/text/regional_flavor/simple_pig_script.pig +27 -0
  118. data/examples/word_count/accumulator.rb +26 -0
  119. data/examples/word_count/tokenizer.rb +13 -0
  120. data/examples/word_count/word_count.rb +6 -0
  121. data/examples/workflow/cherry_pie.dot +97 -0
  122. data/examples/workflow/cherry_pie.png +0 -0
  123. data/examples/workflow/cherry_pie.rb +61 -26
  124. data/lib/hanuman.rb +34 -7
  125. data/lib/hanuman/graph.rb +55 -31
  126. data/lib/hanuman/graphvizzer.rb +199 -178
  127. data/lib/hanuman/graphvizzer/gv_models.rb +161 -0
  128. data/lib/hanuman/graphvizzer/gv_presenter.rb +97 -0
  129. data/lib/hanuman/link.rb +35 -0
  130. data/lib/hanuman/registry.rb +46 -0
  131. data/lib/hanuman/stage.rb +76 -32
  132. data/lib/wukong.rb +23 -24
  133. data/lib/wukong/boot.rb +87 -0
  134. data/lib/wukong/configuration.rb +8 -0
  135. data/lib/wukong/dataflow.rb +45 -78
  136. data/lib/wukong/driver.rb +99 -0
  137. data/lib/wukong/emitter.rb +22 -0
  138. data/lib/wukong/model/faker.rb +24 -24
  139. data/lib/wukong/model/flatpack_parser/flat.rb +60 -0
  140. data/lib/wukong/model/flatpack_parser/flatpack.rb +4 -0
  141. data/lib/wukong/model/flatpack_parser/lang.rb +46 -0
  142. data/lib/wukong/model/flatpack_parser/parser.rb +55 -0
  143. data/lib/wukong/model/flatpack_parser/tokens.rb +130 -0
  144. data/lib/wukong/processor.rb +60 -114
  145. data/lib/wukong/spec_helpers.rb +81 -0
  146. data/lib/wukong/spec_helpers/integration_driver.rb +144 -0
  147. data/lib/wukong/spec_helpers/integration_driver_matchers.rb +219 -0
  148. data/lib/wukong/spec_helpers/processor_helpers.rb +95 -0
  149. data/lib/wukong/spec_helpers/processor_methods.rb +108 -0
  150. data/lib/wukong/spec_helpers/shared_examples.rb +15 -0
  151. data/lib/wukong/spec_helpers/spec_driver.rb +28 -0
  152. data/lib/wukong/spec_helpers/spec_driver_matchers.rb +195 -0
  153. data/lib/wukong/version.rb +2 -1
  154. data/lib/wukong/widget/filters.rb +311 -0
  155. data/lib/wukong/widget/processors.rb +156 -0
  156. data/lib/wukong/widget/reducers.rb +7 -0
  157. data/lib/wukong/widget/reducers/accumulator.rb +73 -0
  158. data/lib/wukong/widget/reducers/bin.rb +318 -0
  159. data/lib/wukong/widget/reducers/count.rb +61 -0
  160. data/lib/wukong/widget/reducers/group.rb +85 -0
  161. data/lib/wukong/widget/reducers/group_concat.rb +70 -0
  162. data/lib/wukong/widget/reducers/moments.rb +72 -0
  163. data/lib/wukong/widget/reducers/sort.rb +130 -0
  164. data/lib/wukong/widget/serializers.rb +287 -0
  165. data/lib/wukong/widget/sink.rb +10 -52
  166. data/lib/wukong/widget/source.rb +7 -113
  167. data/lib/wukong/widget/utils.rb +46 -0
  168. data/lib/wukong/widgets.rb +6 -0
  169. data/spec/examples/dataflow/fibonacci_series_spec.rb +18 -0
  170. data/spec/examples/dataflow/parsing_spec.rb +12 -11
  171. data/spec/examples/dataflow/simple_spec.rb +32 -6
  172. data/spec/examples/dataflow/telegram_spec.rb +36 -36
  173. data/spec/examples/graph/minimum_spanning_tree_spec.rb +30 -31
  174. data/spec/examples/munging/airline_flights/identifiers_spec.rb +16 -0
  175. data/spec/examples/munging/airline_flights_spec.rb +202 -0
  176. data/spec/examples/text/pig_latin_spec.rb +13 -16
  177. data/spec/examples/workflow/cherry_pie_spec.rb +34 -4
  178. data/spec/hanuman/graph_spec.rb +27 -2
  179. data/spec/hanuman/hanuman_spec.rb +10 -0
  180. data/spec/hanuman/registry_spec.rb +123 -0
  181. data/spec/hanuman/stage_spec.rb +61 -7
  182. data/spec/spec_helper.rb +29 -19
  183. data/spec/support/hanuman_test_helpers.rb +14 -12
  184. data/spec/support/shared_context_for_reducers.rb +37 -0
  185. data/spec/support/shared_examples_for_builders.rb +101 -0
  186. data/spec/support/shared_examples_for_shortcuts.rb +57 -0
  187. data/spec/support/wukong_test_helpers.rb +37 -11
  188. data/spec/wukong/dataflow_spec.rb +77 -55
  189. data/spec/wukong/local_runner_spec.rb +24 -24
  190. data/spec/wukong/model/faker_spec.rb +132 -131
  191. data/spec/wukong/runner_spec.rb +8 -8
  192. data/spec/wukong/widget/filters_spec.rb +61 -0
  193. data/spec/wukong/widget/processors_spec.rb +126 -0
  194. data/spec/wukong/widget/reducers/bin_spec.rb +92 -0
  195. data/spec/wukong/widget/reducers/count_spec.rb +11 -0
  196. data/spec/wukong/widget/reducers/group_spec.rb +20 -0
  197. data/spec/wukong/widget/reducers/moments_spec.rb +36 -0
  198. data/spec/wukong/widget/reducers/sort_spec.rb +26 -0
  199. data/spec/wukong/widget/serializers_spec.rb +92 -0
  200. data/spec/wukong/widget/sink_spec.rb +15 -15
  201. data/spec/wukong/widget/source_spec.rb +65 -41
  202. data/spec/wukong/wukong_spec.rb +10 -0
  203. data/wukong.gemspec +17 -10
  204. metadata +359 -335
  205. data/.document +0 -5
  206. data/VERSION +0 -1
  207. data/bin/hdp-bin +0 -44
  208. data/bin/hdp-bzip +0 -23
  209. data/bin/hdp-cat +0 -3
  210. data/bin/hdp-catd +0 -3
  211. data/bin/hdp-cp +0 -3
  212. data/bin/hdp-du +0 -86
  213. data/bin/hdp-get +0 -3
  214. data/bin/hdp-kill +0 -3
  215. data/bin/hdp-kill-task +0 -3
  216. data/bin/hdp-ls +0 -11
  217. data/bin/hdp-mkdir +0 -2
  218. data/bin/hdp-mkdirp +0 -12
  219. data/bin/hdp-mv +0 -3
  220. data/bin/hdp-parts_to_keys.rb +0 -77
  221. data/bin/hdp-ps +0 -3
  222. data/bin/hdp-put +0 -3
  223. data/bin/hdp-rm +0 -32
  224. data/bin/hdp-sort +0 -40
  225. data/bin/hdp-stream +0 -40
  226. data/bin/hdp-stream-flat +0 -22
  227. data/bin/hdp-stream2 +0 -39
  228. data/bin/hdp-sync +0 -17
  229. data/bin/hdp-wc +0 -67
  230. data/bin/wu-flow +0 -10
  231. data/bin/wu-map +0 -17
  232. data/bin/wu-red +0 -17
  233. data/bin/wukong +0 -17
  234. data/data/CREDITS.md +0 -355
  235. data/data/graph/airfares.tsv +0 -2174
  236. data/data/text/gift_of_the_magi.txt +0 -225
  237. data/data/text/jabberwocky.txt +0 -36
  238. data/data/text/rectification_of_names.txt +0 -33
  239. data/data/twitter/a_atsigns_b.tsv +0 -64
  240. data/data/twitter/a_follows_b.tsv +0 -53
  241. data/data/twitter/tweet.tsv +0 -167
  242. data/data/twitter/twitter_user.tsv +0 -55
  243. data/data/wikipedia/dbpedia-sentences.tsv +0 -1000
  244. data/docpages/INSTALL.textile +0 -92
  245. data/docpages/LICENSE.textile +0 -107
  246. data/docpages/README-elastic_map_reduce.textile +0 -377
  247. data/docpages/README-performance.textile +0 -90
  248. data/docpages/README-wulign.textile +0 -65
  249. data/docpages/UsingWukong-part1-get_ready.textile +0 -17
  250. data/docpages/UsingWukong-part2-ThinkingBigData.textile +0 -75
  251. data/docpages/UsingWukong-part3-parsing.textile +0 -138
  252. data/docpages/_config.yml +0 -39
  253. data/docpages/avro/avro_notes.textile +0 -56
  254. data/docpages/avro/performance.textile +0 -36
  255. data/docpages/avro/tethering.textile +0 -19
  256. data/docpages/bigdata-tips.textile +0 -143
  257. data/docpages/code/api_response_example.txt +0 -20
  258. data/docpages/code/parser_skeleton.rb +0 -38
  259. data/docpages/diagrams/MapReduceDiagram.graffle +0 -0
  260. data/docpages/favicon.ico +0 -0
  261. data/docpages/gem.css +0 -16
  262. data/docpages/hadoop-tips.textile +0 -83
  263. data/docpages/index.textile +0 -92
  264. data/docpages/intro.textile +0 -8
  265. data/docpages/moreinfo.textile +0 -174
  266. data/docpages/news.html +0 -24
  267. data/docpages/pig/PigLatinExpressionsList.txt +0 -122
  268. data/docpages/pig/PigLatinReferenceManual.txt +0 -1640
  269. data/docpages/pig/commandline_params.txt +0 -26
  270. data/docpages/pig/cookbook.html +0 -481
  271. data/docpages/pig/images/hadoop-logo.jpg +0 -0
  272. data/docpages/pig/images/instruction_arrow.png +0 -0
  273. data/docpages/pig/images/pig-logo.gif +0 -0
  274. data/docpages/pig/piglatin_ref1.html +0 -1103
  275. data/docpages/pig/piglatin_ref2.html +0 -14340
  276. data/docpages/pig/setup.html +0 -505
  277. data/docpages/pig/skin/basic.css +0 -166
  278. data/docpages/pig/skin/breadcrumbs.js +0 -237
  279. data/docpages/pig/skin/fontsize.js +0 -166
  280. data/docpages/pig/skin/getBlank.js +0 -40
  281. data/docpages/pig/skin/getMenu.js +0 -45
  282. data/docpages/pig/skin/images/chapter.gif +0 -0
  283. data/docpages/pig/skin/images/chapter_open.gif +0 -0
  284. data/docpages/pig/skin/images/current.gif +0 -0
  285. data/docpages/pig/skin/images/external-link.gif +0 -0
  286. data/docpages/pig/skin/images/header_white_line.gif +0 -0
  287. data/docpages/pig/skin/images/page.gif +0 -0
  288. data/docpages/pig/skin/images/pdfdoc.gif +0 -0
  289. data/docpages/pig/skin/images/rc-b-l-15-1body-2menu-3menu.png +0 -0
  290. data/docpages/pig/skin/images/rc-b-r-15-1body-2menu-3menu.png +0 -0
  291. data/docpages/pig/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png +0 -0
  292. data/docpages/pig/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png +0 -0
  293. data/docpages/pig/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png +0 -0
  294. data/docpages/pig/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png +0 -0
  295. data/docpages/pig/skin/images/rc-t-r-15-1body-2menu-3menu.png +0 -0
  296. data/docpages/pig/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png +0 -0
  297. data/docpages/pig/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png +0 -0
  298. data/docpages/pig/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png +0 -0
  299. data/docpages/pig/skin/print.css +0 -54
  300. data/docpages/pig/skin/profile.css +0 -181
  301. data/docpages/pig/skin/screen.css +0 -587
  302. data/docpages/pig/tutorial.html +0 -1059
  303. data/docpages/pig/udf.html +0 -1509
  304. data/docpages/tutorial.textile +0 -283
  305. data/docpages/usage.textile +0 -195
  306. data/docpages/wutils.textile +0 -263
  307. data/examples/dataflow/complex.rb +0 -11
  308. data/examples/dataflow/donuts.rb +0 -13
  309. data/examples/tiny_count/jabberwocky_output.tsv +0 -92
  310. data/examples/word_count.rb +0 -48
  311. data/examples/workflow/fiddle.rb +0 -24
  312. data/lib/away/escapement.rb +0 -129
  313. data/lib/away/exe.rb +0 -11
  314. data/lib/away/experimental.rb +0 -5
  315. data/lib/away/from_file.rb +0 -52
  316. data/lib/away/job.rb +0 -56
  317. data/lib/away/job/rake_compat.rb +0 -17
  318. data/lib/away/registry.rb +0 -79
  319. data/lib/away/runner.rb +0 -276
  320. data/lib/away/runner/execute.rb +0 -121
  321. data/lib/away/script.rb +0 -161
  322. data/lib/away/script/hadoop_command.rb +0 -240
  323. data/lib/away/source/file_list_source.rb +0 -15
  324. data/lib/away/source/looper.rb +0 -18
  325. data/lib/away/task.rb +0 -219
  326. data/lib/hanuman/action.rb +0 -21
  327. data/lib/hanuman/chain.rb +0 -4
  328. data/lib/hanuman/graphviz.rb +0 -74
  329. data/lib/hanuman/resource.rb +0 -6
  330. data/lib/hanuman/slot.rb +0 -87
  331. data/lib/hanuman/slottable.rb +0 -220
  332. data/lib/wukong/bad_record.rb +0 -15
  333. data/lib/wukong/event.rb +0 -44
  334. data/lib/wukong/local_runner.rb +0 -55
  335. data/lib/wukong/mapred.rb +0 -3
  336. data/lib/wukong/universe.rb +0 -48
  337. data/lib/wukong/widget/filter.rb +0 -81
  338. data/lib/wukong/widget/gibberish.rb +0 -123
  339. data/lib/wukong/widget/monitor.rb +0 -26
  340. data/lib/wukong/widget/reducer.rb +0 -66
  341. data/lib/wukong/widget/stringifier.rb +0 -50
  342. data/lib/wukong/workflow.rb +0 -22
  343. data/lib/wukong/workflow/command.rb +0 -42
  344. data/old/config/emr-example.yaml +0 -48
  345. data/old/examples/README.txt +0 -17
  346. data/old/examples/contrib/jeans/README.markdown +0 -165
  347. data/old/examples/contrib/jeans/data/normalized_sizes +0 -3
  348. data/old/examples/contrib/jeans/data/orders.tsv +0 -1302
  349. data/old/examples/contrib/jeans/data/sizes +0 -3
  350. data/old/examples/contrib/jeans/normalize.rb +0 -20
  351. data/old/examples/contrib/jeans/sizes.rb +0 -55
  352. data/old/examples/corpus/bnc_word_freq.rb +0 -44
  353. data/old/examples/corpus/bucket_counter.rb +0 -47
  354. data/old/examples/corpus/dbpedia_abstract_to_sentences.rb +0 -86
  355. data/old/examples/corpus/sentence_bigrams.rb +0 -53
  356. data/old/examples/corpus/sentence_coocurrence.rb +0 -66
  357. data/old/examples/corpus/stopwords.rb +0 -138
  358. data/old/examples/corpus/words_to_bigrams.rb +0 -53
  359. data/old/examples/emr/README.textile +0 -110
  360. data/old/examples/emr/dot_wukong_dir/credentials.json +0 -7
  361. data/old/examples/emr/dot_wukong_dir/emr.yaml +0 -69
  362. data/old/examples/emr/dot_wukong_dir/emr_bootstrap.sh +0 -33
  363. data/old/examples/emr/elastic_mapreduce_example.rb +0 -28
  364. data/old/examples/network_graph/adjacency_list.rb +0 -74
  365. data/old/examples/network_graph/breadth_first_search.rb +0 -72
  366. data/old/examples/network_graph/gen_2paths.rb +0 -68
  367. data/old/examples/network_graph/gen_multi_edge.rb +0 -112
  368. data/old/examples/network_graph/gen_symmetric_links.rb +0 -64
  369. data/old/examples/pagerank/README.textile +0 -6
  370. data/old/examples/pagerank/gen_initial_pagerank_graph.pig +0 -57
  371. data/old/examples/pagerank/pagerank.rb +0 -72
  372. data/old/examples/pagerank/pagerank_initialize.rb +0 -42
  373. data/old/examples/pagerank/run_pagerank.sh +0 -21
  374. data/old/examples/sample_records.rb +0 -33
  375. data/old/examples/server_logs/apache_log_parser.rb +0 -15
  376. data/old/examples/server_logs/nook.rb +0 -48
  377. data/old/examples/server_logs/nook/faraday_dummy_adapter.rb +0 -94
  378. data/old/examples/server_logs/user_agent.rb +0 -40
  379. data/old/examples/simple_word_count.rb +0 -82
  380. data/old/examples/size.rb +0 -61
  381. data/old/examples/stats/avg_value_frequency.rb +0 -86
  382. data/old/examples/stats/binning_percentile_estimator.rb +0 -140
  383. data/old/examples/stats/data/avg_value_frequency.tsv +0 -3
  384. data/old/examples/stats/rank_and_bin.rb +0 -173
  385. data/old/examples/stupidly_simple_filter.rb +0 -40
  386. data/old/examples/word_count.rb +0 -75
  387. data/old/graph/graphviz_builder.rb +0 -580
  388. data/old/graph_easy/Attributes.pm +0 -4181
  389. data/old/graph_easy/Graphviz.pm +0 -2232
  390. data/old/wukong.rb +0 -18
  391. data/old/wukong/and_pig.rb +0 -38
  392. data/old/wukong/bad_record.rb +0 -18
  393. data/old/wukong/datatypes.rb +0 -24
  394. data/old/wukong/datatypes/enum.rb +0 -127
  395. data/old/wukong/datatypes/fake_types.rb +0 -17
  396. data/old/wukong/decorator.rb +0 -28
  397. data/old/wukong/encoding/asciize.rb +0 -108
  398. data/old/wukong/extensions.rb +0 -16
  399. data/old/wukong/extensions/array.rb +0 -18
  400. data/old/wukong/extensions/blank.rb +0 -93
  401. data/old/wukong/extensions/class.rb +0 -189
  402. data/old/wukong/extensions/date_time.rb +0 -53
  403. data/old/wukong/extensions/emittable.rb +0 -69
  404. data/old/wukong/extensions/enumerable.rb +0 -79
  405. data/old/wukong/extensions/hash.rb +0 -167
  406. data/old/wukong/extensions/hash_keys.rb +0 -16
  407. data/old/wukong/extensions/hash_like.rb +0 -150
  408. data/old/wukong/extensions/hashlike_class.rb +0 -47
  409. data/old/wukong/extensions/module.rb +0 -2
  410. data/old/wukong/extensions/pathname.rb +0 -27
  411. data/old/wukong/extensions/string.rb +0 -65
  412. data/old/wukong/extensions/struct.rb +0 -17
  413. data/old/wukong/extensions/symbol.rb +0 -11
  414. data/old/wukong/filename_pattern.rb +0 -74
  415. data/old/wukong/helper.rb +0 -7
  416. data/old/wukong/helper/stopwords.rb +0 -195
  417. data/old/wukong/helper/tokenize.rb +0 -35
  418. data/old/wukong/logger.rb +0 -38
  419. data/old/wukong/periodic_monitor.rb +0 -72
  420. data/old/wukong/schema.rb +0 -269
  421. data/old/wukong/script.rb +0 -286
  422. data/old/wukong/script/avro_command.rb +0 -5
  423. data/old/wukong/script/cassandra_loader_script.rb +0 -40
  424. data/old/wukong/script/emr_command.rb +0 -168
  425. data/old/wukong/script/hadoop_command.rb +0 -237
  426. data/old/wukong/script/local_command.rb +0 -41
  427. data/old/wukong/store.rb +0 -10
  428. data/old/wukong/store/base.rb +0 -27
  429. data/old/wukong/store/cassandra.rb +0 -10
  430. data/old/wukong/store/cassandra/streaming.rb +0 -75
  431. data/old/wukong/store/cassandra/struct_loader.rb +0 -21
  432. data/old/wukong/store/cassandra_model.rb +0 -91
  433. data/old/wukong/store/chh_chunked_flat_file_store.rb +0 -37
  434. data/old/wukong/store/chunked_flat_file_store.rb +0 -48
  435. data/old/wukong/store/conditional_store.rb +0 -57
  436. data/old/wukong/store/factory.rb +0 -8
  437. data/old/wukong/store/flat_file_store.rb +0 -89
  438. data/old/wukong/store/key_store.rb +0 -51
  439. data/old/wukong/store/null_store.rb +0 -15
  440. data/old/wukong/store/read_thru_store.rb +0 -22
  441. data/old/wukong/store/tokyo_tdb_key_store.rb +0 -33
  442. data/old/wukong/store/tyrant_rdb_key_store.rb +0 -57
  443. data/old/wukong/store/tyrant_tdb_key_store.rb +0 -20
  444. data/old/wukong/streamer.rb +0 -30
  445. data/old/wukong/streamer/accumulating_reducer.rb +0 -83
  446. data/old/wukong/streamer/base.rb +0 -126
  447. data/old/wukong/streamer/counting_reducer.rb +0 -25
  448. data/old/wukong/streamer/filter.rb +0 -20
  449. data/old/wukong/streamer/instance_streamer.rb +0 -15
  450. data/old/wukong/streamer/json_streamer.rb +0 -21
  451. data/old/wukong/streamer/line_streamer.rb +0 -12
  452. data/old/wukong/streamer/list_reducer.rb +0 -31
  453. data/old/wukong/streamer/rank_and_bin_reducer.rb +0 -145
  454. data/old/wukong/streamer/record_streamer.rb +0 -14
  455. data/old/wukong/streamer/reducer.rb +0 -11
  456. data/old/wukong/streamer/set_reducer.rb +0 -14
  457. data/old/wukong/streamer/struct_streamer.rb +0 -48
  458. data/old/wukong/streamer/summing_reducer.rb +0 -29
  459. data/old/wukong/streamer/uniq_by_last_reducer.rb +0 -51
  460. data/old/wukong/typed_struct.rb +0 -12
  461. data/spec/away/encoding_spec.rb +0 -32
  462. data/spec/away/exe_spec.rb +0 -20
  463. data/spec/away/flow_spec.rb +0 -82
  464. data/spec/away/graph_spec.rb +0 -6
  465. data/spec/away/job_spec.rb +0 -15
  466. data/spec/away/rake_compat_spec.rb +0 -9
  467. data/spec/away/script_spec.rb +0 -81
  468. data/spec/hanuman/graphviz_spec.rb +0 -29
  469. data/spec/hanuman/slot_spec.rb +0 -2
  470. data/spec/support/examples_helper.rb +0 -10
  471. data/spec/support/streamer_test_helpers.rb +0 -6
  472. data/spec/support/wukong_widget_helpers.rb +0 -66
  473. data/spec/wukong/processor_spec.rb +0 -109
  474. data/spec/wukong/widget/filter_spec.rb +0 -99
  475. data/spec/wukong/widget/stringifier_spec.rb +0 -51
  476. data/spec/wukong/workflow/command_spec.rb +0 -5
@@ -1,225 +0,0 @@
1
- The Gift of the Magi
2
-
3
- by O. Henry
4
-
5
- One dollar and eighty-seven cents. That was all. And sixty cents of it
6
- was in pennies. Pennies saved one and two at a time by bulldozing the
7
- grocer and the vegetable man and the butcher until one's cheeks burned
8
- with the silent imputation of parsimony that such close dealing
9
- implied. Three times Della counted it. One dollar and eighty-seven
10
- cents. And the next day would be Christmas.
11
-
12
- There was clearly nothing to do but flop down on the shabby little
13
- couch and howl. So Della did it. Which instigates the moral reflection
14
- that life is made up of sobs, sniffles, and smiles, with sniffles
15
- predominating.
16
-
17
- While the mistress of the home is gradually subsiding from the first
18
- stage to the second, take a look at the home. A furnished flat at $8
19
- per week. It did not exactly beggar description, but it certainly had
20
- that word on the lookout for the mendicancy squad.
21
-
22
- In the vestibule below was a letter-box into which no letter would go,
23
- and an electric button from which no mortal finger could coax a ring.
24
- Also appertaining thereunto was a card bearing the name "Mr. James
25
- Dillingham Young."
26
-
27
- The "Dillingham" had been flung to the breeze during a former period of
28
- prosperity when its possessor was being paid $30 per week. Now, when
29
- the income was shrunk to $20, though, they were thinking seriously of
30
- contracting to a modest and unassuming D. But whenever Mr. James
31
- Dillingham Young came home and reached his flat above he was called
32
- "Jim" and greatly hugged by Mrs. James Dillingham Young, already
33
- introduced to you as Della. Which is all very good.
34
-
35
- Della finished her cry and attended to her cheeks with the powder rag.
36
- She stood by the window and looked out dully at a gray cat walking a
37
- gray fence in a gray backyard. Tomorrow would be Christmas Day, and she
38
- had only $1.87 with which to buy Jim a present. She had been saving
39
- every penny she could for months, with this result. Twenty dollars a
40
- week doesn't go far. Expenses had been greater than she had calculated.
41
- They always are. Only $1.87 to buy a present for Jim. Her Jim. Many a
42
- happy hour she had spent planning for something nice for him. Something
43
- fine and rare and sterling--something just a little bit near to being
44
- worthy of the honor of being owned by Jim.
45
-
46
- There was a pier-glass between the windows of the room. Perhaps you
47
- have seen a pierglass in an $8 flat. A very thin and very agile person
48
- may, by observing his reflection in a rapid sequence of longitudinal
49
- strips, obtain a fairly accurate conception of his looks. Della, being
50
- slender, had mastered the art.
51
-
52
- Suddenly she whirled from the window and stood before the glass. Her
53
- eyes were shining brilliantly, but her face had lost its color within
54
- twenty seconds. Rapidly she pulled down her hair and let it fall to its
55
- full length.
56
-
57
- Now, there were two possessions of the James Dillingham Youngs in which
58
- they both took a mighty pride. One was Jim's gold watch that had been
59
- his father's and his grandfather's. The other was Della's hair. Had the
60
- queen of Sheba lived in the flat across the airshaft, Della would have
61
- let her hair hang out the window some day to dry just to depreciate Her
62
- Majesty's jewels and gifts. Had King Solomon been the janitor, with all
63
- his treasures piled up in the basement, Jim would have pulled out his
64
- watch every time he passed, just to see him pluck at his beard from
65
- envy.
66
-
67
- So now Della's beautiful hair fell about her rippling and shining like
68
- a cascade of brown waters. It reached below her knee and made itself
69
- almost a garment for her. And then she did it up again nervously and
70
- quickly. Once she faltered for a minute and stood still while a tear or
71
- two splashed on the worn red carpet.
72
-
73
- On went her old brown jacket; on went her old brown hat. With a whirl
74
- of skirts and with the brilliant sparkle still in her eyes, she
75
- fluttered out the door and down the stairs to the street.
76
-
77
- Where she stopped the sign read: "Mne. Sofronie. Hair Goods of All
78
- Kinds." One flight up Della ran, and collected herself, panting.
79
- Madame, large, too white, chilly, hardly looked the "Sofronie."
80
-
81
- "Will you buy my hair?" asked Della.
82
-
83
- "I buy hair," said Madame. "Take yer hat off and let's have a sight at
84
- the looks of it."
85
-
86
- Down rippled the brown cascade.
87
-
88
- "Twenty dollars," said Madame, lifting the mass with a practised hand.
89
-
90
- "Give it to me quick," said Della.
91
-
92
- Oh, and the next two hours tripped by on rosy wings. Forget the hashed
93
- metaphor. She was ransacking the stores for Jim's present.
94
-
95
- She found it at last. It surely had been made for Jim and no one else.
96
- There was no other like it in any of the stores, and she had turned all
97
- of them inside out. It was a platinum fob chain simple and chaste in
98
- design, properly proclaiming its value by substance alone and not by
99
- meretricious ornamentation--as all good things should do. It was even
100
- worthy of The Watch. As soon as she saw it she knew that it must be
101
- Jim's. It was like him. Quietness and value--the description applied to
102
- both. Twenty-one dollars they took from her for it, and she hurried
103
- home with the 87 cents. With that chain on his watch Jim might be
104
- properly anxious about the time in any company. Grand as the watch
105
- was, he sometimes looked at it on the sly on account of the old leather
106
- strap that he used in place of a chain.
107
-
108
- When Della reached home her intoxication gave way a little to prudence
109
- and reason. She got out her curling irons and lighted the gas and went
110
- to work repairing the ravages made by generosity added to love. Which
111
- is always a tremendous task, dear friends--a mammoth task.
112
-
113
- Within forty minutes her head was covered with tiny, close-lying curls
114
- that made her look wonderfully like a truant schoolboy. She looked at
115
- her reflection in the mirror long, carefully, and critically.
116
-
117
- "If Jim doesn't kill me," she said to herself, "before he takes a
118
- second look at me, he'll say I look like a Coney Island chorus girl.
119
- But what could I do--oh! what could I do with a dollar and eighty-seven
120
- cents?"
121
-
122
- At 7 o'clock the coffee was made and the frying-pan was on the back of
123
- the stove hot and ready to cook the chops.
124
-
125
- Jim was never late. Della doubled the fob chain in her hand and sat on
126
- the corner of the table near the door that he always entered. Then she
127
- heard his step on the stair away down on the first flight, and she
128
- turned white for just a moment. She had a habit of saying a little
129
- silent prayer about the simplest everyday things, and now she
130
- whispered: "Please God, make him think I am still pretty."
131
-
132
- The door opened and Jim stepped in and closed it. He looked thin and
133
- very serious. Poor fellow, he was only twenty-two--and to be burdened
134
- with a family! He needed a new overcoat and he was without gloves.
135
-
136
- Jim stopped inside the door, as immovable as a setter at the scent of
137
- quail. His eyes were fixed upon Della, and there was an expression in
138
- them that she could not read, and it terrified her. It was not anger,
139
- nor surprise, nor disapproval, nor horror, nor any of the sentiments
140
- that she had been prepared for. He simply stared at her fixedly with
141
- that peculiar expression on his face.
142
-
143
- Della wriggled off the table and went for him.
144
-
145
- "Jim, darling," she cried, "don't look at me that way. I had my hair
146
- cut off and sold because I couldn't have lived through Christmas
147
- without giving you a present. It'll grow out again--you won't mind,
148
- will you? I just had to do it. My hair grows awfully fast. Say `Merry
149
- Christmas!' Jim, and let's be happy. You don't know what a nice--what a
150
- beautiful, nice gift I've got for you."
151
-
152
- "You've cut off your hair?" asked Jim, laboriously, as if he had not
153
- arrived at that patent fact yet even after the hardest mental labor.
154
-
155
- "Cut it off and sold it," said Della. "Don't you like me just as well,
156
- anyhow? I'm me without my hair, ain't I?"
157
-
158
- Jim looked about the room curiously.
159
-
160
- "You say your hair is gone?" he said, with an air almost of idiocy.
161
-
162
- "You needn't look for it," said Della. "It's sold, I tell you--sold and
163
- gone, too. It's Christmas Eve, boy. Be good to me, for it went for you.
164
- Maybe the hairs of my head were numbered," she went on with sudden
165
- serious sweetness, "but nobody could ever count my love for you. Shall
166
- I put the chops on, Jim?"
167
-
168
- Out of his trance Jim seemed quickly to wake. He enfolded his Della.
169
- For ten seconds let us regard with discreet scrutiny some
170
- inconsequential object in the other direction. Eight dollars a week or
171
- a million a year--what is the difference? A mathematician or a wit
172
- would give you the wrong answer. The magi brought valuable gifts, but
173
- that was not among them. This dark assertion will be illuminated later
174
- on.
175
-
176
- Jim drew a package from his overcoat pocket and threw it upon the table.
177
-
178
- "Don't make any mistake, Dell," he said, "about me. I don't think
179
- there's anything in the way of a haircut or a shave or a shampoo that
180
- could make me like my girl any less. But if you'll unwrap that package
181
- you may see why you had me going a while at first."
182
-
183
- White fingers and nimble tore at the string and paper. And then an
184
- ecstatic scream of joy; and then, alas! a quick feminine change to
185
- hysterical tears and wails, necessitating the immediate employment of
186
- all the comforting powers of the lord of the flat.
187
-
188
- For there lay The Combs--the set of combs, side and back, that Della
189
- had worshipped long in a Broadway window. Beautiful combs, pure
190
- tortoise shell, with jewelled rims--just the shade to wear in the
191
- beautiful vanished hair. They were expensive combs, she knew, and her
192
- heart had simply craved and yearned over them without the least hope of
193
- possession. And now, they were hers, but the tresses that should have
194
- adorned the coveted adornments were gone.
195
-
196
- But she hugged them to her bosom, and at length she was able to look up
197
- with dim eyes and a smile and say: "My hair grows so fast, Jim!"
198
-
199
- And then Della leaped up like a little singed cat and cried, "Oh, oh!"
200
-
201
- Jim had not yet seen his beautiful present. She held it out to him
202
- eagerly upon her open palm. The dull precious metal seemed to flash
203
- with a reflection of her bright and ardent spirit.
204
-
205
- "Isn't it a dandy, Jim? I hunted all over town to find it. You'll have
206
- to look at the time a hundred times a day now. Give me your watch. I
207
- want to see how it looks on it."
208
-
209
- Instead of obeying, Jim tumbled down on the couch and put his hands
210
- under the back of his head and smiled.
211
-
212
- "Dell," said he, "let's put our Christmas presents away and keep 'em a
213
- while. They're too nice to use just at present. I sold the watch to get
214
- the money to buy your combs. And now suppose you put the chops on."
215
-
216
- The magi, as you know, were wise men--wonderfully wise men--who brought
217
- gifts to the Babe in the manger. They invented the art of giving
218
- Christmas presents. Being wise, their gifts were no doubt wise ones,
219
- possibly bearing the privilege of exchange in case of duplication. And
220
- here I have lamely related to you the uneventful chronicle of two
221
- foolish children in a flat who most unwisely sacrificed for each other
222
- the greatest treasures of their house. But in a last word to the wise
223
- of these days let it be said that of all who give gifts these two were
224
- the wisest. Of all who give and receive gifts, such as they are wisest.
225
- Everywhere they are wisest. They are the magi.
@@ -1,36 +0,0 @@
1
- JABBERWOCKY
2
-
3
- Lewis Carroll
4
-
5
- (from Through the Looking-Glass and What Alice Found There, 1872)
6
-
7
- `Twas brillig, and the slithy toves
8
- Did gyre and gimble in the wabe:
9
- All mimsy were the borogoves,
10
- And the mome raths outgrabe.
11
-
12
- "Beware the Jabberwock, my son!
13
- The jaws that bite, the claws that catch!
14
- Beware the Jubjub bird, and shun
15
- The frumious Bandersnatch!"
16
- He took his vorpal sword in hand:
17
- Long time the manxome foe he sought --
18
- So rested he by the Tumtum tree,
19
- And stood awhile in thought.
20
- And, as in uffish thought he stood,
21
- The Jabberwock, with eyes of flame,
22
- Came whiffling through the tulgey wood,
23
- And burbled as it came!
24
- One, two! One, two! And through and through
25
- The vorpal blade went snicker-snack!
26
- He left it dead, and with its head
27
- He went galumphing back.
28
- "And, has thou slain the Jabberwock?
29
- Come to my arms, my beamish boy!
30
- O frabjous day! Callooh! Callay!'
31
- He chortled in his joy.
32
-
33
- `Twas brillig, and the slithy toves
34
- Did gyre and gimble in the wabe;
35
- All mimsy were the borogoves,
36
- And the mome raths outgrabe.
@@ -1,33 +0,0 @@
1
- In order to administer
2
- the first thing to be done is to rectify names.
3
-
4
- If names be not correct,
5
- language is not in accordance with the truth of things.
6
- If language be not in accordance with the truth of things,
7
- affairs cannot be carried on to success.
8
-
9
- When affairs cannot be carried on to success,
10
- proprieties and music do not flourish.
11
- When proprieties and music do not flourish,
12
- punishments will not be properly awarded.
13
- When punishments are not properly awarded,
14
- the people do not know how to move hand or foot.
15
-
16
- Therefore a superior man considers it necessary that
17
- the names he uses may be spoken appropriately, and also that
18
- what he speaks may be carried out appropriately.
19
- What the superior man requires is just that
20
- in his words there may be nothing incorrect.
21
-
22
- If language is not correct,
23
- then what is said is not what is meant;
24
- if what is said is not what is meant,
25
- then what must be done remains undone;
26
- if this remains undone, morals and art will deteriorate;
27
- if justice goes astray, the people will stand about in helpless confusion.
28
-
29
- Hence there must be no arbitrariness in what is said.
30
-
31
- This matters above everything.
32
-
33
- -- Analects of Confucius Book 13 Verse 3 (based on 1980 James R. Ware translation)
@@ -1,64 +0,0 @@
1
- user_a_id user_b_id status_id retwtid
2
-
3
- 3000000172 1000004517 costanza81 @derek_Jeter
4
- 3000000173 1000000028 3000000172 1000004517 derek_Jeter @costanza81
5
- 3000000174 1000004517 3000000173 1000000028 costanza81 @derek_Jeter
6
- 3000000175 1000000029 3000000174 1000004517 BernieWilliams @costanza81
7
- 3000000176 1000004517 3000000175 1000000029 costanza81 @BernieWilliams
8
- 3000000177 1000000028 3000000176 1000004517 derek_Jeter @costanza81
9
- 3000000178 1000004517 3000000177 1000000028 costanza81 @derek_Jeter @BernieWilliams
10
- 3000000180 1000004517 costanza81 @jerry
11
- 3000000181 1000000632 3000000180 1000004517 jerry @costanza81
12
- 3000000182 1000004517 3000000181 1000000632 costanza81 @jerry
13
- 3000000220 1000000069 bania @jerry
14
- 3000000221 1000000070 costanza81 @bubble_boy
15
- 3000000231 1000004517 costanza81 @cushman
16
- 3000000232 1000004517 costanza81 @cushman
17
- 3000000259 1000322339 Cushman @bigstein @costanza81
18
- 3000000260 1000004517 costanza81 @bigstein
19
- 3000000261 1000004517 costanza81 @bigstein
20
- 3000000262 1000202970 3000000159 1000322339 bigstein @cushman
21
- 3000000009 1000000632 jerry @AvisRental
22
- 3000000010 1000000632 jerry @costanza81
23
- 3000000012 1000000632 jerry @elainebenes
24
- 3000000030 1000004517 costanza81 @ElaineBenes
25
- 3000000038 1000004517 costanza81 @JonVoight
26
- 3000000046 1000004517 costanza81 @RobertWagner
27
- 3000000081 1000641417 JPeterman @ElaineBenes
28
- 3000000084 1000724245 cosmo @Bob_Sacamano
29
- 3000000106 1000000032 thementee @jerry
30
- 3000000107 1000000632 3000000106 1000000032 jerry @thementee
31
- 3000000110 1000000632 3000000109 1000004517 jerry @costanza81
32
- 3000000112 1000000632 jerry @elainebenes
33
- 3000000113 1000000506 3000000112 1000000632 elainebenes @jerry
34
- 3000000115 1000000632 jerry @cosmo
35
- 3000000116 1000724245 3000000115 1000000632 cosmo @jerry
36
- 3000000119 1000000632 3000000118 1000004517 jerry @costanza81
37
- 3000000120 1000004517 3000000119 1000000632 costanza81 @jerry
38
- 3000000121 1000000632 3000000120 1000004517 jerry @costanza81
39
- 3000000123 1000000632 jerry @Puddy
40
- 3000000124 1000911320 3000000123 1000000632 Puddy @jerry
41
- 3000000125 1000000632 3000000124 1000911320 jerry @Puddy
42
- 3000000126 1000911320 3000000125 1000000632 Puddy @jerry
43
- 3000000128 1000410101 Ronnie @jerry
44
- 3000000129 1000000632 3000000128 1000410101 jerry @ronnie
45
- 3000000130 1000410101 3000000129 1000000632 Ronnie @jerry
46
- 3000000131 1000000632 3000000130 1000410101 jerry @ronnie
47
- 3000000135 1000724245 3000000134 1000004517 cosmo @jerry
48
- 3000000137 1000000632 jerry @cosmo
49
- 3000000138 1000724245 3000000137 1000000632 cosmo @jerry
50
- 3000000145 1000000632 3000000144 1000004517 jerry @costanza81
51
- 3000000146 1000004517 3000000145 1000000632 costanza81 @jerry
52
- 3000000148 1000724245 cosmo @pam
53
- 3000000149 1000616766 3000000148 1000724245 Pam @cosmo
54
- 3000000151 1000431520 dean_jones @cosmo
55
- 3000000152 1000724245 3000000151 1000431520 cosmo @dean_jones
56
- 3000000153 1000431520 3000000152 1000724245 dean_jones @cosmo
57
- 3000000154 1000724245 3000000153 1000431520 cosmo @dean_jones
58
- 3000000155 1000431520 3000000154 1000724245 dean_jones @cosmo
59
- 3000000156 1000724245 3000000155 1000431520 cosmo @dean_jones
60
- 3000000157 1000431520 3000000156 1000724245 dean_jones @cosmo
61
- 3000000165 1000000632 3000000164 1000000506 jerry @elainebenes
62
- 3000000168 1000724245 3000000167 1000000632 cosmo @jerry
63
- 3000000169 1000000632 3000000167 1000000632 jerry @jerry
64
- 3000000170 1000000506 3000000167 1000000632 elainebenes @jerry
@@ -1,53 +0,0 @@
1
- a_follows_b jerry costanza87
2
- a_follows_b jerry elaine
3
- a_follows_b jerry puddy
4
- a_follows_b jerry bob_sacamano
5
- a_follows_b jerry original_kramer
6
- a_follows_b jerry ESTELLECOSTNAZA
7
- a_follows_b jerry superman
8
- a_follows_b jerry dccomics
9
- a_follows_b jerry shake_shack
10
- a_follows_b costanza87 jerry
11
- a_follows_b costanza87 elaine
12
- a_follows_b costanza87 puddy
13
- a_follows_b costanza87
14
- a_follows_b costanza87 bob_sacamano
15
- a_follows_b costanza87 original_kramer
16
- a_follows_b costanza87 newman
17
- a_follows_b costanza87 close_talker
18
- a_follows_b costanza87 man_hands
19
- a_follows_b costanza87 fusilli_jerry
20
- a_follows_b elaine
21
- a_follows_b puddy jerry
22
- a_follows_b puddy original_kramer
23
- a_follows_b puddy nyrangers
24
- a_follows_b puddy
25
- a_follows_b puddy
26
- a_follows_b puddy
27
- a_follows_b bob_sacamano
28
- a_follows_b original_kramer
29
- a_follows_b newman
30
- a_follows_b lomez
31
- a_follows_b man_hands
32
- a_follows_b fusilli_jerry jerry
33
- a_follows_b fusilli_jerry original_kramer
34
- a_follows_b fusilli_jerry (comedianguy)
35
- a_follows_b bubble_boy
36
- a_follows_b jpeterman
37
- a_follows_b jpetermanco
38
- a_follows_b UNCLE_LEO
39
- a_follows_b serenity_now
40
- a_follows_b JackieChilesEsq
41
- a_follows_b mulva
42
- a_follows_b babubhatt
43
- a_follows_b marla
44
- a_follows_b ESTELLECOSTNAZA
45
- a_follows_b semischke
46
- a_follows_b bigstein
47
- a_follows_b superman
48
- a_follows_b ArtVandelay
49
- a_follows_b HJPennypacker
50
- a_follows_b KelVarnsen
51
- a_follows_b vannostrandmd
52
- a_follows_b bubble_boy jerry
53
- a_follows_b bubble_boy costanza87
@@ -1,167 +0,0 @@
1
- comment id created_at user_id faved trunced reply_user_id reply_tweet_id text source reply_sn reply_sid screen_name user_sid iso_lang
2
- tweet 3000000001 20080101000145 1000724245 0 0 Oh... yeah. I got my new plates. But they mixed them up. Somebody got mine and I got their vanity plates. I'm Cosmo Kramer, the Assman! web cosmo
3
- tweet 3000000002 20080102000245 1000724245 0 0 You meet a proctologist at a party, don't walk away. Plant yourself there, because you will hear the funniest stories you've ever heard. web cosmo
4
- tweet 3000000003 20080103000345 1000724245 0 0 Every proctologist story ends in the same way: 'It was a million to one shot, Doc. Million to one.' web cosmo
5
- tweet 3000000004 20080104000432 1000000632 0 0 The key to eating a black and white cookie is that you wanna get some black and some white in each bite. web jerry
6
- tweet 3000000005 20080105000532 1000000632 0 0 Nothing mixes better than vanilla+chocolate. Yet racial harmony eludes us. If we would only look to the cookie, our problems would be solved web jerry
7
- tweet 3000000006 20080106000630 1000000030 0 0 I find pastrami to be the most sensual of all the salted, cured meats. web cougar_mom
8
- tweet 3000000007 20080107000706 1000000506 0 0 I'm not a lesbian. I hate men, but I'm not a lesbian. web elainebenes
9
- tweet 3000000008 20080108000806 1000000632 0 0 Sex has taken place when the nipple makes its first appearance. web jerry
10
- tweet 3000000009 20080109000932 1000000632 0 0 @AvisRental You better give me the insurance. Because I'm gonna beat the hell out of this car. web jerry
11
- tweet 3000000011 20080111001132 1000000632 0 0 Anytime someone says, 'Ooh, this is so good - what's in this?' the answer invariably comes back, 'cinnamon.' Cinnamon. Again and again. web jerry
12
- tweet 3000000012 20080112001232 1000000632 0 0 1000000506 3000000011 @elainebenes Breaking up is like knocking over a coke machine. Can't do it in one push, you got to rock it back and forth a few times. web elainebenes jerry
13
- tweet 3000000013 20080113001332 1000000632 0 0 Don't cast aspersions on someone for just wearing a cape. Superman wore a cape. I'll be damned if I'll let you say anything bad about him. web jerry
14
- tweet 3000000014 20080114001432 1000000632 0 0 Elaine, you don't understand! This isn't plans 1 through 8. This is Plan 9. This is the one that worked. The worst movie ever made. web jerry
15
- tweet 3000000015 20080115001532 1000000632 0 0 I can't sleep, I can't leave the house, I'm climbin' the walls. Meanwhile, I'm dating a virgin, I'm in this contest, something's gotta give! web jerry
16
- tweet 3000000016 20080116001632 1000000632 0 0 I had a dream last night that a hamburger was eating me. web jerry
17
- tweet 3000000017 20080117001732 1000000632 0 0 I think that's what's good for the goose is good for the gander. What's a gander? It's a goose that's had the ol' switcheroo pulled on it. web jerry
18
- tweet 3000000018 20080118001832 1000000632 0 0 I'm not gay. Not that there's anything wrong with that. web jerry
19
- tweet 3000000019 20080119001932 1000000632 0 0 Looking at #cleavage is like looking at the sun. You don't stare at it. It's too risky. Ya get a sense of it and then you look away. web jerry
20
- tweet 3000000020 20080120002032 1000000632 0 0 People don't just bump into each other and have sex. This isn't Cinemax. web jerry
21
- tweet 3000000021 20080121002132 1000000632 0 0 People with guns don't understand. That's why they get guns. Too many misunderstandings. web jerry
22
- tweet 3000000022 20080122002232 1000000632 0 0 That... is one magic loogie. web jerry
23
- tweet 3000000023 20080123002332 1000000632 0 0 The road less taken is less taken for a reason. web jerry
24
- tweet 3000000024 20080124002432 1000000632 0 0 The thing about birthday parties is that the first birthday party you have and the last birthday party you have are actually quite similar. web jerry
25
- tweet 3000000025 20080125002531 1000001431 0 0 I'll tell you a little secret about zip codes: they're meaningless. web Newman
26
- tweet 3000000026 20080126002631 1000001431 0 0 Just remember, when you control the mail, you control... information. web Newman
27
- tweet 3000000027 20080127002731 1000001431 0 0 Keith Hernandez! I despise that man! web Newman
28
- tweet 3000000028 20080128002831 1000001431 0 0 My mail truck was just ambushed by a band of backwoods mail-hating survivalists. web Newman
29
- tweet 3000000029 20080129002931 1000001431 0 0 The mail never stops. Just keeps coming and coming. Every day. Then the barcode reader breaks. Then it's Publisher's Clearinghouse day. web Newman
30
- tweet 3000000032 20080130003017 1000004517 0 0 1000000506 3000000031 @ElaineBenes Just saw your dance from the office party. Sweet fancy Moses web ElaineBenes costanza81
31
- tweet 3000000033 20080201003317 1000004517 0 0 A donation has been made in your name to the Human Fund web costanza81
32
- tweet 3000000034 20080202003417 1000004517 0 0 Alright, that's it for me, you've been great! Good night, everybody. web costanza81
33
- tweet 3000000035 20080203003517 1000004517 0 0 Divorce is always hard. Especially on the kids. 'Course I am the result of my parents having stayed together so ya never know. web costanza81
34
- tweet 3000000036 20080204003617 1000004517 0 0 Do you ever get down on your knees and thank God you know me and have access to my dementia? web costanza81
35
- tweet 3000000037 20080205003717 1000004517 0 0 Doing quite well. Yesterday lunch: a soft-boiled egg and a quickie. If I could add TV to the equation, that'd really be the ultimate. web costanza81
36
- tweet 3000000038 20080206003817 1000004517 0 0 Everybody's talkin' at me, I can't hear a word they're sayin'... Just drivin' around in @JonVoight's car... web costanza81
37
- tweet 3000000039 20080207003917 1000004517 0 0 George is gettin' upset! web costanza81
38
- tweet 3000000040 20080208004017 1000004517 0 0 Hi, my name is George, I'm unemployed and I live with my parents. web costanza81
39
- tweet 3000000041 20080209004117 1000004517 0 0 I don't know what it is about that mirror in that bathroom. I love the way I look in it... I feel like Robert Wagner. web costanza81
40
- tweet 3000000042 20080210004217 1000004517 0 0 I don't think I've ever been to an appointment in my life where I wanted the other guy to show up. web costanza81
41
- tweet 3000000043 20080211004317 1000004517 0 0 I flew too close to the sun on wings of pastrami. web costanza81
42
- tweet 3000000044 20080212004417 1000004517 0 0 I have a bad feeling that whenever a lesbian looks at me they think 'That's why I'm not a heterosexual.' web costanza81
43
- tweet 3000000045 20080213004517 1000004517 0 0 I lie every second of the day. My whole life is a sham. web costanza81
44
- tweet 3000000046 20080214004617 1000004517 0 0 I love the mirror in that bathroom. Don't know what the hell it is, I look terrific in that mirror. I feel like @RobertWagner in there web costanza81
45
- tweet 3000000047 20080215004717 1000004517 0 0 I work for #Kruger Industrial Smoothing, we don't care... and it shows. web costanza81
46
- tweet 3000000048 20080216004817 1000004517 0 0 I'm disturbed, I'm depressed, I'm inadequate, I've got it all! web costanza81
47
- tweet 3000000049 20080217004917 1000004517 0 0 I'm speechless. I have no speech. web costanza81
48
- tweet 3000000050 20080218005017 1000004517 0 0 I've driven women to lesbianism before but never to a mental institution. web costanza81
49
- tweet 3000000100 20080411010045 1000724245 0 0 The cat - mmrrrooowwwrr - is out of the bag! web cosmo
50
- tweet 3000000101 20080412010145 1000724245 0 0 They botched my vasectomy. I'm even more potent now. web cosmo
51
- tweet 3000000102 20080413010245 1000724245 0 0 Who's gonna turn down a #JuniorMint? It's chocolate, it's peppermint, it's delicious. It's very refreshing. web cosmo
52
- tweet 3000000103 20080414010345 1000724245 0 0 You got a big job interview, you're a little nervous. Throw back a couple shots of #Hennigans Loose as a goose and ready to roll in no time web cosmo
53
- tweet 3000000104 20080415010420 1000911320 0 0 Feels like an #Arby's night. web Puddy
54
- tweet 3000000107 20080417010732 1000000632 0 0 1000000032 3000000106 @thementee I'm sorry, but I can't be with someone whose mentor is a Costanza. web thementee jerry
55
- tweet 3000000109 20080418010917 1000004517 0 0 She's got a little Marissa Tomei thing goin' on. web costanza81
56
- tweet 3000000110 20080419011032 1000000632 0 0 1000004517 3000000109 @costanza81 Ah, too bad you've got a little George Costanza thing goin' on. web costanza81 jerry
57
- tweet 3000000112 20080420011232 1000000632 0 0 1000000506 3000000111 @elainebenes Are you sure you want to get married? I mean, it's a big change of life. web elainebenes jerry
58
- tweet 3000000113 20080421011306 1000000506 0 0 1000000632 3000000112 @jerry Jerry, it's 3 a.m. and I'm at a cock fight. What am I clinging to? web jerry elainebenes
59
- tweet 3000000115 20080422011532 1000000632 0 0 @cosmo Boy, you sure do have a lot of friends, how come I never see any of these people? web jerry
60
- tweet 3000000116 20080423011645 1000724245 0 0 1000000632 3000000115 @jerry They want to know how come they never see you. web jerry cosmo
61
- tweet 3000000118 20080424011817 1000004517 0 0 This isn't just my wallet. It's an organizer, a memory and an old friend. web costanza81
62
- tweet 3000000119 20080425011932 1000000632 0 0 1000004517 3000000118 @costanza81 Well, your friend is morbidly obese. web costanza81 jerry
63
- tweet 3000000120 20080426012017 1000004517 0 0 1000000632 3000000119 @jerry Well, at least I don't carry a purse. web jerry costanza81
64
- tweet 3000000121 20080427012132 1000000632 0 0 1000004517 3000000120 @costanza81 It's not a purse, it's European. web costanza81 jerry
65
- tweet 3000000123 20080428012332 1000000632 0 0 1000911320 3000000122 @Puddy, this is a pretty good move for you, huh? No more 'grease monkey'. web Puddy jerry
66
- tweet 3000000124 20080429012420 1000911320 0 0 1000000632 3000000123 @jerry I don't much care for that term. I don't know too many monkeys who could take apart a fuel injector. web jerry Puddy
67
- tweet 3000000125 20080430012532 1000000632 0 0 1000911320 3000000124 @Puddy I saw one once that could do sign language. web Puddy jerry
68
- tweet 3000000126 20080501012620 1000911320 0 0 1000000632 3000000125 @jerry Yeah, I saw that one. Uh... Koko. That chimp's alright. High-five. web jerry Puddy
69
- tweet 3000000128 20080502012801 1000410101 0 0 @jerry I heard you went down to this woman's office and heckled her. web Ronnie
70
- tweet 3000000129 20080503012932 1000000632 0 0 1000410101 3000000128 @ronnie Damn right. It's time we stopped being lapdogs. Who are they to heckle us? It's time one of us drew a line in the sand. web ronnie jerry
71
- tweet 3000000130 20080504013001 1000410101 0 0 1000000632 3000000129 @jerry You're like Rosa Parks. You've opened a brand new door for all of us. I can't wait for the next time that somebody heckles me. web jerry Ronnie
72
- tweet 3000000131 20080505013132 1000000632 0 0 1000410101 3000000130 @ronnie Well, that shouldn't be long... web ronnie jerry
73
- tweet 3000000133 20080506013345 1000724245 0 0 You're becoming one of the #glitterati. web cosmo
74
- tweet 3000000134 20080507013417 1000004517 0 0 1000724245 3000000133 @cosmo What's that? web cosmo costanza81
75
- tweet 3000000135 20080508013545 1000724245 0 0 1000000632 3000000134 @jerry People who glitter. web jerry cosmo
76
- tweet 3000000137 20080509013732 1000000632 0 0 1000724245 3000000135 @cosmo So you're saying #UNICEF is a scam? web cosmo jerry
77
- tweet 3000000138 20080510013845 1000724245 0 0 1000000632 3000000137 @jerry Perfect cover for a money laundering operation. No one can keep track of all those kids with the little orange boxes of change web jerry cosmo
78
- tweet 3000000140 20080511014045 1000724245 0 0 Well, our rickshaw is gone. We strapped it to a homeless guy and he bolted. web cosmo
79
- tweet 3000000141 20080512014132 1000000632 0 0 Well, you know, 80% of all homeless rickshaw businesses fail within the first six months. web jerry
80
- tweet 3000000142 20080513014245 1000724245 0 0 We should've got some collateral from him. Like his bag of cans, or his... other bag of cans. web cosmo
81
- tweet 3000000144 20080514014417 1000004517 0 0 She calls me up at my office, she says, 'We have to talk.' web costanza81
82
- tweet 3000000145 20080515014532 1000000632 0 0 1000004517 3000000144 @costanza81 Uh, the four worst words in the English language. web costanza81 jerry
83
- tweet 3000000146 20080516014617 1000004517 0 0 1000000632 3000000145 @jerry That, or 'Whose bra is this?' web jerry costanza81
84
- tweet 3000000148 20080517014845 1000724245 0 0 1000616766 3000000147 @pam Her bouquet cleaved his hardened shell, and fondled his muscled heart. He imbibed her glistening spell, just before the other shoe fell web pam cosmo
85
- tweet 3000000149 20080518014966 1000616766 0 0 1000724245 3000000148 @cosmo, that is so lovely. web cosmo Pam
86
- tweet 3000000151 20080519015120 1000431520 0 0 @cosmo Doing laundry, mending chicken wire, high tea with a Mr. Newman? web dean_jones
87
- tweet 3000000152 20080520015245 1000724245 0 0 1000431520 3000000151 @dean_jones It may seem glamorous, but it's business as usual at #Kramerica. http://pkmeco.com/seinfeld/voice.htm web dean_jones cosmo
88
- tweet 3000000153 20080521015320 1000431520 0 0 1000724245 3000000152 @cosmo Your entire enterprise is nothing more than a solitary man with a messy apartment that may or may not contain a chicken! web cosmo dean_jones
89
- tweet 3000000154 20080522015445 1000724245 0 0 1000431520 3000000153 @dean_jones And with Darrin's help, we'll get that chicken! web dean_jones cosmo
90
- tweet 3000000155 20080523015520 1000431520 0 0 1000724245 3000000154 @cosmo I'm sorry; there's just no way we can allow Darrin to stay with you. web cosmo dean_jones
91
- tweet 3000000156 20080524015645 1000724245 0 0 1000431520 3000000155 @dean_jones Well, this decision seems capricious and arbitrary. web dean_jones cosmo
92
- tweet 3000000157 20080525015720 1000431520 0 0 1000724245 3000000156 @cosmo Your fly's open. web cosmo dean_jones
93
- tweet 3000000164 20081101112406 1000000506 0 0 Ugh, I hate people. web elainebenes
94
- tweet 3000000165 20081102113532 1000000632 0 0 1000000506 3000000164 @elainebenes Yeah, they're the worst. web elainebenes jerry
95
- tweet 3000000167 20081103113732 1000000632 0 0 Oh, this is interesting... Jane's topless. web jerry
96
- tweet 3000000168 20081104113845 1000724245 0 0 1000000632 3000000167 @jerry Yo yo ma. web jerry cosmo
97
- tweet 3000000169 20081105113932 1000000632 0 0 1000000632 3000000167 @jerry Boutros Boutros Ghali... web jerry jerry
98
- tweet 3000000170 20081106113006 1000000506 0 0 1000000632 3000000167 @jerry Nice rack. web jerry elainebenes
99
- tweet 3000000172 20081107113217 1000004517 0 0 1000000028 3000000102 @derek_Jeter Hitting isn't about muscle. Simple physics: calculate velocity v vs trajectory t, gravity g a constant. It's not complicated. web derek_Jeter costanza81
100
- tweet 3000000173 20081108113328 1000000028 0 0 1000004517 3000000172 @costanza81 Now, who are you again? web costanza81 derek_Jeter
101
- tweet 3000000174 20081109114417 1000004517 0 0 1000000028 3000000173 @derek_Jeter George Costanza, assistant to the traveling secretary. web derek_Jeter costanza81
102
- tweet 3000000175 20081110114529 1000000029 0 0 1000004517 3000000174 @costanza81 Are you the guy who put us in that Ramada in Milwaukee? web costanza81 BernieWilliams
103
- tweet 3000000176 20081111114617 1000004517 0 0 1000000029 3000000175 @BernieWilliams Do you wanna talk about hotels, or do you wanna win some ball games? web BernieWilliams costanza81
104
- tweet 3000000177 20081112114728 1000000028 0 0 1000004517 3000000176 @costanza81 We won the World Series. web costanza81 derek_Jeter
105
- tweet 3000000178 20081113114817 1000004517 0 0 1000000028 3000000177 @derek_Jeter @BernieWilliams Yeah ... in six games. web derek_Jeter costanza81
106
- tweet 3000000180 20081114114017 1000004517 0 0 @jerry No one has ever successfully accomplished the Roommate Switch. In the Middle Ages you could get locked up for even suggesting it. web costanza81
107
- tweet 3000000181 20081115114132 1000000632 0 0 1000004517 3000000180 @costanza81 They didn't have roommates in the Middle Ages. web costanza81 jerry
108
- tweet 3000000182 20081116114217 1000004517 0 0 1000000632 3000000181 @jerry Well, I'm sure at some point between the years 800 and 1200, somewhere, there were two women living together. web jerry costanza81
109
- tweet 3000000220 20081217125069 1000000069 0 0 @jerry It's the best. It's gold, jerry. GOLD! web bania
110
- tweet 3000000221 20081218125170 1000004517 0 0 @bubble_boy MOOPS http://pkmeco.com/seinfeld/bubble.htm web costanza81
111
- tweet 3000000226 20080416010632 1000000032 0 0 1000000632 3000000220 @jerry I'm sorry, but I can't be with someone whose prot�g� is a hack. web jerry thementee
112
- tweet 3000000231 20081219003117 1000004517 0 0 1000322339 3000000230 @cushman Before that, I was in real estate. I quit because the boss wouldn't let me use his private bathroom. That was it. web cushman costanza81
113
- tweet 3000000232 20081220003217 1000004517 0 0 1000322339 3000000230 @cushman My last job was in publishing. I got fired for having sex in my office with the cleaning woman. web cushman costanza81
114
- tweet 3000000259 20081221015939 1000322339 0 0 1000202970 3000000250 @bigstein @costanza81 is one of the applicants: the complete opposite of every applicant we've seen. web bigstein Cushman
115
- tweet 3000000260 20081222112017 1000004517 0 0 1000202970 3000000250 @bigstein With all due respect, I find it very hard to see the logic behind some of the moves you have made with this fine organization web bigstein costanza81
116
- tweet 3000000261 20081223112117 1000004517 0 0 1000202970 3000000250 @bigstein We have watched you take our beloved EYankees and reduced them to a laughing stock, all for the glorification of your massive ego web bigstein costanza81
117
- tweet 3000000262 20081224112270 1000202970 0 0 1000322339 3000000261 @cushman Hire this man! web cushman bigstein
118
- tweet 3000000300 20080110001032 1000000632 0 0 1000004517 3000000280 @costanza81 #belly Helllllooooo. La, la, la. http://pkmeco.com/seinfeld/voice.htm web costanza81 jerry
119
- tweet 3000000351 20080219005117 1000004517 0 0 If she can't find me, she can't break up with me. web costanza81
120
- tweet 3000000352 20080220005217 1000004517 0 0 It became very clear to me sitting out there today that every decision I've made in my entire life has been wrong. web costanza81
121
- tweet 3000000353 20080221005317 1000004517 0 0 Just remember, it's not a lie if you believe it. #advice web costanza81
122
- tweet 3000000354 20080222005417 1000004517 0 0 Just threw away lifetime of guilt-free sex+floor seats @ every #MSG event.So please, a little respect. For I am Costanza, Lord of the Idiots web costanza81
123
- tweet 3000000355 20080223005517 1000004517 0 0 My father was a quitter, my grandfather was a quitter, I was raised to give up. It's one of the few things I do well. web costanza81
124
- tweet 3000000356 20080224005617 1000004517 0 0 My life is the complete opposite of everything I want it to be. Every instinct I have, in every aspect of life -- it's all been wrong web costanza81
125
- tweet 3000000357 20080225005717 1000004517 0 0 That's why I don't have cable in my house. Because of that naked station. I'd never turn it off. Wouldn't sleep, Wouldn't eat. web costanza81
126
- tweet 3000000358 20080226005817 1000004517 0 0 If I had the naked station, they'd find me sitting there in my pajamas with drool coming down my face web costanza81
127
- tweet 3000000359 20080227005917 1000004517 0 0 She threw toupee out tbe window. Feel like my old self again. Neurotic, paranoid, totally inadequate, completely insecure. It's a pleasure web costanza81
128
- tweet 3000000360 20080301006017 1000004517 0 0 The sea was angry that day, my friends. Like an old man trying to send back soup in a deli. web costanza81
129
- tweet 3000000361 20080302006117 1000004517 0 0 There is no bigger loser than me! web costanza81
130
- tweet 3000000362 20080303006217 1000004517 0 0 This thing is like an onion: the more layers you peel, the more it stinks! web costanza81
131
- tweet 3000000363 20080304006317 1000004517 0 0 Who buys an umbrella anyway? You can get them for free at the coffee shop in those metal cans. web costanza81
132
- tweet 3000000364 20080305006417 1000004517 0 0 You can stuff your sorries in a sack, mister! web costanza81
133
- tweet 3000000365 20080306006517 1000004517 0 0 You know I always wanted to pretend I was an #architect. web costanza81
134
- tweet 3000000366 20080307006617 1000004517 0 0 You're killing independent George. web costanza81
135
- tweet 3000000367 20080308006767 1000005467 0 0 George, #festivus is your heritage! web FrankCostanza
136
- tweet 3000000368 20080309006867 1000005467 0 0 I find tinsel distracting. web FrankCostanza
137
- tweet 3000000369 20080310006967 1000005467 0 0 I have been performing feats of strength all morning. web FrankCostanza
138
- tweet 3000000370 20080311007067 1000005467 0 0 I'm like the Phoenix, rising from Arizona. web FrankCostanza
139
- tweet 3000000371 20080312007167 1000005467 0 0 Serenity now. SERENITY NOW! http://pkmeco.com/seinfeld/serenity.htm web FrankCostanza
140
- tweet 3000000372 20080313007267 1000005467 0 0 The doll was destroyed. But out of that, a new holiday was born. A #FESTIVUS FOR THE REST-OF-US. web FrankCostanza
141
- tweet 3000000373 20080314007367 1000005467 0 0 You have the rooster, the hen, and the chicken. The rooster goes with the chicken... So who's having sex with the hen? web FrankCostanza
142
- tweet 3000000374 20080315007470 1000202970 0 0 Ham+cheese again. And no fancy mustard. I love that fancy mustard. You could put that fancy mustard on a shoe, it'd taste pretty good to me web bigstein
143
- tweet 3000000375 20080316007583 1000296583 0 0 I don't think there's any greater tragedy than when parents outlive their children. web Ross
144
- tweet 3000000376 20080317007664 1000313364 0 0 You very bad man, Jerry. Very bad man. web BabuBhatt
145
- tweet 3000000377 20080318007781 1000530581 0 0 The speak of a man so virile,so potent,to spend a night with such a man is to enter a world of sensual delights most women dare not of web Katya
146
- tweet 3000000378 20080319007883 1000566783 0 0 Serenity now. Insanity later. http://pkmeco.com/seinfeld/serenity.htm web LloydBraun
147
- tweet 3000000379 20080320007962 1000606862 0 0 Of course the bra isn't going to fit on a leotard. A bra's got to go up against the skin. Like a glove. web JackieChiles
148
- tweet 3000000380 20080321008062 1000606862 0 0 This is the most public yet of my many humiliations. web JackieChiles
149
- tweet 3000000381 20080322008117 1000641417 0 0 @ElaineBenes You've tested positive for opium. That's right. White Lotus. Yam-yam. Shanghai Sally. web JPeterman
150
- tweet 3000000382 20080323008245 1000724245 0 0 #baseballcamp ended a few days early. There was an incident. I punched Mickey Mantle in the mouth. web cosmo
151
- tweet 3000000383 20080324008345 1000724245 0 0 #newmervgriffin Well, we're talking to Elaine Benes, adult film star, on the set of her new movie 'Elaine Does the Upper West Side' web cosmo
152
- tweet 3000000384 20080325008445 1000724245 0 0 @Bob_Sacamano came here for a hernia operation. Oh, yeah, routine surgery. Now he's sitting in a chair by a window going 'My name is Bob!' web cosmo
153
- tweet 3000000385 20080326008545 1000724245 0 0 Boy, these pretzels are makin' me thirsty. web cosmo
154
- tweet 3000000386 20080327008645 1000724245 0 0 Celebration time. That coffee table book I wrote? Well, the company sold the movie rights to it. I'm officially retired. web cosmo
155
- tweet 3000000387 20080328008745 1000724245 0 0 Here's to feeling good all the time. web cosmo
156
- tweet 3000000388 20080329008845 1000724245 0 0 Hoochie Mama. web cosmo
157
- tweet 3000000389 20080330008945 1000724245 0 0 I'm at the corner of 1st and 1st... How can the same street intersect with itself? It must be at the nexus of the universe. web cosmo
158
- tweet 3000000390 20080401009045 1000724245 0 0 I'm on the Mexican, woah oh oh, radio. web cosmo
159
- tweet 3000000391 20080402009145 1000724245 0 0 If you'd have told me someday I'd solve the energy problem, I'd have said you're crazy. Now let's push this giant ball of oil out the window web cosmo
160
- tweet 3000000392 20080403009245 1000724245 0 0 If you're not gonna be a part of a civil society, then just get in your car and drive on over to the East Side. web cosmo
161
- tweet 3000000393 20080404009345 1000724245 0 0 It's a #Festivus miracle. web cosmo
162
- tweet 3000000394 20080405009445 1000724245 0 0 Jerry, I know myself. And if I'm on the streets, and it starts to go down, I don't back off, until its finished. web cosmo
163
- tweet 3000000395 20080406009545 1000724245 0 0 Just had a hot bowl of #mulligatawny: delightful Hindu concoction simmered to perfection by one of the great soup artisans of the modern era web cosmo
164
- tweet 3000000396 20080407009645 1000724245 0 0 That's right folks. Just had 3 shots of #Hennigan's, don't even smell, can go around drunk all day. Hennigan's: the no smell, no tell Scotch web cosmo
165
- tweet 3000000397 20080408009745 1000724245 0 0 Remember my idea about rickshaws in NY? We're gonna make it happen. Guy in the Hong Kong post office is shipping us a rickshaw. Can't miss. web cosmo
166
- tweet 3000000398 20080409009845 1000724245 0 0 See, this is what the holidays are all about. Three buddies sitting around chewing gum. web cosmo
167
- tweet 3000000399 20080410009945 1000724245 0 0 The carpet sweeper is the biggest scam perpetrated on the American public since One Hour Martinizing. web cosmo