gtl-parsley-ruby 0.5.0

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 (299) hide show
  1. data/CHANGELOG +3 -0
  2. data/README +32 -0
  3. data/Rakefile +57 -0
  4. data/VERSION +1 -0
  5. data/ext/cparsley.c +152 -0
  6. data/ext/extconf.rb +82 -0
  7. data/ext/parsley/.gitignore +32 -0
  8. data/ext/parsley/AUTHORS +1 -0
  9. data/ext/parsley/ChangeLog +0 -0
  10. data/ext/parsley/HACKING +4 -0
  11. data/ext/parsley/INSTALL +73 -0
  12. data/ext/parsley/INTRO +84 -0
  13. data/ext/parsley/Makefile.am +80 -0
  14. data/ext/parsley/Makefile.in +1009 -0
  15. data/ext/parsley/NEWS +0 -0
  16. data/ext/parsley/PAPER +36 -0
  17. data/ext/parsley/Portfile +18 -0
  18. data/ext/parsley/Portfile.in +17 -0
  19. data/ext/parsley/README.C-LANG +92 -0
  20. data/ext/parsley/README.markdown +1 -0
  21. data/ext/parsley/TODO +39 -0
  22. data/ext/parsley/VERSION +1 -0
  23. data/ext/parsley/aclocal.m4 +8918 -0
  24. data/ext/parsley/bootstrap.sh +6 -0
  25. data/ext/parsley/config.guess +1561 -0
  26. data/ext/parsley/config.sub +1686 -0
  27. data/ext/parsley/configure +13437 -0
  28. data/ext/parsley/configure.ac +46 -0
  29. data/ext/parsley/depcomp +630 -0
  30. data/ext/parsley/functions.c +368 -0
  31. data/ext/parsley/functions.h +19 -0
  32. data/ext/parsley/generate_bisect.sh +12 -0
  33. data/ext/parsley/hooks/prepare-commit-msg +16 -0
  34. data/ext/parsley/install-sh +520 -0
  35. data/ext/parsley/json-c-0.9/AUTHORS +2 -0
  36. data/ext/parsley/json-c-0.9/COPYING +19 -0
  37. data/ext/parsley/json-c-0.9/ChangeLog +103 -0
  38. data/ext/parsley/json-c-0.9/INSTALL +302 -0
  39. data/ext/parsley/json-c-0.9/Makefile.am +43 -0
  40. data/ext/parsley/json-c-0.9/Makefile.in +800 -0
  41. data/ext/parsley/json-c-0.9/NEWS +1 -0
  42. data/ext/parsley/json-c-0.9/README +20 -0
  43. data/ext/parsley/json-c-0.9/README-WIN32.html +57 -0
  44. data/ext/parsley/json-c-0.9/README.html +32 -0
  45. data/ext/parsley/json-c-0.9/aclocal.m4 +8909 -0
  46. data/ext/parsley/json-c-0.9/arraylist.c +94 -0
  47. data/ext/parsley/json-c-0.9/arraylist.h +53 -0
  48. data/ext/parsley/json-c-0.9/bits.h +27 -0
  49. data/ext/parsley/json-c-0.9/config.guess +1561 -0
  50. data/ext/parsley/json-c-0.9/config.h +125 -0
  51. data/ext/parsley/json-c-0.9/config.h.in +124 -0
  52. data/ext/parsley/json-c-0.9/config.h.win32 +94 -0
  53. data/ext/parsley/json-c-0.9/config.sub +1686 -0
  54. data/ext/parsley/json-c-0.9/configure +13084 -0
  55. data/ext/parsley/json-c-0.9/configure.in +33 -0
  56. data/ext/parsley/json-c-0.9/debug.c +98 -0
  57. data/ext/parsley/json-c-0.9/debug.h +50 -0
  58. data/ext/parsley/json-c-0.9/depcomp +630 -0
  59. data/ext/parsley/json-c-0.9/doc/html/annotated.html +40 -0
  60. data/ext/parsley/json-c-0.9/doc/html/arraylist_8h.html +240 -0
  61. data/ext/parsley/json-c-0.9/doc/html/bits_8h.html +150 -0
  62. data/ext/parsley/json-c-0.9/doc/html/classes.html +36 -0
  63. data/ext/parsley/json-c-0.9/doc/html/config_8h.html +612 -0
  64. data/ext/parsley/json-c-0.9/doc/html/debug_8h.html +392 -0
  65. data/ext/parsley/json-c-0.9/doc/html/doxygen.css +441 -0
  66. data/ext/parsley/json-c-0.9/doc/html/doxygen.png +0 -0
  67. data/ext/parsley/json-c-0.9/doc/html/files.html +42 -0
  68. data/ext/parsley/json-c-0.9/doc/html/functions.html +206 -0
  69. data/ext/parsley/json-c-0.9/doc/html/functions_vars.html +206 -0
  70. data/ext/parsley/json-c-0.9/doc/html/globals.html +459 -0
  71. data/ext/parsley/json-c-0.9/doc/html/globals_defs.html +202 -0
  72. data/ext/parsley/json-c-0.9/doc/html/globals_enum.html +50 -0
  73. data/ext/parsley/json-c-0.9/doc/html/globals_eval.html +135 -0
  74. data/ext/parsley/json-c-0.9/doc/html/globals_func.html +194 -0
  75. data/ext/parsley/json-c-0.9/doc/html/globals_type.html +70 -0
  76. data/ext/parsley/json-c-0.9/doc/html/globals_vars.html +50 -0
  77. data/ext/parsley/json-c-0.9/doc/html/index.html +25 -0
  78. data/ext/parsley/json-c-0.9/doc/html/json_8h.html +32 -0
  79. data/ext/parsley/json-c-0.9/doc/html/json__object_8h.html +1150 -0
  80. data/ext/parsley/json-c-0.9/doc/html/json__object__private_8h.html +75 -0
  81. data/ext/parsley/json-c-0.9/doc/html/json__tokener_8h.html +366 -0
  82. data/ext/parsley/json-c-0.9/doc/html/json__util_8h.html +106 -0
  83. data/ext/parsley/json-c-0.9/doc/html/linkhash_8h.html +740 -0
  84. data/ext/parsley/json-c-0.9/doc/html/printbuf_8h.html +214 -0
  85. data/ext/parsley/json-c-0.9/doc/html/structarray__list.html +104 -0
  86. data/ext/parsley/json-c-0.9/doc/html/structjson__object.html +141 -0
  87. data/ext/parsley/json-c-0.9/doc/html/structjson__object__iter.html +87 -0
  88. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener.html +206 -0
  89. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener__srec.html +104 -0
  90. data/ext/parsley/json-c-0.9/doc/html/structlh__entry.html +105 -0
  91. data/ext/parsley/json-c-0.9/doc/html/structlh__table.html +275 -0
  92. data/ext/parsley/json-c-0.9/doc/html/structprintbuf.html +87 -0
  93. data/ext/parsley/json-c-0.9/doc/html/tab_b.gif +0 -0
  94. data/ext/parsley/json-c-0.9/doc/html/tab_l.gif +0 -0
  95. data/ext/parsley/json-c-0.9/doc/html/tab_r.gif +0 -0
  96. data/ext/parsley/json-c-0.9/doc/html/tabs.css +105 -0
  97. data/ext/parsley/json-c-0.9/doc/html/unionjson__object_1_1data.html +140 -0
  98. data/ext/parsley/json-c-0.9/install-sh +520 -0
  99. data/ext/parsley/json-c-0.9/json.h +31 -0
  100. data/ext/parsley/json-c-0.9/json.pc +11 -0
  101. data/ext/parsley/json-c-0.9/json.pc.in +11 -0
  102. data/ext/parsley/json-c-0.9/json_object.c +512 -0
  103. data/ext/parsley/json-c-0.9/json_object.h +319 -0
  104. data/ext/parsley/json-c-0.9/json_object_private.h +52 -0
  105. data/ext/parsley/json-c-0.9/json_tokener.c +628 -0
  106. data/ext/parsley/json-c-0.9/json_tokener.h +98 -0
  107. data/ext/parsley/json-c-0.9/json_util.c +122 -0
  108. data/ext/parsley/json-c-0.9/json_util.h +31 -0
  109. data/ext/parsley/json-c-0.9/libjson.la +41 -0
  110. data/ext/parsley/json-c-0.9/libtool +8890 -0
  111. data/ext/parsley/json-c-0.9/linkhash.c +216 -0
  112. data/ext/parsley/json-c-0.9/linkhash.h +272 -0
  113. data/ext/parsley/json-c-0.9/ltmain.sh +8406 -0
  114. data/ext/parsley/json-c-0.9/missing +376 -0
  115. data/ext/parsley/json-c-0.9/printbuf.c +149 -0
  116. data/ext/parsley/json-c-0.9/printbuf.h +64 -0
  117. data/ext/parsley/json-c-0.9/stamp-h1 +1 -0
  118. data/ext/parsley/json-c-0.9/test1 +130 -0
  119. data/ext/parsley/json-c-0.9/test1.c +164 -0
  120. data/ext/parsley/json-c-0.9/test2 +130 -0
  121. data/ext/parsley/json-c-0.9/test2.c +20 -0
  122. data/ext/parsley/json-c-0.9/test3 +130 -0
  123. data/ext/parsley/json-c-0.9/test3.c +23 -0
  124. data/ext/parsley/libtool +8890 -0
  125. data/ext/parsley/ltmain.sh +8406 -0
  126. data/ext/parsley/missing +376 -0
  127. data/ext/parsley/parsed_xpath.c +168 -0
  128. data/ext/parsley/parsed_xpath.h +34 -0
  129. data/ext/parsley/parser.y +631 -0
  130. data/ext/parsley/parsley.c +793 -0
  131. data/ext/parsley/parsley.h +87 -0
  132. data/ext/parsley/parsley_main.c +185 -0
  133. data/ext/parsley/parsleyc_main.c +108 -0
  134. data/ext/parsley/regexp.c +359 -0
  135. data/ext/parsley/regexp.h +36 -0
  136. data/ext/parsley/scanner.l +221 -0
  137. data/ext/parsley/test/ambiguous.html +207 -0
  138. data/ext/parsley/test/ambiguous.json +1 -0
  139. data/ext/parsley/test/ambiguous.let +6 -0
  140. data/ext/parsley/test/array-regression.html +5 -0
  141. data/ext/parsley/test/array-regression.json +1 -0
  142. data/ext/parsley/test/array-regression.let +10 -0
  143. data/ext/parsley/test/backslash.html +5 -0
  144. data/ext/parsley/test/backslash.json +1 -0
  145. data/ext/parsley/test/backslash.let +3 -0
  146. data/ext/parsley/test/bang.html +17 -0
  147. data/ext/parsley/test/bang.json +1 -0
  148. data/ext/parsley/test/bang.let +6 -0
  149. data/ext/parsley/test/collate_regression.html +324 -0
  150. data/ext/parsley/test/collate_regression.json +1 -0
  151. data/ext/parsley/test/collate_regression.let +9 -0
  152. data/ext/parsley/test/contains.html +3 -0
  153. data/ext/parsley/test/contains.json +1 -0
  154. data/ext/parsley/test/contains.let +3 -0
  155. data/ext/parsley/test/content.html +13 -0
  156. data/ext/parsley/test/content.json +1 -0
  157. data/ext/parsley/test/content.let +7 -0
  158. data/ext/parsley/test/cool.html +575 -0
  159. data/ext/parsley/test/cool.json +1 -0
  160. data/ext/parsley/test/cool.let +9 -0
  161. data/ext/parsley/test/craigs-simple.html +207 -0
  162. data/ext/parsley/test/craigs-simple.json +1 -0
  163. data/ext/parsley/test/craigs-simple.let +6 -0
  164. data/ext/parsley/test/craigs.html +207 -0
  165. data/ext/parsley/test/craigs.json +1 -0
  166. data/ext/parsley/test/craigs.let +9 -0
  167. data/ext/parsley/test/crash.html +157 -0
  168. data/ext/parsley/test/crash.json +1 -0
  169. data/ext/parsley/test/crash.let +1 -0
  170. data/ext/parsley/test/css_attr.html +3 -0
  171. data/ext/parsley/test/css_attr.json +1 -0
  172. data/ext/parsley/test/css_attr.let +3 -0
  173. data/ext/parsley/test/default-namespace.json +1 -0
  174. data/ext/parsley/test/default-namespace.let +3 -0
  175. data/ext/parsley/test/default-namespace.xml +1493 -0
  176. data/ext/parsley/test/div.html +8 -0
  177. data/ext/parsley/test/div.json +1 -0
  178. data/ext/parsley/test/div.let +10 -0
  179. data/ext/parsley/test/empty.html +3 -0
  180. data/ext/parsley/test/empty.json +1 -0
  181. data/ext/parsley/test/empty.let +1 -0
  182. data/ext/parsley/test/emptyish.html +207 -0
  183. data/ext/parsley/test/emptyish.let +3 -0
  184. data/ext/parsley/test/fictional-opt.html +43 -0
  185. data/ext/parsley/test/fictional-opt.json +1 -0
  186. data/ext/parsley/test/fictional-opt.let +14 -0
  187. data/ext/parsley/test/fictional.html +43 -0
  188. data/ext/parsley/test/fictional.json +1 -0
  189. data/ext/parsley/test/fictional.let +14 -0
  190. data/ext/parsley/test/function-magic.html +9 -0
  191. data/ext/parsley/test/function-magic.json +1 -0
  192. data/ext/parsley/test/function-magic.let +8 -0
  193. data/ext/parsley/test/hn.html +32 -0
  194. data/ext/parsley/test/hn.json +1 -0
  195. data/ext/parsley/test/hn.let +8 -0
  196. data/ext/parsley/test/malformed-array.html +2329 -0
  197. data/ext/parsley/test/malformed-array.json +1 -0
  198. data/ext/parsley/test/malformed-array.let +22 -0
  199. data/ext/parsley/test/malformed-expr.html +2329 -0
  200. data/ext/parsley/test/malformed-expr.json +1 -0
  201. data/ext/parsley/test/malformed-expr.let +16 -0
  202. data/ext/parsley/test/malformed-function.html +845 -0
  203. data/ext/parsley/test/malformed-function.json +197 -0
  204. data/ext/parsley/test/malformed-function.let +8 -0
  205. data/ext/parsley/test/malformed-json.html +2329 -0
  206. data/ext/parsley/test/malformed-json.json +1 -0
  207. data/ext/parsley/test/malformed-json.let +6 -0
  208. data/ext/parsley/test/malformed-xpath.html +8 -0
  209. data/ext/parsley/test/malformed-xpath.json +1 -0
  210. data/ext/parsley/test/malformed-xpath.let +7 -0
  211. data/ext/parsley/test/match.json +1 -0
  212. data/ext/parsley/test/match.let +9 -0
  213. data/ext/parsley/test/match.xml +11 -0
  214. data/ext/parsley/test/math_ambiguity.html +9 -0
  215. data/ext/parsley/test/math_ambiguity.json +1 -0
  216. data/ext/parsley/test/math_ambiguity.let +5 -0
  217. data/ext/parsley/test/nth-regression.html +13 -0
  218. data/ext/parsley/test/nth-regression.json +1 -0
  219. data/ext/parsley/test/nth-regression.let +3 -0
  220. data/ext/parsley/test/optional.html +2328 -0
  221. data/ext/parsley/test/optional.json +1 -0
  222. data/ext/parsley/test/optional.let +8 -0
  223. data/ext/parsley/test/outer-xml.html +6 -0
  224. data/ext/parsley/test/outer-xml.json +1 -0
  225. data/ext/parsley/test/outer-xml.let +5 -0
  226. data/ext/parsley/test/position.html +8 -0
  227. data/ext/parsley/test/position.json +1 -0
  228. data/ext/parsley/test/position.let +6 -0
  229. data/ext/parsley/test/question_regressions.html +443 -0
  230. data/ext/parsley/test/question_regressions.json +1 -0
  231. data/ext/parsley/test/question_regressions.let +6 -0
  232. data/ext/parsley/test/quote.json +1 -0
  233. data/ext/parsley/test/quote.let +8 -0
  234. data/ext/parsley/test/quote.xml +11 -0
  235. data/ext/parsley/test/reddit.html +1 -0
  236. data/ext/parsley/test/reddit.json +1 -0
  237. data/ext/parsley/test/reddit.let +12 -0
  238. data/ext/parsley/test/remote-fail.json +1 -0
  239. data/ext/parsley/test/remote.html +3 -0
  240. data/ext/parsley/test/remote.json +1 -0
  241. data/ext/parsley/test/remote.let +4 -0
  242. data/ext/parsley/test/replace.json +1 -0
  243. data/ext/parsley/test/replace.let +9 -0
  244. data/ext/parsley/test/replace.xml +11 -0
  245. data/ext/parsley/test/scope.html +10 -0
  246. data/ext/parsley/test/scope.json +1 -0
  247. data/ext/parsley/test/scope.let +6 -0
  248. data/ext/parsley/test/segfault.html +5 -0
  249. data/ext/parsley/test/segfault.json +1 -0
  250. data/ext/parsley/test/segfault.let +9 -0
  251. data/ext/parsley/test/sg-wrap.html +5 -0
  252. data/ext/parsley/test/sg-wrap.json +1 -0
  253. data/ext/parsley/test/sg-wrap.let +3 -0
  254. data/ext/parsley/test/sg_off.html +5 -0
  255. data/ext/parsley/test/sg_off.json +1 -0
  256. data/ext/parsley/test/sg_off.let +3 -0
  257. data/ext/parsley/test/test.json +1 -0
  258. data/ext/parsley/test/test.let +6 -0
  259. data/ext/parsley/test/test.xml +11 -0
  260. data/ext/parsley/test/trivial.html +2329 -0
  261. data/ext/parsley/test/trivial.json +1 -0
  262. data/ext/parsley/test/trivial.let +4 -0
  263. data/ext/parsley/test/trivial2.html +2329 -0
  264. data/ext/parsley/test/trivial2.json +1 -0
  265. data/ext/parsley/test/trivial2.let +7 -0
  266. data/ext/parsley/test/unbang.html +17 -0
  267. data/ext/parsley/test/unbang.json +1 -0
  268. data/ext/parsley/test/unbang.let +6 -0
  269. data/ext/parsley/test/unicode.html +3 -0
  270. data/ext/parsley/test/unicode.json +1 -0
  271. data/ext/parsley/test/unicode.let +1 -0
  272. data/ext/parsley/test/whitespace.html +8 -0
  273. data/ext/parsley/test/whitespace.json +1 -0
  274. data/ext/parsley/test/whitespace.let +3 -0
  275. data/ext/parsley/test/whitespace_regression.html +4 -0
  276. data/ext/parsley/test/whitespace_regression.json +1 -0
  277. data/ext/parsley/test/whitespace_regression.let +3 -0
  278. data/ext/parsley/test/yelp-benchmark.rb +53 -0
  279. data/ext/parsley/test/yelp-home.html +1004 -0
  280. data/ext/parsley/test/yelp-home.json +1 -0
  281. data/ext/parsley/test/yelp-home.let +6 -0
  282. data/ext/parsley/test/yelp.html +2329 -0
  283. data/ext/parsley/test/yelp.json +1 -0
  284. data/ext/parsley/test/yelp.let +12 -0
  285. data/ext/parsley/test/youtube.html +1940 -0
  286. data/ext/parsley/test/youtube.let +11 -0
  287. data/ext/parsley/util.c +237 -0
  288. data/ext/parsley/util.h +34 -0
  289. data/ext/parsley/xml2json.c +47 -0
  290. data/ext/parsley/xml2json.h +14 -0
  291. data/ext/parsley/y.tab.h +222 -0
  292. data/ext/parsley/ylwrap +222 -0
  293. data/lib/parsley.rb +84 -0
  294. data/test/test_parsley.rb +120 -0
  295. data/test/yelp-benchmark.rb +53 -0
  296. data/test/yelp-home.html +1004 -0
  297. data/test/yelp-home.let +6 -0
  298. data/test/yelp.html +2329 -0
  299. metadata +366 -0
