libcraigscrape 0.8.2 → 0.8.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,5 +1,9 @@
1
1
  == Change Log
2
2
 
3
+ === Release 0.8.3 (When?)
4
+ - Someone was posting really bad html that was screwing up Hpricot. Such is to be expected when you're soliciting html from the general public I suppose. Added test_bugs_found061710 posting test, and fixed by stripping out the user body before parsing with Hpricot.
5
+ - Added a MaxRedirectError and corresponding maximum_redirects_per_request cattr for the Craigscrape objects. This fixed a weird bug where craigslist was sending us in redirect circles around 06/10
6
+
3
7
  === Release 0.8.2 (April 17, 2010)
4
8
  - Found another odd parsing bug. Scrape sample is in 'listing_samples/mia_search_kitten.3.15.10.html', Adjusted CraigScrape::Listings::HEADER_DATE to fix.
5
9
  - Craigslist started added <span> tags in its post summaries. Fixed. See sample in test_new_listing_span051710
data/Rakefile CHANGED
@@ -11,7 +11,7 @@ include FileUtils
11
11
  RbConfig = Config unless defined? RbConfig
12
12
 
13
13
  NAME = "libcraigscrape"
14
- VERS = ENV['VERSION'] || "0.8.2"
14
+ VERS = ENV['VERSION'] || "0.8.3"
15
15
  PKG = "#{NAME}-#{VERS}"
16
16
 
17
17
  RDOC_OPTS = ['--quiet', '--title', 'The libcraigscrape Reference', '--main', 'README', '--inline-source']
data/bin/craigwatch CHANGED
@@ -488,7 +488,7 @@ report_summaries = craig_report.searches.collect do |search|
488
488
  !new_summaries.has_key? post.url and
489
489
  search.passes_filter? post
490
490
  )
491
- rescue CraigScrape::Scraper::ResourceNotFoundError => e
491
+ rescue CraigScrape::Scraper::ResourceNotFoundError,CraigScrape::Scraper::MaxRedirectError => e
492
492
  # Sometimes we do end up with 404's that will never load, and we dont want to
493
493
  # abort a run simply b/c we found some anomaly due to the craigslist index.
494
494
  # being out of date. This ResourceNotFoundError can occur due to
data/lib/listings.rb CHANGED
@@ -48,7 +48,7 @@ class CraigScrape::Listings < CraigScrape::Scraper
48
48
  # Generally, the H4 tags contain valid dates. When they do - this is easy:
49
49
  current_date = CraigScrape.most_recently_expired_time $1, $2
50
50
  elsif html.at('h4:last-of-type') == el
51
- # There's a specific bug, where these nonsense h4's just appear without anything relevant inside them.
51
+ # There's a specific bug in craigslist, where these nonsense h4's just appear without anything relevant inside them.
52
52
  # They're safe to ignore if they're not the last h4 on the page. I fthey're the last h4 on the page,
53
53
  # we need to pull up the full post in order to accurate tell the date.
54
54
  # Setting this to nil will achieve the eager-load.
data/lib/posting.rb CHANGED
@@ -19,6 +19,7 @@ class CraigScrape::Posting < CraigScrape::Scraper
19
19
  REPLY_TO = /(.+)/
20
20
  PRICE = /((?:^\$[\d]+(?:\.[\d]{2})?)|(?:\$[\d]+(?:\.[\d]{2})?$))/
21
21
  USERBODY_PARTS = /\<div id\=\"userbody\">(.+)\<br[ ]*[\/]?\>\<br[ ]*[\/]?\>(.+)\<\/div\>/m
22
+ HTML_HEADER = /^(.+)\<div id\=\"userbody\">/m
22
23
  IMAGE_SRC = /\<im[a]?g[e]?[^\>]*src=(?:\'([^\']+)\'|\"([^\"]+)\"|([^ ]+))[^\>]*\>/
23
24
 
24
25
  # This is really just for testing, in production use, uri.path is a better solution
@@ -33,12 +34,12 @@ class CraigScrape::Posting < CraigScrape::Scraper
33
34
  contents,posting_id,post_time,header,title,full_section
34
35
  ].any?{|f| f.nil? or (f.respond_to? :length and f.length == 0)}
35
36
  end
36
-
37
+
37
38
 
38
39
  # String, The contents of the item's html body heading
39
40
  def header
40
41
  unless @header
41
- h2 = html.at 'h2' if html
42
+ h2 = html_head.at 'h2' if html_head
42
43
  @header = he_decode h2.inner_html if h2
43
44
  end
44
45
 
@@ -48,7 +49,7 @@ class CraigScrape::Posting < CraigScrape::Scraper
48
49
  # String, the item's title
49
50
  def title
50
51
  unless @title
51
- title_tag = html.at 'title' if html
52
+ title_tag = html_head.at 'title' if html_head
52
53
  @title = he_decode title_tag.inner_html if title_tag
53
54
  @title = nil if @title and @title.length == 0
54
55
  end
@@ -61,9 +62,9 @@ class CraigScrape::Posting < CraigScrape::Scraper
61
62
  unless @full_section
62
63
  @full_section = []
63
64
 
64
- (html/"div[@class='bchead']//a").each do |a|
65
+ (html_head/"div[@class='bchead']//a").each do |a|
65
66
  @full_section << he_decode(a.inner_html) unless a['id'] and a['id'] == 'ef'
66
- end if html
67
+ end if html_head
67
68
  end
68
69
 
69
70
  @full_section
@@ -72,7 +73,7 @@ class CraigScrape::Posting < CraigScrape::Scraper
72
73
  # String, represents the post's reply-to address, if listed
73
74
  def reply_to
74
75
  unless @reply_to
75
- cursor = html.at 'hr' if html
76
+ cursor = html_head.at 'hr' if html_head
76
77
  cursor = cursor.next_sibling until cursor.nil? or cursor.name == 'a'
77
78
  @reply_to = $1 if cursor and REPLY_TO.match he_decode(cursor.inner_html)
78
79
  end
@@ -83,7 +84,7 @@ class CraigScrape::Posting < CraigScrape::Scraper
83
84
  # Time, reflects the full timestamp of the posting
84
85
  def post_time
85
86
  unless @post_time
86
- cursor = html.at 'hr' if html
87
+ cursor = html_head.at 'hr' if html_head
87
88
  cursor = cursor.next_node until cursor.nil? or POST_DATE.match cursor.to_s
88
89
  @post_time = Time.parse $1 if $1
89
90
  end
@@ -277,6 +278,16 @@ class CraigScrape::Posting < CraigScrape::Scraper
277
278
 
278
279
  private
279
280
 
281
+ # I set apart from html to work around the SystemStackError bugs in test_bugs_found061710. Essentially we
282
+ # return everything above the user_body
283
+ def html_head
284
+ @html_head = Hpricot.parse $1 if @html_head.nil? and HTML_HEADER.match html.to_s
285
+ # We return html itself if HTML_HEADER doesn't match, which would be case for a 404 page or something
286
+ @html_head ||= html
287
+
288
+ @html_head
289
+ end
290
+
280
291
  # OK - so the biggest problem parsing the contents of a craigslist post is that users post invalid html all over the place
281
292
  # This bad html trips up hpricot, and I've resorted to splitting the page up using string parsing like so:
282
293
  # We return this as a string, since it makes sense, and since its tough to say how hpricot might mangle this if the html is whack
data/lib/scraper.rb CHANGED
@@ -29,6 +29,7 @@ class CraigScrape::Scraper
29
29
  cattr_accessor :retries_on_fetch_fail
30
30
  cattr_accessor :retries_on_404_fail
31
31
  cattr_accessor :sleep_between_404_retries
32
+ cattr_accessor :maximum_redirects_per_request
32
33
 
33
34
  URL_PARTS = /^(?:([^\:]+)\:\/\/([^\/]*))?(.*)$/
34
35
  HTML_TAG = /<\/?[^>]*>/
@@ -42,6 +43,8 @@ class CraigScrape::Scraper
42
43
 
43
44
  self.retries_on_404_fail = 3
44
45
  self.sleep_between_404_retries = 3
46
+
47
+ self.maximum_redirects_per_request = 20
45
48
 
46
49
  class BadConstructionError < StandardError #:nodoc:
47
50
  end
@@ -52,6 +55,9 @@ class CraigScrape::Scraper
52
55
  class BadUrlError < StandardError #:nodoc:
53
56
  end
54
57
 
58
+ class MaxRedirectError < StandardError #:nodoc:
59
+ end
60
+
55
61
  class FetchError < StandardError #:nodoc:
56
62
  end
57
63
 
@@ -125,21 +131,23 @@ class CraigScrape::Scraper
125
131
  '%s://%s%s' % [scheme, host, path]
126
132
  end
127
133
 
128
- def fetch_uri(uri)
129
- logger.info "Requesting: %s" % @url if logger
134
+ def fetch_uri(uri, redirect_count = 0)
135
+ logger.info "Requesting (%d): %s" % [redirect_count, @url.inspect] if logger
136
+
137
+ raise MaxRedirectError, "Max redirects (#{redirect_count}) reached for URL: #{@url}" if redirect_count > self.maximum_redirects_per_request-1
130
138
 
131
139
  case uri.scheme
132
140
  when 'file'
133
141
  # If this is a directory, we'll try to approximate http a bit by loading a '/index.html'
134
142
  File.read( File.directory?(uri.path) ? "#{uri.path}/index.html" : uri.path )
135
143
  when /^http[s]?/
136
- fetch_http uri
144
+ fetch_http uri, redirect_count
137
145
  else
138
146
  raise BadUrlError, "Unknown URI scheme for the url: #{@url}"
139
147
  end
140
148
  end
141
149
 
142
- def fetch_http(uri)
150
+ def fetch_http(uri, redirect_count = 0)
143
151
  fetch_attempts = 0
144
152
  resource_not_found_attempts = 0
145
153
 
@@ -155,7 +163,7 @@ class CraigScrape::Scraper
155
163
  elsif resp.response['Location']
156
164
  redirect_to = resp.response['Location']
157
165
 
158
- fetch_uri URI.parse(url_from_href(redirect_to))
166
+ fetch_uri URI.parse(url_from_href(redirect_to)), redirect_count+1
159
167
  else
160
168
  # Sometimes Craigslist seems to return 404's for no good reason, and a subsequent fetch will give you what you want
161
169
  raise ResourceNotFoundError, 'Unable to fetch "%s" (%s)' % [ @url, resp.response.code ]