@@ -0,0 +1 @@
1
+ { "days": [ { "day": "Today", "links": [ { "title": "search freebies and free samples", "url": "\/search.html" }, { "title": "link to freebie finder", "url": "\/link.html" }, { "title": "friends of freebie finder", "url": "\/links.html" }, { "title": "freebie tips", "url": "\/tips.html" }, { "title": "freebies by email", "url": "http:\/\/www.feedblitz.com\/f\/?Sub=70455" }, { "title": "forum", "url": "http:\/\/forum.absurdlycool.com\/" }, { "title": "freebies by RSS", "url": "\/rss.html" }, { "title": "suggestions are always appreciated", "url": "\/contact.cgi" }, { "title": "check out our new forum!", "url": "http:\/\/forum.absurdlycool.com" }, { "title": "Introducing Freebie Finder Forums!", "url": "http:\/\/forum.absurdlycool.com\/" }, { "title": "uk", "url": "http:\/\/absurdlycool.com\/UK\/all-freebies" }, { "title": "canada", "url": "http:\/\/absurdlycool.com\/CANADA\/all-freebies" }, { "title": "usa", "url": "http:\/\/absurdlycool.com\/USA\/all-freebies" }, { "title": "If you join Hollywood Video today, youll get a free rental. Just", "url": "http:\/\/www.hollywoodvideo.com\/specials\/newmembers.aspx" }, { "title": "media", "url": "http:\/\/absurdlycool.com\/all\/media-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10372\/if-you-join-hollywood-video-today-youll-get-a-free-rental-just" }, { "title": "The Slip--Free Download of the New Nine Inch Nails Album", "url": "http:\/\/dl.nin.com\/theslip\/signup" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "Pumpkinhead", "url": "http:\/\/www.webspawner.com\/users\/pumpkinheadtwo\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10373\/the-slip-free-download-of-the-new-nine-inch-nails-album" }, { "title": "Beauty :: Free chocolate cupcake lipsaver & soda pop", "url": "http:\/\/www.teenfreeway.com\/choc_cupcakes\/bodsl1.htm" }, { "title": "beauty", "url": "http:\/\/absurdlycool.com\/all\/beauty-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10374\/beauty-free-chocolate-cupcake-lipsaver-soda-pop" }, { "title": "Poster--Free Passover Poster from the Afikim Foundation", "url": "http:\/\/www.afikimfoundation.org\/posters\/index.php?p=passover" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "Pumpkinhead", "url": "http:\/\/www.webspawner.com\/users\/pumpkinheadtwo\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10375\/poster-free-passover-poster-from-the-afikim-foundation" }, { "title": "Free Museum Admission this Weekend for Bank of America Card Holders", "url": "http:\/\/promotions.bankofamerica.com\/museums\/" }, { "title": "financial", "url": "http:\/\/absurdlycool.com\/all\/financial-freebies" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Pumpkinhead", "url": "http:\/\/www.webspawner.com\/users\/pumpkinheadtwo\/" }, { "title": "FreeSnatcher", "url": "http:\/\/www.freesnatcher.com\/" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10369\/free-museum-admission-this-weekend-for-bank-of-america-card-holders" }, { "title": "Food :: Free Single Scoop Waffle Cone at Brusters", "url": "http:\/\/brusters.com\/storefun\/pjweekend.asp" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Free Channel", "url": "http:\/\/www.freechannel.net\/new.html" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10370\/food-free-single-scoop-waffle-cone-at-brusters" }, { "title": "Miss March--Free Tickets to Movie Screenings of Miss March", "url": "http:\/\/rsvp.foxsearchlight.com\/RSVPSystem\/index.php?movie=66" }, { "title": "media", "url": "http:\/\/absurdlycool.com\/all\/media-freebies" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Pumpkinhead", "url": "http:\/\/www.webspawner.com\/users\/pumpkinheadtwo\/" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10371\/miss-march-free-tickets-to-movie-screenings-of-miss-march" }, { "title": "Free Organic Valley Farm Friends welcome packet", "url": "http:\/\/www.organicvalley.coop\/farm-friends\/join-farm-friends\/" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "Free Channel", "url": "http:\/\/www.freechannel.net\/new.html" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10364\/free-organic-valley-farm-friends-welcome-packet" }, { "title": "FREE Tote Bag from Red Gold", "url": "http:\/\/www.redgold.com\/redgold\/contest-details.aspx?contest_id=6#" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "Free Channel", "url": "http:\/\/www.freechannel.net\/new.html" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10365\/free-tote-bag-from-red-gold" }, { "title": "Free Small Fry & Small Fountain Drink Coupon", "url": "http:\/\/coupon.hangintherejack.com\/fry-drink.php#" }, { "title": "coupons", "url": "http:\/\/absurdlycool.com\/all\/coupons" }, { "title": "Free Channel", "url": "http:\/\/www.freechannel.net\/new.html" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10366\/free-small-fry-small-fountain-drink-coupon" }, { "title": "Fragrance--Free sample of Elements Fragrance from Moble", "url": "http:\/\/www.moblae.com\/shop\/cart.php?m=product_list&c=6" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "Pumpkinhead", "url": "http:\/\/www.webspawner.com\/users\/pumpkinheadtwo\/" }, { "title": "Free Channel", "url": "http:\/\/www.freechannel.net\/new.html" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10367\/fragrance-free-sample-of-elements-fragrance-from-moble" }, { "title": "Free Chocolate Cupcake Lipsaver And Soda Pop Shower Gel?", "url": "http:\/\/www.teenfreeway.com\/choc_cupcakes\/bodsl1.htm#" }, { "title": "home", "url": "http:\/\/absurdlycool.com\/all\/home-freebies" }, { "title": "Free Channel", "url": "http:\/\/www.freechannel.net\/new.html" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10368\/free-chocolate-cupcake-lipsaver-and-soda-pop-shower-gel" }, { "title": "Click here to receive your free packet of seeds to grow your own", "url": "http:\/\/www.ebfarm.com\/AboutUs\/GrowYourOwnOrganicSalad\/seedpacket1.aspx" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "Free Sample Direct", "url": "http:\/\/freesamplesdirect.com\/blog\/" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "Freebeez and Dealz", "url": "http:\/\/www.freebeezndealz.com\/" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Yes All 4 Free", "url": "http:\/\/www.yesall4free.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10358\/click-here-to-receive-your-free-packet-of-seeds-to-grow-your-own" }, { "title": "Purex 2X Ultra Concentrate Detergent Free Sample - Canada", "url": "http:\/\/www.freesample-purex.ca\/" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "FreakyFreddies", "url": "http:\/\/www.freakyfreddies.com\/canadianfreebies.htm" }, { "title": "Free Stuff Page", "url": "http:\/\/www.freestuffpage.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10359\/purex-2x-ultra-concentrate-detergent-free-sample-canada" }, { "title": "Free Arthritis Todays 2009 Drug Guide", "url": "http:\/\/afstore.arthritis.org\/AFConsumerStore\/DetailsAction.do" }, { "title": "Fab Free", "url": "http:\/\/www.fabfree.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10360\/free-arthritis-todays-2009-drug-guide" }, { "title": "Free Sample Of Loreal EverPure", "url": "http:\/\/www.lorealparisusa.com\/_us\/_en\/default.aspx#" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "Fab Free", "url": "http:\/\/www.fabfree.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10361\/free-sample-of-loreal-everpure" }, { "title": "Sample Of Dove Intense Damage Therapy", "url": "http:\/\/content.dove.us\/dovehairmsn\/free_sample.aspx?product=intense_damage&utm_source=null" }, { "title": "health", "url": "http:\/\/absurdlycool.com\/all\/health-freebies" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "Yes All 4 Free", "url": "http:\/\/www.yesall4free.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10362\/sample-of-dove-intense-damage-therapy" }, { "title": "Sample Of Dove Heat Defense Therapy", "url": "http:\/\/content.dove.us\/dovehairmsn\/free_sample.aspx?product=heat_defense&utm_source=null" }, { "title": "health", "url": "http:\/\/absurdlycool.com\/all\/health-freebies" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "Yes All 4 Free", "url": "http:\/\/www.yesall4free.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10363\/sample-of-dove-heat-defense-therapy" } ] }, { "day": "Fri, 6 Mar 2009", "links": [ { "title": "Back Alley Coffee Free Spoon", "url": "http:\/\/backalleycoffee.net\/backalleyspoon.php" }, { "title": "home", "url": "http:\/\/absurdlycool.com\/all\/home-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Yes All 4 Free", "url": "http:\/\/www.yesall4free.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10354\/back-alley-coffee-free-spoon" }, { "title": "Free Dove Heat Defense Therapy", "url": "http:\/\/content.dove.us\/dovehairmsn\/free_sample.aspx?product=heat_defense&utm_source=null" }, { "title": "health", "url": "http:\/\/absurdlycool.com\/all\/health-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "FreeSnatcher", "url": "http:\/\/www.freesnatcher.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10355\/free-dove-heat-defense-therapy" }, { "title": "Free Dove Intense Damage", "url": "http:\/\/content.dove.us\/dovehairmsn\/free_sample.aspx?product=intense_damage&utm_source=null" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "FreeSnatcher", "url": "http:\/\/www.freesnatcher.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10356\/free-dove-intense-damage" }, { "title": "Food :: COFFEE-MATE Brew Crew", "url": "http:\/\/team.coffee-mate.com\/screener" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10357\/food-coffee-mate-brew-crew" }, { "title": "Free Small Fry and Fountain Drink at Jack in the Box on Tuesday, March 10th (one day only)", "url": "http:\/\/coupon.hangintherejack.com\/fry-drink.php" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10353\/free-small-fry-and-fountain-drink-at-jack-in-the-box-on-tuesday-march-10th-one-day-only" }, { "title": "Acuvue Oasys Free Trial Pair", "url": "http:\/\/lm.logicalmedia.com\/z\/8650\/CD339\/" }, { "title": "health", "url": "http:\/\/absurdlycool.com\/all\/health-freebies" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10352\/acuvue-oasys-free-trial-pair" }, { "title": "Food :: Free Barbeque Seasoning Sample", "url": "http:\/\/buttrub.com\/contact.html" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "FreeSnatcher", "url": "http:\/\/www.freesnatcher.com\/" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10349\/food-free-barbeque-seasoning-sample" }, { "title": "Free diabetes-friendly cooking DVD ", "url": "http:\/\/www.dlife.com\/diabetes\/registration\/StepOne.html?oneSite=true&origin_url" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10350\/free-diabetes-friendly-cooking-dvd" }, { "title": "Free Exploring the World of U.S. Rice DVD", "url": "http:\/\/www.menurice.com\/dvd\/" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10351\/free-exploring-the-world-of-u-s-rice-dvd" } ] }, { "day": "Thu, 5 Mar 2009", "links": [ { "title": "Free Go Green - Eat Olives tote bag ", "url": "http:\/\/www.delallo.com\/articles\/free-tote-bag" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10348\/free-go-green-eat-olives-tote-bag" }, { "title": "Health :: Free Thick-It Food Purees Samples", "url": "http:\/\/www.thickitretail.com\/contactus.asp" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "health", "url": "http:\/\/absurdlycool.com\/all\/health-freebies" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10347\/health-free-thick-it-food-purees-samples" }, { "title": "Food :: Carmel Mocha at Bob Evans", "url": "http:\/\/www.bobevans.com\/website\/homepage.nsf\/Download\/FREEMocha.pdf\/$File\/FREEMocha.pdf?open" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "home", "url": "http:\/\/absurdlycool.com\/all\/home-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10343\/food-carmel-mocha-at-bob-evans" }, { "title": "Free MOBLAE Fragrance Samples", "url": "http:\/\/www.moblae.com\/shop\/cart.php?m=product_list&c=6" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "FreeSnatcher", "url": "http:\/\/www.freesnatcher.com\/" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10344\/free-moblae-fragrance-samples" }, { "title": "Sample Of Tide TotalCare", "url": "http:\/\/www.tide.com\/en-US\/offers.jspx" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "Yes All 4 Free", "url": "http:\/\/www.yesall4free.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10345\/sample-of-tide-totalcare" }, { "title": "Free Mystery Spot Bumper Sticker", "url": "http:\/\/www.mysteryspot.com\/bumper_sticker.php" }, { "title": "cars", "url": "http:\/\/absurdlycool.com\/all\/cars-freebies" }, { "title": "kids", "url": "http:\/\/absurdlycool.com\/all\/kids-freebies" }, { "title": "Free Channel", "url": "http:\/\/www.freechannel.net\/new.html" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10346\/free-mystery-spot-bumper-sticker" }, { "title": "Free one-year subscription to Elle", "url": "http:\/\/www.freebizmag.com\/emailelle02welcome.htm" }, { "title": "media", "url": "http:\/\/absurdlycool.com\/all\/media-freebies" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "Free Channel", "url": "http:\/\/www.freechannel.net\/new.html" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10341\/free-one-year-subscription-to-elle" }, { "title": "Free Mighty Deluxe burger at Good Times", "url": "http:\/\/www.savetheburger.org\/" }, { "title": "Free Channel", "url": "http:\/\/www.freechannel.net\/new.html" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10342\/free-mighty-deluxe-burger-at-good-times" }, { "title": "NuTone hat ", "url": "http:\/\/www.getnutone.com\/hatform.htm" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "Free Thingy", "url": "http:\/\/freethingy.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10340\/nutone-hat" } ] }, { "day": "Wed, 4 Mar 2009", "links": [ { "title": "Free Ziploc Brand Fresh Shield Freezer Bag", "url": "http:\/\/www.costco.com\/Browse\/Productgroup.aspx?Prodid=11380533&search=free%20sample&Sp=S&cm_re=1_en-_-Top_Left_Nav-_-Top_search&lang=en-US&Nr=P_CatalogName:BC&N=5000043&whse=BC&Dx=mode+matchallpartial&Ntk=Text_Search&Dr=P_CatalogName:BC&Ne=4000000&D=free%" }, { "title": "Yes All 4 Free", "url": "http:\/\/www.yesall4free.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10339\/free-ziploc-brand-fresh-shield-freezer-bag" }, { "title": "Betty Crocker--Free Warm Delights Minis from Betty Crocker", "url": "http:\/\/freewarmdelights.bettycrocker.com\/WarmDelights\/Default.aspx?source=900" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Pumpkinhead", "url": "http:\/\/www.webspawner.com\/users\/pumpkinheadtwo\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10338\/betty-crocker-free-warm-delights-minis-from-betty-crocker" }, { "title": "Free Betty Crocker Warm Delights Minis", "url": "http:\/\/lm.logicalmedia.com\/z\/8964\/CD339\/" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "gifts", "url": "http:\/\/absurdlycool.com\/all\/gifts" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10336\/free-betty-crocker-warm-delights-minis" }, { "title": "Free Child Safety Kit From The Polly Klaas Foundation", "url": "http:\/\/pollyklaasaction.org\/campaign\/child_safety_kit\/step1.tcl" }, { "title": "kids", "url": "http:\/\/absurdlycool.com\/all\/kids-freebies" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10334\/free-child-safety-kit-from-the-polly-klaas-foundation" }, { "title": "Entertainment :: Free Large Bag Of Popcorn From AMC", "url": "http:\/\/img.ed4.net\/aeagle\/2009\/090227_offer\/AMC.pdf" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10335\/entertainment-free-large-bag-of-popcorn-from-amc" }, { "title": "Tropical Tea Co. Free Tea Club", "url": "http:\/\/tropicalteaco.com\/cid-105-1-info.html" }, { "title": "food", "url": "http:\/\/absurdlycool.com\/all\/food-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10331\/tropical-tea-co-free-tea-club" }, { "title": "Free Ziploc Fresh Shield Bag Sample", "url": "http:\/\/www.costco.com\/Browse\/Productgroup.aspx?Prodid=11380533&search=free%20sample&Sp=S&cm_re=1_en-_-Top_Left_Nav-_-Top_search&lang=en-US&Nr=P_CatalogName:BC&N=5000043&whse=BC&Dx=mode+matchallpartial&Ntk=Text_Search&Dr=P_CatalogName:BC&Ne=4000000&D=free%20sample&Ntt=free%20sample&Mo=0&No=0&Ntx=mode+matchallpartial&s=1&topnav=&Nty=1&s=1" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10332\/free-ziploc-fresh-shield-bag-sample" }, { "title": "Free Trans Fat DVD", "url": "http:\/\/www.surveymonkey.com\/s.aspx?sm=FYeFzR59IVkrjttgbJ6j9w_3d_3d%22" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10333\/free-trans-fat-dvd" } ] }, { "day": "Tue, 3 Mar 2009", "links": [ { "title": "Free subscription to Roadracing World Motorcycle Technology ", "url": "http:\/\/www.freebizmag.com\/emailroadrace01welcome.htm" }, { "title": "media", "url": "http:\/\/absurdlycool.com\/all\/media-freebies" }, { "title": "email", "url": "http:\/\/absurdlycool.com\/all\/email-freebies" }, { "title": "travel", "url": "http:\/\/absurdlycool.com\/all\/travel-freebies" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "Freebie Reporter", "url": "http:\/\/www.freebiereporter.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10330\/free-subscription-to-roadracing-world-motorcycle-technology" }, { "title": "Free LOreal EverPure Sample", "url": "http:\/\/www.lorealparisusa.com\/_us\/_en\/default.aspx" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10322\/free-loreal-everpure-sample" }, { "title": "Free Arbonne Skincare Samples", "url": "http:\/\/www.briarrose.myarbonne.com\/" }, { "title": "samples", "url": "http:\/\/absurdlycool.com\/all\/samples" }, { "title": "Hunt4Freebies", "url": "http:\/\/www.hunt4freebies.com\/" }, { "title": "I Crave Freebies", "url": "http:\/\/www.icravefreebies.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10323\/free-arbonne-skincare-samples" }, { "title": "Beauty :: Free scalp products (shampoo for bald men)", "url": "http:\/\/208.112.9.101\/enter\/" }, { "title": "beauty", "url": "http:\/\/absurdlycool.com\/all\/beauty-freebies" }, { "title": "Thunderfap", "url": "http:\/\/www.thunderfap.com\/" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10324\/beauty-free-scalp-products-shampoo-for-bald-men" }, { "title": "Free One Year Subscription To The Trail Rider Magazine", "url": "http:\/\/www.freebizmag.com\/emailtrailrider01welcome.htm" }, { "title": "media", "url": "http:\/\/absurdlycool.com\/all\/media-freebies" }, { "title": "FreebieWatch", "url": "http:\/\/www.freebiewatch.com\/" }, { "title": "Just Free Stuff", "url": "http:\/\/www.justfreestuff.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10325\/free-one-year-subscription-to-the-trail-rider-magazine" }, { "title": "Fandango--Free Fandango Movie Tickets (2) and Membership", "url": "http:\/\/www.repnation.com\/RepNationCom\/JobPosting.aspx?OpportunityId=dd2e3f1f-e5ac-4970-a497-9d8187c78286" }, { "title": "media", "url": "http:\/\/absurdlycool.com\/all\/media-freebies" }, { "title": "Pumpkinhead", "url": "http:\/\/www.webspawner.com\/users\/pumpkinheadtwo\/" }, { "title": "FreeSnatcher", "url": "http:\/\/www.freesnatcher.com\/" }, { "title": "Link", "url": "http:\/\/absurdlycool.com\/freebieorsample\/10327\/fandango-free-fandango-movie-tickets-2-and-membership" } ] }, { "day": "\n[view older freebies] ", "links": [ { "title": "view older freebies", "url": "http:\/\/absurdlycool.com\/?h=50" }, { "title": "Iteration Labs, LLC", "url": "http:\/\/iterationlabs.com" }, { "title": "Contact us", "url": "\/contact.cgi" }, { "title": "Privacy policy", "url": "\/privacy.html" } ] } ] }
@@ -0,0 +1,9 @@
1
+ {
2
+ "days": [ {
3
+ "day": ".day",
4
+ "links(a)": [ {
5
+ "title": ".",
6
+ "url": "@href"
7
+ } ]
8
+ } ]
9
+ }
@@ -0,0 +1,207 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html><head>
3
+ <title>austin activity partners classifieds - craigslist</title>
4
+
5
+ <meta name="description" content="craigslist activity partners classifieds for austin ">
6
+ <meta name="keywords" content="austin activity partners craigslist, classifieds, want ads ">
7
+
8
+
9
+
10
+ <link rel=alternate type="application/rss+xml" href="index.rss" title="RSS feed for craigslist | activity partners in austin ">
11
+ <link rel="stylesheet" title="craigslist" href="http://www.craigslist.org/styles/craigslist.css" type="text/css" media="all">
12
+ </head>
13
+
14
+ <body class="toc">
15
+
16
+ <a name="top"></a>
17
+
18
+ <div class="bchead"><span id="ef">
19
+
20
+ [ <a href="http://www.craigslist.org/about/help/">help</a> ]
21
+ [ <a href="https://post.craigslist.org/aus/C">post</a> ]</span>
22
+
23
+ <a href="/"> austin craigslist</a> &gt; <a href="/act/">activity partners</a></div>
24
+
25
+ <blockquote>
26
+ <form action="/search/act" method="get" onsubmit="ckCAbb();">
27
+
28
+ <script type="text/javascript"><!--
29
+ function ckCAbb() {
30
+ t = document.getElementById("cAbb");
31
+ if (t.value == "act") { t.disabled = true; }
32
+ }
33
+ -->
34
+ </script>
35
+
36
+ <table width="95%" cellpadding="2" style="white-space: nowrap; background:#eee; border:1px solid gray;" summary="">
37
+ <tr>
38
+ <td align="right" width="1">search for:</td>
39
+ <td width="30%"><input id="query" name="query" size="30" value=""> in:
40
+ <select id="cAbb" name="catAbbreviation">
41
+ <option value="ccc">all community<option disabled value="">--<option value="act" selected> activity partners
42
+ <option value="ats"> artists
43
+ <option value="kid"> childcare
44
+ <option value="com"> general
45
+ <option value="grp"> groups
46
+ <option value="vnn"> local news and views
47
+ <option value="laf"> lost &amp; found
48
+ <option value="muc"> musicians
49
+ <option value="pet"> pets
50
+ <option value="pol"> politics
51
+ <option value="rid"> rideshare
52
+ <option value="vol"> volunteers
53
+ <option disabled value="">--<option value="eee">all event<option value="sss">all for sale / wanted<option value="ggg">all gigs<option value="hhh">all housing<option value="jjj">all jobs<option value="ppp">all personals<option value="res">all resume<option value="bbb">all services offered</select>
54
+ <input type="submit" value="Search">
55
+ </td><td>
56
+ <label><input type="checkbox" name="srchType" value="T"
57
+ title="check this box to search only posting titles"> only search titles</label>
58
+ </td>
59
+ </tr>
60
+
61
+ <tr>
62
+ <td align="right" width="1"></td>
63
+ <td></td>
64
+ <td align="left"><label><input type="checkbox" name="hasPic" value="1"> has image</label></td>
65
+ </tr></table></form></blockquote><span id="showPics"></span><span id="hidePics"></span>
66
+
67
+ <blockquote>
68
+ <table width="95%" summary="">
69
+ <tr>
70
+ <td valign="top">[ Thu, 15 Jan 19:13:19 ]</td>
71
+ <td valign="top" id="messages"><span class="hl"> [ <b><a href="/about/safety">PERSONAL SAFETY TIPS</a></b> ] </span> <span class="hl"> [ <b><a href="/about/scams">AVOIDING SCAMS &amp; FRAUD</a></b> ] </span> <span class="hl"> [<a href="/cgi-bin/success.stories.cgi">success story?</a>]</span> </td>
72
+ </tr>
73
+ </table>
74
+
75
+ <h4>Thu Jan 15</h4>
76
+ <p><a href="/act/994549324.html">Female Running Partner -</a><font size="-1"> (Shoal Creek or Town Lake)</font></p>
77
+ <p><a href="/act/994427679.html">TENNIS ANYONE? -</a><font size="-1"> (i35 &amp; US71)</font></p>
78
+ <p><a href="/act/994375294.html">Home Workers Needed -</a><font size="-1"> (Anywhere, USA)</font></p>
79
+ <p><a href="/act/994247774.html">Do you follow Eat to Live by Dr. Joel Fuhrman? -</a><font size="-1"> (North Central Austin)</font></p>
80
+ <p><a href="/act/994238180.html">photographer buddy -</a><font size="-1"> (Austin/central/south/s/w)</font> <span class="p"> pic</span></p>
81
+ <p><a href="/act/994209394.html">GET IN THE BEST SHAPE OF YOUR LIFE!!! -</a><font size="-1"> (NW Austin)</font> <span class="p"> pic</span></p>
82
+ <p><a href="/act/994198051.html">I CAN HELP ATHLETES GET FASTER &amp; MORE EXPLOSIVE, $28 to $35 a session -</a></p>
83
+ <p><a href="/act/994185159.html">Sing your heart out in the NATIONAL KARAOKE LEAGUE! -</a><font size="-1"> (2 Austin Divisions)</font> <span class="p"> pic</span></p>
84
+ <p><a href="/act/994111282.html"> FITNESS TRAINING for $20 -</a><font size="-1"> (austin/round rock)</font></p>
85
+ <p><a href="/act/994023820.html">Looking for a great workout? -</a><font size="-1"> (Austin and Surrounding Areas)</font></p>
86
+ <p><a href="/act/993919120.html">JOIN: The Give Me A Dollar Club -</a><font size="-1"> (The Universe and Beyond)</font></p>
87
+ <p><a href="/act/993913699.html">Do You Want To Be The Biggest Loser In Austin ? -</a></p>
88
+ <p><a href="/act/993878678.html">Seeking Tennis Hitting Partner -</a><font size="-1"> (NW Austin/CP High School)</font></p>
89
+ <p><a href="/act/993802305.html">want to play rugby? -</a><font size="-1"> (West Austin area)</font> <span class="p"> pic</span></p>
90
+ <p><a href="/act/993760889.html">Tongiht DateandDash Speed-Dating Party For College Grads -</a><font size="-1"> (Halcyon Cafe)</font> <span class="p"> pic</span></p>
91
+ <p><a href="/act/993731629.html">4TH ANNUAL HOT CHOCOLATE AND COOKIES RIDE!!! -</a><font size="-1"> ( Round Rock Harley Davidson)</font></p>
92
+ <p><a href="/act/993660526.html">Traveling The World By Backpack Need Someone To Manage business -</a><font size="-1"> (Austin)</font></p>
93
+ <p><a href="/act/992760567.html">Massage/facial room for rent in Round Rock -</a><font size="-1"> (Round Rock, Tx)</font></p>
94
+ <h4>Wed Jan 14</h4>
95
+ <p><a href="/act/993511991.html">Gentle Yoga for Beginners (From $ 30/10 Classes....) -</a><font size="-1"> (Five Austin Locations)</font></p>
96
+ <p><a href="/act/993414260.html">Pflugerville Fitness Boot Camps -</a><font size="-1"> (Pfluger Park)</font> <span class="p"> pic</span></p>
97
+ <p><a href="/act/993408050.html">Round Rock Mommy Group Seeking New Members -</a><font size="-1"> (Round Rock)</font></p>
98
+ <p><a href="/act/993302861.html">Men's Over 30 Soccer Team looking for players -</a><font size="-1"> (Austin)</font></p>
99
+ <p><a href="/act/992975456.html">tennis players for fun times -</a><font size="-1"> (taylor/ hutto/granger)</font></p>
100
+ <p><a href="/act/993159668.html">Co-ed Soccer Players -</a><font size="-1"> (Austin)</font></p>
101
+ <p><a href="/act/992992750.html">BADMINTON TONIGHT! adult, both women and men -</a><font size="-1"> (austin rec center, 1301 shoal creek)</font> <span class="p"> pic</span></p>
102
+ <p><a href="/act/992943165.html">YOUTH FLAG FOOTBALL -</a><font size="-1"> (ROUND ROCK TX)</font></p>
103
+ <p><a href="/act/992893767.html">Workout!!! I'll help you quit making excuses!!! $26 - $50 -</a></p>
104
+ <p><a href="/act/992558125.html">S exercise -</a><font size="-1"> (Atx)</font> <span class="p"> pic</span></p>
105
+ <p><a href="/act/992451634.html">Dance Classes for Bigger Bodies -</a><font size="-1"> (Central Austin)</font></p>
106
+ <p><a href="/act/992267236.html">Dance partner wanted -</a><font size="-1"> (Austin)</font></p>
107
+ <p><a href="/act/992239729.html">Arabic Tutor -</a><font size="-1"> (Austin)</font></p>
108
+ <h4>Tue Jan 13</h4>
109
+ <p><a href="/act/991895757.html">Any norwegian speakers, anyone from Norway in Austin? -</a><font size="-1"> (Downtown)</font></p>
110
+ <p><a href="/act/991763196.html">Tennis, Biking, Badminton, Jogging, Hiking, Dancing, etc. -</a><font size="-1"> (Southwest Austin)</font></p>
111
+ <p><a href="/act/991734075.html">Tennis in NW Austin? -</a><font size="-1"> (Lake Creek and 183)</font></p>
112
+ <p><a href="/act/991563998.html">Looking for Workout partner at Gold's Gym -</a><font size="-1"> (SW Austin)</font> <span class="p"> pic</span></p>
113
+ <p><a href="/act/991432735.html">VOICE LESSONS -</a></p>
114
+ <p><a href="/act/991553805.html">Meet New People in the NATIONAL KARAOKE LEAGUE! Register Today!!! -</a><font size="-1"> (2 Austin Divisions)</font> <span class="p"> pic</span></p>
115
+ <p><a href="/act/991201591.html">Women's Rugby in Austin -</a><font size="-1"> (Burnett Middle School)</font> <span class="p"> pic</span></p>
116
+ <p><a href="/act/991196763.html">Hate the Gym ? Hate Boot camps? Join Us -</a></p>
117
+ <p><a href="/act/991123059.html">Interested in playing rugby? Looking to start a team in west austin -</a><font size="-1"> (West - dripping springs, lakeway, areas)</font></p>
118
+ <p><a href="/act/991081839.html">ANY QLINK XF200 SUPERMOTO OWNERS OUT THERE -</a><font size="-1"> (CENTRAL TEXAS)</font> <span class="p"> pic</span></p>
119
+ <p><a href="/act/991057729.html">Join Family and Friends to Lose Weight in 09!!!! -</a><font size="-1"> (Austin)</font></p>
120
+ <h4>Mon Jan 12</h4>
121
+ <p><a href="/act/989837938.html">H.E.A.T. Boot Camp -</a><font size="-1"> (DT, Round Rock, Pflugerville)</font> <span class="p"> pic</span></p>
122
+ <p><a href="/act/990610113.html">FREE !!!! Salsa Dance Classes for Beginners -</a></p>
123
+ <p><a href="/act/990503170.html">Austin Metro Baseball League -</a><font size="-1"> (Austin, Texas)</font></p>
124
+ <p><a href="/act/990506065.html">Hot or Not Survey: Rate Photos of Single Men and Women -</a></p>
125
+ <p><a href="/act/990365041.html">Early Morning or Evening Classes Available! Free Boot Camp! Bring a Fr -</a><font size="-1"> (Austin and Surrounding Areas)</font></p>
126
+ <p><a href="/act/990282220.html">Fitness Training Studios-Round Rock -</a><font size="-1"> (round rock/austin)</font></p>
127
+ <p><a href="/act/990206516.html">Baseball Players wanted 18+ -</a><font size="-1"> (Austin)</font></p>
128
+ <p><a href="/act/990179653.html">meet cool people now -</a><font size="-1"> (austin)</font></p>
129
+ <p><a href="/act/990165942.html">Want to go camping in Coloardo? -</a></p>
130
+ <p><a href="/act/990094775.html">Male Looking for Female Massage Partner -</a></p>
131
+ <p><a href="/act/990081671.html">Looking for roleplayers who like Exalted or Mage -</a><font size="-1"> (North Austin)</font></p>
132
+ <p><a href="/act/989972161.html">Doctor Who Fan Club -</a><font size="-1"> (North Austin)</font></p>
133
+ <p><a href="/act/989918540.html">Gauging Interest in group cooking class -</a><font size="-1"> (Wilson appliance? SW)</font></p>
134
+ <p><a href="/act/989863061.html">Chinese Circus Pole Classes For Everyday People -</a><font size="-1"> (Various)</font> <span class="p"> pic</span></p>
135
+ <p><a href="/act/989845262.html">Kickball Social League -</a><font size="-1"> (Austin)</font></p>
136
+ <p><a href="/act/989742852.html">Looking for a running partner -</a><font size="-1"> (S/S.W Austin)</font></p>
137
+ <p><a href="/act/989581856.html">Over 30 Soccer Team -</a><font size="-1"> (Austin)</font></p>
138
+ <p><a href="/act/989547987.html">Smart Drunks Need Apply -</a><font size="-1"> (Austin)</font> <span class="p"> img</span></p>
139
+ <p><a href="/act/989536612.html">men's freestyle wrestling? -</a></p>
140
+ <h4>Sun Jan 11</h4>
141
+ <p><a href="/act/989355135.html">French tutor -</a><font size="-1"> (Austin tx (North))</font></p>
142
+ <p><a href="/act/989312977.html">SOFTBALL SCRIMMAGES NEEDED -</a><font size="-1"> (SOUTH /NORTH)</font></p>
143
+ <p><a href="/act/989277183.html">Austin, TX area golfers -</a></p>
144
+ <p><a href="/act/989264608.html">Sand Volleyball -</a><font size="-1"> (SW Austin)</font></p>
145
+ <p><a href="/act/988955318.html">flag football -</a><font size="-1"> (Manor TEXAS)</font></p>
146
+ <p><a href="/act/988798297.html">Looking for synchronized swimmers... -</a><font size="-1"> (Austin)</font></p>
147
+ <p><a href="/act/988747055.html">Seeking female dance partner for tonight -</a><font size="-1"> (Continental Club)</font></p>
148
+ <p><a href="/act/988734928.html">Looking for Baseball Players for 2009 Season -</a><font size="-1"> (Austin, TX)</font></p>
149
+ <p><a href="/act/988722808.html">National Karaoke League REGISTERING NOW for Austin Spring 09 Season! -</a><font size="-1"> (2 Austin Divisions)</font> <span class="p"> pic</span></p>
150
+ <p><a href="/act/988677872.html">Chess -</a><font size="-1"> (Austin)</font></p>
151
+ <p><a href="/act/988306233.html">SOFTBALL PLAYERS NEEDED FOR SOFTBALL AUSTIN "C" DIVISION -</a><font size="-1"> (Krieg Fields )</font></p>
152
+ <h4>Sat Jan 10</h4>
153
+ <p><a href="/act/988174359.html">Play Darts at a local Pub -</a><font size="-1"> (Austin)</font></p>
154
+ <p><a href="/act/987971710.html">Audio Producer -</a></p>
155
+ <p><a href="/act/987904354.html">Charitable organization looking for Venue to sell kettle corn -</a><font size="-1"> (Austin)</font></p>
156
+ <p><a href="/act/987683364.html">Sports Conditioning -</a></p>
157
+ <p><a href="/act/987652052.html">FREE!!!!!! Salsa Dance Classes for Beginners -</a></p>
158
+ <p><a href="/act/987656848.html">Looking for Volleyball Players -</a><font size="-1"> (Cedar Park, Leander, RR &amp; Austin)</font></p>
159
+ <p><a href="/act/987605989.html">Beginner Yoga for Wellness ($ 65/10 Classes) -</a><font size="-1"> (Dittmar Rec. Center in South Austin)</font></p>
160
+ <p><a href="/act/987587586.html">Take Control of Your Life and Weight, Join Now -</a></p>
161
+ <p><a href="/act/987396047.html">January Writers Contest -</a></p>
162
+ <p><a href="/act/987314677.html">Whats going on this Saturday? -</a><font size="-1"> (south austin)</font> <span class="p"> pic</span></p>
163
+ <h4>Fri Jan 09</h4>
164
+ <p><a href="/act/987048713.html">Part Time Hours -</a> <span class="p"> img</span></p>
165
+ <p><a href="/act/986777840.html">Swing Practice Partner (50+) -</a><font size="-1"> (Austin)</font></p>
166
+ <p><a href="/act/986616066.html">Free Massage Exchange -</a></p>
167
+ <p><a href="/act/986364958.html">MATURE ACTORS -</a><font size="-1"> (Austin )</font></p>
168
+ <p><a href="/act/985988896.html">RE: Weight loss buddy wanted is SPAMMMMM -</a></p>
169
+ <h4>Thu Jan 08</h4>
170
+ <p><a href="/act/985624787.html">Legal NLTHE Home Game -</a><font size="-1"> (Austin (North))</font></p>
171
+ <p><a href="/act/985521939.html">Martial Arts New Years Special, FREE WEEK! -</a><font size="-1"> (beecave,lakeway)</font></p>
172
+ <p><a href="/act/985436721.html">Yoga buddy wanted -</a><font size="-1"> (Round Rock/Austin)</font></p>
173
+ <p><a href="/act/985360103.html">Looking for a Trainer in Austin, near downtown -</a><font size="-1"> (Austin - downtown)</font> <span class="p"> pic</span></p>
174
+ <p><a href="/act/985197181.html">Running at (or near) dusk (or "magic hour") -</a><font size="-1"> (UT)</font></p>
175
+ <p><a href="/act/985147438.html">Looking for a Golf Buddy -- Male or Female -</a><font size="-1"> (UT)</font></p>
176
+ <p><a href="/act/985023319.html">Any Cat 5's RRers out there looking for someone to train with? -</a><font size="-1"> (Lamar &amp; 2222)</font></p>
177
+ <p><a href="/act/984973222.html">Bridge Players 40+ -</a><font size="-1"> (Austin)</font></p>
178
+ <p><a href="/act/984818172.html">Looking to start a fitness program but not sure boot camp is for you? -</a><font size="-1"> (Austin and Surrounding Areas)</font></p>
179
+ <h4>Wed Jan 07</h4>
180
+ <p><a href="/act/984516372.html">KARATE/TAE KWON DO FAMILY ACTIVITY CENTER. SAVE MONEY/NO CONTRACTS -</a><font size="-1"> (CEDAR PARK, LEANDER, ROUND ROCK)</font></p>
181
+ <p><a href="/act/984389126.html">FREE !!!!!!!! Salsa Dance Classes for Beginners -</a></p>
182
+ <p><a href="/act/984317060.html">BADMINTON TONIGHT, OPEN PLAY! at austin rec center -</a><font size="-1"> (1301 shoal creek blvd)</font> <span class="p"> pic</span></p>
183
+ <p><a href="/act/984220709.html">Looking for Graphic Artist/ Comic Artist to Collaborate With -</a><font size="-1"> (Central)</font></p>
184
+
185
+
186
+ <p align="center"><font size="4"><a href="index100.html">next 100 postings</a></font>
187
+
188
+ <div id="footer">
189
+ <hr>
190
+ <span id="copy">
191
+ Copyright &copy; 2009 craigslist, inc.<br>
192
+ <a href="#top">Back to top of page</a>
193
+ </span>
194
+ <span class="rss">
195
+ <a class="l" href="http://austin.craigslist.org/act/index.rss">RSS</a>
196
+ <a href="http://www.craigslist.org/about/rss">(?)</a><br>
197
+ <a class="y" href="http://add.my.yahoo.com/rss?url=http://austin.craigslist.org/act/index.rss">add to My Yahoo!</a>
198
+ </span>
199
+ </div>
200
+ <br><br>
201
+
202
+ <div id="floater">&nbsp;</div>
203
+
204
+ </blockquote>
205
+
206
+ </body>
207
+ </html>
@@ -0,0 +1 @@
1
+ { "entry": [ { "title": "Female Running Partner - (Shoal Creek or Town Lake)", "date": "Thu Jan 15" }, { "title": "TENNIS ANYONE? - (i35 & US71)", "date": "Thu Jan 15" }, { "title": "Home Workers Needed - (Anywhere, USA)", "date": "Thu Jan 15" }, { "title": "Do you follow Eat to Live by Dr. Joel Fuhrman? - (North Central Austin)", "date": "Thu Jan 15" }, { "title": "photographer buddy - (Austin\/central\/south\/s\/w) pic", "date": "Thu Jan 15" }, { "title": "GET IN THE BEST SHAPE OF YOUR LIFE!!! - (NW Austin) pic", "date": "Thu Jan 15" }, { "title": "I CAN HELP ATHLETES GET FASTER & MORE EXPLOSIVE, $28 to $35 a session -", "date": "Thu Jan 15" }, { "title": "Sing your heart out in the NATIONAL KARAOKE LEAGUE! - (2 Austin Divisions) pic", "date": "Thu Jan 15" }, { "title": " FITNESS TRAINING for $20 - (austin\/round rock)", "date": "Thu Jan 15" }, { "title": "Looking for a great workout? - (Austin and Surrounding Areas)", "date": "Thu Jan 15" }, { "title": "JOIN: The Give Me A Dollar Club - (The Universe and Beyond)", "date": "Thu Jan 15" }, { "title": "Do You Want To Be The Biggest Loser In Austin ? -", "date": "Thu Jan 15" }, { "title": "Seeking Tennis Hitting Partner - (NW Austin\/CP High School)", "date": "Thu Jan 15" }, { "title": "want to play rugby? - (West Austin area) pic", "date": "Thu Jan 15" }, { "title": "Tongiht DateandDash Speed-Dating Party For College Grads - (Halcyon Cafe) pic", "date": "Thu Jan 15" }, { "title": "4TH ANNUAL HOT CHOCOLATE AND COOKIES RIDE!!! - ( Round Rock Harley Davidson)", "date": "Thu Jan 15" }, { "title": "Traveling The World By Backpack Need Someone To Manage business - (Austin)", "date": "Thu Jan 15" }, { "title": "Massage\/facial room for rent in Round Rock - (Round Rock, Tx)", "date": "Thu Jan 15" }, { "title": "Gentle Yoga for Beginners (From $ 30\/10 Classes....) - (Five Austin Locations)", "date": "Thu Jan 15" }, { "title": "Pflugerville Fitness Boot Camps - (Pfluger Park) pic", "date": "Thu Jan 15" }, { "title": "Round Rock Mommy Group Seeking New Members - (Round Rock)", "date": "Thu Jan 15" }, { "title": "Men's Over 30 Soccer Team looking for players - (Austin)", "date": "Thu Jan 15" }, { "title": "tennis players for fun times - (taylor\/ hutto\/granger)", "date": "Thu Jan 15" }, { "title": "Co-ed Soccer Players - (Austin)", "date": "Thu Jan 15" }, { "title": "BADMINTON TONIGHT! adult, both women and men - (austin rec center, 1301 shoal creek) pic", "date": "Thu Jan 15" }, { "title": "YOUTH FLAG FOOTBALL - (ROUND ROCK TX)", "date": "Thu Jan 15" }, { "title": "Workout!!! I'll help you quit making excuses!!! $26 - $50 -", "date": "Thu Jan 15" }, { "title": "S exercise - (Atx) pic", "date": "Thu Jan 15" }, { "title": "Dance Classes for Bigger Bodies - (Central Austin)", "date": "Thu Jan 15" }, { "title": "Dance partner wanted - (Austin)", "date": "Thu Jan 15" }, { "title": "Arabic Tutor - (Austin)", "date": "Thu Jan 15" }, { "title": "Any norwegian speakers, anyone from Norway in Austin? - (Downtown)", "date": "Thu Jan 15" }, { "title": "Tennis, Biking, Badminton, Jogging, Hiking, Dancing, etc. - (Southwest Austin)", "date": "Thu Jan 15" }, { "title": "Tennis in NW Austin? - (Lake Creek and 183)", "date": "Thu Jan 15" }, { "title": "Looking for Workout partner at Gold's Gym - (SW Austin) pic", "date": "Thu Jan 15" }, { "title": "VOICE LESSONS -", "date": "Thu Jan 15" }, { "title": "Meet New People in the NATIONAL KARAOKE LEAGUE! Register Today!!! - (2 Austin Divisions) pic", "date": "Thu Jan 15" }, { "title": "Women's Rugby in Austin - (Burnett Middle School) pic", "date": "Thu Jan 15" }, { "title": "Hate the Gym ? Hate Boot camps? Join Us -", "date": "Thu Jan 15" }, { "title": "Interested in playing rugby? Looking to start a team in west austin - (West - dripping springs, lakeway, areas)", "date": "Thu Jan 15" }, { "title": "ANY QLINK XF200 SUPERMOTO OWNERS OUT THERE - (CENTRAL TEXAS) pic", "date": "Thu Jan 15" }, { "title": "Join Family and Friends to Lose Weight in 09!!!! - (Austin)", "date": "Thu Jan 15" }, { "title": "H.E.A.T. Boot Camp - (DT, Round Rock, Pflugerville) pic", "date": "Thu Jan 15" }, { "title": "FREE !!!! Salsa Dance Classes for Beginners -", "date": "Thu Jan 15" }, { "title": "Austin Metro Baseball League - (Austin, Texas)", "date": "Thu Jan 15" }, { "title": "Hot or Not Survey: Rate Photos of Single Men and Women -", "date": "Thu Jan 15" }, { "title": "Early Morning or Evening Classes Available! Free Boot Camp! Bring a Fr - (Austin and Surrounding Areas)", "date": "Thu Jan 15" }, { "title": "Fitness Training Studios-Round Rock - (round rock\/austin)", "date": "Thu Jan 15" }, { "title": "Baseball Players wanted 18+ - (Austin)", "date": "Thu Jan 15" }, { "title": "meet cool people now - (austin)", "date": "Thu Jan 15" }, { "title": "Want to go camping in Coloardo? -", "date": "Thu Jan 15" }, { "title": "Male Looking for Female Massage Partner -", "date": "Thu Jan 15" }, { "title": "Looking for roleplayers who like Exalted or Mage - (North Austin)", "date": "Thu Jan 15" }, { "title": "Doctor Who Fan Club - (North Austin)", "date": "Thu Jan 15" }, { "title": "Gauging Interest in group cooking class - (Wilson appliance? SW)", "date": "Thu Jan 15" }, { "title": "Chinese Circus Pole Classes For Everyday People - (Various) pic", "date": "Thu Jan 15" }, { "title": "Kickball Social League - (Austin)", "date": "Thu Jan 15" }, { "title": "Looking for a running partner - (S\/S.W Austin)", "date": "Thu Jan 15" }, { "title": "Over 30 Soccer Team - (Austin)", "date": "Thu Jan 15" }, { "title": "Smart Drunks Need Apply - (Austin) img", "date": "Thu Jan 15" }, { "title": "men's freestyle wrestling? -", "date": "Thu Jan 15" }, { "title": "French tutor - (Austin tx (North))", "date": "Thu Jan 15" }, { "title": "SOFTBALL SCRIMMAGES NEEDED - (SOUTH \/NORTH)", "date": "Thu Jan 15" }, { "title": "Austin, TX area golfers -", "date": "Thu Jan 15" }, { "title": "Sand Volleyball - (SW Austin)", "date": "Thu Jan 15" }, { "title": "flag football - (Manor TEXAS)", "date": "Thu Jan 15" }, { "title": "Looking for synchronized swimmers... - (Austin)", "date": "Thu Jan 15" }, { "title": "Seeking female dance partner for tonight - (Continental Club)", "date": "Thu Jan 15" }, { "title": "Looking for Baseball Players for 2009 Season - (Austin, TX)", "date": "Thu Jan 15" }, { "title": "National Karaoke League REGISTERING NOW for Austin Spring 09 Season! - (2 Austin Divisions) pic", "date": "Thu Jan 15" }, { "title": "Chess - (Austin)", "date": "Thu Jan 15" }, { "title": "SOFTBALL PLAYERS NEEDED FOR SOFTBALL AUSTIN \"C\" DIVISION - (Krieg Fields )", "date": "Thu Jan 15" }, { "title": "Play Darts at a local Pub - (Austin)", "date": "Thu Jan 15" }, { "title": "Audio Producer -", "date": "Thu Jan 15" }, { "title": "Charitable organization looking for Venue to sell kettle corn - (Austin)", "date": "Thu Jan 15" }, { "title": "Sports Conditioning -", "date": "Thu Jan 15" }, { "title": "FREE!!!!!! Salsa Dance Classes for Beginners -", "date": "Thu Jan 15" }, { "title": "Looking for Volleyball Players - (Cedar Park, Leander, RR & Austin)", "date": "Thu Jan 15" }, { "title": "Beginner Yoga for Wellness ($ 65\/10 Classes) - (Dittmar Rec. Center in South Austin)", "date": "Thu Jan 15" }, { "title": "Take Control of Your Life and Weight, Join Now -", "date": "Thu Jan 15" }, { "title": "January Writers Contest -", "date": "Thu Jan 15" }, { "title": "Whats going on this Saturday? - (south austin) pic", "date": "Thu Jan 15" }, { "title": "Part Time Hours - img", "date": "Thu Jan 15" }, { "title": "Swing Practice Partner (50+) - (Austin)", "date": "Thu Jan 15" }, { "title": "Free Massage Exchange -", "date": "Thu Jan 15" }, { "title": "MATURE ACTORS - (Austin )", "date": "Thu Jan 15" }, { "title": "RE: Weight loss buddy wanted is SPAMMMMM -", "date": "Thu Jan 15" }, { "title": "Legal NLTHE Home Game - (Austin (North))", "date": "Thu Jan 15" }, { "title": "Martial Arts New Years Special, FREE WEEK! - (beecave,lakeway)", "date": "Thu Jan 15" }, { "title": "Yoga buddy wanted - (Round Rock\/Austin)", "date": "Thu Jan 15" }, { "title": "Looking for a Trainer in Austin, near downtown - (Austin - downtown) pic", "date": "Thu Jan 15" }, { "title": "Running at (or near) dusk (or \"magic hour\") - (UT)", "date": "Thu Jan 15" }, { "title": "Looking for a Golf Buddy -- Male or Female - (UT)", "date": "Thu Jan 15" }, { "title": "Any Cat 5's RRers out there looking for someone to train with? - (Lamar & 2222)", "date": "Thu Jan 15" }, { "title": "Bridge Players 40+ - (Austin)", "date": "Thu Jan 15" }, { "title": "Looking to start a fitness program but not sure boot camp is for you? - (Austin and Surrounding Areas)", "date": "Thu Jan 15" }, { "title": "KARATE\/TAE KWON DO FAMILY ACTIVITY CENTER. SAVE MONEY\/NO CONTRACTS - (CEDAR PARK, LEANDER, ROUND ROCK)", "date": "Thu Jan 15" }, { "title": "FREE !!!!!!!! Salsa Dance Classes for Beginners -", "date": "Thu Jan 15" }, { "title": "BADMINTON TONIGHT, OPEN PLAY! at austin rec center - (1301 shoal creek blvd) pic", "date": "Thu Jan 15" }, { "title": "Looking for Graphic Artist\/ Comic Artist to Collaborate With - (Central)", "date": "Thu Jan 15" }, { "title": "next 100 postings", "date": "Thu Jan 15" } ] }
@@ -0,0 +1,6 @@
1
+ {
2
+ "entry(p)":[{
3
+ "title": ".",
4
+ "date": "preceding::h4"
5
+ }]
6
+ }
@@ -0,0 +1,207 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html><head>
3
+ <title>austin activity partners classifieds - craigslist</title>
4
+
5
+ <meta name="description" content="craigslist activity partners classifieds for austin ">
6
+ <meta name="keywords" content="austin activity partners craigslist, classifieds, want ads ">
7
+
8
+
9
+
10
+ <link rel=alternate type="application/rss+xml" href="index.rss" title="RSS feed for craigslist | activity partners in austin ">
11
+ <link rel="stylesheet" title="craigslist" href="http://www.craigslist.org/styles/craigslist.css" type="text/css" media="all">
12
+ </head>
13
+
14
+ <body class="toc">
15
+
16
+ <a name="top"></a>
17
+
18
+ <div class="bchead"><span id="ef">
19
+
20
+ [ <a href="http://www.craigslist.org/about/help/">help</a> ]
21
+ [ <a href="https://post.craigslist.org/aus/C">post</a> ]</span>
22
+
23
+ <a href="/"> austin craigslist</a> &gt; <a href="/act/">activity partners</a></div>
24
+
25
+ <blockquote>
26
+ <form action="/search/act" method="get" onsubmit="ckCAbb();">
27
+
28
+ <script type="text/javascript"><!--
29
+ function ckCAbb() {
30
+ t = document.getElementById("cAbb");
31
+ if (t.value == "act") { t.disabled = true; }
32
+ }
33
+ -->
34
+ </script>
35
+
36
+ <table width="95%" cellpadding="2" style="white-space: nowrap; background:#eee; border:1px solid gray;" summary="">
37
+ <tr>
38
+ <td align="right" width="1">search for:</td>
39
+ <td width="30%"><input id="query" name="query" size="30" value=""> in:
40
+ <select id="cAbb" name="catAbbreviation">
41
+ <option value="ccc">all community<option disabled value="">--<option value="act" selected> activity partners
42
+ <option value="ats"> artists
43
+ <option value="kid"> childcare
44
+ <option value="com"> general
45
+ <option value="grp"> groups
46
+ <option value="vnn"> local news and views
47
+ <option value="laf"> lost &amp; found
48
+ <option value="muc"> musicians
49
+ <option value="pet"> pets
50
+ <option value="pol"> politics
51
+ <option value="rid"> rideshare
52
+ <option value="vol"> volunteers
53
+ <option disabled value="">--<option value="eee">all event<option value="sss">all for sale / wanted<option value="ggg">all gigs<option value="hhh">all housing<option value="jjj">all jobs<option value="ppp">all personals<option value="res">all resume<option value="bbb">all services offered</select>
54
+ <input type="submit" value="Search">
55
+ </td><td>
56
+ <label><input type="checkbox" name="srchType" value="T"
57
+ title="check this box to search only posting titles"> only search titles</label>
58
+ </td>
59
+ </tr>
60
+
61
+ <tr>
62
+ <td align="right" width="1"></td>
63
+ <td></td>
64
+ <td align="left"><label><input type="checkbox" name="hasPic" value="1"> has image</label></td>
65
+ </tr></table></form></blockquote><span id="showPics"></span><span id="hidePics"></span>
66
+
67
+ <blockquote>
68
+ <table width="95%" summary="">
69
+ <tr>
70
+ <td valign="top">[ Thu, 15 Jan 19:13:19 ]</td>
71
+ <td valign="top" id="messages"><span class="hl"> [ <b><a href="/about/safety">PERSONAL SAFETY TIPS</a></b> ] </span> <span class="hl"> [ <b><a href="/about/scams">AVOIDING SCAMS &amp; FRAUD</a></b> ] </span> <span class="hl"> [<a href="/cgi-bin/success.stories.cgi">success story?</a>]</span> </td>
72
+ </tr>
73
+ </table>
74
+
75
+ <h4>Thu Jan 15</h4>
76
+ <p><a href="/act/994549324.html">Female Running Partner -</a><font size="-1"> (Shoal Creek or Town Lake)</font></p>
77
+ <p><a href="/act/994427679.html">TENNIS ANYONE? -</a><font size="-1"> (i35 &amp; US71)</font></p>
78
+ <p><a href="/act/994375294.html">Home Workers Needed -</a><font size="-1"> (Anywhere, USA)</font></p>
79
+ <p><a href="/act/994247774.html">Do you follow Eat to Live by Dr. Joel Fuhrman? -</a><font size="-1"> (North Central Austin)</font></p>
80
+ <p><a href="/act/994238180.html">photographer buddy -</a><font size="-1"> (Austin/central/south/s/w)</font> <span class="p"> pic</span></p>
81
+ <p><a href="/act/994209394.html">GET IN THE BEST SHAPE OF YOUR LIFE!!! -</a><font size="-1"> (NW Austin)</font> <span class="p"> pic</span></p>
82
+ <p><a href="/act/994198051.html">I CAN HELP ATHLETES GET FASTER &amp; MORE EXPLOSIVE, $28 to $35 a session -</a></p>
83
+ <p><a href="/act/994185159.html">Sing your heart out in the NATIONAL KARAOKE LEAGUE! -</a><font size="-1"> (2 Austin Divisions)</font> <span class="p"> pic</span></p>
84
+ <p><a href="/act/994111282.html"> FITNESS TRAINING for $20 -</a><font size="-1"> (austin/round rock)</font></p>
85
+ <p><a href="/act/994023820.html">Looking for a great workout? -</a><font size="-1"> (Austin and Surrounding Areas)</font></p>
86
+ <p><a href="/act/993919120.html">JOIN: The Give Me A Dollar Club -</a><font size="-1"> (The Universe and Beyond)</font></p>
87
+ <p><a href="/act/993913699.html">Do You Want To Be The Biggest Loser In Austin ? -</a></p>
88
+ <p><a href="/act/993878678.html">Seeking Tennis Hitting Partner -</a><font size="-1"> (NW Austin/CP High School)</font></p>
89
+ <p><a href="/act/993802305.html">want to play rugby? -</a><font size="-1"> (West Austin area)</font> <span class="p"> pic</span></p>
90
+ <p><a href="/act/993760889.html">Tongiht DateandDash Speed-Dating Party For College Grads -</a><font size="-1"> (Halcyon Cafe)</font> <span class="p"> pic</span></p>
91
+ <p><a href="/act/993731629.html">4TH ANNUAL HOT CHOCOLATE AND COOKIES RIDE!!! -</a><font size="-1"> ( Round Rock Harley Davidson)</font></p>
92
+ <p><a href="/act/993660526.html">Traveling The World By Backpack Need Someone To Manage business -</a><font size="-1"> (Austin)</font></p>
93
+ <p><a href="/act/992760567.html">Massage/facial room for rent in Round Rock -</a><font size="-1"> (Round Rock, Tx)</font></p>
94
+ <h4>Wed Jan 14</h4>
95
+ <p><a href="/act/993511991.html">Gentle Yoga for Beginners (From $ 30/10 Classes....) -</a><font size="-1"> (Five Austin Locations)</font></p>
96
+ <p><a href="/act/993414260.html">Pflugerville Fitness Boot Camps -</a><font size="-1"> (Pfluger Park)</font> <span class="p"> pic</span></p>
97
+ <p><a href="/act/993408050.html">Round Rock Mommy Group Seeking New Members -</a><font size="-1"> (Round Rock)</font></p>
98
+ <p><a href="/act/993302861.html">Men's Over 30 Soccer Team looking for players -</a><font size="-1"> (Austin)</font></p>
99
+ <p><a href="/act/992975456.html">tennis players for fun times -</a><font size="-1"> (taylor/ hutto/granger)</font></p>
100
+ <p><a href="/act/993159668.html">Co-ed Soccer Players -</a><font size="-1"> (Austin)</font></p>
101
+ <p><a href="/act/992992750.html">BADMINTON TONIGHT! adult, both women and men -</a><font size="-1"> (austin rec center, 1301 shoal creek)</font> <span class="p"> pic</span></p>
102
+ <p><a href="/act/992943165.html">YOUTH FLAG FOOTBALL -</a><font size="-1"> (ROUND ROCK TX)</font></p>
103
+ <p><a href="/act/992893767.html">Workout!!! I'll help you quit making excuses!!! $26 - $50 -</a></p>
104
+ <p><a href="/act/992558125.html">S exercise -</a><font size="-1"> (Atx)</font> <span class="p"> pic</span></p>
105
+ <p><a href="/act/992451634.html">Dance Classes for Bigger Bodies -</a><font size="-1"> (Central Austin)</font></p>
106
+ <p><a href="/act/992267236.html">Dance partner wanted -</a><font size="-1"> (Austin)</font></p>
107
+ <p><a href="/act/992239729.html">Arabic Tutor -</a><font size="-1"> (Austin)</font></p>
108
+ <h4>Tue Jan 13</h4>
109
+ <p><a href="/act/991895757.html">Any norwegian speakers, anyone from Norway in Austin? -</a><font size="-1"> (Downtown)</font></p>
110
+ <p><a href="/act/991763196.html">Tennis, Biking, Badminton, Jogging, Hiking, Dancing, etc. -</a><font size="-1"> (Southwest Austin)</font></p>
111
+ <p><a href="/act/991734075.html">Tennis in NW Austin? -</a><font size="-1"> (Lake Creek and 183)</font></p>
112
+ <p><a href="/act/991563998.html">Looking for Workout partner at Gold's Gym -</a><font size="-1"> (SW Austin)</font> <span class="p"> pic</span></p>
113
+ <p><a href="/act/991432735.html">VOICE LESSONS -</a></p>
114
+ <p><a href="/act/991553805.html">Meet New People in the NATIONAL KARAOKE LEAGUE! Register Today!!! -</a><font size="-1"> (2 Austin Divisions)</font> <span class="p"> pic</span></p>
115
+ <p><a href="/act/991201591.html">Women's Rugby in Austin -</a><font size="-1"> (Burnett Middle School)</font> <span class="p"> pic</span></p>
116
+ <p><a href="/act/991196763.html">Hate the Gym ? Hate Boot camps? Join Us -</a></p>
117
+ <p><a href="/act/991123059.html">Interested in playing rugby? Looking to start a team in west austin -</a><font size="-1"> (West - dripping springs, lakeway, areas)</font></p>
118
+ <p><a href="/act/991081839.html">ANY QLINK XF200 SUPERMOTO OWNERS OUT THERE -</a><font size="-1"> (CENTRAL TEXAS)</font> <span class="p"> pic</span></p>
119
+ <p><a href="/act/991057729.html">Join Family and Friends to Lose Weight in 09!!!! -</a><font size="-1"> (Austin)</font></p>
120
+ <h4>Mon Jan 12</h4>
121
+ <p><a href="/act/989837938.html">H.E.A.T. Boot Camp -</a><font size="-1"> (DT, Round Rock, Pflugerville)</font> <span class="p"> pic</span></p>
122
+ <p><a href="/act/990610113.html">FREE !!!! Salsa Dance Classes for Beginners -</a></p>
123
+ <p><a href="/act/990503170.html">Austin Metro Baseball League -</a><font size="-1"> (Austin, Texas)</font></p>
124
+ <p><a href="/act/990506065.html">Hot or Not Survey: Rate Photos of Single Men and Women -</a></p>
125
+ <p><a href="/act/990365041.html">Early Morning or Evening Classes Available! Free Boot Camp! Bring a Fr -</a><font size="-1"> (Austin and Surrounding Areas)</font></p>
126
+ <p><a href="/act/990282220.html">Fitness Training Studios-Round Rock -</a><font size="-1"> (round rock/austin)</font></p>
127
+ <p><a href="/act/990206516.html">Baseball Players wanted 18+ -</a><font size="-1"> (Austin)</font></p>
128
+ <p><a href="/act/990179653.html">meet cool people now -</a><font size="-1"> (austin)</font></p>
129
+ <p><a href="/act/990165942.html">Want to go camping in Coloardo? -</a></p>
130
+ <p><a href="/act/990094775.html">Male Looking for Female Massage Partner -</a></p>
131
+ <p><a href="/act/990081671.html">Looking for roleplayers who like Exalted or Mage -</a><font size="-1"> (North Austin)</font></p>
132
+ <p><a href="/act/989972161.html">Doctor Who Fan Club -</a><font size="-1"> (North Austin)</font></p>
133
+ <p><a href="/act/989918540.html">Gauging Interest in group cooking class -</a><font size="-1"> (Wilson appliance? SW)</font></p>
134
+ <p><a href="/act/989863061.html">Chinese Circus Pole Classes For Everyday People -</a><font size="-1"> (Various)</font> <span class="p"> pic</span></p>
135
+ <p><a href="/act/989845262.html">Kickball Social League -</a><font size="-1"> (Austin)</font></p>
136
+ <p><a href="/act/989742852.html">Looking for a running partner -</a><font size="-1"> (S/S.W Austin)</font></p>
137
+ <p><a href="/act/989581856.html">Over 30 Soccer Team -</a><font size="-1"> (Austin)</font></p>
138
+ <p><a href="/act/989547987.html">Smart Drunks Need Apply -</a><font size="-1"> (Austin)</font> <span class="p"> img</span></p>
139
+ <p><a href="/act/989536612.html">men's freestyle wrestling? -</a></p>
140
+ <h4>Sun Jan 11</h4>
141
+ <p><a href="/act/989355135.html">French tutor -</a><font size="-1"> (Austin tx (North))</font></p>
142
+ <p><a href="/act/989312977.html">SOFTBALL SCRIMMAGES NEEDED -</a><font size="-1"> (SOUTH /NORTH)</font></p>
143
+ <p><a href="/act/989277183.html">Austin, TX area golfers -</a></p>
144
+ <p><a href="/act/989264608.html">Sand Volleyball -</a><font size="-1"> (SW Austin)</font></p>
145
+ <p><a href="/act/988955318.html">flag football -</a><font size="-1"> (Manor TEXAS)</font></p>
146
+ <p><a href="/act/988798297.html">Looking for synchronized swimmers... -</a><font size="-1"> (Austin)</font></p>
147
+ <p><a href="/act/988747055.html">Seeking female dance partner for tonight -</a><font size="-1"> (Continental Club)</font></p>
148
+ <p><a href="/act/988734928.html">Looking for Baseball Players for 2009 Season -</a><font size="-1"> (Austin, TX)</font></p>
149
+ <p><a href="/act/988722808.html">National Karaoke League REGISTERING NOW for Austin Spring 09 Season! -</a><font size="-1"> (2 Austin Divisions)</font> <span class="p"> pic</span></p>
150
+ <p><a href="/act/988677872.html">Chess -</a><font size="-1"> (Austin)</font></p>
151
+ <p><a href="/act/988306233.html">SOFTBALL PLAYERS NEEDED FOR SOFTBALL AUSTIN "C" DIVISION -</a><font size="-1"> (Krieg Fields )</font></p>
152
+ <h4>Sat Jan 10</h4>
153
+ <p><a href="/act/988174359.html">Play Darts at a local Pub -</a><font size="-1"> (Austin)</font></p>
154
+ <p><a href="/act/987971710.html">Audio Producer -</a></p>
155
+ <p><a href="/act/987904354.html">Charitable organization looking for Venue to sell kettle corn -</a><font size="-1"> (Austin)</font></p>
156
+ <p><a href="/act/987683364.html">Sports Conditioning -</a></p>
157
+ <p><a href="/act/987652052.html">FREE!!!!!! Salsa Dance Classes for Beginners -</a></p>
158
+ <p><a href="/act/987656848.html">Looking for Volleyball Players -</a><font size="-1"> (Cedar Park, Leander, RR &amp; Austin)</font></p>
159
+ <p><a href="/act/987605989.html">Beginner Yoga for Wellness ($ 65/10 Classes) -</a><font size="-1"> (Dittmar Rec. Center in South Austin)</font></p>
160
+ <p><a href="/act/987587586.html">Take Control of Your Life and Weight, Join Now -</a></p>
161
+ <p><a href="/act/987396047.html">January Writers Contest -</a></p>
162
+ <p><a href="/act/987314677.html">Whats going on this Saturday? -</a><font size="-1"> (south austin)</font> <span class="p"> pic</span></p>
163
+ <h4>Fri Jan 09</h4>
164
+ <p><a href="/act/987048713.html">Part Time Hours -</a> <span class="p"> img</span></p>
165
+ <p><a href="/act/986777840.html">Swing Practice Partner (50+) -</a><font size="-1"> (Austin)</font></p>
166
+ <p><a href="/act/986616066.html">Free Massage Exchange -</a></p>
167
+ <p><a href="/act/986364958.html">MATURE ACTORS -</a><font size="-1"> (Austin )</font></p>
168
+ <p><a href="/act/985988896.html">RE: Weight loss buddy wanted is SPAMMMMM -</a></p>
169
+ <h4>Thu Jan 08</h4>
170
+ <p><a href="/act/985624787.html">Legal NLTHE Home Game -</a><font size="-1"> (Austin (North))</font></p>
171
+ <p><a href="/act/985521939.html">Martial Arts New Years Special, FREE WEEK! -</a><font size="-1"> (beecave,lakeway)</font></p>
172
+ <p><a href="/act/985436721.html">Yoga buddy wanted -</a><font size="-1"> (Round Rock/Austin)</font></p>
173
+ <p><a href="/act/985360103.html">Looking for a Trainer in Austin, near downtown -</a><font size="-1"> (Austin - downtown)</font> <span class="p"> pic</span></p>
174
+ <p><a href="/act/985197181.html">Running at (or near) dusk (or "magic hour") -</a><font size="-1"> (UT)</font></p>
175
+ <p><a href="/act/985147438.html">Looking for a Golf Buddy -- Male or Female -</a><font size="-1"> (UT)</font></p>
176
+ <p><a href="/act/985023319.html">Any Cat 5's RRers out there looking for someone to train with? -</a><font size="-1"> (Lamar &amp; 2222)</font></p>
177
+ <p><a href="/act/984973222.html">Bridge Players 40+ -</a><font size="-1"> (Austin)</font></p>
178
+ <p><a href="/act/984818172.html">Looking to start a fitness program but not sure boot camp is for you? -</a><font size="-1"> (Austin and Surrounding Areas)</font></p>
179
+ <h4>Wed Jan 07</h4>
180
+ <p><a href="/act/984516372.html">KARATE/TAE KWON DO FAMILY ACTIVITY CENTER. SAVE MONEY/NO CONTRACTS -</a><font size="-1"> (CEDAR PARK, LEANDER, ROUND ROCK)</font></p>
181
+ <p><a href="/act/984389126.html">FREE !!!!!!!! Salsa Dance Classes for Beginners -</a></p>
182
+ <p><a href="/act/984317060.html">BADMINTON TONIGHT, OPEN PLAY! at austin rec center -</a><font size="-1"> (1301 shoal creek blvd)</font> <span class="p"> pic</span></p>
183
+ <p><a href="/act/984220709.html">Looking for Graphic Artist/ Comic Artist to Collaborate With -</a><font size="-1"> (Central)</font></p>
184
+
185
+
186
+ <p align="center"><font size="4"><a href="index100.html">next 100 postings</a></font>
187
+
188
+ <div id="footer">
189
+ <hr>
190
+ <span id="copy">
191
+ Copyright &copy; 2009 craigslist, inc.<br>
192
+ <a href="#top">Back to top of page</a>
193
+ </span>
194
+ <span class="rss">
195
+ <a class="l" href="http://austin.craigslist.org/act/index.rss">RSS</a>
196
+ <a href="http://www.craigslist.org/about/rss">(?)</a><br>
197
+ <a class="y" href="http://add.my.yahoo.com/rss?url=http://austin.craigslist.org/act/index.rss">add to My Yahoo!</a>
198
+ </span>
199
+ </div>
200
+ <br><br>
201
+
202
+ <div id="floater">&nbsp;</div>
203
+
204
+ </blockquote>
205
+
206
+ </body>
207
+ </html>
@@ -0,0 +1 @@
1
+ { "groups": [ { "date": "Thu Jan 15", "events": [ { "title": "Female Running Partner - (Shoal Creek or Town Lake)", "link": "\/act\/994549324.html" }, { "title": "TENNIS ANYONE? - (i35 & US71)", "link": "\/act\/994427679.html" }, { "title": "Home Workers Needed - (Anywhere, USA)", "link": "\/act\/994375294.html" }, { "title": "Do you follow Eat to Live by Dr. Joel Fuhrman? - (North Central Austin)", "link": "\/act\/994247774.html" }, { "title": "photographer buddy - (Austin\/central\/south\/s\/w) pic", "link": "\/act\/994238180.html" }, { "title": "GET IN THE BEST SHAPE OF YOUR LIFE!!! - (NW Austin) pic", "link": "\/act\/994209394.html" }, { "title": "I CAN HELP ATHLETES GET FASTER & MORE EXPLOSIVE, $28 to $35 a session -", "link": "\/act\/994198051.html" }, { "title": "Sing your heart out in the NATIONAL KARAOKE LEAGUE! - (2 Austin Divisions) pic", "link": "\/act\/994185159.html" }, { "title": " FITNESS TRAINING for $20 - (austin\/round rock)", "link": "\/act\/994111282.html" }, { "title": "Looking for a great workout? - (Austin and Surrounding Areas)", "link": "\/act\/994023820.html" }, { "title": "JOIN: The Give Me A Dollar Club - (The Universe and Beyond)", "link": "\/act\/993919120.html" }, { "title": "Do You Want To Be The Biggest Loser In Austin ? -", "link": "\/act\/993913699.html" }, { "title": "Seeking Tennis Hitting Partner - (NW Austin\/CP High School)", "link": "\/act\/993878678.html" }, { "title": "want to play rugby? - (West Austin area) pic", "link": "\/act\/993802305.html" }, { "title": "Tongiht DateandDash Speed-Dating Party For College Grads - (Halcyon Cafe) pic", "link": "\/act\/993760889.html" }, { "title": "4TH ANNUAL HOT CHOCOLATE AND COOKIES RIDE!!! - ( Round Rock Harley Davidson)", "link": "\/act\/993731629.html" }, { "title": "Traveling The World By Backpack Need Someone To Manage business - (Austin)", "link": "\/act\/993660526.html" }, { "title": "Massage\/facial room for rent in Round Rock - (Round Rock, Tx)", "link": "\/act\/992760567.html" } ] }, { "date": "Wed Jan 14", "events": [ { "title": "Gentle Yoga for Beginners (From $ 30\/10 Classes....) - (Five Austin Locations)", "link": "\/act\/993511991.html" }, { "title": "Pflugerville Fitness Boot Camps - (Pfluger Park) pic", "link": "\/act\/993414260.html" }, { "title": "Round Rock Mommy Group Seeking New Members - (Round Rock)", "link": "\/act\/993408050.html" }, { "title": "Men's Over 30 Soccer Team looking for players - (Austin)", "link": "\/act\/993302861.html" }, { "title": "tennis players for fun times - (taylor\/ hutto\/granger)", "link": "\/act\/992975456.html" }, { "title": "Co-ed Soccer Players - (Austin)", "link": "\/act\/993159668.html" }, { "title": "BADMINTON TONIGHT! adult, both women and men - (austin rec center, 1301 shoal creek) pic", "link": "\/act\/992992750.html" }, { "title": "YOUTH FLAG FOOTBALL - (ROUND ROCK TX)", "link": "\/act\/992943165.html" }, { "title": "Workout!!! I'll help you quit making excuses!!! $26 - $50 -", "link": "\/act\/992893767.html" }, { "title": "S exercise - (Atx) pic", "link": "\/act\/992558125.html" }, { "title": "Dance Classes for Bigger Bodies - (Central Austin)", "link": "\/act\/992451634.html" }, { "title": "Dance partner wanted - (Austin)", "link": "\/act\/992267236.html" }, { "title": "Arabic Tutor - (Austin)", "link": "\/act\/992239729.html" } ] }, { "date": "Tue Jan 13", "events": [ { "title": "Any norwegian speakers, anyone from Norway in Austin? - (Downtown)", "link": "\/act\/991895757.html" }, { "title": "Tennis, Biking, Badminton, Jogging, Hiking, Dancing, etc. - (Southwest Austin)", "link": "\/act\/991763196.html" }, { "title": "Tennis in NW Austin? - (Lake Creek and 183)", "link": "\/act\/991734075.html" }, { "title": "Looking for Workout partner at Gold's Gym - (SW Austin) pic", "link": "\/act\/991563998.html" }, { "title": "VOICE LESSONS -", "link": "\/act\/991432735.html" }, { "title": "Meet New People in the NATIONAL KARAOKE LEAGUE! Register Today!!! - (2 Austin Divisions) pic", "link": "\/act\/991553805.html" }, { "title": "Women's Rugby in Austin - (Burnett Middle School) pic", "link": "\/act\/991201591.html" }, { "title": "Hate the Gym ? Hate Boot camps? Join Us -", "link": "\/act\/991196763.html" }, { "title": "Interested in playing rugby? Looking to start a team in west austin - (West - dripping springs, lakeway, areas)", "link": "\/act\/991123059.html" }, { "title": "ANY QLINK XF200 SUPERMOTO OWNERS OUT THERE - (CENTRAL TEXAS) pic", "link": "\/act\/991081839.html" }, { "title": "Join Family and Friends to Lose Weight in 09!!!! - (Austin)", "link": "\/act\/991057729.html" } ] }, { "date": "Mon Jan 12", "events": [ { "title": "H.E.A.T. Boot Camp - (DT, Round Rock, Pflugerville) pic", "link": "\/act\/989837938.html" }, { "title": "FREE !!!! Salsa Dance Classes for Beginners -", "link": "\/act\/990610113.html" }, { "title": "Austin Metro Baseball League - (Austin, Texas)", "link": "\/act\/990503170.html" }, { "title": "Hot or Not Survey: Rate Photos of Single Men and Women -", "link": "\/act\/990506065.html" }, { "title": "Early Morning or Evening Classes Available! Free Boot Camp! Bring a Fr - (Austin and Surrounding Areas)", "link": "\/act\/990365041.html" }, { "title": "Fitness Training Studios-Round Rock - (round rock\/austin)", "link": "\/act\/990282220.html" }, { "title": "Baseball Players wanted 18+ - (Austin)", "link": "\/act\/990206516.html" }, { "title": "meet cool people now - (austin)", "link": "\/act\/990179653.html" }, { "title": "Want to go camping in Coloardo? -", "link": "\/act\/990165942.html" }, { "title": "Male Looking for Female Massage Partner -", "link": "\/act\/990094775.html" }, { "title": "Looking for roleplayers who like Exalted or Mage - (North Austin)", "link": "\/act\/990081671.html" }, { "title": "Doctor Who Fan Club - (North Austin)", "link": "\/act\/989972161.html" }, { "title": "Gauging Interest in group cooking class - (Wilson appliance? SW)", "link": "\/act\/989918540.html" }, { "title": "Chinese Circus Pole Classes For Everyday People - (Various) pic", "link": "\/act\/989863061.html" }, { "title": "Kickball Social League - (Austin)", "link": "\/act\/989845262.html" }, { "title": "Looking for a running partner - (S\/S.W Austin)", "link": "\/act\/989742852.html" }, { "title": "Over 30 Soccer Team - (Austin)", "link": "\/act\/989581856.html" }, { "title": "Smart Drunks Need Apply - (Austin) img", "link": "\/act\/989547987.html" }, { "title": "men's freestyle wrestling? -", "link": "\/act\/989536612.html" } ] }, { "date": "Sun Jan 11", "events": [ { "title": "French tutor - (Austin tx (North))", "link": "\/act\/989355135.html" }, { "title": "SOFTBALL SCRIMMAGES NEEDED - (SOUTH \/NORTH)", "link": "\/act\/989312977.html" }, { "title": "Austin, TX area golfers -", "link": "\/act\/989277183.html" }, { "title": "Sand Volleyball - (SW Austin)", "link": "\/act\/989264608.html" }, { "title": "flag football - (Manor TEXAS)", "link": "\/act\/988955318.html" }, { "title": "Looking for synchronized swimmers... - (Austin)", "link": "\/act\/988798297.html" }, { "title": "Seeking female dance partner for tonight - (Continental Club)", "link": "\/act\/988747055.html" }, { "title": "Looking for Baseball Players for 2009 Season - (Austin, TX)", "link": "\/act\/988734928.html" }, { "title": "National Karaoke League REGISTERING NOW for Austin Spring 09 Season! - (2 Austin Divisions) pic", "link": "\/act\/988722808.html" }, { "title": "Chess - (Austin)", "link": "\/act\/988677872.html" }, { "title": "SOFTBALL PLAYERS NEEDED FOR SOFTBALL AUSTIN \"C\" DIVISION - (Krieg Fields )", "link": "\/act\/988306233.html" } ] }, { "date": "Sat Jan 10", "events": [ { "title": "Play Darts at a local Pub - (Austin)", "link": "\/act\/988174359.html" }, { "title": "Audio Producer -", "link": "\/act\/987971710.html" }, { "title": "Charitable organization looking for Venue to sell kettle corn - (Austin)", "link": "\/act\/987904354.html" }, { "title": "Sports Conditioning -", "link": "\/act\/987683364.html" }, { "title": "FREE!!!!!! Salsa Dance Classes for Beginners -", "link": "\/act\/987652052.html" }, { "title": "Looking for Volleyball Players - (Cedar Park, Leander, RR & Austin)", "link": "\/act\/987656848.html" }, { "title": "Beginner Yoga for Wellness ($ 65\/10 Classes) - (Dittmar Rec. Center in South Austin)", "link": "\/act\/987605989.html" }, { "title": "Take Control of Your Life and Weight, Join Now -", "link": "\/act\/987587586.html" }, { "title": "January Writers Contest -", "link": "\/act\/987396047.html" }, { "title": "Whats going on this Saturday? - (south austin) pic", "link": "\/act\/987314677.html" } ] }, { "date": "Fri Jan 09", "events": [ { "title": "Part Time Hours - img", "link": "\/act\/987048713.html" }, { "title": "Swing Practice Partner (50+) - (Austin)", "link": "\/act\/986777840.html" }, { "title": "Free Massage Exchange -", "link": "\/act\/986616066.html" }, { "title": "MATURE ACTORS - (Austin )", "link": "\/act\/986364958.html" }, { "title": "RE: Weight loss buddy wanted is SPAMMMMM -", "link": "\/act\/985988896.html" } ] }, { "date": "Thu Jan 08", "events": [ { "title": "Legal NLTHE Home Game - (Austin (North))", "link": "\/act\/985624787.html" }, { "title": "Martial Arts New Years Special, FREE WEEK! - (beecave,lakeway)", "link": "\/act\/985521939.html" }, { "title": "Yoga buddy wanted - (Round Rock\/Austin)", "link": "\/act\/985436721.html" }, { "title": "Looking for a Trainer in Austin, near downtown - (Austin - downtown) pic", "link": "\/act\/985360103.html" }, { "title": "Running at (or near) dusk (or \"magic hour\") - (UT)", "link": "\/act\/985197181.html" }, { "title": "Looking for a Golf Buddy -- Male or Female - (UT)", "link": "\/act\/985147438.html" }, { "title": "Any Cat 5's RRers out there looking for someone to train with? - (Lamar & 2222)", "link": "\/act\/985023319.html" }, { "title": "Bridge Players 40+ - (Austin)", "link": "\/act\/984973222.html" }, { "title": "Looking to start a fitness program but not sure boot camp is for you? - (Austin and Surrounding Areas)", "link": "\/act\/984818172.html" } ] }, { "date": "Wed Jan 07", "events": [ { "title": "KARATE\/TAE KWON DO FAMILY ACTIVITY CENTER. SAVE MONEY\/NO CONTRACTS - (CEDAR PARK, LEANDER, ROUND ROCK)", "link": "\/act\/984516372.html" }, { "title": "FREE !!!!!!!! Salsa Dance Classes for Beginners -", "link": "\/act\/984389126.html" }, { "title": "BADMINTON TONIGHT, OPEN PLAY! at austin rec center - (1301 shoal creek blvd) pic", "link": "\/act\/984317060.html" }, { "title": "Looking for Graphic Artist\/ Comic Artist to Collaborate With - (Central)", "link": "\/act\/984220709.html" } ] } ] }
@@ -0,0 +1,9 @@
1
+ {
2
+ "groups": [{
3
+ "date": "h4",
4
+ "events(p)": [{
5
+ "title": ".",
6
+ "link": "a/@href",
7
+ }]
8
+ }]
9
+ }