@@ -0,0 +1,2318 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <html>
3
+ <head>
4
+ <title>*****SOFTWARE****</title>
5
+ <meta name="robots" content="NOARCHIVE,NOFOLLOW">
6
+ <link type="text/css" rel="stylesheet" media="all" href="http://www.craigslist.org/styles/craigslist.css?v=3">
7
+ </head>
8
+
9
+ <body class="posting">
10
+
11
+
12
+ <div class="bchead">
13
+ <a id="ef" href="/email.friend?postingID=1796890756">email this posting to a friend</a>
14
+ <a href="http://miami.craigslist.org/">south florida craigslist</a> &gt;
15
+ <a href="http://miami.craigslist.org/mdc/">miami / dade</a> &gt;
16
+ <a href="http://miami.craigslist.org/mdc/sss/">for sale / wanted</a> &gt;
17
+ <a href="http://miami.craigslist.org/mdc/for/">general for sale</a>
18
+ </div>
19
+
20
+
21
+
22
+ <div id="flags">
23
+ <div id="flagMsg">
24
+ please <a href="http://www.craigslist.org/about/help/flags_and_community_moderation">flag</a> with care:
25
+ </div>
26
+ <div id="flagChooser">
27
+ <br>
28
+ <a class="fl" id="flag16" href="/flag/?flagCode=16&amp;postingID=1796890756"
29
+ title="Wrong category, wrong site, discusses another post, or otherwise misplaced">
30
+ miscategorized</a>
31
+ <br>
32
+
33
+ <a class="fl" id="flag28" href="/flag/?flagCode=28&amp;postingID=1796890756"
34
+ title="Violates craigslist Terms Of Use or other posted guidelines">
35
+ prohibited</a>
36
+ <br>
37
+
38
+ <a class="fl" id="flag15" href="/flag/?flagCode=15&amp;postingID=1796890756"
39
+ title="Posted too frequently, in multiple cities/categories, or is too commercial">
40
+ spam/overpost</a>
41
+ <br>
42
+
43
+ <a class="fl" id="flag9" href="/flag/?flagCode=9&amp;postingID=1796890756"
44
+ title="Should be considered for inclusion in the Best-Of-Craigslist">
45
+ best of craigslist</a>
46
+ <br>
47
+ </div>
48
+ </div>
49
+
50
+ <div id="tsb">
51
+ <em>Avoid scams and fraud by dealing locally!</em> Beware any deal involving Western Union, Moneygram, wire transfer, cashier check, money order, shipping, escrow, or any promise of transaction protection/certification/guarantee. <a href="http://www.craigslist.org/about/scams.html">More info</a></div>
52
+ <h2>*****SOFTWARE**** (Dade/Broward)</h2>
53
+ <hr>
54
+ Date: 2010-06-17, 1:22PM EDT<br>
55
+ Reply to: see below <br>
56
+ <hr>
57
+ <br>
58
+ <div id="userbody">
59
+ <b><font size="4">
60
+ <br>
61
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
62
+ <br>
63
+ <b>
64
+ <br>
65
+ <font size="5">
66
+ <br>
67
+ Call (305)610-1845
68
+ <br>
69
+ 11A.M. to 9 P.M
70
+ <br>
71
+
72
+ <br>
73
+ <font size="4">
74
+ <br>
75
+ <ol>
76
+ <br>
77
+
78
+ <br>
79
+ <li>Abelton Live 8.1
80
+ <br>
81
+
82
+ <br>
83
+ <li>ACDSee
84
+ <br>
85
+
86
+ <br>
87
+ <li>Act Premium 2009 & 2010
88
+ <br>
89
+
90
+ <br>
91
+ <li>Adobe Acrobat 9 Pro
92
+ <br>
93
+
94
+ <br>
95
+ <li>Adobe After Effects
96
+ <br>
97
+
98
+ <br>
99
+ <li>Adobe Audition V3
100
+ <br>
101
+
102
+ <br>
103
+ <li>Adobe Flash CS4
104
+ <br>
105
+
106
+ <br>
107
+ <li>Adobe Lightroom 2
108
+ <br>
109
+
110
+ <br>
111
+ <li>Adobe Master Collection CS3
112
+ <br>
113
+
114
+ <br>
115
+ <li>Adobe Master Collection CS4 PC Or MAC
116
+ <br>
117
+
118
+ <br>
119
+ <li>Adobe Photoshop CS3 & CS4 Extended Edition
120
+ <br>
121
+
122
+ <br>
123
+ <li>Adobe Captivate V3
124
+ <br>
125
+
126
+ <br>
127
+ <li>Adobe Dream Weaver CS3 & Cs4
128
+ <br>
129
+
130
+ <br>
131
+ <li>Adobe Premier Pro CS4
132
+ <br>
133
+
134
+ <br>
135
+ <li>Adobe indesign CS4
136
+ <br>
137
+
138
+ <br>
139
+ <li>Atomix Virtual DJ Professional 5.0/6.0
140
+ <br>
141
+
142
+ <br>
143
+ <li>Autodesk AutoCAD 2009 & 2010
144
+ <br>
145
+
146
+ <br>
147
+ <li>Autodesk AutoCAD Revit 2009
148
+ <br>
149
+
150
+ <br>
151
+ <li>Autodesk 3ds Max Design 2009
152
+ <br>
153
+
154
+ <br>
155
+ <li>Autodesk Maya 2009
156
+ <br>
157
+
158
+ <br>
159
+ <li>Aperture_2
160
+ <br>
161
+
162
+ <br>
163
+ <li>AVG Pro 9.0
164
+ <br>
165
+
166
+ <br>
167
+ <li>Business Plan Pro
168
+ <br>
169
+
170
+ <br>
171
+ <li>Corel Draw Graphics Suite X4
172
+ <br>
173
+
174
+ <br>
175
+ <li>Corel Painter X
176
+ <br>
177
+
178
+ <br>
179
+ <li>Corel Paint shop Pro
180
+ <br>
181
+
182
+ <br>
183
+ <li>Cyber link Power DVD 8.0
184
+ <br>
185
+
186
+ <br>
187
+ <li>Cyber link Power DVD 9.0
188
+ <br>
189
+
190
+ <br>
191
+ <li>Cyber link Power director 8
192
+ <br>
193
+
194
+ <br>
195
+ <li>DVD FAB Platinum
196
+ <br>
197
+
198
+ <br>
199
+ <li>Final Draft 8
200
+ <br>
201
+
202
+ <br>
203
+ <li>Fruity loop studio 8
204
+ <br>
205
+
206
+ <br>
207
+ <li>Guitar Pro 5.2
208
+ <br>
209
+
210
+ <br>
211
+ <li>Genuine Fractals PrintPro
212
+ <br>
213
+
214
+ <br>
215
+ <li>iLife 09
216
+ <br>
217
+
218
+ <br>
219
+ <li>iWork 09
220
+ <br>
221
+
222
+ <br>
223
+ <li>Izotope Ozone
224
+ <br>
225
+
226
+ <br>
227
+ <li>Logic Pro
228
+ <br>
229
+
230
+ <br>
231
+ <li>Mathematica 6.0
232
+ <br>
233
+
234
+ <br>
235
+ <li>Mac OS X snow Leopard
236
+ <br>
237
+
238
+ <br>
239
+ <li>Madden NFL 2008
240
+ <br>
241
+
242
+ <br>
243
+ <li>Make Music Finale 2009
244
+ <br>
245
+
246
+ <br>
247
+ <li>Microsoft Office 2007
248
+ <br>
249
+
250
+ <br>
251
+ <li>Microsoft Office 2010
252
+ <br>
253
+
254
+ <br>
255
+ <li>Microsoft Office 2008 Mac
256
+ <br>
257
+
258
+ <br>
259
+ <li>Microsoft Visio Pro
260
+ <br>
261
+
262
+ <br>
263
+ <li>Microsoft visual Studio 2008
264
+ <br>
265
+
266
+ <br>
267
+ <li>Microsoft Expression Studio 2.0
268
+ <br>
269
+
270
+ <br>
271
+ <li>Microsoft Office Project 2007
272
+ <br>
273
+
274
+ <br>
275
+ <li>Native Instruments Traktor DJ Studio
276
+ <br>
277
+
278
+ <br>
279
+ <li>Nero 8 Ultra Edition
280
+ <br>
281
+
282
+ <br>
283
+ <li> Nero 9
284
+ <br>
285
+
286
+ <br>
287
+ <li>Norton Internet Security 2010
288
+ <br>
289
+
290
+ <br>
291
+ <li>Parallels Desktop
292
+ <br>
293
+
294
+ <br>
295
+ <li>Photodex Proshow Producer
296
+ <br>
297
+
298
+ <br>
299
+ <li>Photodex Proshow Gold
300
+ <br>
301
+
302
+ <br>
303
+ <li>Pro Tools 8
304
+ <br>
305
+
306
+ <br>
307
+ <li>QuickBooks Premier 2009
308
+ <br>
309
+
310
+ <br>
311
+ <li>QuickBooks Point of Sale
312
+ <br>
313
+
314
+ <br>
315
+ <li>Quark Xpress 8
316
+ <br>
317
+
318
+ <br>
319
+ <li>Reason 4
320
+ <br>
321
+
322
+ <br>
323
+ <li>Rosetta stone V2 Ultimate 27 Languages
324
+ <br>
325
+
326
+ <br>
327
+ <li>Rosetta stone V3
328
+ <br>
329
+
330
+ <br>
331
+ English Level 1 2 3 4 5
332
+ <br>
333
+
334
+ <br>
335
+ Spanish (latin America) Level 1 2 3 4 5
336
+ <br>
337
+
338
+ <br>
339
+ Spanish (Spain) 1 2 3
340
+ <br>
341
+
342
+ <br>
343
+ Arabic Level 1 2 3
344
+ <br>
345
+
346
+ <br>
347
+ Dutch levels 1 2 3
348
+ <br>
349
+
350
+ <br>
351
+ French Level 1 2 3
352
+ <br>
353
+
354
+ <br>
355
+ German Level 1 2 3
356
+ <br>
357
+
358
+ <br>
359
+ Hebrew Level 1 2
360
+ <br>
361
+
362
+ <br>
363
+ Italian Level 1 2 3
364
+ <br>
365
+
366
+ <br>
367
+ Japanese Level 1 2 3
368
+ <br>
369
+
370
+ <br>
371
+ Korean levels 1 2 3
372
+ <br>
373
+
374
+ <br>
375
+ Portuguese(brazil)Level 1 2 3
376
+ <br>
377
+
378
+ <br>
379
+ Russian Level 1 2 3
380
+ <br>
381
+
382
+ <br>
383
+ Chinese Level 1 2 3
384
+ <br>
385
+
386
+ <br>
387
+ <li>Quicken Home and business 2010
388
+ <br>
389
+
390
+ <br>
391
+ <li>Roxio Easy Media Creator 10
392
+ <br>
393
+
394
+ <br>
395
+ <li>Roxio Media Creator Ultimate 2009
396
+ <br>
397
+
398
+ <br>
399
+ <li>Roxio Toast v10 Titanium Mac
400
+ <br>
401
+
402
+ <br>
403
+ <li>Sibelius 6
404
+ <br>
405
+
406
+ <br>
407
+ <li>Site Grinder
408
+ <br>
409
+
410
+ <br>
411
+ <li>Stata
412
+ <br>
413
+
414
+ <br>
415
+ <li>stineberg Nuendo
416
+ <br>
417
+
418
+ <br>
419
+ <li>Stineberg Cuebase
420
+ <br>
421
+
422
+ <br>
423
+ <li>Sony Vegas Pro 8.0
424
+ <br>
425
+
426
+ <br>
427
+ <li>Sony Sound Forge
428
+ <br>
429
+
430
+ <br>
431
+ <li>Turbo Tax Premier 2008
432
+ <br>
433
+
434
+ <br>
435
+ <li>Ubuntu Linux
436
+ <br>
437
+
438
+ <br>
439
+ <li>Windows 7 Ultimate 32 & 64Bit
440
+ <br>
441
+
442
+ <br>
443
+ <li>Windows Vista Home Premium 32bit
444
+ <br>
445
+
446
+ <br>
447
+ <li>Windows Vista Home premium 64bit
448
+ <br>
449
+
450
+ <br>
451
+ <li>Windows Vista ultimate 32 & 64 bit
452
+ <br>
453
+
454
+ <br>
455
+ <li>Windows XP Home
456
+ <br>
457
+
458
+ <br>
459
+ <li>Windows XP Pro
460
+ <br>
461
+
462
+ <br>
463
+ <li>Windows XP Corp 64 bit
464
+ <br>
465
+
466
+ <br>
467
+ <li>Win Avi DVD converter
468
+ <br>
469
+
470
+ <br>
471
+ <li>VM Ware Fusion 3
472
+ <br>
473
+
474
+ <br>
475
+ <li>Xsite Pro
476
+ <br>
477
+ </ol>
478
+ <br>
479
+
480
+ <br>
481
+ <font size="5">
482
+ <br>
483
+ Call (305)610-1845
484
+ <br>
485
+ 11A.M. to 9 P.M.
486
+ <br>
487
+
488
+ <br>
489
+ <b><font size="4">
490
+ <br>
491
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
492
+ <br>
493
+ <b>
494
+ <br>
495
+ <font size="5">
496
+ <br>
497
+ Call (305)610-1845
498
+ <br>
499
+ 11A.M. to 9 P.M
500
+ <br>
501
+
502
+ <br>
503
+ <font size="4">
504
+ <br>
505
+ <ol>
506
+ <br>
507
+
508
+ <br>
509
+ <li>Abelton Live 8.1
510
+ <br>
511
+
512
+ <br>
513
+ <li>ACDSee
514
+ <br>
515
+
516
+ <br>
517
+ <li>Act Premium 2009 & 2010
518
+ <br>
519
+
520
+ <br>
521
+ <li>Adobe Acrobat 9 Pro
522
+ <br>
523
+
524
+ <br>
525
+ <li>Adobe After Effects
526
+ <br>
527
+
528
+ <br>
529
+ <li>Adobe Audition V3
530
+ <br>
531
+
532
+ <br>
533
+ <li>Adobe Flash CS4
534
+ <br>
535
+
536
+ <br>
537
+ <li>Adobe Lightroom 2
538
+ <br>
539
+
540
+ <br>
541
+ <li>Adobe Master Collection CS3
542
+ <br>
543
+
544
+ <br>
545
+ <li>Adobe Master Collection CS4 PC Or MAC
546
+ <br>
547
+
548
+ <br>
549
+ <li>Adobe Photoshop CS3 & CS4 Extended Edition
550
+ <br>
551
+
552
+ <br>
553
+ <li>Adobe Captivate V3
554
+ <br>
555
+
556
+ <br>
557
+ <li>Adobe Dream Weaver CS3 & Cs4
558
+ <br>
559
+
560
+ <br>
561
+ <li>Adobe Premier Pro CS4
562
+ <br>
563
+
564
+ <br>
565
+ <li>Adobe indesign CS4
566
+ <br>
567
+
568
+ <br>
569
+ <li>Atomix Virtual DJ Professional 5.0/6.0
570
+ <br>
571
+
572
+ <br>
573
+ <li>Autodesk AutoCAD 2009 & 2010
574
+ <br>
575
+
576
+ <br>
577
+ <li>Autodesk AutoCAD Revit 2009
578
+ <br>
579
+
580
+ <br>
581
+ <li>Autodesk 3ds Max Design 2009
582
+ <br>
583
+
584
+ <br>
585
+ <li>Autodesk Maya 2009
586
+ <br>
587
+
588
+ <br>
589
+ <li>Aperture_2
590
+ <br>
591
+
592
+ <br>
593
+ <li>AVG Pro 9.0
594
+ <br>
595
+
596
+ <br>
597
+ <li>Business Plan Pro
598
+ <br>
599
+
600
+ <br>
601
+ <li>Corel Draw Graphics Suite X4
602
+ <br>
603
+
604
+ <br>
605
+ <li>Corel Painter X
606
+ <br>
607
+
608
+ <br>
609
+ <li>Corel Paint shop Pro
610
+ <br>
611
+
612
+ <br>
613
+ <li>Cyber link Power DVD 8.0
614
+ <br>
615
+
616
+ <br>
617
+ <li>Cyber link Power DVD 9.0
618
+ <br>
619
+
620
+ <br>
621
+ <li>Cyber link Power director 8
622
+ <br>
623
+
624
+ <br>
625
+ <li>DVD FAB Platinum
626
+ <br>
627
+
628
+ <br>
629
+ <li>Final Draft 8
630
+ <br>
631
+
632
+ <br>
633
+ <li>Fruity loop studio 8
634
+ <br>
635
+
636
+ <br>
637
+ <li>Guitar Pro 5.2
638
+ <br>
639
+
640
+ <br>
641
+ <li>Genuine Fractals PrintPro
642
+ <br>
643
+
644
+ <br>
645
+ <li>iLife 09
646
+ <br>
647
+
648
+ <br>
649
+ <li>iWork 09
650
+ <br>
651
+
652
+ <br>
653
+ <li>Izotope Ozone
654
+ <br>
655
+
656
+ <br>
657
+ <li>Logic Pro
658
+ <br>
659
+
660
+ <br>
661
+ <li>Mathematica 6.0
662
+ <br>
663
+
664
+ <br>
665
+ <li>Mac OS X snow Leopard
666
+ <br>
667
+
668
+ <br>
669
+ <li>Madden NFL 2008
670
+ <br>
671
+
672
+ <br>
673
+ <li>Make Music Finale 2009
674
+ <br>
675
+
676
+ <br>
677
+ <li>Microsoft Office 2007
678
+ <br>
679
+
680
+ <br>
681
+ <li>Microsoft Office 2010
682
+ <br>
683
+
684
+ <br>
685
+ <li>Microsoft Office 2008 Mac
686
+ <br>
687
+
688
+ <br>
689
+ <li>Microsoft Visio Pro
690
+ <br>
691
+
692
+ <br>
693
+ <li>Microsoft visual Studio 2008
694
+ <br>
695
+
696
+ <br>
697
+ <li>Microsoft Expression Studio 2.0
698
+ <br>
699
+
700
+ <br>
701
+ <li>Microsoft Office Project 2007
702
+ <br>
703
+
704
+ <br>
705
+ <li>Native Instruments Traktor DJ Studio
706
+ <br>
707
+
708
+ <br>
709
+ <li>Nero 8 Ultra Edition
710
+ <br>
711
+
712
+ <br>
713
+ <li> Nero 9
714
+ <br>
715
+
716
+ <br>
717
+ <li>Norton Internet Security 2010
718
+ <br>
719
+
720
+ <br>
721
+ <li>Parallels Desktop
722
+ <br>
723
+
724
+ <br>
725
+ <li>Photodex Proshow Producer
726
+ <br>
727
+
728
+ <br>
729
+ <li>Photodex Proshow Gold
730
+ <br>
731
+
732
+ <br>
733
+ <li>Pro Tools 8
734
+ <br>
735
+
736
+ <br>
737
+ <li>QuickBooks Premier 2009
738
+ <br>
739
+
740
+ <br>
741
+ <li>QuickBooks Point of Sale
742
+ <br>
743
+
744
+ <br>
745
+ <li>Quark Xpress 8
746
+ <br>
747
+
748
+ <br>
749
+ <li>Reason 4
750
+ <br>
751
+
752
+ <br>
753
+ <li>Rosetta stone V2 Ultimate 27 Languages
754
+ <br>
755
+
756
+ <br>
757
+ <li>Rosetta stone V3
758
+ <br>
759
+
760
+ <br>
761
+ English Level 1 2 3 4 5
762
+ <br>
763
+
764
+ <br>
765
+ Spanish (latin America) Level 1 2 3 4 5
766
+ <br>
767
+
768
+ <br>
769
+ Spanish (Spain) 1 2 3
770
+ <br>
771
+
772
+ <br>
773
+ Arabic Level 1 2 3
774
+ <br>
775
+
776
+ <br>
777
+ Dutch levels 1 2 3
778
+ <br>
779
+
780
+ <br>
781
+ French Level 1 2 3
782
+ <br>
783
+
784
+ <br>
785
+ German Level 1 2 3
786
+ <br>
787
+
788
+ <br>
789
+ Hebrew Level 1 2
790
+ <br>
791
+
792
+ <br>
793
+ Italian Level 1 2 3
794
+ <br>
795
+
796
+ <br>
797
+ Japanese Level 1 2 3
798
+ <br>
799
+
800
+ <br>
801
+ Korean levels 1 2 3
802
+ <br>
803
+
804
+ <br>
805
+ Portuguese(brazil)Level 1 2 3
806
+ <br>
807
+
808
+ <br>
809
+ Russian Level 1 2 3
810
+ <br>
811
+
812
+ <br>
813
+ Chinese Level 1 2 3
814
+ <br>
815
+
816
+ <br>
817
+ <li>Quicken Home and business 2010
818
+ <br>
819
+
820
+ <br>
821
+ <li>Roxio Easy Media Creator 10
822
+ <br>
823
+
824
+ <br>
825
+ <li>Roxio Media Creator Ultimate 2009
826
+ <br>
827
+
828
+ <br>
829
+ <li>Roxio Toast v10 Titanium Mac
830
+ <br>
831
+
832
+ <br>
833
+ <li>Sibelius 6
834
+ <br>
835
+
836
+ <br>
837
+ <li>Site Grinder
838
+ <br>
839
+
840
+ <br>
841
+ <li>Stata
842
+ <br>
843
+
844
+ <br>
845
+ <li>stineberg Nuendo
846
+ <br>
847
+
848
+ <br>
849
+ <li>Stineberg Cuebase
850
+ <br>
851
+
852
+ <br>
853
+ <li>Sony Vegas Pro 8.0
854
+ <br>
855
+
856
+ <br>
857
+ <li>Sony Sound Forge
858
+ <br>
859
+
860
+ <br>
861
+ <li>Turbo Tax Premier 2008
862
+ <br>
863
+
864
+ <br>
865
+ <li>Ubuntu Linux
866
+ <br>
867
+
868
+ <br>
869
+ <li>Windows 7 Ultimate 32 & 64Bit
870
+ <br>
871
+
872
+ <br>
873
+ <li>Windows Vista Home Premium 32bit
874
+ <br>
875
+
876
+ <br>
877
+ <li>Windows Vista Home premium 64bit
878
+ <br>
879
+
880
+ <br>
881
+ <li>Windows Vista ultimate 32 & 64 bit
882
+ <br>
883
+
884
+ <br>
885
+ <li>Windows XP Home
886
+ <br>
887
+
888
+ <br>
889
+ <li>Windows XP Pro
890
+ <br>
891
+
892
+ <br>
893
+ <li>Windows XP Corp 64 bit
894
+ <br>
895
+
896
+ <br>
897
+ <li>Win Avi DVD converter
898
+ <br>
899
+
900
+ <br>
901
+ <li>VM Ware Fusion 3
902
+ <br>
903
+
904
+ <br>
905
+ <li>Xsite Pro
906
+ <br>
907
+ </ol>
908
+ <br>
909
+
910
+ <br>
911
+ <font size="5">
912
+ <br>
913
+ Call (305)610-1845
914
+ <br>
915
+ 11A.M. to 9 P.M.
916
+ <br>
917
+
918
+ <br>
919
+ <b><font size="4">
920
+ <br>
921
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
922
+ <br>
923
+ <b>
924
+ <br>
925
+ <font size="5">
926
+ <br>
927
+ Call (305)610-1845
928
+ <br>
929
+ 11A.M. to 9 P.M
930
+ <br>
931
+
932
+ <br>
933
+ <font size="4">
934
+ <br>
935
+ <ol>
936
+ <br>
937
+
938
+ <br>
939
+ <li>Abelton Live 8.1
940
+ <br>
941
+
942
+ <br>
943
+ <li>ACDSee
944
+ <br>
945
+
946
+ <br>
947
+ <li>Act Premium 2009 & 2010
948
+ <br>
949
+
950
+ <br>
951
+ <li>Adobe Acrobat 9 Pro
952
+ <br>
953
+
954
+ <br>
955
+ <li>Adobe After Effects
956
+ <br>
957
+
958
+ <br>
959
+ <li>Adobe Audition V3
960
+ <br>
961
+
962
+ <br>
963
+ <li>Adobe Flash CS4
964
+ <br>
965
+
966
+ <br>
967
+ <li>Adobe Lightroom 2
968
+ <br>
969
+
970
+ <br>
971
+ <li>Adobe Master Collection CS3
972
+ <br>
973
+
974
+ <br>
975
+ <li>Adobe Master Collection CS4 PC Or MAC
976
+ <br>
977
+
978
+ <br>
979
+ <li>Adobe Photoshop CS3 & CS4 Extended Edition
980
+ <br>
981
+
982
+ <br>
983
+ <li>Adobe Captivate V3
984
+ <br>
985
+
986
+ <br>
987
+ <li>Adobe Dream Weaver CS3 & Cs4
988
+ <br>
989
+
990
+ <br>
991
+ <li>Adobe Premier Pro CS4
992
+ <br>
993
+
994
+ <br>
995
+ <li>Adobe indesign CS4
996
+ <br>
997
+
998
+ <br>
999
+ <li>Atomix Virtual DJ Professional 5.0/6.0
1000
+ <br>
1001
+
1002
+ <br>
1003
+ <li>Autodesk AutoCAD 2009 & 2010
1004
+ <br>
1005
+
1006
+ <br>
1007
+ <li>Autodesk AutoCAD Revit 2009
1008
+ <br>
1009
+
1010
+ <br>
1011
+ <li>Autodesk 3ds Max Design 2009
1012
+ <br>
1013
+
1014
+ <br>
1015
+ <li>Autodesk Maya 2009
1016
+ <br>
1017
+
1018
+ <br>
1019
+ <li>Aperture_2
1020
+ <br>
1021
+
1022
+ <br>
1023
+ <li>AVG Pro 9.0
1024
+ <br>
1025
+
1026
+ <br>
1027
+ <li>Business Plan Pro
1028
+ <br>
1029
+
1030
+ <br>
1031
+ <li>Corel Draw Graphics Suite X4
1032
+ <br>
1033
+
1034
+ <br>
1035
+ <li>Corel Painter X
1036
+ <br>
1037
+
1038
+ <br>
1039
+ <li>Corel Paint shop Pro
1040
+ <br>
1041
+
1042
+ <br>
1043
+ <li>Cyber link Power DVD 8.0
1044
+ <br>
1045
+
1046
+ <br>
1047
+ <li>Cyber link Power DVD 9.0
1048
+ <br>
1049
+
1050
+ <br>
1051
+ <li>Cyber link Power director 8
1052
+ <br>
1053
+
1054
+ <br>
1055
+ <li>DVD FAB Platinum
1056
+ <br>
1057
+
1058
+ <br>
1059
+ <li>Final Draft 8
1060
+ <br>
1061
+
1062
+ <br>
1063
+ <li>Fruity loop studio 8
1064
+ <br>
1065
+
1066
+ <br>
1067
+ <li>Guitar Pro 5.2
1068
+ <br>
1069
+
1070
+ <br>
1071
+ <li>Genuine Fractals PrintPro
1072
+ <br>
1073
+
1074
+ <br>
1075
+ <li>iLife 09
1076
+ <br>
1077
+
1078
+ <br>
1079
+ <li>iWork 09
1080
+ <br>
1081
+
1082
+ <br>
1083
+ <li>Izotope Ozone
1084
+ <br>
1085
+
1086
+ <br>
1087
+ <li>Logic Pro
1088
+ <br>
1089
+
1090
+ <br>
1091
+ <li>Mathematica 6.0
1092
+ <br>
1093
+
1094
+ <br>
1095
+ <li>Mac OS X snow Leopard
1096
+ <br>
1097
+
1098
+ <br>
1099
+ <li>Madden NFL 2008
1100
+ <br>
1101
+
1102
+ <br>
1103
+ <li>Make Music Finale 2009
1104
+ <br>
1105
+
1106
+ <br>
1107
+ <li>Microsoft Office 2007
1108
+ <br>
1109
+
1110
+ <br>
1111
+ <li>Microsoft Office 2010
1112
+ <br>
1113
+
1114
+ <br>
1115
+ <li>Microsoft Office 2008 Mac
1116
+ <br>
1117
+
1118
+ <br>
1119
+ <li>Microsoft Visio Pro
1120
+ <br>
1121
+
1122
+ <br>
1123
+ <li>Microsoft visual Studio 2008
1124
+ <br>
1125
+
1126
+ <br>
1127
+ <li>Microsoft Expression Studio 2.0
1128
+ <br>
1129
+
1130
+ <br>
1131
+ <li>Microsoft Office Project 2007
1132
+ <br>
1133
+
1134
+ <br>
1135
+ <li>Native Instruments Traktor DJ Studio
1136
+ <br>
1137
+
1138
+ <br>
1139
+ <li>Nero 8 Ultra Edition
1140
+ <br>
1141
+
1142
+ <br>
1143
+ <li> Nero 9
1144
+ <br>
1145
+
1146
+ <br>
1147
+ <li>Norton Internet Security 2010
1148
+ <br>
1149
+
1150
+ <br>
1151
+ <li>Parallels Desktop
1152
+ <br>
1153
+
1154
+ <br>
1155
+ <li>Photodex Proshow Producer
1156
+ <br>
1157
+
1158
+ <br>
1159
+ <li>Photodex Proshow Gold
1160
+ <br>
1161
+
1162
+ <br>
1163
+ <li>Pro Tools 8
1164
+ <br>
1165
+
1166
+ <br>
1167
+ <li>QuickBooks Premier 2009
1168
+ <br>
1169
+
1170
+ <br>
1171
+ <li>QuickBooks Point of Sale
1172
+ <br>
1173
+
1174
+ <br>
1175
+ <li>Quark Xpress 8
1176
+ <br>
1177
+
1178
+ <br>
1179
+ <li>Reason 4
1180
+ <br>
1181
+
1182
+ <br>
1183
+ <li>Rosetta stone V2 Ultimate 27 Languages
1184
+ <br>
1185
+
1186
+ <br>
1187
+ <li>Rosetta stone V3
1188
+ <br>
1189
+
1190
+ <br>
1191
+ English Level 1 2 3 4 5
1192
+ <br>
1193
+
1194
+ <br>
1195
+ Spanish (latin America) Level 1 2 3 4 5
1196
+ <br>
1197
+
1198
+ <br>
1199
+ Spanish (Spain) 1 2 3
1200
+ <br>
1201
+
1202
+ <br>
1203
+ Arabic Level 1 2 3
1204
+ <br>
1205
+
1206
+ <br>
1207
+ Dutch levels 1 2 3
1208
+ <br>
1209
+
1210
+ <br>
1211
+ French Level 1 2 3
1212
+ <br>
1213
+
1214
+ <br>
1215
+ German Level 1 2 3
1216
+ <br>
1217
+
1218
+ <br>
1219
+ Hebrew Level 1 2
1220
+ <br>
1221
+
1222
+ <br>
1223
+ Italian Level 1 2 3
1224
+ <br>
1225
+
1226
+ <br>
1227
+ Japanese Level 1 2 3
1228
+ <br>
1229
+
1230
+ <br>
1231
+ Korean levels 1 2 3
1232
+ <br>
1233
+
1234
+ <br>
1235
+ Portuguese(brazil)Level 1 2 3
1236
+ <br>
1237
+
1238
+ <br>
1239
+ Russian Level 1 2 3
1240
+ <br>
1241
+
1242
+ <br>
1243
+ Chinese Level 1 2 3
1244
+ <br>
1245
+
1246
+ <br>
1247
+ <li>Quicken Home and business 2010
1248
+ <br>
1249
+
1250
+ <br>
1251
+ <li>Roxio Easy Media Creator 10
1252
+ <br>
1253
+
1254
+ <br>
1255
+ <li>Roxio Media Creator Ultimate 2009
1256
+ <br>
1257
+
1258
+ <br>
1259
+ <li>Roxio Toast v10 Titanium Mac
1260
+ <br>
1261
+
1262
+ <br>
1263
+ <li>Sibelius 6
1264
+ <br>
1265
+
1266
+ <br>
1267
+ <li>Site Grinder
1268
+ <br>
1269
+
1270
+ <br>
1271
+ <li>Stata
1272
+ <br>
1273
+
1274
+ <br>
1275
+ <li>stineberg Nuendo
1276
+ <br>
1277
+
1278
+ <br>
1279
+ <li>Stineberg Cuebase
1280
+ <br>
1281
+
1282
+ <br>
1283
+ <li>Sony Vegas Pro 8.0
1284
+ <br>
1285
+
1286
+ <br>
1287
+ <li>Sony Sound Forge
1288
+ <br>
1289
+
1290
+ <br>
1291
+ <li>Turbo Tax Premier 2008
1292
+ <br>
1293
+
1294
+ <br>
1295
+ <li>Ubuntu Linux
1296
+ <br>
1297
+
1298
+ <br>
1299
+ <li>Windows 7 Ultimate 32 & 64Bit
1300
+ <br>
1301
+
1302
+ <br>
1303
+ <li>Windows Vista Home Premium 32bit
1304
+ <br>
1305
+
1306
+ <br>
1307
+ <li>Windows Vista Home premium 64bit
1308
+ <br>
1309
+
1310
+ <br>
1311
+ <li>Windows Vista ultimate 32 & 64 bit
1312
+ <br>
1313
+
1314
+ <br>
1315
+ <li>Windows XP Home
1316
+ <br>
1317
+
1318
+ <br>
1319
+ <li>Windows XP Pro
1320
+ <br>
1321
+
1322
+ <br>
1323
+ <li>Windows XP Corp 64 bit
1324
+ <br>
1325
+
1326
+ <br>
1327
+ <li>Win Avi DVD converter
1328
+ <br>
1329
+
1330
+ <br>
1331
+ <li>VM Ware Fusion 3
1332
+ <br>
1333
+
1334
+ <br>
1335
+ <li>Xsite Pro
1336
+ <br>
1337
+ </ol>
1338
+ <br>
1339
+
1340
+ <br>
1341
+ <font size="5">
1342
+ <br>
1343
+ Call (305)610-1845
1344
+ <br>
1345
+ 11A.M. to 9 P.M.
1346
+ <br>
1347
+
1348
+ <br>
1349
+ <b><font size="4">
1350
+ <br>
1351
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
1352
+ <br>
1353
+ <b><font size="4">
1354
+ <br>
1355
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
1356
+ <br>
1357
+ <b>
1358
+ <br>
1359
+ <font size="5">
1360
+ <br>
1361
+ Call (305)610-1845
1362
+ <br>
1363
+ 11A.M. to 9 P.M
1364
+ <br>
1365
+
1366
+ <br>
1367
+ <font size="4">
1368
+ <br>
1369
+ <ol>
1370
+ <br>
1371
+
1372
+ <br>
1373
+ <li>Abelton Live 8.1
1374
+ <br>
1375
+
1376
+ <br>
1377
+ <li>ACDSee
1378
+ <br>
1379
+
1380
+ <br>
1381
+ <li>Act Premium 2009 & 2010
1382
+ <br>
1383
+
1384
+ <br>
1385
+ <li>Adobe Acrobat 9 Pro
1386
+ <br>
1387
+
1388
+ <br>
1389
+ <li>Adobe After Effects
1390
+ <br>
1391
+
1392
+ <br>
1393
+ <li>Adobe Audition V3
1394
+ <br>
1395
+
1396
+ <br>
1397
+ <li>Adobe Flash CS4
1398
+ <br>
1399
+
1400
+ <br>
1401
+ <li>Adobe Lightroom 2
1402
+ <br>
1403
+
1404
+ <br>
1405
+ <li>Adobe Master Collection CS3
1406
+ <br>
1407
+
1408
+ <br>
1409
+ <li>Adobe Master Collection CS4 PC Or MAC
1410
+ <br>
1411
+
1412
+ <br>
1413
+ <li>Adobe Photoshop CS3 & CS4 Extended Edition
1414
+ <br>
1415
+
1416
+ <br>
1417
+ <li>Adobe Captivate V3
1418
+ <br>
1419
+
1420
+ <br>
1421
+ <li>Adobe Dream Weaver CS3 & Cs4
1422
+ <br>
1423
+
1424
+ <br>
1425
+ <li>Adobe Premier Pro CS4
1426
+ <br>
1427
+
1428
+ <br>
1429
+ <li>Adobe indesign CS4
1430
+ <br>
1431
+
1432
+ <br>
1433
+ <li>Atomix Virtual DJ Professional 5.0/6.0
1434
+ <br>
1435
+
1436
+ <br>
1437
+ <li>Autodesk AutoCAD 2009 & 2010
1438
+ <br>
1439
+
1440
+ <br>
1441
+ <li>Autodesk AutoCAD Revit 2009
1442
+ <br>
1443
+
1444
+ <br>
1445
+ <li>Autodesk 3ds Max Design 2009
1446
+ <br>
1447
+
1448
+ <br>
1449
+ <li>Autodesk Maya 2009
1450
+ <br>
1451
+
1452
+ <br>
1453
+ <li>Aperture_2
1454
+ <br>
1455
+
1456
+ <br>
1457
+ <li>AVG Pro 9.0
1458
+ <br>
1459
+
1460
+ <br>
1461
+ <li>Business Plan Pro
1462
+ <br>
1463
+
1464
+ <br>
1465
+ <li>Corel Draw Graphics Suite X4
1466
+ <br>
1467
+
1468
+ <br>
1469
+ <li>Corel Painter X
1470
+ <br>
1471
+
1472
+ <br>
1473
+ <li>Corel Paint shop Pro
1474
+ <br>
1475
+
1476
+ <br>
1477
+ <li>Cyber link Power DVD 8.0
1478
+ <br>
1479
+
1480
+ <br>
1481
+ <li>Cyber link Power DVD 9.0
1482
+ <br>
1483
+
1484
+ <br>
1485
+ <li>Cyber link Power director 8
1486
+ <br>
1487
+
1488
+ <br>
1489
+ <li>DVD FAB Platinum
1490
+ <br>
1491
+
1492
+ <br>
1493
+ <li>Final Draft 8
1494
+ <br>
1495
+
1496
+ <br>
1497
+ <li>Fruity loop studio 8
1498
+ <br>
1499
+
1500
+ <br>
1501
+ <li>Guitar Pro 5.2
1502
+ <br>
1503
+
1504
+ <br>
1505
+ <li>Genuine Fractals PrintPro
1506
+ <br>
1507
+
1508
+ <br>
1509
+ <li>iLife 09
1510
+ <br>
1511
+
1512
+ <br>
1513
+ <li>iWork 09
1514
+ <br>
1515
+
1516
+ <br>
1517
+ <li>Izotope Ozone
1518
+ <br>
1519
+
1520
+ <br>
1521
+ <li>Logic Pro
1522
+ <br>
1523
+
1524
+ <br>
1525
+ <li>Mathematica 6.0
1526
+ <br>
1527
+
1528
+ <br>
1529
+ <li>Mac OS X snow Leopard
1530
+ <br>
1531
+
1532
+ <br>
1533
+ <li>Madden NFL 2008
1534
+ <br>
1535
+
1536
+ <br>
1537
+ <li>Make Music Finale 2009
1538
+ <br>
1539
+
1540
+ <br>
1541
+ <li>Microsoft Office 2007
1542
+ <br>
1543
+
1544
+ <br>
1545
+ <li>Microsoft Office 2010
1546
+ <br>
1547
+
1548
+ <br>
1549
+ <li>Microsoft Office 2008 Mac
1550
+ <br>
1551
+
1552
+ <br>
1553
+ <li>Microsoft Visio Pro
1554
+ <br>
1555
+
1556
+ <br>
1557
+ <li>Microsoft visual Studio 2008
1558
+ <br>
1559
+
1560
+ <br>
1561
+ <li>Microsoft Expression Studio 2.0
1562
+ <br>
1563
+
1564
+ <br>
1565
+ <li>Microsoft Office Project 2007
1566
+ <br>
1567
+
1568
+ <br>
1569
+ <li>Native Instruments Traktor DJ Studio
1570
+ <br>
1571
+
1572
+ <br>
1573
+ <li>Nero 8 Ultra Edition
1574
+ <br>
1575
+
1576
+ <br>
1577
+ <li> Nero 9
1578
+ <br>
1579
+
1580
+ <br>
1581
+ <li>Norton Internet Security 2010
1582
+ <br>
1583
+
1584
+ <br>
1585
+ <li>Parallels Desktop
1586
+ <br>
1587
+
1588
+ <br>
1589
+ <li>Photodex Proshow Producer
1590
+ <br>
1591
+
1592
+ <br>
1593
+ <li>Photodex Proshow Gold
1594
+ <br>
1595
+
1596
+ <br>
1597
+ <li>Pro Tools 8
1598
+ <br>
1599
+
1600
+ <br>
1601
+ <li>QuickBooks Premier 2009
1602
+ <br>
1603
+
1604
+ <br>
1605
+ <li>QuickBooks Point of Sale
1606
+ <br>
1607
+
1608
+ <br>
1609
+ <li>Quark Xpress 8
1610
+ <br>
1611
+
1612
+ <br>
1613
+ <li>Reason 4
1614
+ <br>
1615
+
1616
+ <br>
1617
+ <li>Rosetta stone V2 Ultimate 27 Languages
1618
+ <br>
1619
+
1620
+ <br>
1621
+ <li>Rosetta stone V3
1622
+ <br>
1623
+
1624
+ <br>
1625
+ English Level 1 2 3 4 5
1626
+ <br>
1627
+
1628
+ <br>
1629
+ Spanish (latin America) Level 1 2 3 4 5
1630
+ <br>
1631
+
1632
+ <br>
1633
+ Spanish (Spain) 1 2 3
1634
+ <br>
1635
+
1636
+ <br>
1637
+ Arabic Level 1 2 3
1638
+ <br>
1639
+
1640
+ <br>
1641
+ Dutch levels 1 2 3
1642
+ <br>
1643
+
1644
+ <br>
1645
+ French Level 1 2 3
1646
+ <br>
1647
+
1648
+ <br>
1649
+ German Level 1 2 3
1650
+ <br>
1651
+
1652
+ <br>
1653
+ Hebrew Level 1 2
1654
+ <br>
1655
+
1656
+ <br>
1657
+ Italian Level 1 2 3
1658
+ <br>
1659
+
1660
+ <br>
1661
+ Japanese Level 1 2 3
1662
+ <br>
1663
+
1664
+ <br>
1665
+ Korean levels 1 2 3
1666
+ <br>
1667
+
1668
+ <br>
1669
+ Portuguese(brazil)Level 1 2 3
1670
+ <br>
1671
+
1672
+ <br>
1673
+ Russian Level 1 2 3
1674
+ <br>
1675
+
1676
+ <br>
1677
+ Chinese Level 1 2 3
1678
+ <br>
1679
+
1680
+ <br>
1681
+ <li>Quicken Home and business 2010
1682
+ <br>
1683
+
1684
+ <br>
1685
+ <li>Roxio Easy Media Creator 10
1686
+ <br>
1687
+
1688
+ <br>
1689
+ <li>Roxio Media Creator Ultimate 2009
1690
+ <br>
1691
+
1692
+ <br>
1693
+ <li>Roxio Toast v10 Titanium Mac
1694
+ <br>
1695
+
1696
+ <br>
1697
+ <li>Sibelius 6
1698
+ <br>
1699
+
1700
+ <br>
1701
+ <li>Site Grinder
1702
+ <br>
1703
+
1704
+ <br>
1705
+ <li>Stata
1706
+ <br>
1707
+
1708
+ <br>
1709
+ <li>stineberg Nuendo
1710
+ <br>
1711
+
1712
+ <br>
1713
+ <li>Stineberg Cuebase
1714
+ <br>
1715
+
1716
+ <br>
1717
+ <li>Sony Vegas Pro 8.0
1718
+ <br>
1719
+
1720
+ <br>
1721
+ <li>Sony Sound Forge
1722
+ <br>
1723
+
1724
+ <br>
1725
+ <li>Turbo Tax Premier 2008
1726
+ <br>
1727
+
1728
+ <br>
1729
+ <li>Ubuntu Linux
1730
+ <br>
1731
+
1732
+ <br>
1733
+ <li>Windows 7 Ultimate 32 & 64Bit
1734
+ <br>
1735
+
1736
+ <br>
1737
+ <li>Windows Vista Home Premium 32bit
1738
+ <br>
1739
+
1740
+ <br>
1741
+ <li>Windows Vista Home premium 64bit
1742
+ <br>
1743
+
1744
+ <br>
1745
+ <li>Windows Vista ultimate 32 & 64 bit
1746
+ <br>
1747
+
1748
+ <br>
1749
+ <li>Windows XP Home
1750
+ <br>
1751
+
1752
+ <br>
1753
+ <li>Windows XP Pro
1754
+ <br>
1755
+
1756
+ <br>
1757
+ <li>Windows XP Corp 64 bit
1758
+ <br>
1759
+
1760
+ <br>
1761
+ <li>Win Avi DVD converter
1762
+ <br>
1763
+
1764
+ <br>
1765
+ <li>VM Ware Fusion 3
1766
+ <br>
1767
+
1768
+ <br>
1769
+ <li>Xsite Pro
1770
+ <br>
1771
+ </ol>
1772
+ <br>
1773
+
1774
+ <br>
1775
+ <font size="5">
1776
+ <br>
1777
+ Call (305)610-1845
1778
+ <br>
1779
+ 11A.M. to 9 P.M.
1780
+ <br>
1781
+ <b>
1782
+ <br>
1783
+ <font size="5">
1784
+ <br>
1785
+ Call (305)610-1845
1786
+ <br>
1787
+ 11A.M. to 9 P.M
1788
+ <br>
1789
+
1790
+ <br>
1791
+ <font size="4">
1792
+ <br>
1793
+ <ol>
1794
+ <br>
1795
+
1796
+ <br>
1797
+ <li>Abelton Live 8.1
1798
+ <br>
1799
+
1800
+ <br>
1801
+ <li>ACDSee
1802
+ <br>
1803
+
1804
+ <br>
1805
+ <li>Act Premium 2009 & 2010
1806
+ <br>
1807
+
1808
+ <br>
1809
+ <li>Adobe Acrobat 9 Pro
1810
+ <br>
1811
+
1812
+ <br>
1813
+ <li>Adobe After Effects
1814
+ <br>
1815
+
1816
+ <br>
1817
+ <li>Adobe Audition V3
1818
+ <br>
1819
+
1820
+ <br>
1821
+ <li>Adobe Flash CS4
1822
+ <br>
1823
+
1824
+ <br>
1825
+ <li>Adobe Lightroom 2
1826
+ <br>
1827
+
1828
+ <br>
1829
+ <li>Adobe Master Collection CS3
1830
+ <br>
1831
+
1832
+ <br>
1833
+ <li>Adobe Master Collection CS4 PC Or MAC
1834
+ <br>
1835
+
1836
+ <br>
1837
+ <li>Adobe Photoshop CS3 & CS4 Extended Edition
1838
+ <br>
1839
+
1840
+ <br>
1841
+ <li>Adobe Captivate V3
1842
+ <br>
1843
+
1844
+ <br>
1845
+ <li>Adobe Dream Weaver CS3 & Cs4
1846
+ <br>
1847
+
1848
+ <br>
1849
+ <li>Adobe Premier Pro CS4
1850
+ <br>
1851
+
1852
+ <br>
1853
+ <li>Adobe indesign CS4
1854
+ <br>
1855
+
1856
+ <br>
1857
+ <li>Atomix Virtual DJ Professional 5.0/6.0
1858
+ <br>
1859
+
1860
+ <br>
1861
+ <li>Autodesk AutoCAD 2009 & 2010
1862
+ <br>
1863
+
1864
+ <br>
1865
+ <li>Autodesk AutoCAD Revit 2009
1866
+ <br>
1867
+
1868
+ <br>
1869
+ <li>Autodesk 3ds Max Design 2009
1870
+ <br>
1871
+
1872
+ <br>
1873
+ <li>Autodesk Maya 2009
1874
+ <br>
1875
+
1876
+ <br>
1877
+ <li>Aperture_2
1878
+ <br>
1879
+
1880
+ <br>
1881
+ <li>AVG Pro 9.0
1882
+ <br>
1883
+
1884
+ <br>
1885
+ <li>Business Plan Pro
1886
+ <br>
1887
+
1888
+ <br>
1889
+ <li>Corel Draw Graphics Suite X4
1890
+ <br>
1891
+
1892
+ <br>
1893
+ <li>Corel Painter X
1894
+ <br>
1895
+
1896
+ <br>
1897
+ <li>Corel Paint shop Pro
1898
+ <br>
1899
+
1900
+ <br>
1901
+ <li>Cyber link Power DVD 8.0
1902
+ <br>
1903
+
1904
+ <br>
1905
+ <li>Cyber link Power DVD 9.0
1906
+ <br>
1907
+
1908
+ <br>
1909
+ <li>Cyber link Power director 8
1910
+ <br>
1911
+
1912
+ <br>
1913
+ <li>DVD FAB Platinum
1914
+ <br>
1915
+
1916
+ <br>
1917
+ <li>Final Draft 8
1918
+ <br>
1919
+
1920
+ <br>
1921
+ <li>Fruity loop studio 8
1922
+ <br>
1923
+
1924
+ <br>
1925
+ <li>Guitar Pro 5.2
1926
+ <br>
1927
+
1928
+ <br>
1929
+ <li>Genuine Fractals PrintPro
1930
+ <br>
1931
+
1932
+ <br>
1933
+ <li>iLife 09
1934
+ <br>
1935
+
1936
+ <br>
1937
+ <li>iWork 09
1938
+ <br>
1939
+
1940
+ <br>
1941
+ <li>Izotope Ozone
1942
+ <br>
1943
+
1944
+ <br>
1945
+ <li>Logic Pro
1946
+ <br>
1947
+
1948
+ <br>
1949
+ <li>Mathematica 6.0
1950
+ <br>
1951
+
1952
+ <br>
1953
+ <li>Mac OS X snow Leopard
1954
+ <br>
1955
+
1956
+ <br>
1957
+ <li>Madden NFL 2008
1958
+ <br>
1959
+
1960
+ <br>
1961
+ <li>Make Music Finale 2009
1962
+ <br>
1963
+
1964
+ <br>
1965
+ <li>Microsoft Office 2007
1966
+ <br>
1967
+
1968
+ <br>
1969
+ <li>Microsoft Office 2010
1970
+ <br>
1971
+
1972
+ <br>
1973
+ <li>Microsoft Office 2008 Mac
1974
+ <br>
1975
+
1976
+ <br>
1977
+ <li>Microsoft Visio Pro
1978
+ <br>
1979
+
1980
+ <br>
1981
+ <li>Microsoft visual Studio 2008
1982
+ <br>
1983
+
1984
+ <br>
1985
+ <li>Microsoft Expression Studio 2.0
1986
+ <br>
1987
+
1988
+ <br>
1989
+ <li>Microsoft Office Project 2007
1990
+ <br>
1991
+
1992
+ <br>
1993
+ <li>Native Instruments Traktor DJ Studio
1994
+ <br>
1995
+
1996
+ <br>
1997
+ <li>Nero 8 Ultra Edition
1998
+ <br>
1999
+
2000
+ <br>
2001
+ <li> Nero 9
2002
+ <br>
2003
+
2004
+ <br>
2005
+ <li>Norton Internet Security 2010
2006
+ <br>
2007
+
2008
+ <br>
2009
+ <li>Parallels Desktop
2010
+ <br>
2011
+
2012
+ <br>
2013
+ <li>Photodex Proshow Producer
2014
+ <br>
2015
+
2016
+ <br>
2017
+ <li>Photodex Proshow Gold
2018
+ <br>
2019
+
2020
+ <br>
2021
+ <li>Pro Tools 8
2022
+ <br>
2023
+
2024
+ <br>
2025
+ <li>QuickBooks Premier 2009
2026
+ <br>
2027
+
2028
+ <br>
2029
+ <li>QuickBooks Point of Sale
2030
+ <br>
2031
+
2032
+ <br>
2033
+ <li>Quark Xpress 8
2034
+ <br>
2035
+
2036
+ <br>
2037
+ <li>Reason 4
2038
+ <br>
2039
+
2040
+ <br>
2041
+ <li>Rosetta stone V2 Ultimate 27 Languages
2042
+ <br>
2043
+
2044
+ <br>
2045
+ <li>Rosetta stone V3
2046
+ <br>
2047
+
2048
+ <br>
2049
+ English Level 1 2 3 4 5
2050
+ <br>
2051
+
2052
+ <br>
2053
+ Spanish (latin America) Level 1 2 3 4 5
2054
+ <br>
2055
+
2056
+ <br>
2057
+ Spanish (Spain) 1 2 3
2058
+ <br>
2059
+
2060
+ <br>
2061
+ Arabic Level 1 2 3
2062
+ <br>
2063
+
2064
+ <br>
2065
+ Dutch levels 1 2 3
2066
+ <br>
2067
+
2068
+ <br>
2069
+ French Level 1 2 3
2070
+ <br>
2071
+
2072
+ <br>
2073
+ German Level 1 2 3
2074
+ <br>
2075
+
2076
+ <br>
2077
+ Hebrew Level 1 2
2078
+ <br>
2079
+
2080
+ <br>
2081
+ Italian Level 1 2 3
2082
+ <br>
2083
+
2084
+ <br>
2085
+ Japanese Level 1 2 3
2086
+ <br>
2087
+
2088
+ <br>
2089
+ Korean levels 1 2 3
2090
+ <br>
2091
+
2092
+ <br>
2093
+ Portuguese(brazil)Level 1 2 3
2094
+ <br>
2095
+
2096
+ <br>
2097
+ Russian Level 1 2 3
2098
+ <br>
2099
+
2100
+ <br>
2101
+ Chinese Level 1 2 3
2102
+ <br>
2103
+
2104
+ <br>
2105
+ <li>Quicken Home and business 2010
2106
+ <br>
2107
+
2108
+ <br>
2109
+ <li>Roxio Easy Media Creator 10
2110
+ <br>
2111
+
2112
+ <br>
2113
+ <li>Roxio Media Creator Ultimate 2009
2114
+ <br>
2115
+
2116
+ <br>
2117
+ <li>Roxio Toast v10 Titanium Mac
2118
+ <br>
2119
+
2120
+ <br>
2121
+ <li>Sibelius 6
2122
+ <br>
2123
+
2124
+ <br>
2125
+ <li>Site Grinder
2126
+ <br>
2127
+
2128
+ <br>
2129
+ <li>Stata
2130
+ <br>
2131
+
2132
+ <br>
2133
+ <li>stineberg Nuendo
2134
+ <br>
2135
+
2136
+ <br>
2137
+ <li>Stineberg Cuebase
2138
+ <br>
2139
+
2140
+ <br>
2141
+ <li>Sony Vegas Pro 8.0
2142
+ <br>
2143
+
2144
+ <br>
2145
+ <li>Sony Sound Forge
2146
+ <br>
2147
+
2148
+ <br>
2149
+ <li>Turbo Tax Premier 2008
2150
+ <br>
2151
+
2152
+ <br>
2153
+ <li>Ubuntu Linux
2154
+ <br>
2155
+
2156
+ <br>
2157
+ <li>Windows 7 Ultimate 32 & 64Bit
2158
+ <br>
2159
+
2160
+ <br>
2161
+ <li>Windows Vista Home Premium 32bit
2162
+ <br>
2163
+
2164
+ <br>
2165
+ <li>Windows Vista Home premium 64bit
2166
+ <br>
2167
+
2168
+ <br>
2169
+ <li>Windows Vista ultimate 32 & 64 bit
2170
+ <br>
2171
+
2172
+ <br>
2173
+ <li>Windows XP Home
2174
+ <br>
2175
+
2176
+ <br>
2177
+ <li>Windows XP Pro
2178
+ <br>
2179
+
2180
+ <br>
2181
+ <li>Windows XP Corp 64 bit
2182
+ <br>
2183
+
2184
+ <br>
2185
+ <li>Win Avi DVD converter
2186
+ <br>
2187
+
2188
+ <br>
2189
+ <li>VM Ware Fusion 3
2190
+ <br>
2191
+
2192
+ <br>
2193
+ <li>Xsite Pro
2194
+ <br>
2195
+ </ol>
2196
+ <br>
2197
+
2198
+ <br>
2199
+ <font size="5">
2200
+ <br>
2201
+ Call (305)610-1845
2202
+ <br>
2203
+ 11A.M. to 9 P.M.
2204
+ <br>
2205
+
2206
+ <br>
2207
+ <b><font size="4">
2208
+ <br>
2209
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2210
+ <br>
2211
+
2212
+ <br>
2213
+ <b><font size="4">
2214
+ <br>
2215
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2216
+ <br>
2217
+
2218
+ <br>
2219
+ <b><font size="4">
2220
+ <br>
2221
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2222
+ <br>
2223
+
2224
+ <br>
2225
+ <b><font size="4">
2226
+ <br>
2227
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2228
+ <br>
2229
+
2230
+ <br>
2231
+ <b><font size="4">
2232
+ <br>
2233
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2234
+ <br>
2235
+
2236
+ <br>
2237
+ <b><font size="4">
2238
+ <br>
2239
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2240
+ <br>
2241
+
2242
+ <br>
2243
+ <b><font size="4">
2244
+ <br>
2245
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2246
+ <br>
2247
+
2248
+ <br>
2249
+ <b><font size="4">
2250
+ <br>
2251
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2252
+ <br>
2253
+
2254
+ <br>
2255
+ <b><font size="4">
2256
+ <br>
2257
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2258
+ <br>
2259
+
2260
+ <br>
2261
+ <b><font size="4">
2262
+ <br>
2263
+ Need software? Look no further you found the best. we carry all the latest titles at affordable prices. All titles are full version. Service and support is always available. Local pick up or paypal for fast shipping anywhere in the U.S.
2264
+ <br>
2265
+
2266
+ <br>
2267
+
2268
+ <br><!-- START CLTAGS -->
2269
+
2270
+
2271
+ <br><br><ul class="blurbs">
2272
+ <li> <!-- CLTAG GeographicArea=Dade/Broward -->Location: Dade/Broward
2273
+ <li>it's NOT ok to contact this poster with services or other commercial interests</ul>
2274
+ <!-- END CLTAGS -->
2275
+ <table summary="craigslist hosted images">
2276
+ <tr>
2277
+ <td align="center"></td>
2278
+ <td align="center"></td>
2279
+ </tr>
2280
+ <tr>
2281
+ <td align="center"></td>
2282
+ <td align="center"></td>
2283
+ </tr>
2284
+ </table>
2285
+
2286
+ </div>
2287
+ PostingID: 1796890756<br>
2288
+ <br>
2289
+ <form action="/flag/" method="GET">
2290
+ <fieldset style="display:inline;"><legend>No contact info?</legend>
2291
+ <input type="hidden" name="flagCode" value="30">
2292
+ <input type="hidden" name="postingID" value="1796890756">
2293
+ if the poster didn't include a phone number, email, or<br>
2294
+ other contact info, craigslist can notify them via email.
2295
+ <input type="submit" value="Send Note!">
2296
+ </fieldset>
2297
+ </form>
2298
+
2299
+
2300
+ <br>
2301
+
2302
+ <hr>
2303
+ <ul class="clfooter">
2304
+ <li>Copyright &copy; 2010 craigslist, inc.</li>
2305
+ <li><a href="http://www.craigslist.org/about/terms.of.use.html">terms of use</a></li>
2306
+ <li><a href="http://www.craigslist.org/about/privacy_policy">privacy policy</a></li>
2307
+ <li><a href="/forums/?forumID=8">feedback forum</a></li>
2308
+ </ul>
2309
+
2310
+ <script type="text/javascript" src="http://www.craigslist.org/js/jquery-1.4.2.js"></script>
2311
+ <script type="text/javascript" src="http://www.craigslist.org/js/postings.js"></script>
2312
+ <script type="text/javascript"><!--
2313
+ pID = 1796890756;
2314
+ -->
2315
+ </script>
2316
+ </body>
2317
+ </html>
2318
+