-
Notifications
You must be signed in to change notification settings - Fork 0
/
depParseData1Final.txt
1750 lines (1750 loc) · 742 KB
/
depParseData1Final.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[(('obviously', 'VBZ'), 'nsubj', ('human', 'NN')), (('human', 'NN'), 'nummod', ('one', 'CD')), (('human', 'NN'), 'amod', ('important', 'JJ')), (('human', 'NN'), 'compound', ('feature', 'NN')), (('human', 'NN'), 'compound', ('computer', 'NN')), (('obviously', 'VBZ'), 'dep', ('interface', 'VB'))]
[(('good', 'JJ'), 'dep', ('day', 'NN')), (('day', 'NN'), 'det', ('every', 'DT')), (('good', 'JJ'), 'dep', ('browsing', 'NN')), (('browsing', 'NN'), 'compound', ('computing', 'NN')), (('browsing', 'NN'), 'compound', ('web', 'NN'))]
[(('make', 'VBP'), 'nsubj', ('plate', 'NN')), (('plate', 'NN'), 'compound', ('keyboard', 'NN')), (('plate', 'NN'), 'compound', ('alright', 'NN')), (('plate', 'NN'), 'nmod', ('plastic', 'NN')), (('plastic', 'NN'), 'case', ('around', 'IN')), (('plastic', 'NN'), 'amod', ('cheap', 'JJ')), (('make', 'VBP'), 'dobj', ('sound', 'NN')), (('sound', 'NN'), 'amod', ('hollow', 'JJ')), (('make', 'VBP'), 'xcomp', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('button', 'NN')), (('button', 'NN'), 'compound', ('mouse', 'NN')), (('button', 'NN'), 'compound', ('command', 'NN'))]
[(('work', 'NN'), 'compound', ('problem', 'NN')), (('work', 'NN'), 'compound', ('right', 'NN')), (('work', 'NN'), 'compound', ('speaker', 'NN'))]
[(('service', 'NN'), 'compound', ('problem', 'NN')), (('service', 'NN'), 'compound', ('dell', 'NN')), (('service', 'NN'), 'compound', ('customer', 'NN'))]
[(('vista', 'NN'), 'dep', ('due', 'RB')), (('due', 'RB'), 'advmod', ('partially', 'RB')), (('vista', 'NN'), 'compound', ('fact', 'NN')), (('vista', 'NN'), 'compound', ('running', 'NN')), (('vista', 'NN'), 'compound', ('window', 'NN'))]
[(('decided', 'VBD'), 'advmod', ('accordingly', 'RB')), (('decided', 'VBD'), 'neg', ('never', 'RB')), (('decided', 'VBD'), 'dobj', ('purchase', 'NN')), (('decided', 'VBD'), 'nsubj', ('product', 'NN')), (('product', 'NN'), 'det', ('another', 'DT')), (('product', 'NN'), 'compound', ('hp', 'NN')), (('product', 'NN'), 'acl:relcl', ('lasted', 'VBD')), (('lasted', 'VBD'), 'nsubj', ('compaq', 'NN')), (('compaq', 'NN'), 'nummod', ('five', 'CD')), (('compaq', 'NN'), 'compound', ('year', 'NN')), (('compaq', 'NN'), 'amod', ('old', 'JJ')), (('lasted', 'VBD'), 'ccomp', ('crashed', 'VBD')), (('crashed', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'nummod', ('5', 'CD')), (('drive', 'NN'), 'compound', ('year', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ'))]
[(('think', 'VB'), 'dobj', ('camera', 'NN')), (('think', 'VB'), 'dep', ('forgot', 'VBD')), (('forgot', 'VBD'), 'nsubj', ('requirement', 'NN')), (('requirement', 'NN'), 'nummod', ('one', 'CD')), (('forgot', 'VBD'), 'dobj', ('one', 'NN')), (('one', 'NN'), 'compound', ('check', 'NN')), (('one', 'NN'), 'compound', ('specification', 'NN')), (('one', 'NN'), 'acl', ('purchased', 'VBN'))]
[(('make', 'VBP'), 'nsubj', ('cord', 'NN')), (('cord', 'NN'), 'acl', ('coming', 'VBG')), (('coming', 'VBG'), 'dobj', ('power', 'NN')), (('power', 'NN'), 'amod', ('right', 'JJ')), (('power', 'NN'), 'acl:relcl', ('left', 'VBD')), (('left', 'VBD'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'compound', ('cord', 'NN')), (('mic', 'NN'), 'amod', ('coming', 'JJ')), (('mic', 'NN'), 'amod', ('front', 'JJ')), (('mic', 'NN'), 'compound', ('headphone', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'conj', ('connection', 'NN')), (('connection', 'NN'), 'compound', ('network', 'NN')), (('make', 'VBP'), 'dobj', ('cord', 'NN')), (('cord', 'NN'), 'amod', ('messy', 'JJ')), (('cord', 'NN'), 'compound', ('setup', 'NN')), (('cord', 'NN'), 'acl', ('going', 'VBG')), (('going', 'VBG'), 'dobj', ('direction', 'NN')), (('direction', 'NN'), 'det', ('every', 'DT'))]
[(('browser', 'NN'), 'amod', ('recent', 'JJ')), (('browser', 'NN'), 'amod', ('safari', 'JJ')), (('browser', 'NN'), 'compound', ('internet', 'NN')), (('browser', 'NN'), 'acl', ('freaking', 'VBG')), (('freaking', 'VBG'), 'advcl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('firefox', 'NN')), (('using', 'VBG'), 'advmod', ('instead', 'RB'))]
[(('cost', 'VBD'), 'nsubj', ('toshiba', 'NN')), (('toshiba', 'NN'), 'amod', ('last', 'JJ')), (('toshiba', 'NN'), 'compound', ('computer', 'NN')), (('cost', 'VBD'), 'dobj', ('400', 'CD')), (('400', 'CD'), 'acl', ('worked', 'VBN')), (('worked', 'VBN'), 'nmod', ('charm', 'NN')), (('charm', 'NN'), 'case', ('like', 'IN')), (('worked', 'VBN'), 'nmod:tmod', ('year', 'NN')), (('year', 'NN'), 'amod', ('many', 'JJ'))]
[(('book', 'NN'), 'compound', ('machine', 'NN')), (('book', 'NN'), 'compound', ('bluray', 'NN')), (('book', 'NN'), 'compound', ('player', 'NN')), (('book', 'NN'), 'dep', ('mention', 'VB')), (('mention', 'VB'), 'dobj', ('hdtv', 'NNS')), (('hdtv', 'NNS'), 'amod', ('connect', 'JJ'))]
[(('want', 'VBP'), 'dep', ('intuitive', 'JJ')), (('intuitive', 'JJ'), 'amod', ('touchpad', 'JJ')), (('want', 'VBP'), 'neg', ('never', 'RB')), (('never', 'RB'), 'advmod', ('much', 'RB')), (('want', 'VBP'), 'dobj', ('use', 'NN')), (('want', 'VBP'), 'nsubj', ('click', 'NN')), (('click', 'NN'), 'nummod', ('button', 'CD'))]
[(('bought', 'VBD'), 'nsubj', ('ratio', 'NN')), (('ratio', 'NN'), 'nummod', ('laptop', 'CD')), (('ratio', 'NN'), 'compound', ('performance', 'NN')), (('ratio', 'NN'), 'compound', ('price', 'NN'))]
[(('work', 'VBP'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('great', 'JJ')), (('price', 'NN'), 'compound', ('laptop', 'NN')), (('work', 'VBP'), 'dobj', ('game', 'NN')), (('game', 'NN'), 'advmod', ('well', 'RB')), (('game', 'NN'), 'compound', ('action', 'NN')), (('game', 'NN'), 'compound', ('pack', 'NN'))]
[(('battery', 'NN'), 'dep', ('long', 'JJ')), (('long', 'JJ'), 'advmod', ('really', 'RB'))]
[(('something', 'NN'), 'advmod', ('else', 'RB')), (('something', 'NN'), 'dep', ('go', 'VB')), (('go', 'VB'), 'xcomp', ('wrong', 'JJ')), (('wrong', 'JJ'), 'ccomp', ('said', 'VBD')), (('said', 'VBD'), 'xcomp', ('buy', 'VB')), (('buy', 'VB'), 'nsubj', ('order', 'NN')), (('order', 'NN'), 'amod', ('good', 'JJ')), (('order', 'NN'), 'amod', ('working', 'JJ')), (('buy', 'VB'), 'dep', ('able', 'JJ')), (('buy', 'VB'), 'dobj', ('warranty', 'NN'))]
[(('stopped', 'VBD'), 'dep', ('held', 'VBD')), (('held', 'VBD'), 'nsubj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('_', 'JJ')), (('held', 'VBD'), 'neg', ('never', 'RB')), (('held', 'VBD'), 'dobj', ('charge', 'NN')), (('held', 'VBD'), 'advmod', ('longer', 'RB')), (('longer', 'RB'), 'nmod:npmod', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('one', 'CD')), (('held', 'VBD'), 'nmod', ('two', 'CD')), (('two', 'CD'), 'case', ('within', 'IN')), (('held', 'VBD'), 'nmod:tmod', ('month', 'NN')), (('stopped', 'VBD'), 'dobj', ('charge', 'NN')), (('charge', 'NN'), 'amod', ('holding', 'VBG')), (('stopped', 'VBD'), 'nsubj', ('minute', 'NN')), (('minute', 'NN'), 'nummod', ('ten', 'CD'))]
[(('network', 'NN'), 'compound', ('web', 'NN')), (('network', 'NN'), 'compound', ('access', 'NN')), (('network', 'NN'), 'compound', ('3g', 'NNS')), (('network', 'NN'), 'amod', ('frustrating', 'JJ')), (('frustrating', 'JJ'), 'amod', ('slow', 'JJ')), (('network', 'NN'), 'dep', ('disappointing', 'JJ'))]
[(('take', 'VBP'), 'nsubj', ('wonderful', 'NNS')), (('wonderful', 'NNS'), 'compound', ('everything', 'NN')), (('wonderful', 'NNS'), 'compound', ('mac', 'NN')), (('take', 'VBP'), 'dobj', ('little', 'RB')), (('little', 'RB'), 'acl', ('used', 'VBN')), (('used', 'VBN'), 'xcomp', ('learning', 'VBG')), (('learning', 'VBG'), 'advcl', ('getting', 'VBG')), (('getting', 'VBG'), 'ccomp', ('learn', 'VB')), (('learn', 'VB'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'amod', ('used', 'JJ')), (('system', 'NN'), 'amod', ('new', 'JJ')), (('learn', 'VB'), 'xcomp', ('fast', 'JJ')), (('fast', 'JJ'), 'dep', ('worth', 'IN'))]
[(('screen', 'VB'), 'xcomp', ('nice', 'JJ')), (('nice', 'JJ'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('bright', 'JJ'))]
[(('said', 'VBD'), 'nsubj', ('_', 'NNP')), (('said', 'VBD'), 'dobj', ('warranty', 'NN'))]
[(('taught', 'VBD'), 'nsubj', ('disk', 'NN')), (('disk', 'NN'), 'amod', ('hard', 'JJ')), (('disk', 'NN'), 'acl:relcl', ('give', 'VBP')), (('give', 'VBP'), 'nsubj', ('edition', 'NN')), (('edition', 'NN'), 'amod', ('new', 'JJ')), (('give', 'VBP'), 'dobj', ('500gb', 'NNS')), (('500gb', 'NNS'), 'amod', ('hard', 'JJ')), (('500gb', 'NNS'), 'compound', ('disk', 'NN')), (('500gb', 'NNS'), 'compound', ('space', 'NN')), (('give', 'VBP'), 'nmod', ('time', 'NN')), (('time', 'NN'), 'advmod', ('instead', 'RB')), (('time', 'NN'), 'amod', ('320gb', 'JJ')), (('taught', 'VBD'), 'neg', ('never', 'RB')), (('taught', 'VBD'), 'dep', ('trust', 'VB')), (('trust', 'VB'), 'dobj', ('disk', 'NN')), (('disk', 'NN'), 'amod', ('internal', 'JJ')), (('disk', 'NN'), 'amod', ('hard', 'JJ'))]
[(('fall', 'VB'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'compound', ('cd', 'NN')), (('drive', 'NN'), 'acl', ('found', 'VBN')), (('found', 'VBN'), 'advcl', ('cheap', 'RB')), (('cheap', 'RB'), 'dep', ('also', 'RB')), (('cheap', 'RB'), 'dep', ('portable', 'JJ')), (('found', 'VBN'), 'xcomp', ('making', 'VBG')), (('making', 'VBG'), 'dobj', ('someone', 'NN')), (('someone', 'NN'), 'amod', ('best', 'JJS')), (('someone', 'NN'), 'compound', ('friend', 'NN')), (('someone', 'NN'), 'acl', ('looking', 'VBG')), (('looking', 'VBG'), 'advmod', ('always', 'RB')), (('looking', 'VBG'), 'dobj', ('space', 'NN'))]
[(('bought', 'VBN'), 'dobj', ('comouter', 'NN')), (('comouter', 'NN'), 'amod', ('new', 'JJ')), (('comouter', 'NN'), 'compound', ('hp', 'NN')), (('comouter', 'NN'), 'acl:relcl', ('wanted', 'VBD')), (('wanted', 'VBD'), 'nsubj', ('dec', 'NN')), (('dec', 'NN'), 'nummod', ('2008', 'CD')), (('wanted', 'VBD'), 'ccomp', ('told', 'VBD')), (('told', 'VBD'), 'nsubj', ('xp', 'NN')), (('xp', 'NN'), 'compound', ('window', 'NN')), (('told', 'VBD'), 'ccomp', ('cost', 'VB')), (('cost', 'VB'), 'aux', ('would', 'MD')), (('cost', 'VB'), 'dobj', ('159', 'NNS')), (('159', 'NNS'), 'amod', ('extra', 'JJ')), (('bought', 'VBN'), 'dep', ('went', 'VBD')), (('bought', 'VBN'), 'nsubj', ('vista', 'NN'))]
[(('realized', 'VBN'), 'dobj', ('brand', 'NN')), (('brand', 'NN'), 'compound', ('problem', 'NN'))]
[(('computer', 'NN'), 'dep', ('forgot', 'NNS')), (('forgot', 'NNS'), 'nummod', ('two', 'CD')), (('forgot', 'NNS'), 'compound', ('week', 'NN')), (('forgot', 'NNS'), 'amod', ('late', 'JJ')), (('forgot', 'NNS'), 'compound', ('delivery', 'NN')), (('forgot', 'NNS'), 'compound', ('hp', 'NN')), (('computer', 'NN'), 'dep', ('paperwork', 'NN')), (('paperwork', 'NN'), 'amod', ('complete', 'JJ')), (('paperwork', 'NN'), 'amod', ('required', 'JJ')), (('paperwork', 'NN'), 'compound', ('import', 'NN'))]
[(('service', 'NN'), 'amod', ('inept', 'JJ')), (('inept', 'JJ'), 'amod', ('tired', 'JJ'))]
[(('affordability', 'NNS'), 'amod', ('great', 'JJ')), (('affordability', 'NNS'), 'compound', ('pick', 'NN')), (('affordability', 'NNS'), 'compound', ('portability', 'NN'))]
[(('kicked', 'VBD'), 'dep', ('hope', 'VB')), (('hope', 'VB'), 'nsubj', ('time', 'NN')), (('time', 'NN'), 'compound', ('way', 'NN')), (('time', 'NN'), 'amod', ('many', 'JJ')), (('time', 'NN'), 'acl', ('sending', 'VBG')), (('sending', 'VBG'), 'dobj', ('service', 'NN')), (('service', 'NN'), 'compound', ('thing', 'NN')), (('service', 'NN'), 'compound', ('repair', 'NN')), (('service', 'NN'), 'compound', ('delivery', 'NN')), (('service', 'NN'), 'amod', ('slow', 'JJ')), (('slow', 'JJ'), 'nmod', ('internet', 'NN')), (('internet', 'NN'), 'case', ('without', 'IN')), (('internet', 'NN'), 'amod', ('laptop', 'JJ')), (('internet', 'NN'), 'compound', ('access', 'NN')), (('internet', 'NN'), 'acl', ('tracking', 'VBG')), (('tracking', 'VBG'), 'advmod', ('way', 'RB')), (('way', 'RB'), 'advmod', ('thus', 'RB')), (('tracking', 'VBG'), 'ccomp', ('find', 'VB')), (('hope', 'VB'), 'aux', ('might', 'MD')), (('hope', 'VB'), 'xcomp', ('see', 'VB')), (('see', 'VB'), 'dobj', ('computer', 'NN')), (('kicked', 'VBD'), 'advmod', ('finally', 'RB')), (('kicked', 'VBD'), 'dobj', ('bucket', 'NN')), (('kicked', 'VBD'), 'nsubj', ('year', 'NN')), (('year', 'NN'), 'nummod', ('2', 'CD'))]
[(('exceeded', 'VBD'), 'advmod', ('far', 'RB')), (('exceeded', 'VBD'), 'nsubj', ('abilitiy', 'NN')), (('abilitiy', 'NN'), 'nummod', ('expectation', 'CD')), (('abilitiy', 'NN'), 'compound', ('power', 'NN')), (('abilitiy', 'NN'), 'compound', ('storage', 'NN'))]
[(('included', 'VBD'), 'nsubj', ('another', 'DT')), (('included', 'VBD'), 'dobj', ('game', 'NN')), (('game', 'NN'), 'compound', ('program', 'NN')), (('game', 'NN'), 'compound', ('laughable', 'NN')), (('game', 'NN'), 'compound', ('chess', 'NN'))]
[(('seems', 'VBZ'), 'ccomp', ('updated', 'VB')), (('updated', 'VB'), 'aux', ('could', 'MD')), (('seems', 'VBZ'), 'nsubj', ('xp', 'NN')), (('xp', 'NN'), 'acl', ('done', 'VBN')), (('done', 'VBN'), 'advcl', ('creating', 'VBG')), (('creating', 'VBG'), 'mark', ('without', 'IN')), (('creating', 'VBG'), 'dobj', ('vista', 'NN'))]
[(('stopped', 'VBN'), 'nsubj', ('charger', 'NN')), (('charger', 'NN'), 'nummod', ('4', 'CD')), (('charger', 'NN'), 'compound', ('month', 'NN')), (('stopped', 'VBN'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'dep', ('forced', 'VBN')), (('forced', 'VBN'), 'ccomp', ('go', 'VB')), (('go', 'VB'), 'xcomp', ('buy', 'VB')), (('buy', 'VB'), 'ccomp', ('keep', 'VB')), (('keep', 'VB'), 'nsubj', ('hardware', 'NN')), (('hardware', 'NN'), 'amod', ('new', 'JJ')), (('keep', 'VB'), 'dobj', ('computer', 'NN')), (('computer', 'NN'), 'acl', ('running', 'VBG'))]
[(('even', 'RB'), 'dep', ('warranty', 'NN'))]
[(('made', 'VBD'), 'nsubj', ('macbook', 'NN')), (('macbook', 'NN'), 'advmod', ('also', 'RB')), (('made', 'VBD'), 'ccomp', ('got', 'VBD')), (('got', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('better', 'JJR')), (('got', 'VBD'), 'neg', ('never', 'RB')), (('got', 'VBD'), 'ccomp', ('bought', 'VBD')), (('bought', 'VBD'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('virus', 'NN')), (('laptop', 'NN'), 'acl', ('run', 'VBN')), (('run', 'VBN'), 'advmod', ('fast', 'RB')), (('run', 'VBN'), 'nmod:tmod', ('day', 'NN')), (('day', 'NN'), 'amod', ('first', 'JJ'))]
[(('broke', 'VBD'), 'nsubj', ('burner', 'NN')), (('burner', 'NN'), 'compound', ('dvd', 'NN')), (('broke', 'VBD'), 'xcomp', ('burning', 'VBG')), (('burning', 'VBG'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'nummod', ('3', 'CD')), (('time', 'NN'), 'compound', ('dvd', 'NN'))]
[(('_', 'VBD'), 'ccomp', ('flash', 'VBP')), (('flash', 'VBP'), 'nsubj', ('adobe', 'NN')), (('adobe', 'NN'), 'amod', ('numerous', 'JJ')), (('adobe', 'NN'), 'compound', ('problem', 'NN')), (('adobe', 'NN'), 'compound', ('vista', 'NN')), (('flash', 'VBP'), 'ccomp', ('quits', 'VBZ')), (('quits', 'VBZ'), 'nsubj', ('player', 'NN')), (('quits', 'VBZ'), 'ccomp', ('explore', 'VB')), (('explore', 'VB'), 'nsubj', ('internet', 'NN')), (('internet', 'NN'), 'amod', ('uninstalled', 'JJ')), (('internet', 'NN'), 'amod', ('reinsalled', 'JJ')), (('explore', 'VB'), 'ccomp', ('lose', 'VB')), (('lose', 'VB'), 'nsubj', ('quits', 'NNP')), (('lose', 'VB'), 'ccomp', ('appeared', 'VBD')), (('appeared', 'VBD'), 'nsubj', ('whatever', 'WDT')), (('appeared', 'VBD'), 'csubj', ('working', 'VBG')), (('working', 'VBG'), 'advmod', ('also', 'RB')), (('working', 'VBG'), 'dobj', ('update', 'NN')), (('update', 'NN'), 'compound', ('window', 'NN')), (('appeared', 'VBD'), 'dobj', ('computer', 'NN')), (('appeared', 'VBD'), 'advcl', ('got', 'VBD')), (('got', 'VBD'), 'mark', ('since', 'IN')), (('got', 'VBD'), 'dobj', ('updated', 'NNS')), (('got', 'VBD'), 'advmod', ('probably', 'RB')), (('_', 'VBD'), 'nsubj', ('update', 'NN')), (('update', 'NN'), 'nummod', ('400', 'CD')), (('update', 'NN'), 'compound', ('time', 'NN'))]
[(('keyboard', 'NN'), 'dep', ('bulky', 'NNS')), (('bulky', 'NNS'), 'amod', ('slick', 'JJ')), (('bulky', 'NNS'), 'amod', ('quiet', 'JJ')), (('bulky', 'NNS'), 'nmod', ('past', 'NN')), (('past', 'NN'), 'case', ('like', 'IN')), (('past', 'NN'), 'amod', ('laptop', 'JJ'))]
[(('processor', 'NN'), 'dep', ('load', 'NN')), (('load', 'NN'), 'amod', ('quick', 'JJ')), (('load', 'NN'), 'amod', ('effective', 'JJ')), (('processor', 'NN'), 'dep', ('application', 'NN')), (('application', 'NN'), 'amod', ('webpage', 'JJ'))]
[(('mac', 'NN'), 'dep', ('best', 'RB')), (('mac', 'NN'), 'compound', ('world', 'NN')), (('mac', 'NN'), 'compound', ('power', 'NN')), (('mac', 'NN'), 'compound', ('ease', 'NN'))]
[(('display', 'VB'), 'advcl', ('horrible', 'JJ')), (('horrible', 'JJ'), 'case', ('beyond', 'IN'))]
[(('find', 'VBP'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'amod', ('navigate', 'JJ')), (('navigate', 'JJ'), 'advmod', ('much', 'RB')), (('navigate', 'JJ'), 'advmod', ('easier', 'RBR')), (('system', 'NN'), 'amod', ('operating', 'VBG')), (('find', 'VBP'), 'xcomp', ('file', 'VB')), (('file', 'VB'), 'dobj', ('lot', 'NN')), (('lot', 'NN'), 'compound', ('run', 'NN')), (('file', 'VB'), 'advmod', ('faster', 'RBR'))]
[(('problem', 'NN'), 'compound', ('lot', 'NN')), (('problem', 'NN'), 'compound', ('writing', 'NN')), (('problem', 'NN'), 'compound', ('editing', 'NN')), (('problem', 'NN'), 'nmod', ('key', 'NN')), (('key', 'NN'), 'case', ('since', 'IN')), (('key', 'NN'), 'advmod', ('forward', 'RB')), (('key', 'NN'), 'amod', ('delete', 'JJ'))]
[(('mouse', 'NN'), 'amod', ('_', 'JJ')), (('mouse', 'NN'), 'compound', ('time', 'NN')), (('mouse', 'NN'), 'dep', ('click', 'NN')), (('click', 'NN'), 'compound', ('pad', 'NN')), (('click', 'NN'), 'compound', ('right', 'NN')), (('mouse', 'NN'), 'dep', ('work', 'NN')), (('work', 'NN'), 'amod', ('key', 'JJ'))]
[(('called', 'VBN'), 'xcomp', ('good', 'JJ')), (('good', 'JJ'), 'nsubj', ('support', 'NN')), (('support', 'NN'), 'compound', ('customer', 'NN')), (('called', 'VBN'), 'dep', ('went', 'VBD')), (('went', 'VBD'), 'ccomp', ('affect', 'VBP')), (('affect', 'VBP'), 'nsubj', ('feature', 'NN')), (('feature', 'NN'), 'compound', ('safety', 'NN')), (('affect', 'VBP'), 'ccomp', ('chose', 'VBD')), (('chose', 'VBD'), 'nsubj', ('performance', 'NN')), (('called', 'VBN'), 'nsubj', ('message', 'NN')), (('message', 'NN'), 'nummod', ('hide', 'CD'))]
[(('seems', 'VBZ'), 'xcomp', ('run', 'NN')), (('run', 'NN'), 'amod', ('slow', 'JJ')), (('run', 'NN'), 'compound', ('occassionally', 'NN')), (('seems', 'VBZ'), 'nsubj', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('many', 'JJ')), (('etc', 'NN'), 'compound', ('application', 'NN')), (('etc', 'NN'), 'compound', ('ie', 'NN')), (('etc', 'NN'), 'compound', ('internet', 'NN')), (('etc', 'NN'), 'compound', ('tab', 'NN')), (('etc', 'NN'), 'compound', ('program', 'NN')), (('etc', 'NN'), 'advmod', ('simultaneously', 'RB'))]
[(('figure', 'VB'), 'ccomp', ('ended', 'VBD')), (('ended', 'VBD'), 'nsubj', ('pc', 'NN')), (('pc', 'NN'), 'compound', ('everything', 'NN')), (('ended', 'VBD'), 'advmod', ('actually', 'RB')), (('ended', 'VBD'), 'xcomp', ('costing', 'VBG')), (('costing', 'VBG'), 'iobj', ('350', 'CD')), (('costing', 'VBG'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'amod', ('original', 'JJ'))]
[(('using', 'VBG'), 'dobj', ('speaker', 'NN')), (('speaker', 'NN'), 'amod', ('external', 'JJ')), (('speaker', 'NN'), 'amod', ('good', 'JJ')), (('good', 'JJ'), 'amod', ('sound', 'JJ'))]
[(('computer', 'NN'), 'compound', ('display', 'NN')), (('computer', 'NN'), 'acl', ('seen', 'VBN')), (('seen', 'VBN'), 'advmod', ('best', 'RBS')), (('computer', 'NN'), 'dep', ('convienent', 'NNS')), (('convienent', 'NNS'), 'dep', ('long', 'JJ')), (('long', 'JJ'), 'dep', ('time', 'NN')), (('convienent', 'NNS'), 'compound', ('battery', 'NN')), (('convienent', 'NNS'), 'compound', ('life', 'NN')), (('convienent', 'NNS'), 'amod', ('long', 'JJ'))]
[(('realized', 'VBD'), 'dep', ('disappointed', 'JJ')), (('realized', 'VBD'), 'nsubj', ('model', 'NN')), (('model', 'NN'), 'nummod', ('keyboard', 'CD')), (('model', 'NN'), 'amod', ('light', 'JJ'))]
[(('wireless', 'NN'), 'amod', ('graphic', 'JJ')), (('wireless', 'NN'), 'amod', ('awful', 'JJ')), (('wireless', 'NN'), 'dep', ('switch', 'VB')), (('switch', 'VB'), 'dobj', ('top', 'NN')), (('switch', 'VB'), 'nmod', ('side', 'NN')), (('side', 'NN'), 'advmod', ('rather', 'RB')), (('side', 'NN'), 'amod', ('side', 'JJ')), (('side', 'NN'), 'amod', ('used', 'JJ'))]
[(('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'advmod', ('also', 'RB')), (('life', 'NN'), 'dep', ('good', 'JJ')), (('good', 'JJ'), 'advmod', ('relatively', 'RB'))]
[(('met', 'VBD'), 'nsubj', ('feature', 'NN')), (('feature', 'NN'), 'compound', ('price', 'NN')), (('met', 'VBD'), 'dobj', ('need', 'NN'))]
[(('made', 'VBD'), 'iobj', ('computer', 'NN')), (('made', 'VBD'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'amod', ('easier', 'JJR')), (('easier', 'JJR'), 'advmod', ('much', 'RB')), (('made', 'VBD'), 'nsubj', ('navigate', 'VB'))]
[(('bought', 'VBN'), 'dobj', ('mouse', 'NN')), (('mouse', 'NN'), 'amod', ('cordless', 'JJ')), (('bought', 'VBN'), 'dep', ('take', 'VB')), (('take', 'VB'), 'advmod', ('always', 'RB'))]
[(('provides', 'VBZ'), 'nsubj', ('company', 'NN')), (('provides', 'VBZ'), 'dobj', ('ups', 'NNS')), (('ups', 'NNS'), 'acl', ('shipping', 'VBG')), (('shipping', 'VBG'), 'advmod', ('great', 'JJ')), (('great', 'JJ'), 'advmod', ('fast', 'RB'))]
[(('involves', 'VBZ'), 'nsubj', ('problem', 'NN')), (('problem', 'NN'), 'amod', ('second', 'JJ')), (('involves', 'VBZ'), 'ccomp', ('advertised', 'VBD')), (('advertised', 'VBD'), 'nsubj', ('battery', 'NN')), (('advertised', 'VBD'), 'ccomp', ('show', 'VBP')), (('show', 'VBP'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'compound', ('storage', 'NN')), (('life', 'NN'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('11', 'CD')), (('life', 'NN'), 'amod', ('charged', 'VBN')), (('charged', 'VBN'), 'advmod', ('fully', 'RB')), (('show', 'VBP'), 'dobj', ('service', 'NN')), (('service', 'NN'), 'nummod', ('7', 'CD')), (('service', 'NN'), 'compound', ('hour', 'NN'))]
[(('stand', 'VBP'), 'dep', ('suggest', 'VB')), (('suggest', 'VB'), 'nsubj', ('heat', 'NN')), (('heat', 'NN'), 'compound', ('experience', 'NN')), (('heat', 'NN'), 'compound', ('lot', 'NN')), (('heat', 'NN'), 'acl', ('coming', 'VBG')), (('coming', 'VBG'), 'advmod', ('however', 'RB')), (('suggest', 'VB'), 'aux', ('would', 'MD')), (('suggest', 'VB'), 'advmod', ('highly', 'RB')), (('suggest', 'VB'), 'dobj', ('purchasing', 'NN')), (('stand', 'VBP'), 'advmod', ('however', 'RB')), (('stand', 'VBP'), 'nmod', ('macbook', 'NN')), (('macbook', 'NN'), 'case', ('due', 'IN')), (('macbook', 'NN'), 'compound', ('nature', 'NN')), (('macbook', 'NN'), 'compound', ('design', 'NN')), (('stand', 'VBP'), 'nsubj', ('sink', 'NN')), (('sink', 'NN'), 'nummod', ('one', 'CD')), (('sink', 'NN'), 'amod', ('large', 'JJ')), (('sink', 'NN'), 'compound', ('heat', 'NN'))]
[(('like', 'VBP'), 'advmod', ('also', 'RB')), (('like', 'VBP'), 'dobj', ('reallythe', 'NN')), (('reallythe', 'NN'), 'compound', ('acer', 'NN')), (('reallythe', 'NN'), 'compound', ('arcade', 'NN')), (('like', 'VBP'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'nummod', ('two', 'CD')), (('laptop', 'NN'), 'compound', ('thing', 'NN')), (('laptop', 'NN'), 'compound', ('liked', 'NN'))]
[(('know', 'VBP'), 'nsubj', ('buy', 'NN')), (('buy', 'NN'), 'compound', ('reason', 'NN')), (('know', 'VBP'), 'ccomp', ('lose', 'VB')), (('lose', 'VB'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('first', 'JJ')), (('lose', 'VB'), 'dobj', ('price', 'NN')), (('price', 'NN'), 'compound', ('value', 'NN')), (('price', 'NN'), 'compound', ('laptop', 'NN')), (('lose', 'VB'), 'dep', ('stay', 'VB')), (('stay', 'VB'), 'nmod:tmod', ('year', 'NN')), (('year', 'NN'), 'amod', ('next', 'JJ')), (('stay', 'VB'), 'dep', ('decides', 'VBZ')), (('decides', 'VBZ'), 'advmod', ('even', 'RB')), (('decides', 'VBZ'), 'nsubj', ('apple', 'NN')), (('decides', 'VBZ'), 'xcomp', ('change', 'VB')), (('change', 'VB'), 'iobj', ('drop', 'NN')), (('drop', 'NN'), 'compound', ('mode', 'NN')), (('drop', 'NN'), 'compound', ('laptop', 'NN')), (('drop', 'NN'), 'compound', ('value', 'NN')), (('change', 'VB'), 'dobj', ('20', 'CD')), (('20', 'CD'), 'compound', ('10', 'CD')), (('change', 'VB'), 'nmod', ('drop', 'NN')), (('drop', 'NN'), 'case', ('unlike', 'IN')), (('drop', 'NN'), 'compound', ('pc', 'NN')), (('drop', 'NN'), 'compound', ('laptop', 'NN')), (('drop', 'NN'), 'dep', ('80', 'CD'))]
[(('guess', 'VBP'), 'xcomp', ('buy', 'VB')), (('buy', 'VB'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('external', 'JJ')), (('drive', 'NN'), 'compound', ('dvd', 'NN')), (('drive', 'NN'), 'acl', ('built', 'VBN')), (('built', 'VBN'), 'dobj', ('notebook', 'NN')), (('notebook', 'NN'), 'compound', ('type', 'NN')), (('notebook', 'NN'), 'acl', ('used', 'VBN')), (('used', 'VBN'), 'ccomp', ('read', 'VB')), (('read', 'VB'), 'dobj', ('anything', 'NN')), (('guess', 'VBP'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('external', 'JJ'))]
[(('install', 'VB'), 'dobj', ('window', 'NN')), (('install', 'VB'), 'nmod', ('purchase', 'NN')), (('purchase', 'NN'), 'case', ('within', 'IN')), (('purchase', 'NN'), 'nummod', ('two', 'CD')), (('purchase', 'NN'), 'compound', ('week', 'NN')), (('purchase', 'NN'), 'acl', ('discovered', 'VBN')), (('discovered', 'VBN'), 'advmod', ('soon', 'RB')), (('discovered', 'VBN'), 'dobj', ('hinge', 'NNS')), (('hinge', 'NNS'), 'compound', ('crack', 'NN')), (('hinge', 'NNS'), 'compound', ('screen', 'NN'))]
[(('way', 'NN'), 'compound', ('mouse', 'NN')), (('way', 'NN'), 'compound', ('way', 'NN')), (('way', 'NN'), 'compound', ('way', 'NN')), (('way', 'NN'), 'dep', ('sensitve', 'VB'))]
[(('paint', 'VB'), 'xcomp', ('wear', 'VB')), (('wear', 'VB'), 'dobj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('due', 'JJ')), (('due', 'JJ'), 'advmod', ('easily', 'RB')), (('keyboard', 'NN'), 'amod', ('usual', 'JJ')), (('usual', 'JJ'), 'advmod', ('back', 'RB')), (('back', 'RB'), 'advmod', ('farther', 'RBR'))]
[(('purchased', 'VBD'), 'nsubj', ('store', 'NN')), (('store', 'NN'), 'compound', ('tech', 'NN')), (('purchased', 'VBD'), 'ccomp', ('got', 'VBD')), (('got', 'VBD'), 'csubj', ('sent', 'VBN')), (('sent', 'VBN'), 'compound:prt', ('back', 'RP')), (('sent', 'VBN'), 'advmod', ('eventually', 'RB')), (('got', 'VBD'), 'dobj', ('machine', 'NN')), (('machine', 'NN'), 'amod', ('new', 'JJ')), (('machine', 'NN'), 'amod', ('repaired', 'JJ')), (('got', 'VBD'), 'advmod', ('later', 'RBR')), (('later', 'RBR'), 'nmod:npmod', ('week', 'NN')), (('week', 'NN'), 'nummod', ('3', 'CD')), (('3', 'CD'), 'advmod', ('approximately', 'RB'))]
[(('found', 'VBD'), 'nsubj', ('_', 'NNP')), (('_', 'NNP'), 'acl', ('sent', 'VBN')), (('sent', 'VBN'), 'advmod', ('back', 'RB')), (('found', 'VBD'), 'ccomp', ('got', 'VBD')), (('got', 'VBD'), 'nsubj', ('faulty', 'NNS')), (('faulty', 'NNS'), 'compound', ('time', 'NN')), (('faulty', 'NNS'), 'compound', ('battery', 'NN')), (('got', 'VBD'), 'ccomp', ('found', 'VBD')), (('found', 'VBD'), 'nsubj', ('fix', 'NN')), (('fix', 'NN'), 'amod', ('new', 'JJ')), (('fix', 'NN'), 'nummod', ('one', 'CD'))]
[(('carry', 'VBP'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'acl', ('challenging', 'VBG')), (('carry', 'VBP'), 'xcomp', ('handle', 'VB'))]
[(('addicted', 'VB'), 'dobj', ('booth', 'NN')), (('booth', 'NN'), 'amod', ('photo', 'JJ'))]
[(('migration', 'NN'), 'amod', ('little', 'JJ')), (('migration', 'NN'), 'compound', ('difficulty', 'NN')), (('migration', 'NN'), 'dep', ('system', 'NN')), (('system', 'NN'), 'amod', ('firewire', 'JJ')), (('system', 'NN'), 'compound', ('cable', 'NN')), (('migration', 'NN'), 'dep', ('ibook', 'NN')), (('ibook', 'NN'), 'amod', ('used', 'JJ'))]
[(('offer', 'NN'), 'amod', ('great', 'JJ')), (('offer', 'NN'), 'compound', ('laptop', 'NN')), (('offer', 'NN'), 'dep', ('feature', 'NN')), (('feature', 'NN'), 'amod', ('many', 'JJ')), (('feature', 'NN'), 'amod', ('great', 'JJ'))]
[(('apple', 'NN'), 'compound', ('love', 'NN')), (('apple', 'NN'), 'dep', ('use', 'NN')), (('use', 'NN'), 'amod', ('quick', 'JJ')), (('use', 'NN'), 'amod', ('easy', 'JJ'))]
[(('lock', 'VB'), 'dobj', ('cause', 'NN')), (('cause', 'NN'), 'compound', ('problem', 'NN')), (('cause', 'NN'), 'amod', ('myriad', 'JJ')), (('cause', 'NN'), 'acl:relcl', ('appleworks', 'VBZ')), (('appleworks', 'VBZ'), 'nsubj', ('version', 'NN')), (('version', 'NN'), 'amod', ('common', 'JJ')), (('version', 'NN'), 'amod', ('corrupted', 'JJ')), (('appleworks', 'VBZ'), 'xcomp', ('useless', 'JJ')), (('useless', 'JJ'), 'nsubj', ('browser', 'NN')), (('browser', 'NN'), 'compound', ('render', 'NN'))]
[(('play', 'VB'), 'xcomp', ('responsive', 'JJ')), (('responsive', 'JJ'), 'nsubj', ('game', 'NN')), (('game', 'NN'), 'compound', ('lot', 'NN')), (('game', 'NN'), 'amod', ('casual', 'JJ')), (('game', 'NN'), 'nmod', ('touchpad', 'NN')), (('touchpad', 'NN'), 'dep', ('online', 'NN'))]
[(('come', 'VB'), 'dobj', ('software', 'NN')), (('software', 'NN'), 'acl', ('installed', 'VBN')), (('installed', 'VBN'), 'nmod', ('price', 'NN')), (('price', 'NN'), 'case', ('outside', 'IN')), (('price', 'NN'), 'compound', ('window', 'NN')), (('price', 'NN'), 'compound', ('medium', 'NN')), (('price', 'NN'), 'acl', ('pleased', 'VBN')), (('pleased', 'VBN'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'compound', ('condition', 'NN')), (('product', 'NN'), 'amod', ('overall', 'JJ'))]
[(('wireless', 'NN'), 'amod', ('graphic', 'JJ')), (('wireless', 'NN'), 'amod', ('awful', 'JJ')), (('wireless', 'NN'), 'dep', ('switch', 'VB')), (('switch', 'VB'), 'dobj', ('top', 'NN')), (('switch', 'VB'), 'nmod', ('side', 'NN')), (('side', 'NN'), 'advmod', ('rather', 'RB')), (('side', 'NN'), 'amod', ('side', 'JJ')), (('side', 'NN'), 'amod', ('used', 'JJ'))]
[(('know', 'VB'), 'xcomp', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('aggrevation', 'NN')), (('aggrevation', 'NN'), 'compound', ('computer', 'NN')), (('aggrevation', 'NN'), 'compound', ('fun', 'NN')), (('aggrevation', 'NN'), 'acl', ('playing', 'VBG')), (('playing', 'VBG'), 'advmod', ('especially', 'RB')), (('playing', 'VBG'), 'dobj', ('game', 'NN')), (('playing', 'VBG'), 'advcl', ('working', 'VBG')), (('working', 'VBG'), 'dobj', ('photo', 'NN'))]
[(('screen', 'NN'), 'amod', ('crisp', 'JJ')), (('screen', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('great', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('screen', 'NN'), 'dep', ('storage', 'NN')), (('storage', 'NN'), 'compound', ('plenty', 'NN'))]
[(('got', 'VBD'), 'advmod', ('even', 'RB')), (('got', 'VBD'), 'dobj', ('son', 'NN')), (('son', 'NN'), 'amod', ('teenage', 'JJ')), (('got', 'VBD'), 'nsubj', ('offer', 'NN')), (('offer', 'NN'), 'nummod', ('one', 'CD')), (('offer', 'NN'), 'compound', ('feature', 'NN')), (('got', 'VBD'), 'nmod', ('band', 'NN')), (('band', 'NN'), 'case', ('like', 'IN')), (('band', 'NN'), 'amod', ('ichat', 'JJ')), (('band', 'NN'), 'compound', ('photobooth', 'NN')), (('band', 'NN'), 'compound', ('garage', 'NN'))]
[(('froze', 'VBD'), 'nsubj', ('locekd', 'NN')), (('locekd', 'NN'), 'compound', ('internet', 'NN')), (('froze', 'VBD'), 'ccomp', ('work', 'VB')), (('work', 'VB'), 'nsubj', ('time', 'NN')), (('time', 'NN'), 'det', ('every', 'DT')), (('time', 'NN'), 'acl', ('trying', 'VBG')), (('trying', 'VBG'), 'xcomp', ('prompt', 'JJ')), (('prompt', 'JJ'), 'nsubj', ('command', 'NN')), (('command', 'NN'), 'amod', ('used', 'JJ')), (('work', 'VB'), 'aux', ('would', 'MD'))]
[(('used', 'VBD'), 'dep', ('took', 'VBD')), (('took', 'VBD'), 'csubj', ('learning', 'VBG')), (('learning', 'VBG'), 'dobj', ('shortcut', 'NN')), (('shortcut', 'NN'), 'compound', ('keyboard', 'NN')), (('took', 'VBD'), 'ccomp', ('get', 'VBP')), (('get', 'VBP'), 'nsubj', ('minute', 'NN')), (('used', 'VBD'), 'nsubj', ('machine', 'NN')), (('machine', 'NN'), 'nummod', ('shortcut', 'CD')), (('machine', 'NN'), 'compound', ('window', 'NN'))]
[(('came', 'VBD'), 'nsubj', ('program', 'NN')), (('came', 'VBD'), 'dobj', ('work', 'NN')), (('work', 'NN'), 'compound', ('computer', 'NN')), (('came', 'VBD'), 'advmod', ('beautifully', 'RB'))]
[(('died', 'VBD'), 'nsubj', ('battery', 'NN')), (('battery', 'NN'), 'compound', ('battery', 'NN')), (('battery', 'NN'), 'compound', ('life', 'NN')), (('died', 'VBD'), 'advmod', ('completely', 'RB')), (('died', 'VBD'), 'dobj', ('course', 'NN')), (('course', 'NN'), 'acl', ('left', 'VBN')), (('left', 'VBN'), 'xcomp', ('desired', 'JJ')), (('desired', 'JJ'), 'advmod', ('much', 'RB'))]
[(('use', 'VB'), 'nsubj', ('higher', 'JJR')), (('higher', 'JJR'), 'amod', ('many', 'JJ')), (('higher', 'JJR'), 'acl', ('priced', 'VBN')), (('priced', 'VBN'), 'ccomp', ('burn', 'VB')), (('burn', 'VB'), 'nsubj', ('crash', 'NN')), (('crash', 'NN'), 'compound', ('computer', 'NN')), (('burn', 'VB'), 'advmod', ('ever', 'RB')), (('ever', 'RB'), 'advmod', ('long', 'RB')), (('use', 'VB'), 'aux', ('got', 'VBD')), (('use', 'VB'), 'dobj', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('great', 'JJ')), (('etc', 'NN'), 'compound', ('memory', 'NN')), (('etc', 'NN'), 'compound', ('speed', 'NN'))]
[(('make', 'VBP'), 'nsubj', ('cord', 'NN')), (('cord', 'NN'), 'acl', ('coming', 'VBG')), (('coming', 'VBG'), 'dobj', ('power', 'NN')), (('power', 'NN'), 'amod', ('right', 'JJ')), (('power', 'NN'), 'acl:relcl', ('left', 'VBD')), (('left', 'VBD'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'compound', ('cord', 'NN')), (('mic', 'NN'), 'amod', ('coming', 'JJ')), (('mic', 'NN'), 'amod', ('front', 'JJ')), (('mic', 'NN'), 'compound', ('headphone', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'conj', ('connection', 'NN')), (('connection', 'NN'), 'compound', ('network', 'NN')), (('make', 'VBP'), 'dobj', ('cord', 'NN')), (('cord', 'NN'), 'amod', ('messy', 'JJ')), (('cord', 'NN'), 'compound', ('setup', 'NN')), (('cord', 'NN'), 'acl', ('going', 'VBG')), (('going', 'VBG'), 'dobj', ('direction', 'NN')), (('direction', 'NN'), 'det', ('every', 'DT'))]
[(('scream', 'NN'), 'nsubj', ('processor', 'NN')), (('scream', 'NN'), 'dobj', ('graphic', 'NN')), (('graphic', 'NN'), 'amod', ('unique', 'JJ')), (('graphic', 'NN'), 'compound', ('way', 'NN')), (('graphic', 'NN'), 'compound', ('apple', 'NN')), (('graphic', 'NN'), 'compound', ('osx', 'NN')), (('graphic', 'NN'), 'nummod', ('16', 'CD')), (('graphic', 'NN'), 'compound', ('function', 'NN')), (('graphic', 'NN'), 'acl', ('routed', 'VBN')), (('routed', 'VBN'), 'dobj', ('hardware', 'NN')), (('routed', 'VBN'), 'nmod', ('software', 'NN')), (('software', 'NN'), 'advmod', ('rather', 'RB'))]
[(('respond', 'VB'), 'ccomp', ('lose', 'VB')), (('lose', 'VB'), 'nsubj', ('way', 'NN')), (('way', 'NN'), 'amod', ('old', 'JJ')), (('way', 'NN'), 'compound', ('computer', 'NN')), (('lose', 'VB'), 'aux', ('would', 'MD')), (('lose', 'VB'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'compound', ('data', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ'))]
[(('returned', 'VBD'), 'dep', ('determine', 'VB')), (('determine', 'VB'), 'nsubj', ('garmin', 'NN')), (('garmin', 'NN'), 'compound', ('acer', 'NN')), (('garmin', 'NN'), 'compound', ('help', 'NN')), (('determine', 'VB'), 'aux', ('could', 'MD')), (('determine', 'VB'), 'dobj', ('spending', 'NN')), (('spending', 'NN'), 'compound', ('problem', 'NN')), (('spending', 'NN'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('2', 'CD')), (('returned', 'VBD'), 'ccomp', ('seems', 'VBZ')), (('seems', 'VBZ'), 'nsubj', ('r700', 'NNS')), (('r700', 'NNS'), 'amod', ('purchased', 'JJ')), (('r700', 'NNS'), 'compound', ('toshiba', 'NN')), (('seems', 'VBZ'), 'xcomp', ('able', 'JJ')), (('able', 'JJ'), 'dep', ('nicer', 'JJR')), (('nicer', 'JJR'), 'advmod', ('even', 'RB')), (('returned', 'VBD'), 'nsubj', ('problem', 'NN')), (('problem', 'NN'), 'nummod', ('load', 'CD')), (('problem', 'NN'), 'compound', ('software', 'NN'))]
[(('check', 'VB'), 'xcomp', ('find', 'VB')), (('find', 'VB'), 'dobj', ('port', 'NN')), (('port', 'NN'), 'compound', ('notebook', 'NN')), (('port', 'NN'), 'amod', ('missing', 'VBG')), (('port', 'NN'), 'acl:relcl', ('amd', 'VBP')), (('amd', 'VBP'), 'nsubj', ('core', 'NN')), (('core', 'NN'), 'amod', ('dual', 'JJ')), (('amd', 'VBP'), 'dobj', ('processor', 'NN')), (('processor', 'NN'), 'amod', ('intel', 'JJ'))]
[(('heard', 'VBD'), 'nsubj', ('dell', 'NN')), (('dell', 'NN'), 'amod', ('first', 'JJ')), (('heard', 'VBD'), 'dobj', ('service', 'NN')), (('service', 'NN'), 'compound', ('customer', 'NN')), (('service', 'NN'), 'acl', ('lacking', 'VBG')), (('lacking', 'VBG'), 'advcl', ('working', 'VBG')), (('working', 'VBG'), 'dobj', ('improving', 'VBG'))]
[(('got', 'VBN'), 'advmod', ('back', 'RB')), (('got', 'VBN'), 'dep', ('built', 'VBD')), (('built', 'VBD'), 'ccomp', ('built', 'VBD')), (('built', 'VBD'), 'nsubj', ('webcam', 'NN')), (('built', 'VBD'), 'ccomp', ('touched', 'VBD')), (('touched', 'VBD'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'acl', ('shorting', 'VBG')), (('shorting', 'VBG'), 'dobj', ('anytime', 'RB')), (('touched', 'VBD'), 'ccomp', ('mean', 'VBP')), (('mean', 'VBP'), 'nsubj', ('mind', 'NN')), (('mind', 'NN'), 'compound', ('lid', 'NN')), (('mean', 'VBP'), 'ccomp', ('suffered', 'VBD')), (('suffered', 'VBD'), 'nsubj', ('fiance', 'NN')), (('fiance', 'NN'), 'compound', ('communication', 'NN')), (('fiance', 'NN'), 'acl', ('deployed', 'VBN')), (('suffered', 'VBD'), 'ccomp', ('reset', 'VB')), (('reset', 'VB'), 'nsubj', ('thru', 'NNP')), (('reset', 'VB'), 'aux', ('would', 'MD')), (('reset', 'VB'), 'advmod', ('constandly', 'RB')), (('reset', 'VB'), 'xcomp', ('able', 'JJ')), (('able', 'JJ'), 'nsubj', ('computer', 'NN')), (('got', 'VBN'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'compound', ('use', 'NN')), (('mic', 'NN'), 'compound', ('cam', 'NN')), (('mic', 'NN'), 'acl:relcl', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('anytime', 'RB'))]
[(('shuts', 'VBZ'), 'nsubj', ('window', 'NN')), (('shuts', 'VBZ'), 'advmod', ('also', 'RB')), (('shuts', 'VBZ'), 'dobj', ('reason', 'NN')), (('reason', 'NN'), 'compound', ('computer', 'NN')), (('shuts', 'VBZ'), 'nmod', ('warning', 'NN')), (('warning', 'NN'), 'case', ('without', 'IN'))]
[(('wish', 'VB'), 'ccomp', ('came', 'VBD')), (('came', 'VBD'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'compound', ('iwork', 'NN')), (('office', 'NN'), 'compound', ('m', 'NN')), (('came', 'VBD'), 'ccomp', ('come', 'VBP')), (('come', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'compound', ('mac', 'NN')), (('office', 'NN'), 'compound', ('m', 'NN')), (('come', 'VBP'), 'advmod', ('even', 'RB')), (('come', 'VBP'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('pc', 'NN'))]
[(('upgraded', 'VBD'), 'ccomp', ('replaced', 'VBD')), (('replaced', 'VBD'), 'nsubj', ('memory', 'NN')), (('replaced', 'VBD'), 'ccomp', ('win', 'VBP')), (('win', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'compound', ('base', 'NN')), (('window', 'NN'), 'amod', ('starter', 'NN')), (('starter', 'NN'), 'compound', ('7', 'CD')), (('upgraded', 'VBD'), 'nsubj', ('fine', 'NN')), (('fine', 'NN'), 'nummod', ('7', 'CD')), (('fine', 'NN'), 'compound', ('home', 'NN')), (('fine', 'NN'), 'compound', ('run', 'NN'))]
[(('video', 'NN'), 'dep', ('fast', 'RB')), (('video', 'NN'), 'compound', ('high', 'NN')), (('video', 'NN'), 'compound', ('definition', 'NN')), (('video', 'NN'), 'compound', ('quality', 'NN'))]
[(('computer', 'NN'), 'dep', ('ran', 'VBD')), (('ran', 'VBD'), 'advmod', ('fast', 'RB')), (('ran', 'VBD'), 'advmod', ('smoothly', 'RB')), (('ran', 'VBD'), 'dobj', ('problem', 'NN'))]
[(('got', 'VBD'), 'advmod', ('also', 'RB')), (('got', 'VBD'), 'advmod', ('sister', 'RB')), (('got', 'VBD'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('exact', 'JJ')), (('got', 'VBD'), 'nmod', ('split', 'NN')), (('split', 'NN'), 'case', ('since', 'IN')), (('split', 'NN'), 'compound', ('cheap', 'NN')), (('split', 'NN'), 'nummod', ('8', 'CD')), (('split', 'NN'), 'compound', ('month', 'NN')), (('split', 'NN'), 'compound', ('screen', 'NN')), (('got', 'VBD'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'det', ('half', 'DT')), (('use', 'NN'), 'amod', ('everyday', 'JJ'))]
[(('fun', 'NN'), 'compound', ('difference', 'NN')), (('fun', 'NN'), 'compound', ('whole', 'NN')), (('fun', 'NN'), 'compound', ('lot', 'NN')), (('fun', 'NN'), 'dep', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('laptop', 'NN')), (('using', 'VBG'), 'advcl', ('learning', 'VBG')), (('learning', 'VBG'), 'advmod', ('still', 'RB')), (('learning', 'VBG'), 'ccomp', ('come', 'VB')), (('come', 'VB'), 'nsubj', ('fun', 'NN')), (('fun', 'NN'), 'compound', ('apple', 'NN')), (('fun', 'NN'), 'compound', ('navigation', 'NN')), (('come', 'VB'), 'dobj', ('apps', 'NNS')), (('apps', 'NNS'), 'advmod', ('lot', 'RB')), (('apps', 'NNS'), 'amod', ('cool', 'JJ'))]
[(('laptop', 'NN'), 'amod', ('brand', 'NN')), (('brand', 'NN'), 'amod', ('unable', 'JJ')), (('brand', 'NN'), 'amod', ('boot', 'JJ')), (('laptop', 'NN'), 'amod', ('new', 'JJ'))]
[(('storage', 'NN'), 'compound', ('plenty', 'NN')), (('storage', 'NN'), 'dep', ('gb', 'NN')), (('gb', 'NN'), 'nummod', ('250', 'CD')), (('gb', 'NN'), 'nmod', ('ram', 'NN')), (('ram', 'NN'), 'case', ('though', 'IN')), (('ram', 'NN'), 'amod', ('upgrade', 'JJ'))]
[(('waiting', 'VBG'), 'dobj', ('i7', 'NNS')), (('waiting', 'VBG'), 'advmod', ('well', 'RB')), (('waiting', 'VBG'), 'nmod', ('price', 'NN')), (('price', 'NN'), 'case', ('worth', 'IN')), (('price', 'NN'), 'amod', ('great', 'JJ')), (('price', 'NN'), 'compound', ('value', 'NN'))]
[(('drive', 'NN'), 'compound', ('dvd', 'NN')), (('drive', 'NN'), 'dep', ('backpack', 'NN')), (('backpack', 'NN'), 'amod', ('pop', 'JJ')), (('pop', 'JJ'), 'advmod', ('randomly', 'RB')), (('backpack', 'NN'), 'amod', ('open', 'JJ')), (('backpack', 'NN'), 'amod', ('annoying', 'JJ')), (('annoying', 'JJ'), 'advmod', ('well', 'RB'))]
[(('carry', 'VBP'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'acl', ('challenging', 'VBG')), (('carry', 'VBP'), 'xcomp', ('handle', 'VB'))]
[(('perfect', 'JJ'), 'nsubj', ('size', 'NN')), (('perfect', 'JJ'), 'xcomp', ('bigger', 'JJR')), (('bigger', 'JJR'), 'nsubj', ('anything', 'NN')), (('anything', 'NN'), 'amod', ('recomend', 'JJ')), (('bigger', 'JJR'), 'ccomp', ('exceed', 'VBP')), (('exceed', 'VBP'), 'mark', ('except', 'IN')), (('exceed', 'VBP'), 'nsubj', ('person', 'NN')), (('exceed', 'VBP'), 'ccomp', ('give', 'VBP')), (('give', 'VBP'), 'nsubj', ('space', 'NN')), (('space', 'NN'), 'amod', ('limited', 'JJ'))]
[(('click', 'NN'), 'dep', ('x', 'SYM')), (('x', 'SYM'), 'dep', ('next', 'RB')), (('next', 'RB'), 'nmod:npmod', ('circle', 'NN')), (('circle', 'NN'), 'amod', ('small', 'JJ')), (('circle', 'NN'), 'amod', ('red', 'JJ')), (('click', 'NN'), 'amod', ('middle', 'JJ')), (('click', 'NN'), 'acl:relcl', ('say', 'VBP')), (('say', 'VBP'), 'xcomp', ('consider', 'VB')), (('consider', 'VB'), 'xcomp', ('replacing', 'VBG')), (('replacing', 'VBG'), 'ccomp', ('hold', 'VB')), (('hold', 'VB'), 'nsubj', ('battery', 'NN')), (('hold', 'VB'), 'dobj', ('charge', 'NN')), (('charge', 'NN'), 'amod', ('full', 'JJ'))]
[(('come', 'VBP'), 'nsubj', ('image', 'NN')), (('image', 'NN'), 'compound', ('screen', 'NN')), (('image', 'NN'), 'amod', ('nice', 'JJ')), (('come', 'VBP'), 'ccomp', ('feel', 'VBP')), (('feel', 'VBP'), 'nsubj', ('fit', 'NN')), (('fit', 'NN'), 'amod', ('clear', 'JJ')), (('fit', 'NN'), 'compound', ('keyboard', 'NN')), (('feel', 'VBP'), 'advmod', ('right', 'RB'))]
[(('encased', 'VBD'), 'nsubj', ('macbooks', 'NNS')), (('macbooks', 'NNS'), 'compound', ('shop', 'NN')), (('encased', 'VBD'), 'ccomp', ('know', 'VBP')), (('know', 'VBP'), 'nsubj', ('enclosure', 'NN')), (('enclosure', 'NN'), 'amod', ('soft', 'JJ')), (('enclosure', 'NN'), 'compound', ('rubber', 'NN')), (('know', 'VBP'), 'neg', ('never', 'RB')), (('know', 'VBP'), 'ccomp', ('buy', 'VB')), (('buy', 'VB'), 'nsubj', ('edge', 'NN')), (('edge', 'NN'), 'compound', ('razor', 'NN')), (('buy', 'VB'), 'xcomp', ('get', 'VB')), (('get', 'VB'), 'ccomp', ('use', 'VB')), (('use', 'VB'), 'nsubj', ('seal', 'NN')), (('seal', 'NN'), 'compound', ('home', 'NN')), (('seal', 'NN'), 'compound', ('break', 'NN')), (('use', 'VB'), 'dobj', ('con', 'NN')), (('con', 'NN'), 'amod', ('clever', 'JJ'))]
[(('going', 'VBG'), 'xcomp', ('bring', 'VB')), (('bring', 'VB'), 'dobj', ('service', 'NN')), (('bring', 'VB'), 'nmod:tmod', ('today', 'NN'))]
[(('macbooks', 'VBZ'), 'dobj', ('portable', 'NN')), (('portable', 'NN'), 'amod', ('small', 'JJ')), (('portable', 'NN'), 'amod', ('enough', 'JJ')), (('macbooks', 'VBZ'), 'advmod', ('yet', 'RB')), (('macbooks', 'VBZ'), 'dep', ('hold', 'VB')), (('hold', 'VB'), 'dobj', ('information', 'NN')), (('information', 'NN'), 'compound', ('ton', 'NN')), (('macbooks', 'VBZ'), 'nsubj', ('performance', 'NN'))]
[(('graphic', 'VB'), 'xcomp', ('great', 'JJ'))]
[(('beware', 'VB'), 'ccomp', ('send', 'VB')), (('send', 'VB'), 'nsubj', ('staff', 'NN')), (('send', 'VB'), 'aux', ('could', 'MD')), (('send', 'VB'), 'compound:prt', ('back', 'RP')), (('send', 'VB'), 'xcomp', ('making', 'VBG')), (('making', 'VBG'), 'ccomp', ('feel', 'VB')), (('feel', 'VB'), 'xcomp', ('know', 'VB')), (('know', 'VB'), 'dobj', ('computer', 'NN'))]
[(('use', 'NN'), 'compound', ('program', 'NN')), (('use', 'NN'), 'compound', ('esay', 'NN')), (('use', 'NN'), 'dep', ('work', 'NN')), (('work', 'NN'), 'amod', ('quick', 'JJ')), (('work', 'NN'), 'compound', ('process', 'NN')), (('work', 'NN'), 'compound', ('computer', 'NN')), (('work', 'NN'), 'nmod', ('charm', 'NN')), (('charm', 'NN'), 'case', ('like', 'IN'))]
[(('need', 'VBP'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('decent', 'JJ')), (('price', 'NN'), 'compound', ('comp', 'NN')), (('need', 'VBP'), 'dobj', ('one', 'CD')), (('need', 'VBP'), 'advmod', ('quickly', 'RB')), (('need', 'VBP'), 'dep', ('died', 'VBD')), (('died', 'VBD'), 'nsubj', ('laptop', 'NN'))]
[(('tried', 'VBD'), 'nsubj', ('everything', 'NN')), (('tried', 'VBD'), 'ccomp', ('carry', 'VBP')), (('carry', 'VBP'), 'csubj', ('worked', 'VBN')), (('worked', 'VBN'), 'neg', ('never', 'RB')), (('carry', 'VBP'), 'ccomp', ('cause', 'VB')), (('cause', 'VB'), 'nsubj', ('charger', 'NN')), (('charger', 'NN'), 'compound', ('wall', 'NN')), (('cause', 'VB'), 'xcomp', ('awesome', 'JJ')), (('awesome', 'JJ'), 'nmod:npmod', ('battery', 'NN'))]
[(('processor', 'NN'), 'dep', ('load', 'NN')), (('load', 'NN'), 'amod', ('quick', 'JJ')), (('load', 'NN'), 'amod', ('effective', 'JJ')), (('processor', 'NN'), 'dep', ('application', 'NN')), (('application', 'NN'), 'amod', ('webpage', 'JJ'))]
[(('seems', 'VBZ'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'acl', ('shipped', 'VBN')), (('shipped', 'VBN'), 'xcomp', ('returned', 'VBN')), (('returned', 'VBN'), 'nsubj', ('depot', 'NN')), (('depot', 'NN'), 'compound', ('repair', 'NN')), (('returned', 'VBN'), 'dep', ('_', 'JJ')), (('_', 'JJ'), 'nmod:tmod', ('june', 'NNP')), (('june', 'NNP'), 'nummod', ('24', 'CD')), (('returned', 'VBN'), 'nmod:tmod', ('july', 'NNP')), (('july', 'NNP'), 'nummod', ('2', 'CD')), (('seems', 'VBZ'), 'nmod', ('turn', 'NN')), (('turn', 'NN'), 'case', ('like', 'IN')), (('turn', 'NN'), 'amod', ('short', 'JJ')), (('turn', 'NN'), 'nmod', ('time', 'NN')), (('time', 'NN'), 'case', ('around', 'IN')), (('seems', 'VBZ'), 'nmod', ('computer', 'NN')), (('computer', 'NN'), 'case', ('except', 'IN')), (('computer', 'NN'), 'acl', ('repaired', 'VBN')), (('repaired', 'VBN'), 'dep', ('returned', 'VBN'))]
[(('impressed', 'VBN'), 'dobj', ('programming', 'NN')), (('programming', 'NN'), 'nmod', ('iphoto', 'NN')), (('iphoto', 'NN'), 'case', ('including', 'VBG'))]
[(('failed', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ'))]
[(('stunning', 'NNS'), 'amod', ('graphic', 'JJ'))]
[(('purchased', 'VBD'), 'advmod', ('also', 'RB')), (('purchased', 'VBD'), 'dobj', ('warranty', 'NN')), (('warranty', 'NN'), 'amod', ('applecare', 'JJ')), (('applecare', 'JJ'), 'nmod:tmod', ('year', 'NN')), (('year', 'NN'), 'nummod', ('three', 'CD')), (('three', 'CD'), 'compound', ('300', 'CD')), (('warranty', 'NN'), 'amod', ('extended', 'JJ')), (('purchased', 'VBD'), 'dep', ('lasted', 'VBD')), (('lasted', 'VBD'), 'mark', ('since', 'IN')), (('lasted', 'VBD'), 'csubj', ('seen', 'VBN')), (('seen', 'VBN'), 'neg', ('never', 'RB')), (('seen', 'VBN'), 'dobj', ('laptop', 'NN')), (('lasted', 'VBD'), 'dobj', ('two', 'CD'))]
[(('mac', 'VBP'), 'nsubj', ('pc', 'NN')), (('pc', 'NN'), 'amod', ('previous', 'JJ')), (('pc', 'NN'), 'compound', ('laptop', 'NN')), (('mac', 'VBP'), 'advmod', ('still', 'RB')), (('mac', 'VBP'), 'dobj', ('system', 'NN')), (('system', 'NN'), 'amod', ('clean', 'JJ')), (('clean', 'JJ'), 'advmod', ('osx', 'RB')), (('system', 'NN'), 'amod', ('smooth', 'JJ')), (('system', 'NN'), 'compound', ('operating', 'NN'))]
[(('use', 'VBP'), 'nsubj', ('dont', 'NN')), (('dont', 'NN'), 'compound', ('fact', 'NN')), (('dont', 'NN'), 'nmod', ('apple', 'NN')), (('apple', 'NN'), 'case', ('like', 'IN')), (('use', 'VBP'), 'advmod', ('generally', 'RB')), (('use', 'VBP'), 'ccomp', ('install', 'VBP')), (('install', 'VBP'), 'nsubj', ('safari', 'NNS')), (('safari', 'NNS'), 'amod', ('safari', 'JJ')), (('safari', 'NNS'), 'compound', ('dont', 'NN')), (('safari', 'NNS'), 'compound', ('use', 'NN')), (('install', 'VBP'), 'ccomp', ('love', 'VBP')), (('love', 'VBP'), 'nsubj', ('firfox', 'NN')), (('firfox', 'NN'), 'compound', ('mozzilla', 'NN')), (('love', 'VBP'), 'dobj', ('bit', 'NN')), (('bit', 'NN'), 'det', ('every', 'DT')), (('bit', 'NN'), 'amod', ('single', 'JJ'))]
[(('web', 'VBN'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'nummod', ('10', 'CD')), (('life', 'NN'), 'compound', ('hour', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('web', 'VBN'), 'xcomp', ('browsing', 'VBG')), (('browsing', 'VBG'), 'dobj', ('editing', 'NN')), (('editing', 'NN'), 'compound', ('word', 'NN')), (('browsing', 'VBG'), 'advcl', ('making', 'VBG')), (('making', 'VBG'), 'dobj', ('movie', 'NN')), (('movie', 'NN'), 'amod', ('perfect', 'JJ')), (('movie', 'NN'), 'compound', ('classroom', 'NN')), (('movie', 'NN'), 'compound', ('office', 'NN')), (('movie', 'NN'), 'compound', ('term', 'NN')), (('movie', 'NN'), 'compound', ('gaming', 'NN')), (('movie', 'NN'), 'acl', ('playing', 'VBG')), (('playing', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('5', 'CD'))]
[(('processor', 'NN'), 'nmod', ('edition', 'NN')), (('edition', 'NN'), 'case', ('compared', 'VBN')), (('edition', 'NN'), 'amod', ('old', 'JJ')), (('old', 'JJ'), 'compound', ('3', 'CD')), (('old', 'JJ'), 'nmod:npmod', ('week', 'NN')), (('edition', 'NN'), 'amod', ('early', 'JJ')), (('edition', 'NN'), 'amod', ('2011', 'JJ')), (('edition', 'NN'), 'dep', ('performance', 'NN')), (('performance', 'NN'), 'advmod', ('barely', 'RB')), (('performance', 'NN'), 'compound', ('experience', 'NN')), (('performance', 'NN'), 'compound', ('difference', 'NN')), (('performance', 'NN'), 'dep', ('ghz', 'NN')), (('ghz', 'NN'), 'nummod', ('3', 'CD')), (('3', 'CD'), 'compound', ('2', 'CD')), (('ghz', 'NN'), 'compound', ('ghz', 'NN')), (('ghz', 'NN'), 'compound', ('v', 'NN')), (('ghz', 'NN'), 'nummod', ('4', 'CD')), (('4', 'CD'), 'compound', ('2', 'CD'))]
[(('arrived', 'VBD'), 'nsubj', ('macbook', 'NN')), (('arrived', 'VBD'), 'ccomp', ('sealed', 'VBD')), (('sealed', 'VBD'), 'nsubj', ('packing', 'NN')), (('packing', 'NN'), 'amod', ('nice', 'JJ')), (('packing', 'NN'), 'amod', ('twin', 'JJ')), (('sealed', 'VBD'), 'ccomp', ('work', 'VBP')), (('work', 'VBP'), 'nsubj', ('function', 'NN')), (('function', 'NN'), 'compound', ('box', 'NN')), (('work', 'VBP'), 'xcomp', ('great', 'JJ'))]
[(('paint', 'VBP'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('externally', 'JJ')), (('keyboard', 'NN'), 'amod', ('key', 'JJ')), (('keyboard', 'NN'), 'acl', ('falling', 'VBG')), (('falling', 'VBG'), 'dobj', ('us', 'PRP')), (('paint', 'VBP'), 'ccomp', ('sit', 'VBP')), (('sit', 'VBP'), 'nsubj', ('hand', 'NN')), (('hand', 'NN'), 'compound', ('rubbing', 'NN')), (('hand', 'NN'), 'compound', ('button', 'NN')), (('hand', 'NN'), 'compound', ('mouse', 'NN')), (('hand', 'NN'), 'compound', ('pad', 'NN')), (('hand', 'NN'), 'dep', ('heals', 'NNS')), (('sit', 'VBP'), 'dep', ('screen', 'NN')), (('screen', 'NN'), 'dobj', ('glare', 'NN')), (('glare', 'NN'), 'amod', ('terrible', 'JJ'))]
[(('itunes', 'NNS'), 'dep', ('program', 'NN')), (('program', 'NN'), 'amod', ('handy', 'JJ')), (('program', 'NN'), 'compound', ('music', 'NN')), (('program', 'NN'), 'compound', ('management', 'NN')), (('itunes', 'NNS'), 'dep', ('ipod', 'NN')), (('ipod', 'NN'), 'amod', ('essential', 'JJ')), (('ipod', 'NN'), 'compound', ('anyone', 'NN'))]
[(('purchase', 'VB'), 'dobj', ('repair', 'NN')), (('repair', 'NN'), 'amod', ('extended', 'JJ')), (('repair', 'NN'), 'compound', ('warranty', 'NN')), (('repair', 'NN'), 'compound', ('time', 'NN')), (('repair', 'NN'), 'compound', ('hook', 'NN'))]
[(('price', 'VB'), 'dobj', ('plan', 'NN')), (('plan', 'NN'), 'amod', ('great', 'JJ')), (('plan', 'NN'), 'compound', ('model', 'NN')), (('plan', 'NN'), 'acl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('room', 'NN')), (('room', 'NN'), 'amod', ('medium', 'JJ')), (('room', 'NN'), 'compound', ('entertainment', 'NN'))]
[(('seems', 'VBZ'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('seems', 'VBZ'), 'xcomp', ('issue', 'NN')), (('issue', 'NN'), 'amod', ('good', 'JJ'))]
[(('show', 'VB'), 'nsubj', ('cursor', 'NN')), (('show', 'VB'), 'aux', ('would', 'MD')), (('show', 'VB'), 'xcomp', ('else', 'RB')), (('else', 'RB'), 'nsubj', ('place', 'NN'))]
[(('took', 'VBD'), 'ccomp', ('get', 'VBP')), (('get', 'VBP'), 'nsubj', ('week', 'NN')), (('week', 'NN'), 'amod', ('several', 'JJ')), (('took', 'VBD'), 'nsubj', ('warranty', 'NN')), (('warranty', 'NN'), 'nummod', ('acknowledge', 'CD')), (('warranty', 'NN'), 'amod', ('owned', 'JJ'))]
[(('run', 'VB'), 'dobj', ('plus', 'NN')), (('plus', 'NN'), 'amod', ('quiet', 'JJ'))]
[(('want', 'VB'), 'advmod', ('really', 'RB')), (('want', 'VB'), 'ccomp', ('run', 'VB')), (('run', 'VB'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'compound', ('bang', 'NN')), (('run', 'VB'), 'aux', ('need', 'MD')), (('run', 'VB'), 'ccomp', ('go', 'VB')), (('go', 'VB'), 'nsubj', ('application', 'NN')), (('application', 'NN'), 'compound', ('window', 'NN')), (('go', 'VB'), 'dobj', ('apple', 'NN'))]
[(('keep', 'VB'), 'nsubj', ('_', 'NNP')), (('keep', 'VB'), 'aux', ('must', 'MD')), (('keep', 'VB'), 'ccomp', ('keep', 'VB')), (('keep', 'VB'), 'nsubj', ('time', 'NN')), (('time', 'NN'), 'amod', ('plugged', 'JJ')), (('keep', 'VB'), 'dobj', ('charge', 'NN')), (('keep', 'VB'), 'advmod', ('longer', 'RB')), (('longer', 'RB'), 'nmod:npmod', ('minute', 'NN')), (('minute', 'NN'), 'nummod', ('four', 'CD'))]
[(('dvd', 'VBP'), 'advmod', ('anyway', 'RB')), (('dvd', 'VBP'), 'nmod:tmod', ('year', 'NN')), (('year', 'NN'), 'amod', ('early', 'JJ')), (('year', 'NN'), 'compound', ('july', 'NNP')), (('dvd', 'VBP'), 'dobj', ('burner', 'NN')), (('burner', 'NN'), 'acl', ('stopped', 'VBN')), (('stopped', 'VBN'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'dobj', ('computer', 'NN')), (('dvd', 'VBP'), 'nsubj', ('supply', 'NN')), (('supply', 'NN'), 'nummod', ('stared', 'CD')), (('supply', 'NN'), 'compound', ('issue', 'NN')), (('supply', 'NN'), 'compound', ('power', 'NN'))]
[(('ibook', 'VB'), 'dobj', ('connection', 'NN')), (('connection', 'NN'), 'amod', ('backup', 'JJ')), (('connection', 'NN'), 'amod', ('firewire', 'JJ')), (('firewire', 'JJ'), 'advmod', ('also', 'RB')), (('firewire', 'JJ'), 'nmod:npmod', ('us', 'PRP'))]
[(('ordered', 'VBN'), 'ccomp', ('saved', 'VBD')), (('saved', 'VBD'), 'nsubj', ('macmall', 'NN')), (('saved', 'VBD'), 'ccomp', ('incurred', 'VBN')), (('incurred', 'VBN'), 'nsubj', ('tax', 'NN')), (('tax', 'NN'), 'compound', ('sale', 'NN')), (('incurred', 'VBN'), 'aux', ('would', 'MD')), (('incurred', 'VBN'), 'xcomp', ('buying', 'VBG')), (('buying', 'VBG'), 'advmod', ('locally', 'RB'))]
[(('set', 'VBD'), 'nsubj', ('acer', 'NN')), (('set', 'VBD'), 'xcomp', ('asked', 'VBD')), (('asked', 'VBD'), 'nsubj', ('disc', 'NN')), (('disc', 'NN'), 'amod', ('free', 'JJ')), (('disc', 'NN'), 'compound', ('recovery', 'NN')), (('asked', 'VBD'), 'dep', ('available', 'JJ')), (('asked', 'VBD'), 'mark', ('since', 'IN'))]
[(('game', 'NN'), 'dep', ('issue', 'NN')), (('issue', 'NN'), 'amod', ('main', 'JJ'))]
[(('expired', 'VBD'), 'nsubj', ('warrenty', 'NN')), (('warrenty', 'NN'), 'amod', ('_', 'JJ')), (('expired', 'VBD'), 'ccomp', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('went', 'VBD'), 'ccomp', ('cost', 'VB')), (('cost', 'VB'), 'nsubj', ('bad', 'JJ')), (('cost', 'VB'), 'aux', ('would', 'MD')), (('cost', 'VB'), 'ccomp', ('replace', 'VB')), (('replace', 'VB'), 'nsubj', ('fix', 'NN'))]
[(('point', 'NN'), 'nmod', ('apologist', 'NN')), (('apologist', 'NN'), 'case', ('despite', 'IN')), (('apologist', 'NN'), 'compound', ('claim', 'NN')), (('apologist', 'NN'), 'compound', ('apple', 'NN')), (('point', 'NN'), 'advmod', ('vice', 'RB')), (('point', 'NN'), 'advmod', ('recently', 'RB')), (('point', 'NN'), 'amod', ('reformed', 'JJ')), (('point', 'NN'), 'amod', ('internals', 'JJ')), (('point', 'NN'), 'amod', ('mac', 'JJ')), (('point', 'NN'), 'amod', ('laptop', 'JJ')), (('point', 'NN'), 'amod', ('different', 'JJ')), (('point', 'NN'), 'compound', ('pc', 'NN'))]
[(('feature', 'NN'), 'amod', ('overall', 'JJ')), (('feature', 'NN'), 'amod', ('poor', 'JJ')), (('feature', 'NN'), 'dep', ('performance', 'NN')), (('performance', 'NN'), 'amod', ('average', 'JJ')), (('performance', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('poor', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('feature', 'NN'), 'dep', ('poor', 'NN')), (('poor', 'NN'), 'amod', ('excellent', 'JJ')), (('poor', 'NN'), 'compound', ('price', 'NN')), (('poor', 'NN'), 'compound', ('value', 'NN'))]
[(('best', 'JJS'), 'dep', ('condition', 'NN')), (('condition', 'NN'), 'amod', ('quality', 'NN')), (('quality', 'NN'), 'advmod', ('really', 'RB')), (('quality', 'NN'), 'dep', ('high', 'JJ'))]
[(('price', 'VB'), 'nsubj', ('budget', 'NN')), (('budget', 'NN'), 'nummod', ('13', 'CD')), (('budget', 'NN'), 'amod', ('macbook', 'JJ')), (('budget', 'NN'), 'amod', ('pro', 'JJ')), (('budget', 'NN'), 'compound', ('fit', 'NN')), (('budget', 'NN'), 'dep', ('tax', 'NN')), (('tax', 'NN'), 'amod', ('free', 'JJ')), (('tax', 'NN'), 'compound', ('shipping', 'NN')), (('price', 'VB'), 'aux', ('ca', 'MD')), (('price', 'VB'), 'advmod', ('best', 'RBS')), (('price', 'VB'), 'xcomp', ('get', 'VB')), (('get', 'VB'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'amod', ('great', 'JJ'))]
[(('seems', 'VBZ'), 'nsubj', ('pro', 'NN')), (('pro', 'NN'), 'compound', ('material', 'NN')), (('pro', 'NN'), 'acl', ('made', 'VBN')), (('seems', 'VBZ'), 'xcomp', ('spec', 'NN')), (('spec', 'NN'), 'amod', ('nicer', 'JJR')), (('nicer', 'JJR'), 'advmod', ('lot', 'RB')), (('spec', 'NN'), 'compound', ('pc', 'NN')), (('seems', 'VBZ'), 'advcl', ('said', 'VBD')), (('said', 'VBD'), 'mark', ('like', 'IN')), (('said', 'VBD'), 'ccomp', ('performs', 'VBZ')), (('performs', 'VBZ'), 'dobj', ('past', 'NN')), (('past', 'NN'), 'amod', ('better', 'JJR')), (('better', 'JJR'), 'advmod', ('lot', 'RB')), (('past', 'NN'), 'compound', ('computer', 'NN'))]
[(('worked', 'VBD'), 'advmod', ('first', 'RB')), (('worked', 'VBD'), 'advmod', ('well', 'RB')), (('worked', 'VBD'), 'nmod:tmod', ('month', 'NN')), (('worked', 'VBD'), 'nsubj', ('board', 'NN')), (('board', 'NN'), 'compound', ('system', 'NN')), (('board', 'NN'), 'acl', ('failed', 'VBN')), (('failed', 'VBN'), 'ccomp', ('send', 'VB')), (('send', 'VB'), 'dobj', ('complaint', 'NN')), (('complaint', 'NN'), 'compound', ('toshiba', 'NN')), (('send', 'VB'), 'advmod', ('later', 'RB')), (('later', 'RB'), 'nmod:npmod', ('week', 'NN')), (('week', 'NN'), 'nummod', ('three', 'CD')), (('send', 'VB'), 'dep', ('receive', 'VB')), (('receive', 'VB'), 'ccomp', ('discover', 'VBP')), (('discover', 'VBP'), 'nsubj', ('laptop', 'NN')), (('discover', 'VBP'), 'advmod', ('back', 'RB')), (('discover', 'VBP'), 'ccomp', ('send', 'VBP')), (('send', 'VBP'), 'nsubj', ('problem', 'NN')), (('problem', 'NN'), 'advmod', ('still', 'RB')), (('send', 'VBP'), 'advmod', ('back', 'RB')), (('send', 'VBP'), 'dep', ('fixed', 'VBN')), (('fixed', 'VBN'), 'auxpass', ('get', 'VB'))]
[(('think', 'VB'), 'dobj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('part', 'NN')), (('vista', 'NN'), 'compound', ('problem', 'NN')), (('vista', 'NN'), 'compound', ('computer', 'NN')), (('think', 'VB'), 'advmod', ('yet', 'RB')), (('think', 'VB'), 'dep', ('know', 'VB')), (('know', 'VB'), 'dobj', ('issue', 'NN')), (('issue', 'NN'), 'compound', ('vista', 'NN')), (('issue', 'NN'), 'amod', ('entire', 'JJ')), (('issue', 'NN'), 'acl:relcl', ('waited', 'VBD')), (('waited', 'VBD'), 'nsubj', ('acer', 'NN')), (('acer', 'NN'), 'amod', ('latest', 'JJS')), (('acer', 'NN'), 'compound', ('purchase', 'NN')), (('waited', 'VBD'), 'advmod', ('also', 'RB')), (('waited', 'VBD'), 'advmod', ('vista', 'RB')), (('waited', 'VBD'), 'nmod:tmod', ('month', 'NN')), (('waited', 'VBD'), 'dep', ('get', 'VB')), (('get', 'VB'), 'dobj', ('system', 'NN')), (('system', 'NN'), 'amod', ('next', 'JJ')), (('system', 'NN'), 'amod', ('operating', 'VBG'))]
[(('told', 'VBD'), 'nsubj', ('week', 'NN')), (('week', 'NN'), 'acl', ('got', 'VBN')), (('got', 'VBN'), 'advmod', ('finally', 'RB')), (('got', 'VBN'), 'compound:prt', ('back', 'RP')), (('told', 'VBD'), 'dobj', ('motherboard', 'NN')), (('motherboard', 'NN'), 'amod', ('motherboard', 'JJ')), (('motherboard', 'NN'), 'amod', ('failed', 'VBN')), (('motherboard', 'NN'), 'amod', ('installed', 'JJ')), (('motherboard', 'NN'), 'amod', ('new', 'JJ'))]
[(('love', 'VB'), 'xcomp', ('change', 'VB')), (('change', 'VB'), 'nsubj', ('pc', 'NN')), (('change', 'VB'), 'dep', ('ready', 'JJ')), (('change', 'VB'), 'dobj', ('system', 'NN')), (('system', 'NN'), 'amod', ('tired', 'JJ')), (('system', 'NN'), 'compound', ('window', 'NN'))]
[(('small', 'JJ'), 'advmod', ('enough', 'RB')), (('small', 'JJ'), 'dep', ('take', 'VB')), (('take', 'VB'), 'ccomp', ('get', 'VBP')), (('get', 'VBP'), 'advmod', ('anywhere', 'RB')), (('anywhere', 'RB'), 'advmod', ('pretty', 'RB')), (('anywhere', 'RB'), 'advmod', ('much', 'RB')), (('get', 'VBP'), 'advmod', ('still', 'RB')), (('get', 'VBP'), 'nsubj', ('screen', 'NN')), (('screen', 'NN'), 'amod', ('big', 'JJ')), (('screen', 'NN'), 'amod', ('enough', 'JJ')), (('get', 'VBP'), 'dobj', ('everything', 'NN')), (('everything', 'NN'), 'acl', ('done', 'VBN'))]
[(('used', 'VBD'), 'advmod', ('always', 'RB')), (('used', 'VBD'), 'dobj', ('pc', 'NN')), (('pc', 'NN'), 'acl', ('frustrated', 'VBN')), (('frustrated', 'VBN'), 'advmod', ('constantly', 'RB')), (('frustrated', 'VBN'), 'xcomp', ('crashing', 'VBG')), (('crashing', 'VBG'), 'dobj', ('operating', 'NN')), (('operating', 'NN'), 'amod', ('designed', 'VBN')), (('designed', 'VBN'), 'advmod', ('poorly', 'RB')), (('used', 'VBD'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'amod', ('intuitive', 'JJ')), (('intuitive', 'JJ'), 'neg', ('never', 'RB'))]
[(('said', 'VBD'), 'advmod', ('sony', 'RB')), (('said', 'VBD'), 'ccomp', ('send', 'VB')), (('send', 'VB'), 'aux', ('could', 'MD')), (('send', 'VB'), 'dep', ('charged', 'VBN')), (('charged', 'VBN'), 'advmod', ('back', 'RB')), (('charged', 'VBN'), 'xcomp', ('adding', 'VBG')), (('said', 'VBD'), 'nsubj', ('dollar', 'NN')), (('dollar', 'NN'), 'nummod', ('bluetooth', 'CD')), (('dollar', 'NN'), 'amod', ('additional', 'JJ')), (('dollar', 'NN'), 'amod', ('seventy', 'JJ')), (('dollar', 'NN'), 'compound', ('something', 'NN'))]
[(('oh', 'VBZ'), 'nsubj', ('guess', 'NN')), (('guess', 'NN'), 'nummod', ('yeah', 'CD')), (('guess', 'NN'), 'amod', ('fancy', 'JJ')), (('guess', 'NN'), 'compound', ('webcam', 'NN')), (('guess', 'NN'), 'compound', ('break', 'NN')), (('oh', 'VBZ'), 'dep', ('send', 'VB')), (('send', 'VB'), 'ccomp', ('fixed', 'VBN')), (('fixed', 'VBN'), 'auxpass', ('get', 'VB'))]
[(('ordered', 'VBD'), 'nsubj', ('custom', 'NN')), (('ordered', 'VBD'), 'ccomp', ('understand', 'VB')), (('understand', 'VB'), 'nsubj', ('hp', 'NN')), (('hp', 'NN'), 'compound', ('machine', 'NN')), (('understand', 'VB'), 'aux', ('could', 'MD')), (('understand', 'VB'), 'dobj', ('accent', 'NN')), (('accent', 'NN'), 'amod', ('due', 'JJ')), (('due', 'JJ'), 'amod', ('techie', 'JJ'))]
[(('expired', 'VBD'), 'nsubj', ('warrenty', 'NN')), (('warrenty', 'NN'), 'amod', ('_', 'JJ')), (('expired', 'VBD'), 'ccomp', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('went', 'VBD'), 'ccomp', ('cost', 'VB')), (('cost', 'VB'), 'nsubj', ('bad', 'JJ')), (('cost', 'VB'), 'aux', ('would', 'MD')), (('cost', 'VB'), 'ccomp', ('replace', 'VB')), (('replace', 'VB'), 'nsubj', ('fix', 'NN'))]
[(('go', 'VBP'), 'nsubj', ('acer', 'NN')), (('acer', 'NN'), 'amod', ('contacted', 'VBN')), (('acer', 'NN'), 'acl', ('giving', 'VBG')), (('giving', 'VBG'), 'dobj', ('dvd', 'NN')), (('dvd', 'NN'), 'amod', ('free', 'JJ')), (('dvd', 'NN'), 'compound', ('recovery', 'NN')), (('go', 'VBP'), 'ccomp', ('ask', 'VB')), (('ask', 'VB'), 'nsubj', ('pay', 'NN')), (('ask', 'VB'), 'xcomp', ('give', 'VB'))]
[(('processor', 'NN'), 'dep', ('load', 'NN')), (('load', 'NN'), 'amod', ('quick', 'JJ')), (('load', 'NN'), 'amod', ('effective', 'JJ')), (('processor', 'NN'), 'dep', ('application', 'NN')), (('application', 'NN'), 'amod', ('webpage', 'JJ'))]
[(('discover', 'VB'), 'advmod', ('first', 'RB')), (('discover', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'compound', ('word', 'NN')), (('program', 'NN'), 'amod', ('processing', 'VBG')), (('program', 'NN'), 'acl', ('known', 'VBN')), (('known', 'VBN'), 'ccomp', ('translates', 'VBZ')), (('translates', 'VBZ'), 'nsubj', ('appleworks', 'NNS')), (('translates', 'VBZ'), 'advmod', ('rarely', 'RB')), (('translates', 'VBZ'), 'advmod', ('perfectly', 'RB')), (('translates', 'VBZ'), 'dobj', ('translates', 'NNS')), (('translates', 'NNS'), 'compound', ('anyone', 'NN')), (('translates', 'NNS'), 'amod', ('else', 'JJ')), (('translates', 'NNS'), 'compound', ('computer', 'NN'))]
[(('cant', 'NN'), 'compound', ('screen', 'NN')), (('cant', 'NN'), 'compound', ('keyboard', 'NN')), (('cant', 'NN'), 'compound', ('mouse', 'NN')), (('cant', 'NN'), 'dep', ('see', 'VB')), (('see', 'VB'), 'xcomp', ('spending', 'VBG')), (('spending', 'VBG'), 'xcomp', ('worth', 'JJ')), (('worth', 'JJ'), 'nsubj', ('multi', 'NNS')), (('multi', 'NNS'), 'amod', ('extra', 'JJ')), (('multi', 'NNS'), 'compound', ('money', 'NN')), (('multi', 'NNS'), 'compound', ('jump', 'NN')), (('multi', 'NNS'), 'compound', ('mac', 'NN')), (('multi', 'NNS'), 'amod', ('beautiful', 'JJ')), (('multi', 'NNS'), 'compound', ('screen', 'NN')), (('multi', 'NNS'), 'amod', ('responsive', 'JJ')), (('multi', 'NNS'), 'compound', ('island', 'NN')), (('multi', 'NNS'), 'amod', ('backlit', 'JJ')), (('multi', 'NNS'), 'compound', ('keyboard', 'NN')), (('multi', 'NNS'), 'compound', ('fun', 'NN')), (('multi', 'NNS'), 'dep', ('mouse', 'NN')), (('mouse', 'NN'), 'compound', ('touch', 'NN')), (('spending', 'VBG'), 'dobj', ('money', 'NN')), (('money', 'NN'), 'amod', ('extra', 'JJ')), (('money', 'NN'), 'advmod', ('alone', 'RB'))]
[(('experience', 'NN'), 'amod', ('disappointing', 'JJ')), (('experience', 'NN'), 'amod', ('except', 'IN')), (('experience', 'NN'), 'acl', ('learned', 'VBN')), (('learned', 'VBN'), 'dobj', ('squad', 'NN')), (('squad', 'NN'), 'amod', ('good', 'JJ')), (('squad', 'NN'), 'compound', ('geek', 'NN')), (('experience', 'NN'), 'dep', ('service', 'NN')), (('service', 'NN'), 'dep', ('also', 'RB')), (('service', 'NN'), 'compound', ('customer', 'NN'))]
[(('come', 'VB'), 'dobj', ('software', 'NN')), (('software', 'NN'), 'acl', ('installed', 'VBN')), (('installed', 'VBN'), 'nmod', ('price', 'NN')), (('price', 'NN'), 'case', ('outside', 'IN')), (('price', 'NN'), 'compound', ('window', 'NN')), (('price', 'NN'), 'compound', ('medium', 'NN')), (('price', 'NN'), 'acl', ('pleased', 'VBN')), (('pleased', 'VBN'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'compound', ('condition', 'NN')), (('product', 'NN'), 'amod', ('overall', 'JJ'))]
[(('make', 'VBP'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'amod', ('loaded', 'JJ')), (('program', 'NN'), 'dep', ('user', 'NN')), (('user', 'NN'), 'amod', ('good', 'JJ')), (('user', 'NN'), 'amod', ('average', 'JJ')), (('make', 'VBP'), 'xcomp', ('slow', 'JJ')), (('slow', 'JJ'), 'nsubj', ('way', 'NN')), (('way', 'NN'), 'compound', ('run', 'NN'))]
[(('keyboard', 'NN'), 'dep', ('size', 'NN')), (('size', 'NN'), 'amod', ('reasonable', 'JJ'))]
[(('need', 'VB'), 'advmod', ('also', 'RB')), (('need', 'VB'), 'aux', ('may', 'MD')), (('need', 'VB'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'compound', ('charge', 'NN')), (('use', 'NN'), 'compound', ('day', 'NN')), (('use', 'NN'), 'compound', ('medium', 'NN')), (('need', 'VB'), 'advmod', ('fast', 'RB')), (('fast', 'RB'), 'nmod:npmod', ('thing', 'NN')), (('thing', 'NN'), 'det', ('every', 'DT')), (('need', 'VB'), 'nsubj', ('feature', 'NN')), (('feature', 'NN'), 'amod', ('easy', 'JJ')), (('feature', 'NN'), 'compound', ('mac', 'NN')), (('feature', 'NN'), 'compound', ('size', 'NN')), (('feature', 'NN'), 'compound', ('look', 'NN')), (('feature', 'NN'), 'acl', ('attracted', 'VBN'))]
[(('computer', 'NN'), 'dep', ('getting', 'VBG')), (('getting', 'VBG'), 'advmod', ('constantly', 'RB')), (('getting', 'VBG'), 'dobj', ('leg', 'NN')), (('leg', 'NN'), 'amod', ('hot', 'JJ')), (('leg', 'NN'), 'amod', ('burning', 'VBG')), (('leg', 'NN'), 'dep', ('go', 'VBP')), (('go', 'VBP'), 'mark', ('unless', 'IN')), (('go', 'VBP'), 'dobj', ('hassle', 'NN')), (('hassle', 'NN'), 'acl', ('taking', 'VBG')), (('taking', 'VBG'), 'dobj', ('fan', 'NN')), (('fan', 'NN'), 'amod', ('entire', 'JJ')), (('fan', 'NN'), 'amod', ('clean', 'JJ')), (('clean', 'JJ'), 'advmod', ('back', 'RB'))]
[(('_', 'VBD'), 'ccomp', ('flash', 'VBP')), (('flash', 'VBP'), 'nsubj', ('adobe', 'NN')), (('adobe', 'NN'), 'amod', ('numerous', 'JJ')), (('adobe', 'NN'), 'compound', ('problem', 'NN')), (('adobe', 'NN'), 'compound', ('vista', 'NN')), (('flash', 'VBP'), 'ccomp', ('quits', 'VBZ')), (('quits', 'VBZ'), 'nsubj', ('player', 'NN')), (('quits', 'VBZ'), 'ccomp', ('explore', 'VB')), (('explore', 'VB'), 'nsubj', ('internet', 'NN')), (('internet', 'NN'), 'amod', ('uninstalled', 'JJ')), (('internet', 'NN'), 'amod', ('reinsalled', 'JJ')), (('explore', 'VB'), 'ccomp', ('lose', 'VB')), (('lose', 'VB'), 'nsubj', ('quits', 'NNP')), (('lose', 'VB'), 'ccomp', ('appeared', 'VBD')), (('appeared', 'VBD'), 'nsubj', ('whatever', 'WDT')), (('appeared', 'VBD'), 'csubj', ('working', 'VBG')), (('working', 'VBG'), 'advmod', ('also', 'RB')), (('working', 'VBG'), 'dobj', ('update', 'NN')), (('update', 'NN'), 'compound', ('window', 'NN')), (('appeared', 'VBD'), 'dobj', ('computer', 'NN')), (('appeared', 'VBD'), 'advcl', ('got', 'VBD')), (('got', 'VBD'), 'mark', ('since', 'IN')), (('got', 'VBD'), 'dobj', ('updated', 'NNS')), (('got', 'VBD'), 'advmod', ('probably', 'RB')), (('_', 'VBD'), 'nsubj', ('update', 'NN')), (('update', 'NN'), 'nummod', ('400', 'CD')), (('update', 'NN'), 'compound', ('time', 'NN'))]
[(('picture', 'VBP'), 'advmod', ('though', 'RB')), (('picture', 'VBP'), 'dobj', ('software', 'NN')), (('software', 'NN'), 'amod', ('video', 'JJ')), (('software', 'NN'), 'compound', ('music', 'NN')), (('picture', 'VBP'), 'advmod', ('close', 'RB')), (('close', 'RB'), 'advmod', ('nowhere', 'RB')), (('picture', 'VBP'), 'nsubj', ('im', 'NN')), (('im', 'NN'), 'amod', ('professional', 'JJ')), (('im', 'NN'), 'compound', ('grade', 'NN')), (('im', 'NN'), 'compound', ('software', 'NN')), (('im', 'NN'), 'acl', ('used', 'VBN')), (('used', 'VBN'), 'dobj', ('beginner', 'NN')), (('beginner', 'NN'), 'amod', ('cs5', 'JJ')), (('beginner', 'NN'), 'compound', ('job', 'NN')), (('used', 'VBN'), 'nmod', ('designer', 'NN')), (('designer', 'NN'), 'advmod', ('even', 'RB')), (('designer', 'NN'), 'amod', ('intermediate', 'JJ')), (('designer', 'NN'), 'compound', ('medium', 'NN'))]
[(('noticed', 'VBD'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'compound', ('window', 'NN')), (('system', 'NN'), 'amod', ('new', 'JJ')), (('system', 'NN'), 'acl', ('called', 'VBN')), (('called', 'VBN'), 'dobj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('window', 'NN')), (('vista', 'NN'), 'nummod', ('7', 'CD')), (('vista', 'NN'), 'compound', ('u', 'NN')), (('vista', 'NN'), 'acl:relcl', ('get', 'VBP')), (('get', 'VBP'), 'nsubj', ('_', 'NNS')), (('_', 'NNS'), 'compound', ('user', 'NN')), (('get', 'VBP'), 'dobj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('bug', 'NN')), (('vista', 'NN'), 'acl', ('investing', 'VBG')), (('investing', 'VBG'), 'dobj', ('system', 'NN')), (('system', 'NN'), 'amod', ('new', 'JJ'))]
[(('need', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('open', 'JJ')), (('need', 'VB'), 'advmod', ('first', 'RB')), (('need', 'VB'), 'dep', ('cliick', 'VB')), (('cliick', 'VB'), 'dobj', ('import', 'NN')), (('import', 'NN'), 'amod', ('open', 'JJ'))]
[(('hiccup', 'JJ'), 'advmod', ('fast', 'RB')), (('fast', 'RB'), 'advmod', ('pretty', 'RB')), (('hiccup', 'JJ'), 'dep', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('web', 'NN')), (('web', 'NN'), 'acl', ('browsing', 'VBG')), (('browsing', 'VBG'), 'advcl', ('uploading', 'VBG')), (('uploading', 'VBG'), 'dobj', ('photo', 'NN')), (('uploading', 'VBG'), 'advcl', ('watching', 'VBG')), (('watching', 'VBG'), 'dobj', ('occasion', 'NN')), (('occasion', 'NN'), 'compound', ('movie', 'NN')), (('occasion', 'NN'), 'amod', ('720p', 'JJ')), (('occasion', 'NN'), 'acl', ('creating', 'VBG')), (('creating', 'VBG'), 'dobj', ('presentation', 'NN'))]
[(('seems', 'VBZ'), 'ccomp', ('updated', 'VB')), (('updated', 'VB'), 'aux', ('could', 'MD')), (('seems', 'VBZ'), 'nsubj', ('xp', 'NN')), (('xp', 'NN'), 'acl', ('done', 'VBN')), (('done', 'VBN'), 'advcl', ('creating', 'VBG')), (('creating', 'VBG'), 'mark', ('without', 'IN')), (('creating', 'VBG'), 'dobj', ('vista', 'NN'))]
[(('go', 'VB'), 'neg', ('never', 'RB')), (('go', 'VB'), 'compound:prt', ('back', 'RP')), (('go', 'VB'), 'dobj', ('window', 'NN'))]
[(('warranty', 'NN'), 'compound', ('quality', 'NN')), (('warranty', 'NN'), 'compound', ('engineering', 'NN')), (('warranty', 'NN'), 'compound', ('design', 'NN')), (('warranty', 'NN'), 'parataxis', ('dropping', 'VBG')), (('dropping', 'VBG'), 'nsubj', ('damage', 'NN')), (('damage', 'NN'), 'compound', ('cover', 'NN')), (('dropping', 'VBG'), 'dobj', ('laptop', 'NN'))]
[(('see', 'VBP'), 'nsubj', ('body', 'NN')), (('body', 'NN'), 'acl', ('made', 'VBN')), (('made', 'VBN'), 'advmod', ('cheaply', 'RB')), (('cheaply', 'RB'), 'advmod', ('bit', 'RB')), (('made', 'VBN'), 'xcomp', ('interesting', 'JJ')), (('see', 'VBP'), 'dobj', ('hold', 'NN')), (('hold', 'NN'), 'amod', ('long', 'JJ'))]
[(('ilife', 'NN'), 'compound', ('machine', 'NN')), (('ilife', 'NN'), 'amod', ('awesome', 'JJ')), (('ilife', 'NN'), 'dep', ('leopard', 'NN')), (('leopard', 'NN'), 'amod', ('great', 'JJ')), (('leopard', 'NN'), 'compound', ('love', 'NN')), (('leopard', 'NN'), 'compound', ('snow', 'NN')), (('ilife', 'NN'), 'dep', ('x', 'SYM'))]
[(('machine', 'NN'), 'case', ('compared', 'VBN')), (('machine', 'NN'), 'amod', ('spec', 'JJ')), (('spec', 'JJ'), 'advmod', ('similarly', 'RB')), (('machine', 'NN'), 'compound', ('pc', 'NN')), (('machine', 'NN'), 'acl:relcl', ('work', 'VBP')), (('work', 'VBP'), 'nsubj', ('value', 'NN')), (('value', 'NN'), 'amod', ('good', 'JJ')), (('value', 'NN'), 'amod', ('built', 'VBN')), (('built', 'VBN'), 'advmod', ('well', 'RB')), (('work', 'VBP'), 'dobj', ('box', 'NN')), (('box', 'NN'), 'amod', ('right', 'JJ')), (('right', 'JJ'), 'advmod', ('easily', 'RB'))]
[(('enjoy', 'VB'), 'advmod', ('also', 'RB')), (('enjoy', 'VB'), 'dobj', ('macbook', 'NN')), (('macbook', 'NN'), 'compound', ('fact', 'NN')), (('macbook', 'NN'), 'acl:relcl', ('allows', 'VBZ')), (('allows', 'VBZ'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('pro', 'JJ')), (('allows', 'VBZ'), 'dobj', ('window', 'NN')), (('window', 'NN'), 'compound', ('run', 'NN')), (('window', 'NN'), 'nummod', ('7', 'CD')), (('allows', 'VBZ'), 'xcomp', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('vmware', 'JJ'))]
[(('love', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('graphic', 'JJ')), (('program', 'NN'), 'amod', ('awesome', 'JJ')), (('program', 'NN'), 'nmod', ('background', 'NN')), (('background', 'NN'), 'case', ('including', 'VBG')), (('background', 'NN'), 'compound', ('garageband', 'NN')), (('background', 'NN'), 'amod', ('cool', 'JJ')), (('cool', 'JJ'), 'advmod', ('really', 'RB')), (('background', 'NN'), 'compound', ('default', 'NN'))]
[(('lock', 'VB'), 'dobj', ('cause', 'NN')), (('cause', 'NN'), 'compound', ('problem', 'NN')), (('cause', 'NN'), 'amod', ('myriad', 'JJ')), (('cause', 'NN'), 'acl:relcl', ('appleworks', 'VBZ')), (('appleworks', 'VBZ'), 'nsubj', ('version', 'NN')), (('version', 'NN'), 'amod', ('common', 'JJ')), (('version', 'NN'), 'amod', ('corrupted', 'JJ')), (('appleworks', 'VBZ'), 'xcomp', ('useless', 'JJ')), (('useless', 'JJ'), 'nsubj', ('browser', 'NN')), (('browser', 'NN'), 'compound', ('render', 'NN'))]
[(('made', 'VBN'), 'ccomp', ('pushed', 'VBD')), (('pushed', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('photo', 'JJ')), (('computer', 'NN'), 'compound', ('book', 'NN')), (('computer', 'NN'), 'compound', ('gift', 'NN')), (('pushed', 'VBD'), 'ccomp', ('drew', 'VBD')), (('drew', 'VBD'), 'nsubj', ('buy', 'VB')), (('drew', 'VBD'), 'ccomp', ('sent', 'VBD')), (('sent', 'VBD'), 'nsubj', ('account', 'NN')), (('account', 'NN'), 'amod', ('itunes', 'JJ')), (('sent', 'VBD'), 'iobj', ('book', 'NN')), (('book', 'NN'), 'compound', ('book', 'NN')), (('book', 'NN'), 'compound', ('house', 'NN')), (('sent', 'VBD'), 'dobj', ('quality', 'NN')), (('quality', 'NN'), 'amod', ('perfect', 'JJ')), (('quality', 'NN'), 'amod', ('created', 'VBN')), (('created', 'VBN'), 'advmod', ('exactly', 'RB')), (('made', 'VBN'), 'dep', ('looked', 'VBD')), (('made', 'VBN'), 'nsubj', ('better', 'JJR')), (('better', 'JJR'), 'acl', ('imagined', 'VBN')), (('imagined', 'VBN'), 'advmod', ('even', 'RB'))]
[(('overheating', 'NN'), 'advmod', ('fairly', 'RB')), (('overheating', 'NN'), 'advmod', ('well', 'RB')), (('overheating', 'NN'), 'amod', ('poor', 'JJ')), (('overheating', 'NN'), 'compound', ('performance', 'NN')), (('overheating', 'NN'), 'dep', ('screen', 'NN')), (('screen', 'NN'), 'amod', ('occational', 'JJ')), (('screen', 'NN'), 'amod', ('blue', 'JJ'))]
[(('display', 'VB'), 'xcomp', ('awesome', 'JJ'))]
[(('love', 'VB'), 'xcomp', ('take', 'VB')), (('take', 'VB'), 'dobj', ('space', 'NN')), (('take', 'VB'), 'nmod', ('computer', 'NN')), (('computer', 'NN'), 'case', ('like', 'IN')), (('computer', 'NN'), 'amod', ('regular', 'JJ'))]
[(('give', 'VB'), 'ccomp', ('run', 'VB')), (('run', 'VB'), 'nsubj', ('speed', 'NN')), (('speed', 'NN'), 'compound', ('power', 'NN')), (('run', 'VB'), 'aux', ('need', 'MD')), (('run', 'VB'), 'dobj', ('edit', 'NNS')), (('edit', 'NNS'), 'compound', ('program', 'NN')), (('edit', 'NNS'), 'compound', ('use', 'NN'))]
[(('driver', 'NN'), 'dep', ('update', 'VB')), (('update', 'VB'), 'xcomp', ('frustrating', 'JJ')), (('frustrating', 'JJ'), 'nsubj', ('issue', 'NN')), (('issue', 'NN'), 'compound', ('fix', 'NN'))]
[(('run', 'NN'), 'amod', ('like', 'JJ')), (('run', 'NN'), 'compound', ('laptop', 'NN')), (('run', 'NN'), 'dep', ('purchase', 'VB')), (('purchase', 'VB'), 'advmod', ('well', 'RB')), (('purchase', 'VB'), 'case', ('without', 'IN')), (('purchase', 'VB'), 'dobj', ('memory', 'NN')), (('memory', 'NN'), 'amod', ('additional', 'JJ'))]
[(('ease', 'VB'), 'dobj', ('set', 'NN')), (('set', 'NN'), 'amod', ('terrific', 'JJ'))]
[(('run', 'VB'), 'advmod', ('even', 'RB')), (('run', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('parallel', 'JJ')), (('program', 'NN'), 'compound', ('type', 'NN')), (('run', 'VB'), 'advmod', ('easily', 'RB')), (('run', 'VB'), 'dep', ('run', 'VB')), (('run', 'VB'), 'dobj', ('leftover', 'NN')), (('leftover', 'NN'), 'acl:relcl', ('can', 'MD')), (('can', 'MD'), 'nsubj', ('software', 'NN')), (('software', 'NN'), 'compound', ('pc', 'NN')), (('can', 'MD'), 'advmod', ('absolutely', 'RB')), (('can', 'MD'), 'neg', ('not', 'RB')), (('run', 'VB'), 'nmod', ('without', 'IN'))]
[(('ghz', 'NN'), 'nummod', ('1', 'CD')), (('ghz', 'NN'), 'dep', ('stock', 'NN')), (('stock', 'NN'), 'amod', ('faster', 'JJR')), (('stock', 'NN'), 'compound', ('processor', 'NN')), (('ghz', 'NN'), 'dep', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('500gb', 'JJ')), (('drive', 'NN'), 'amod', ('hard', 'JJ'))]
[(('said', 'VBD'), 'ccomp', ('covered', 'VBD')), (('covered', 'VBD'), 'nsubj', ('computer', 'NN')), (('covered', 'VBD'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'amod', ('extended', 'JJ')), (('product', 'NN'), 'compound', ('warranty', 'NN')), (('covered', 'VBD'), 'nmod', ('warranty', 'NN')), (('warranty', 'NN'), 'case', ('with', 'IN')), (('warranty', 'NN'), 'amod', ('_', 'JJ')), (('warranty', 'NN'), 'amod', ('extended', 'JJ')), (('warranty', 'NN'), 'acl', ('taken', 'VBN')), (('taken', 'VBN'), 'dobj', ('care', 'NN')), (('said', 'VBD'), 'nsubj', ('sony', 'NN')), (('sony', 'NN'), 'amod', ('third', 'JJ')), (('sony', 'NN'), 'compound', ('party', 'NN')), (('sony', 'NN'), 'advmod', ('anymore', 'RB'))]
[(('itunes', 'VBZ'), 'nsubj', ('iworks', 'NNS')), (('itunes', 'VBZ'), 'dobj', ('printer', 'NN')), (('printer', 'NN'), 'compound', ('email', 'NN')), (('printer', 'NN'), 'compound', ('m', 'NN')), (('printer', 'NN'), 'compound', ('office', 'NN')), (('printer', 'NN'), 'compound', ('network', 'NN')), (('printer', 'NN'), 'acl', ('set', 'VBN')), (('set', 'VBN'), 'ccomp', ('working', 'VBG')), (('working', 'VBG'), 'advmod', ('completely', 'RB')), (('working', 'VBG'), 'advmod', ('perfectly', 'RB')), (('working', 'VBG'), 'nmod', ('hour', 'NN')), (('hour', 'NN'), 'case', ('within', 'IN'))]
[(('love', 'VB'), 'dobj', ('software', 'NN')), (('software', 'NN'), 'amod', ('operating', 'VBG')), (('software', 'NN'), 'compound', ('system', 'NN')), (('software', 'NN'), 'amod', ('preloaded', 'JJ'))]
[(('went', 'VBD'), 'xcomp', ('asking', 'VBG')), (('asking', 'VBG'), 'dobj', ('component', 'NN')), (('component', 'NN'), 'amod', ('open', 'JJ')), (('component', 'NN'), 'amod', ('various', 'JJ')), (('asking', 'VBG'), 'advcl', ('taking', 'VBG')), (('taking', 'VBG'), 'dobj', ('disk', 'NN')), (('disk', 'NN'), 'amod', ('hard', 'JJ')), (('hard', 'JJ'), 'nmod:npmod', ('battery', 'NN')), (('taking', 'VBG'), 'advmod', ('apart', 'RB')), (('went', 'VBD'), 'nsubj', ('phone', 'NN')), (('phone', 'NN'), 'nummod', ('2', 'CD')), (('phone', 'NN'), 'compound', ('hour', 'NN')), (('phone', 'NN'), 'acl:relcl', ('fix', 'VB')), (('fix', 'VB'), 'aux', ('could', 'MD'))]
[(('change', 'NN'), 'nummod', ('1', 'CD')), (('change', 'NN'), 'dep', ('window', 'NN')), (('window', 'NN'), 'amod', ('desktop', 'JJ')), (('window', 'NN'), 'compound', ('background', 'NN')), (('change', 'NN'), 'dep', ('function', 'NN')), (('function', 'NN'), 'nummod', ('7', 'CD')), (('function', 'NN'), 'amod', ('starter', 'JJ')), (('function', 'NN'), 'compound', ('support', 'NN'))]
[(('buy', 'VB'), 'xcomp', ('go', 'VB')), (('go', 'VB'), 'xcomp', ('expecting', 'VBG')), (('expecting', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'amod', ('battery', 'NN')), (('battery', 'NN'), 'compound', ('7', 'CD')), (('battery', 'NN'), 'dep', ('hr', 'JJ')), (('life', 'NN'), 'amod', ('satisfied', 'VBN')), (('satisfied', 'VBN'), 'advmod', ('perfectly', 'RB'))]
[(('worked', 'VBD'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'compound', ('version', 'NN')), (('program', 'NN'), 'amod', ('saved', 'JJ')), (('saved', 'JJ'), 'amod', ('able', 'JJ')), (('worked', 'VBD'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'amod', ('opened', 'VBN')), (('mac', 'NN'), 'compound', ('pc', 'NN')), (('mac', 'NN'), 'compound', ('mac', 'NN')), (('mac', 'NN'), 'compound', ('version', 'NN')), (('mac', 'NN'), 'compound', ('program', 'NN')), (('mac', 'NN'), 'amod', ('superior', 'JJ')), (('superior', 'JJ'), 'advmod', ('graphically', 'RB')), (('superior', 'JJ'), 'advmod', ('functionally', 'RB'))]
[(('use', 'VB'), 'advmod', ('mostly', 'RB')), (('use', 'VB'), 'dobj', ('gaming', 'NN')), (('gaming', 'NN'), 'compound', ('email', 'NN')), (('gaming', 'NN'), 'compound', ('internet', 'NN')), (('gaming', 'NN'), 'acl:relcl', ('live', 'VBP')), (('live', 'VBP'), 'nsubj', ('application', 'NN')), (('application', 'NN'), 'amod', ('confident', 'JJ')), (('live', 'VBP'), 'ccomp', ('come', 'VBP')), (('come', 'VBP'), 'nsubj', ('standard', 'NN')), (('standard', 'NN'), 'amod', ('high', 'JJ')), (('come', 'VBP'), 'xcomp', ('appreciate', 'VB')), (('appreciate', 'VB'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('mac', 'NN'))]
[(('add', 'VBP'), 'nsubj', ('problem', 'NN')), (('add', 'VBP'), 'xcomp', ('slow', 'JJ')), (('slow', 'JJ'), 'nsubj', ('kinda', 'NNS')), (('kinda', 'NNS'), 'nummod', ('1', 'CD')), (('kinda', 'NNS'), 'amod', ('gb', 'JJ')), (('kinda', 'NNS'), 'compound', ('ram', 'NN')), (('kinda', 'NNS'), 'compound', ('computer', 'NN'))]
[(('stay', 'VB'), 'dep', ('charged', 'VBN')), (('charged', 'VBN'), 'dobj', ('hour', 'NN')), (('hour', 'NN'), 'amod', ('little', 'JJ'))]
[(('price', 'NN'), 'dep', ('product', 'NN')), (('product', 'NN'), 'amod', ('good', 'JJ')), (('price', 'NN'), 'dep', ('quality', 'NN')), (('quality', 'NN'), 'amod', ('top', 'JJ'))]
[(('leopard', 'VBD'), 'advmod', ('even', 'RB')), (('leopard', 'VBD'), 'mark', ('though', 'IN')), (('leopard', 'VBD'), 'nsubj', ('snow', 'NN')), (('snow', 'NN'), 'amod', ('running', 'JJ')), (('leopard', 'VBD'), 'dobj', ('cpu', 'NN')), (('cpu', 'NN'), 'nummod', ('4', 'CD')), (('4', 'CD'), 'compound', ('2', 'CD')), (('cpu', 'NN'), 'compound', ('ghz', 'NNP')), (('cpu', 'NN'), 'nummod', ('c2d', 'CD')), (('cpu', 'NN'), 'amod', ('antiquated', 'JJ')), (('antiquated', 'JJ'), 'nmod:npmod', ('bit', 'NN')), (('cpu', 'NN'), 'advmod', ('thus', 'RB')), (('cpu', 'NN'), 'acl:relcl', ('appear', 'VB')), (('appear', 'VB'), 'nsubj', ('wheel', 'NN')), (('wheel', 'NN'), 'amod', ('occasional', 'JJ')), (('wheel', 'NN'), 'amod', ('spinning', 'JJ')), (('appear', 'VB'), 'aux', ('would', 'MD')), (('appear', 'VB'), 'xcomp', ('running', 'VBG')), (('running', 'VBG'), 'dobj', ('excel', 'NNS')), (('excel', 'NNS'), 'compound', ('office', 'NN')), (('excel', 'NNS'), 'compound', ('mac', 'NN')), (('excel', 'NNS'), 'compound', ('application', 'NN')), (('excel', 'NNS'), 'compound', ('word', 'NN'))]
[(('durable', 'VB'), 'nsubj', ('button', 'NN')), (('button', 'NN'), 'amod', ('great', 'JJ')), (('great', 'JJ'), 'advmod', ('keyboard', 'RB')), (('button', 'NN'), 'amod', ('primary', 'JJ')), (('button', 'NN'), 'amod', ('secondary', 'JJ')), (('button', 'NN'), 'compound', ('control', 'NN')), (('durable', 'VB'), 'aux', ('could', 'MD'))]
[(('complete', 'VB'), 'dobj', ('design', 'NN')), (('design', 'NN'), 'amod', ('opposite', 'JJ')), (('design', 'NN'), 'amod', ('ergonomic', 'JJ'))]
[(('asked', 'VBD'), 'dobj', ('service', 'NN')), (('service', 'NN'), 'compound', ('customer', 'NN')), (('asked', 'VBD'), 'nsubj', ('rep', 'NN'))]
[(('macbook', 'VB'), 'dobj', ('notebook', 'NN')), (('macbook', 'VB'), 'advmod', ('quickly', 'RB')), (('macbook', 'VB'), 'dep', ('die', 'VB')), (('die', 'VB'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'amod', ('short', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('die', 'VB'), 'nmod', ('program', 'NN')), (('program', 'NN'), 'advmod', ('well', 'RB')), (('program', 'NN'), 'amod', ('many', 'JJ')), (('program', 'NN'), 'compound', ('background', 'NN')), (('program', 'NN'), 'acl', ('run', 'VBN')), (('run', 'VBN'), 'nmod', ('knowlede', 'NN')), (('knowlede', 'NN'), 'case', ('without', 'IN')), (('knowlede', 'NN'), 'compound', ('user', 'NN'))]
[(('love', 'VBP'), 'dobj', ('burner', 'NN')), (('burner', 'NN'), 'compound', ('dvd', 'NN')), (('burner', 'NN'), 'advmod', ('fairly', 'RB')), (('fairly', 'RB'), 'nmod:npmod', ('hd', 'NN')), (('hd', 'NN'), 'nummod', ('80', 'CD')), (('hd', 'NN'), 'compound', ('gigabyte', 'NN')), (('burner', 'NN'), 'acl:relcl', ('discovered', 'VBD')), (('discovered', 'VBD'), 'nsubj', ('chip', 'NN')), (('chip', 'NN'), 'amod', ('new', 'JJ')), (('chip', 'NN'), 'amod', ('graphic', 'JJ')), (('discovered', 'VBD'), 'advmod', ('soon', 'RB')), (('discovered', 'VBD'), 'advcl', ('configured', 'VBD')), (('configured', 'VBD'), 'mark', ('though', 'IN')), (('configured', 'VBD'), 'nsubj', ('reason', 'NN')), (('configured', 'VBD'), 'advmod', ('similarly', 'RB')), (('configured', 'VBD'), 'ccomp', ('use', 'VBP')), (('use', 'VBP'), 'nsubj', ('cost', 'NN')), (('cost', 'NN'), 'amod', ('sony', 'JJ')), (('cost', 'NN'), 'compound', ('toshiba', 'NN')), (('cost', 'NN'), 'compound', ('machine', 'NN')), (('use', 'VBP'), 'dobj', ('component', 'NN')), (('component', 'NN'), 'amod', ('higher', 'JJR')), (('component', 'NN'), 'compound', ('quality', 'NN')), (('use', 'VBP'), 'advmod', ('faster', 'RBR')), (('love', 'VBP'), 'nsubj', ('end', 'NN')), (('end', 'NN'), 'amod', ('better', 'JJR')), (('end', 'NN'), 'amod', ('configured', 'JJ')), (('end', 'NN'), 'advmod', ('longer', 'RBR')), (('longer', 'RBR'), 'nmod:npmod', ('lot', 'NN')), (('lot', 'NN'), 'amod', ('lasting', 'JJ'))]
[(('returned', 'VBN'), 'iobj', ('repair', 'NN')), (('repair', 'NN'), 'amod', ('laptop', 'JJ')), (('returned', 'VBN'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'amod', ('2nd', 'JJ')), (('returned', 'VBN'), 'dep', ('came', 'VBD')), (('came', 'VBD'), 'advmod', ('back', 'RB')), (('returned', 'VBN'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('obvious', 'JJ')), (('keyboard', 'NN'), 'amod', ('physical', 'JJ')), (('keyboard', 'NN'), 'compound', ('damage', 'NN')), (('keyboard', 'NN'), 'acl', ('bulging', 'VBG')), (('bulging', 'VBG'), 'dobj', ('grill', 'NN')), (('grill', 'NN'), 'compound', ('speaker', 'NN')), (('grill', 'NN'), 'acl', ('pressed', 'VBN')), (('pressed', 'VBN'), 'dobj', ('button', 'NN')), (('pressed', 'VBN'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'xcomp', ('inoperative', 'JJ')), (('inoperative', 'JJ'), 'nsubj', ('port', 'NN')), (('port', 'NN'), 'compound', ('usb', 'NN'))]
[(('went', 'VBD'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('went', 'VBD'), 'ccomp', ('took', 'VBD')), (('took', 'VBD'), 'nsubj', ('le', 'NN')), (('le', 'NN'), 'nummod', ('4', 'CD')), (('le', 'NN'), 'compound', ('hour', 'NN')), (('took', 'VBD'), 'dobj', ('repair', 'NN')), (('repair', 'NN'), 'amod', ('machouse', 'JJ')), (('repair', 'NN'), 'compound', ('amsterdam', 'NN')), (('took', 'VBD'), 'nmod:tmod', ('august', 'NNP')), (('august', 'NNP'), 'amod', ('26th', 'JJ'))]
[(('bought', 'VBD'), 'nsubj', ('_', 'NNP')), (('bought', 'VBD'), 'ccomp', ('looked', 'VBD')), (('looked', 'VBD'), 'nsubj', ('thought', 'NN')), (('thought', 'NN'), 'amod', ('dell', 'JJ')), (('looked', 'VBD'), 'dobj', ('purchase', 'NN')), (('purchase', 'NN'), 'amod', ('wanted', 'JJ')), (('purchase', 'NN'), 'compound', ('size', 'NN')), (('purchase', 'NN'), 'compound', ('software', 'NN')), (('purchase', 'NN'), 'compound', ('option', 'NN')), (('purchase', 'NN'), 'compound', ('hardware', 'NN')), (('purchase', 'NN'), 'acl:relcl', ('find', 'VB')), (('find', 'VB'), 'nsubj', ('deal', 'NN')), (('deal', 'NN'), 'amod', ('best', 'JJS')), (('find', 'VB'), 'aux', ('could', 'MD'))]
[(('use', 'VB'), 'advmod', ('mostly', 'RB')), (('use', 'VB'), 'dobj', ('gaming', 'NN')), (('gaming', 'NN'), 'compound', ('email', 'NN')), (('gaming', 'NN'), 'compound', ('internet', 'NN')), (('gaming', 'NN'), 'acl:relcl', ('live', 'VBP')), (('live', 'VBP'), 'nsubj', ('application', 'NN')), (('application', 'NN'), 'amod', ('confident', 'JJ')), (('live', 'VBP'), 'ccomp', ('come', 'VBP')), (('come', 'VBP'), 'nsubj', ('standard', 'NN')), (('standard', 'NN'), 'amod', ('high', 'JJ')), (('come', 'VBP'), 'xcomp', ('appreciate', 'VB')), (('appreciate', 'VB'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('mac', 'NN'))]
[(('cover', 'VBP'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('major', 'JJ')), (('laptop', 'NN'), 'compound', ('problem', 'NN')), (('laptop', 'NN'), 'nmod', ('piece', 'NN')), (('piece', 'NN'), 'case', ('except', 'IN')), (('piece', 'NN'), 'amod', ('plastic', 'JJ')), (('cover', 'VBP'), 'dobj', ('wire', 'NN')), (('wire', 'NN'), 'compound', ('usb', 'NN')), (('wire', 'NN'), 'compound', ('port', 'NN')), (('wire', 'NN'), 'acl', ('come', 'VBN'))]
[(('included', 'VBD'), 'dobj', ('subwoofer', 'NN')), (('subwoofer', 'NN'), 'amod', ('extra', 'JJ')), (('subwoofer', 'NN'), 'amod', ('sonic', 'JJ')), (('sonic', 'JJ'), 'advmod', ('sony', 'RB')), (('subwoofer', 'NN'), 'compound', ('stage', 'NN')), (('subwoofer', 'NN'), 'compound', ('software', 'NN')), (('subwoofer', 'NN'), 'compound', ('speaker', 'NN')), (('subwoofer', 'NN'), 'acl', ('got', 'VBN')), (('got', 'VBN'), 'xcomp', ('worth', 'JJ')), (('included', 'VBD'), 'nsubj', ('mouse', 'NN')), (('mouse', 'NN'), 'compound', ('money', 'NN')), (('mouse', 'NN'), 'compound', ('bluetooth', 'NN')), (('mouse', 'NN'), 'nmod', ('port', 'NN')), (('port', 'NN'), 'advmod', ('supposedly', 'RB')), (('port', 'NN'), 'amod', ('bluetooth', 'JJ')), (('port', 'NN'), 'compound', ('enabled', 'NN')), (('port', 'NN'), 'compound', ('computer', 'NN')), (('port', 'NN'), 'amod', ('extended', 'VBN')), (('port', 'NN'), 'compound', ('life', 'NN')), (('port', 'NN'), 'compound', ('battery', 'NN')), (('port', 'NN'), 'amod', ('docking', 'VBG'))]
[(('bloatware', 'NN'), 'amod', ('loaded', 'JJ'))]
[(('got', 'VBD'), 'ccomp', ('worked', 'VBD')), (('worked', 'VBD'), 'nsubj', ('instance', 'NN')), (('instance', 'NN'), 'amod', ('laptop', 'JJ')), (('instance', 'NN'), 'amod', ('back', 'JJ')), (('instance', 'NN'), 'amod', ('first', 'JJ')), (('worked', 'VBD'), 'ccomp', ('started', 'VBD')), (('started', 'VBD'), 'nsubj', ('bit', 'NN')), (('bit', 'NN'), 'amod', ('little', 'JJ')), (('little', 'JJ'), 'amod', ('okay', 'JJ')), (('started', 'VBD'), 'dobj', ('driver', 'NN')), (('driver', 'NN'), 'amod', ('expeirencing', 'VBG')), (('driver', 'NN'), 'compound', ('issue', 'NN')), (('driver', 'NN'), 'compound', ('everything', 'NN')), (('driver', 'NN'), 'compound', ('program', 'NN')), (('driver', 'NN'), 'acl', ('failing', 'VBG')), (('failing', 'VBG'), 'advcl', ('powering', 'VBG')), (('powering', 'VBG'), 'dobj', ('reason', 'NN')), (('got', 'VBD'), 'nsubj', ('issue', 'NN')), (('issue', 'NN'), 'nummod', ('locking', 'CD')), (('issue', 'NN'), 'compound', ('freezing', 'NN')), (('issue', 'NN'), 'compound', ('sort', 'NN'))]
[(('think', 'VBP'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'amod', ('_', 'JJ')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('think', 'VBP'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('great', 'JJ')), (('laptop', 'NN'), 'amod', ('starter', 'JJ'))]
[(('run', 'VB'), 'xcomp', ('dreamweaver', 'VB')), (('dreamweaver', 'VB'), 'dobj', ('application', 'NN')), (('application', 'NN'), 'amod', ('final', 'JJ')), (('application', 'NN'), 'compound', ('cut', 'NN')), (('application', 'NN'), 'compound', ('pro', 'NN')), (('application', 'NN'), 'nummod', ('7', 'CD')), (('application', 'NN'), 'compound', ('photoshop', 'NN')), (('application', 'NN'), 'amod', ('safari', 'JJ')), (('application', 'NN'), 'nummod', ('firefox', 'CD')), (('application', 'NN'), 'compound', ('msn', 'NN')), (('application', 'NN'), 'compound', ('messenger', 'NN')), (('dreamweaver', 'VB'), 'advmod', ('constantly', 'RB')), (('dreamweaver', 'VB'), 'dobj', ('time', 'NN'))]
[(('got', 'VBD'), 'advmod', ('also', 'RB')), (('got', 'VBD'), 'dobj', ('bonus', 'NN')), (('bonus', 'NN'), 'amod', ('added', 'VBN')), (('got', 'VBD'), 'nsubj', ('hd', 'NN')), (('hd', 'NN'), 'nummod', ('30', 'CD')), (('hd', 'NN'), 'acl:relcl', ('monitor', 'VBP')), (('monitor', 'VBP'), 'advmod', ('really', 'RB')), (('monitor', 'VBP'), 'dep', ('help', 'VB')), (('help', 'VB'), 'xcomp', ('extend', 'VB')), (('extend', 'VB'), 'ccomp', ('keep', 'VB')), (('keep', 'VB'), 'nsubj', ('screen', 'NN')), (('keep', 'VB'), 'dobj', ('eye', 'NN')), (('eye', 'NN'), 'amod', ('fresh', 'JJ'))]
[(('sexyy', 'NN'), 'compound', ('look', 'NN')), (('sexyy', 'NN'), 'dep', ('pro', 'NN')), (('pro', 'NN'), 'advmod', ('really', 'RB')), (('pro', 'NN'), 'compound', ('mac', 'NN')), (('pro', 'NN'), 'compound', ('book', 'NN')), (('pro', 'NN'), 'amod', ('laptop', 'JJ')), (('laptop', 'JJ'), 'dep', ('best', 'JJS')), (('sexyy', 'NN'), 'dep', ('price', 'NN')), (('price', 'NN'), 'advmod', ('specially', 'RB')), (('price', 'NN'), 'compound', ('student', 'NN')), (('price', 'NN'), 'compound', ('college', 'NN')), (('price', 'NN'), 'compound', ('caring', 'NN'))]
[(('said', 'VBD'), 'nsubj', ('guy', 'NN')), (('guy', 'NN'), 'compound', ('tech', 'NN')), (('said', 'VBD'), 'dobj', ('center', 'NN')), (('center', 'NN'), 'compound', ('service', 'NN')), (('center', 'NN'), 'nmod', ('exchange', 'NN')), (('exchange', 'NN'), 'nummod', ('1', 'CD')), (('1', 'CD'), 'compound', ('1', 'CD')), (('exchange', 'NN'), 'dep', ('team', 'NN')), (('team', 'NN'), 'amod', ('direct', 'JJ')), (('team', 'NN'), 'compound', ('concern', 'NN')), (('team', 'NN'), 'compound', ('sale', 'NN')), (('team', 'NN'), 'acl:relcl', ('bought', 'VBD')), (('bought', 'VBD'), 'nsubj', ('shop', 'NN')), (('shop', 'NN'), 'amod', ('retail', 'JJ')), (('bought', 'VBD'), 'dobj', ('netbook', 'NN'))]
[(('say', 'VBP'), 'nsubj', ('people', 'NNS')), (('say', 'VBP'), 'ccomp', ('hold', 'VBP')), (('hold', 'VBP'), 'nsubj', ('pc', 'NN')), (('hold', 'VBP'), 'ccomp', ('mac', 'VBP')), (('mac', 'VBP'), 'nsubj', ('value', 'NN')), (('value', 'NN'), 'amod', ('functionality', 'JJ')), (('mac', 'VBP'), 'ccomp', ('think', 'VBP')), (('think', 'VBP'), 'nsubj', ('look', 'NN')), (('look', 'NN'), 'amod', ('pretty', 'JJ')), (('think', 'VBP'), 'ccomp', ('said', 'VBD')), (('said', 'VBD'), 'nsubj', ('something', 'NN')), (('said', 'VBD'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'compound', ('simplicity', 'NN'))]
[(('price', 'NN'), 'dep', ('fast', 'RB')), (('fast', 'RB'), 'advmod', ('super', 'RB')), (('price', 'NN'), 'amod', ('great', 'JJ')), (('price', 'NN'), 'compound', ('value', 'NN'))]
[(('wasted', 'VBD'), 'advmod', ('least', 'JJS')), (('wasted', 'VBD'), 'nsubj', ('time', 'NN')), (('time', 'NN'), 'nummod', ('8', 'CD')), (('time', 'NN'), 'compound', ('hour', 'NN')), (('time', 'NN'), 'compound', ('installation', 'NN'))]
[(('price', 'VB'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('price', 'VB'), 'aux', ('could', 'MD')), (('price', 'VB'), 'advmod', ('overall', 'JJ')), (('overall', 'JJ'), 'advmod', ('better', 'RBR')), (('price', 'VB'), 'dobj', ('reputation', 'NN')), (('reputation', 'NN'), 'compound', ('toshiba', 'NN')), (('reputation', 'NN'), 'amod', ('great', 'JJ')), (('great', 'JJ'), 'amod', ('laptop', 'JJ'))]
[(('use', 'VB'), 'ccomp', ('love', 'VBP')), (('love', 'VBP'), 'nsubj', ('time', 'NN')), (('time', 'NN'), 'compound', ('mac', 'NN')), (('love', 'VBP'), 'ccomp', ('take', 'VB')), (('take', 'VB'), 'nsubj', ('way', 'NN')), (('way', 'NN'), 'compound', ('software', 'NN')), (('take', 'VB'), 'dobj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('short', 'JJ')), (('thing', 'NN'), 'compound', ('time', 'NN')), (('thing', 'NN'), 'compound', ('load', 'NN')), (('take', 'VB'), 'advmod', ('easy', 'RB')), (('take', 'VB'), 'dep', ('use', 'VB')), (('use', 'VB'), 'dobj', ('virus', 'NN')), (('virus', 'NN'), 'compound', ('worry', 'NN'))]
[(('love', 'VBP'), 'advmod', ('also', 'RB')), (('love', 'VBP'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('convenient', 'JJ')), (('convenient', 'JJ'), 'amod', ('small', 'JJ')), (('laptop', 'NN'), 'compound', ('size', 'NN')), (('love', 'VBP'), 'xcomp', ('making', 'VBG')), (('making', 'VBG'), 'dobj', ('tool', 'NN')), (('tool', 'NN'), 'amod', ('perfect', 'JJ')), (('love', 'VBP'), 'nsubj', ('study', 'NN')), (('study', 'NN'), 'amod', ('academic', 'JJ'))]
[(('find', 'VB'), 'xcomp', ('better', 'JJR')), (('better', 'JJR'), 'nsubj', ('performance', 'NN')), (('performance', 'NN'), 'amod', ('many', 'JJ')), (('performance', 'NN'), 'compound', ('laptop', 'NN')), (('better', 'JJR'), 'advmod', ('even', 'RB')), (('better', 'JJR'), 'ccomp', ('find', 'VB')), (('find', 'VB'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('lower', 'JJR')), (('find', 'VB'), 'aux', ('can', 'MD')), (('find', 'VB'), 'neg', ('not', 'RB')), (('find', 'VB'), 'xcomp', ('look', 'VB')), (('look', 'VB'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'amod', ('easy', 'JJ')), (('mac', 'NN'), 'compound', ('application', 'NN')), (('mac', 'NN'), 'compound', ('experience', 'NN'))]
[(('please', 'VBP'), 'nsubj', ('tip', 'NN')), (('tip', 'NN'), 'nummod', ('one', 'CD')), (('please', 'VBP'), 'ccomp', ('get', 'VB')), (('get', 'VB'), 'nsubj', ('model', 'NN')), (('model', 'NN'), 'compound', ('purchase', 'NN')), (('get', 'VB'), 'dobj', ('ram', 'NN')), (('ram', 'NN'), 'amod', ('4gb', 'JJ')), (('ram', 'NN'), 'compound', ('stick', 'NN')), (('ram', 'NN'), 'nmod', ('10', 'CD')), (('10', 'CD'), 'case', ('save', 'IN'))]
[(('realize', 'VB'), 'ccomp', ('spent', 'VBD')), (('spent', 'VBD'), 'nsubj', ('900', 'CD')), (('spent', 'VBD'), 'aux', ('would', 'MD')), (('spent', 'VBD'), 'advmod', ('better', 'RBR')), (('spent', 'VBD'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('window', 'NN'))]
[(('dvd', 'VBP'), 'advmod', ('anyway', 'RB')), (('dvd', 'VBP'), 'nmod:tmod', ('year', 'NN')), (('year', 'NN'), 'amod', ('early', 'JJ')), (('year', 'NN'), 'compound', ('july', 'NNP')), (('dvd', 'VBP'), 'dobj', ('burner', 'NN')), (('burner', 'NN'), 'acl', ('stopped', 'VBN')), (('stopped', 'VBN'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'dobj', ('computer', 'NN')), (('dvd', 'VBP'), 'nsubj', ('supply', 'NN')), (('supply', 'NN'), 'nummod', ('stared', 'CD')), (('supply', 'NN'), 'compound', ('issue', 'NN')), (('supply', 'NN'), 'compound', ('power', 'NN'))]
[(('screen', 'NN'), 'nsubj', ('size', 'NN')), (('size', 'NN'), 'compound', ('love', 'NN')), (('screen', 'NN'), 'advcl', ('tote', 'VB')), (('tote', 'VB'), 'mark', ('although', 'IN')), (('tote', 'VB'), 'nsubj', ('lightweight', 'JJ')), (('lightweight', 'JJ'), 'advmod', ('still', 'RB')), (('tote', 'VB'), 'advmod', ('easy', 'RB')), (('tote', 'VB'), 'compound:prt', ('around', 'RP'))]
[(('left', 'VBD'), 'nsubj', ('day', 'NN')), (('left', 'VBD'), 'ccomp', ('snapped', 'VBD')), (('snapped', 'VBD'), 'nsubj', ('button', 'NN')), (('button', 'NN'), 'compound', ('mouse', 'NN'))]
[(('word', 'NN'), 'compound', ('pc', 'NN')), (('word', 'NN'), 'compound', ('user', 'NN')), (('word', 'NN'), 'compound', ('work', 'NN')), (('word', 'NN'), 'dep', ('page', 'NN')), (('page', 'NN'), 'compound', ('mac', 'NN')), (('page', 'NN'), 'compound', ('user', 'NN')), (('page', 'NN'), 'compound', ('work', 'NN'))]
[(('get', 'VBP'), 'xcomp', ('restricted', 'JJ')), (('restricted', 'JJ'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'compound', ('ton', 'NN')), (('computer', 'NN'), 'compound', ('compliment', 'NN')), (('computer', 'NN'), 'compound', ('size', 'NN')), (('computer', 'NN'), 'compound', ('speaking', 'NN')), (('computer', 'NN'), 'compound', ('someone', 'NN')), (('computer', 'NN'), 'compound', ('regularly', 'NN')), (('computer', 'NN'), 'compound', ('commute', 'NN')), (('computer', 'NN'), 'compound', ('bus', 'NN')), (('computer', 'NN'), 'compound', ('attest', 'NN')), (('computer', 'NN'), 'compound', ('fact', 'NN')), (('computer', 'NN'), 'dep', ('perfect', 'NNS')), (('computer', 'NN'), 'compound', ('size', 'NN')), (('get', 'VBP'), 'nsubj', ('room', 'NN')), (('room', 'NN'), 'nummod', ('width', 'CD')), (('room', 'NN'), 'compound', ('body', 'NN')), (('room', 'NN'), 'compound', ('computing', 'NN'))]
[(('seems', 'VBZ'), 'nsubj', ('charger', 'NN')), (('seems', 'VBZ'), 'xcomp', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('large', 'JJ')), (('computer', 'NN'), 'compound', ('class', 'NN'))]
[(('part', 'NN'), 'amod', ('sony', 'JJ')), (('part', 'NN'), 'dep', ('service', 'NN')), (('service', 'NN'), 'amod', ('reliability', 'JJ')), (('service', 'NN'), 'compound', ('quality', 'NN')), (('service', 'NN'), 'amod', ('worst', 'JJS')), (('worst', 'JJS'), 'advmod', ('recenlty', 'RB'))]
[(('microsoft', 'VB'), 'ccomp', ('buy', 'VB')), (('buy', 'VB'), 'nsubj', ('andi', 'NNS')), (('andi', 'NNS'), 'compound', ('word', 'NN')), (('buy', 'VB'), 'advmod', ('seperately', 'RB'))]
[(('acer', 'VB'), 'ccomp', ('bought', 'VBD')), (('bought', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'nummod', ('one', 'CD')), (('bought', 'VBD'), 'ccomp', ('find', 'VBP')), (('find', 'VBP'), 'nsubj', ('screen', 'NN')), (('screen', 'NN'), 'nummod', ('17', 'CD')), (('screen', 'NN'), 'amod', ('ince', 'JJ')), (('find', 'VBP'), 'advmod', ('hard', 'RB')), (('find', 'VBP'), 'dobj', ('bag', 'NN')), (('bag', 'NN'), 'compound', ('lap', 'NN')), (('bag', 'NN'), 'amod', ('top', 'JJ')), (('bag', 'NN'), 'nmod', ('screen', 'NN')), (('screen', 'NN'), 'case', ('like', 'IN')), (('screen', 'NN'), 'amod', ('big', 'JJ'))]
[(('purchased', 'VBD'), 'advmod', ('also', 'RB')), (('purchased', 'VBD'), 'dobj', ('iwork', 'NN')), (('purchased', 'VBD'), 'dep', ('go', 'VB')), (('go', 'VB'), 'dobj', ('spreadsheet', 'NN')), (('spreadsheet', 'NN'), 'compound', ('program', 'NN')), (('spreadsheet', 'NN'), 'compound', ('word', 'NN')), (('spreadsheet', 'NN'), 'compound', ('processing', 'NN')), (('purchased', 'VBD'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'nummod', ('presentation', 'CD')), (('office', 'NN'), 'amod', ('similar', 'JJ')), (('office', 'NN'), 'compound', ('microsoft', 'NN'))]
[(('included', 'VBD'), 'nsubj', ('care', 'NN')), (('care', 'NN'), 'compound', ('apple', 'NN'))]
[(('even', 'RB'), 'dep', ('playing', 'VBG')), (('playing', 'VBG'), 'mark', ('like', 'IN')), (('playing', 'VBG'), 'dobj', ('game', 'NN')), (('game', 'NN'), 'amod', ('online', 'JJ')), (('game', 'NN'), 'dep', ('window', 'NN')), (('window', 'NN'), 'amod', ('wonderful', 'JJ')), (('window', 'NN'), 'compound', ('feature', 'NN')), (('window', 'NN'), 'compound', ('dualboot', 'NN'))]
[(('button', 'NN'), 'amod', ('first', 'JJ')), (('button', 'NN'), 'compound', ('push', 'NN')), (('button', 'NN'), 'dep', ('lid', 'NN')), (('lid', 'NN'), 'amod', ('open', 'JJ'))]
[(('weighed', 'VBD'), 'nmod', ('like', 'IN')), (('weighed', 'VBD'), 'nsubj', ('something', 'NN')), (('something', 'NN'), 'nummod', ('seven', 'CD')), (('something', 'NN'), 'compound', ('pound', 'NN')), (('weighed', 'VBD'), 'nmod', ('like', 'IN'))]
[(('price', 'VB'), 'nsubj', ('budget', 'NN')), (('budget', 'NN'), 'nummod', ('13', 'CD')), (('budget', 'NN'), 'amod', ('macbook', 'JJ')), (('budget', 'NN'), 'amod', ('pro', 'JJ')), (('budget', 'NN'), 'compound', ('fit', 'NN')), (('budget', 'NN'), 'dep', ('tax', 'NN')), (('tax', 'NN'), 'amod', ('free', 'JJ')), (('tax', 'NN'), 'compound', ('shipping', 'NN')), (('price', 'VB'), 'aux', ('ca', 'MD')), (('price', 'VB'), 'advmod', ('best', 'RBS')), (('price', 'VB'), 'xcomp', ('get', 'VB')), (('get', 'VB'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'amod', ('great', 'JJ'))]
[(('_', 'VB'), 'dobj', ('casing', 'NN')), (('casing', 'NN'), 'det', ('another', 'DT')), (('casing', 'NN'), 'amod', ('laptop', 'JJ')), (('laptop', 'JJ'), 'advmod', ('later', 'RBR')), (('later', 'RBR'), 'nmod:npmod', ('week', 'NN')), (('week', 'NN'), 'nummod', ('three', 'CD')), (('casing', 'NN'), 'amod', ('back', 'JJ')), (('casing', 'NN'), 'amod', ('new', 'JJ')), (('casing', 'NN'), 'amod', ('mousepad', 'JJ')), (('casing', 'NN'), 'amod', ('key', 'JJ'))]
[(('use', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'amod', ('several', 'JJ')), (('office', 'NN'), 'compound', ('program', 'NN')), (('office', 'NN'), 'compound', ('school', 'NN')), (('use', 'VBP'), 'xcomp', ('etc', 'FW')), (('etc', 'FW'), 'compound', ('page', 'NN')), (('etc', 'FW'), 'compound', ('number', 'NN')), (('etc', 'FW'), 'compound', ('keynote', 'NN')), (('etc', 'FW'), 'compound', ('etc', 'NN')), (('etc', 'FW'), 'compound', ('music', 'NN')), (('etc', 'FW'), 'compound', ('garageband', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('management', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('booth', 'NN')), (('etc', 'FW'), 'compound', ('iphoto', 'NN')), (('etc', 'FW'), 'compound', ('video', 'NN')), (('etc', 'FW'), 'compound', ('editing', 'NN')), (('etc', 'FW'), 'compound', ('movie', 'NN')), (('etc', 'FW'), 'compound', ('making', 'NN')), (('etc', 'FW'), 'dep', ('imovie', 'NNS'))]
[(('drive', 'NN'), 'dep', ('computer', 'NN')), (('computer', 'NN'), 'dep', ('hardly', 'RB')), (('computer', 'NN'), 'compound', ('memory', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ'))]
[(('called', 'VBD'), 'nsubj', ('desparation', 'NN')), (('called', 'VBD'), 'ccomp', ('told', 'VBD')), (('told', 'VBD'), 'nsubj', ('number', 'NN')), (('number', 'NN'), 'compound', ('customer', 'NN')), (('number', 'NN'), 'compound', ('service', 'NN')), (('told', 'VBD'), 'ccomp', ('expired', 'VBD')), (('expired', 'VBD'), 'nsubj', ('warranty', 'NN')), (('expired', 'VBD'), 'ccomp', ('cost', 'VB')), (('cost', 'VB'), 'nmod:tmod', ('day', 'NN')), (('day', 'NN'), 'nummod', ('2', 'CD')), (('cost', 'VB'), 'nsubj', ('technician', 'NN')), (('technician', 'NN'), 'amod', ('priviledge', 'JJ')), (('priviledge', 'JJ'), 'amod', ('old', 'JJ')), (('technician', 'NN'), 'amod', ('talking', 'VBG')), (('cost', 'VB'), 'aux', ('would', 'MD')), (('cost', 'VB'), 'xcomp', ('ready', 'JJ')), (('ready', 'JJ'), 'nsubj', ('card', 'NN')), (('card', 'NN'), 'compound', ('credit', 'NN'))]
[(('play', 'NN'), 'dep', ('really', 'RB')), (('play', 'NN'), 'amod', ('perfect', 'JJ')), (('play', 'NN'), 'compound', ('work', 'NN'))]
[(('think', 'VB'), 'dobj', ('manual', 'NN')), (('think', 'VB'), 'advmod', ('hard', 'RB')), (('hard', 'RB'), 'advmod', ('somewhere', 'RB')), (('think', 'VB'), 'dep', ('drive', 'VB')), (('drive', 'VB'), 'dobj', ('copy', 'NN')), (('copy', 'NN'), 'amod', ('hard', 'JJ')), (('hard', 'JJ'), 'advmod', ('rather', 'RB'))]
[(('cover', 'VB'), 'ccomp', ('came', 'VBD')), (('came', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'compound', ('dvd', 'NN')), (('came', 'VBD'), 'advmod', ('soon', 'RB')), (('came', 'VBD'), 'dobj', ('quality', 'NN')), (('quality', 'NN'), 'amod', ('poor', 'JJ')), (('poor', 'JJ'), 'nmod:npmod', ('mark', 'NN')), (('quality', 'NN'), 'compound', ('construction', 'NN'))]
[(('bought', 'VBD'), 'nsubj', ('anyways', 'NNS')), (('bought', 'VBD'), 'ccomp', ('brought', 'VBD')), (('brought', 'VBD'), 'nsubj', ('month', 'NN')), (('month', 'NN'), 'nummod', ('two', 'CD')), (('month', 'NN'), 'advmod', ('first', 'JJ')), (('first', 'JJ'), 'advmod', ('ago', 'RB')), (('brought', 'VBD'), 'ccomp', ('kept', 'VBD')), (('kept', 'VBD'), 'nsubj', ('home', 'NN')), (('kept', 'VBD'), 'xcomp', ('giving', 'VBG')), (('giving', 'VBG'), 'iobj', ('vibration', 'NN')), (('vibration', 'NN'), 'compound', ('message', 'NN')), (('giving', 'VBG'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('drive', 'NN'), 'acl', ('putting', 'VBG')), (('putting', 'VBG'), 'dobj', ('temporaly', 'NN')), (('temporaly', 'NN'), 'nmod', ('zone', 'NN')), (('zone', 'NN'), 'case', ('save', 'IN'))]
[(('find', 'VB'), 'xcomp', ('better', 'JJR')), (('better', 'JJR'), 'nsubj', ('performance', 'NN')), (('performance', 'NN'), 'amod', ('many', 'JJ')), (('performance', 'NN'), 'compound', ('laptop', 'NN')), (('better', 'JJR'), 'advmod', ('even', 'RB')), (('better', 'JJR'), 'ccomp', ('find', 'VB')), (('find', 'VB'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('lower', 'JJR')), (('find', 'VB'), 'aux', ('can', 'MD')), (('find', 'VB'), 'neg', ('not', 'RB')), (('find', 'VB'), 'xcomp', ('look', 'VB')), (('look', 'VB'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'amod', ('easy', 'JJ')), (('mac', 'NN'), 'compound', ('application', 'NN')), (('mac', 'NN'), 'compound', ('experience', 'NN'))]
[(('found', 'VBD'), 'ccomp', ('wonder', 'VBP')), (('wonder', 'VBP'), 'nsubj', ('imformative', 'NN')), (('imformative', 'NN'), 'amod', ('easy', 'JJ')), (('imformative', 'NN'), 'compound', ('use', 'NN')), (('found', 'VBD'), 'nsubj', ('tutorial', 'NN')), (('tutorial', 'NN'), 'amod', ('alert', 'JJ')), (('tutorial', 'NN'), 'acl', ('making', 'VBG')), (('making', 'VBG'), 'dobj', ('someone', 'NN')), (('someone', 'NN'), 'amod', ('easy', 'JJ')), (('making', 'VBG'), 'advcl', ('advanced', 'JJ')), (('advanced', 'JJ'), 'case', ('like', 'IN')), (('advanced', 'JJ'), 'advmod', ('exactly', 'RB')), (('advanced', 'JJ'), 'advmod', ('technologically', 'RB')), (('advanced', 'JJ'), 'ccomp', ('learn', 'VBP')), (('learn', 'VBP'), 'xcomp', ('use', 'VB')), (('use', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('various', 'JJ')), (('program', 'NN'), 'compound', ('feature', 'NN'))]
[(('computer', 'NN'), 'compound', ('display', 'NN')), (('computer', 'NN'), 'acl', ('seen', 'VBN')), (('seen', 'VBN'), 'advmod', ('best', 'RBS')), (('computer', 'NN'), 'dep', ('convienent', 'NNS')), (('convienent', 'NNS'), 'dep', ('long', 'JJ')), (('long', 'JJ'), 'dep', ('time', 'NN')), (('convienent', 'NNS'), 'compound', ('battery', 'NN')), (('convienent', 'NNS'), 'compound', ('life', 'NN')), (('convienent', 'NNS'), 'amod', ('long', 'JJ'))]
[(('_', 'VBG'), 'dobj', ('story', 'NN')), (('story', 'NN'), 'amod', ('long', 'JJ')), (('_', 'VBG'), 'advmod', ('short', 'RB')), (('short', 'RB'), 'nmod', ('laptop', 'NN')), (('laptop', 'NN'), 'case', ('since', 'IN')), (('laptop', 'NN'), 'compound', ('experience', 'NN')), (('laptop', 'NN'), 'amod', ('many', 'JJ')), (('laptop', 'NN'), 'compound', ('problem', 'NN')), (('_', 'VBG'), 'advmod', ('every', 'DT')), (('every', 'DT'), 'case', ('since', 'IN')), (('_', 'VBG'), 'dep', ('bought', 'VBD')), (('bought', 'VBD'), 'nmod:tmod', ('day', 'NN')), (('day', 'NN'), 'nummod', ('one', 'CD')), (('bought', 'VBD'), 'dep', ('ask', 'VB')), (('ask', 'VB'), 'ccomp', ('pay', 'VB')), (('pay', 'VB'), 'nsubj', ('refund', 'NN')), (('refund', 'NN'), 'amod', ('new', 'JJ')), (('refund', 'NN'), 'compound', ('laptop', 'NN')), (('pay', 'VB'), 'xcomp', ('laptop', 'JJ')), (('laptop', 'JJ'), 'advmod', ('crapy', 'RB')), (('_', 'VBG'), 'nsubj', ('warranty', 'NN')), (('warranty', 'NN'), 'compound', ('extension', 'NN')), (('warranty', 'NN'), 'compound', ('laptop', 'NN')), (('warranty', 'NN'), 'dep', ('year', 'NN')), (('year', 'NN'), 'det', ('another', 'DT')), (('warranty', 'NN'), 'acl', ('made', 'VBN')), (('made', 'VBN'), 'ccomp', ('gave', 'VBD')), (('gave', 'VBD'), 'nsubj', ('service', 'NN')), (('service', 'NN'), 'amod', ('big', 'JJ')), (('service', 'NN'), 'compound', ('deal', 'NN')), (('service', 'NN'), 'amod', ('many', 'JJ')), (('service', 'NN'), 'compound', ('call', 'NN')), (('service', 'NN'), 'compound', ('complaint', 'NN')), (('service', 'NN'), 'compound', ('product', 'NN')), (('gave', 'VBD'), 'advmod', ('finally', 'RB'))]
[(('design', 'NN'), 'amod', ('unibody', 'JJ')), (('design', 'NN'), 'amod', ('durable', 'JJ')), (('durable', 'JJ'), 'amod', ('edgy', 'JJ'))]
[(('mouse', 'NN'), 'amod', ('_', 'JJ')), (('mouse', 'NN'), 'compound', ('time', 'NN')), (('mouse', 'NN'), 'dep', ('click', 'NN')), (('click', 'NN'), 'compound', ('pad', 'NN')), (('click', 'NN'), 'compound', ('right', 'NN')), (('mouse', 'NN'), 'dep', ('work', 'NN')), (('work', 'NN'), 'amod', ('key', 'JJ'))]
[(('use', 'NN'), 'compound', ('work', 'NN')), (('use', 'NN'), 'amod', ('great', 'JJ')), (('use', 'NN'), 'amod', ('general', 'JJ')), (('use', 'NN'), 'compound', ('internet', 'NN')), (('use', 'NN'), 'dep', ('apps', 'NNS')), (('apps', 'NNS'), 'amod', ('microsoft', 'JJ')), (('apps', 'NNS'), 'compound', ('office', 'NN')), (('use', 'NN'), 'dep', ('etc', 'NN')), (('etc', 'NN'), 'compound', ('home', 'NN')), (('etc', 'NN'), 'compound', ('bookkeeping', 'NN'))]
[(('knew', 'VBD'), 'nsubj', ('hp', 'NN')), (('hp', 'NN'), 'compound', ('none', 'NN')), (('hp', 'NN'), 'compound', ('tech', 'NN'))]
[(('durable', 'VB'), 'nsubj', ('button', 'NN')), (('button', 'NN'), 'amod', ('great', 'JJ')), (('great', 'JJ'), 'advmod', ('keyboard', 'RB')), (('button', 'NN'), 'amod', ('primary', 'JJ')), (('button', 'NN'), 'amod', ('secondary', 'JJ')), (('button', 'NN'), 'compound', ('control', 'NN')), (('durable', 'VB'), 'aux', ('could', 'MD'))]
[(('caused', 'VBD'), 'nmod', ('depot', 'NNS')), (('depot', 'NNS'), 'advmod', ('still', 'RB')), (('depot', 'NNS'), 'case', ('within', 'IN')), (('depot', 'NNS'), 'nummod', ('one', 'CD')), (('depot', 'NNS'), 'compound', ('year', 'NN')), (('depot', 'NNS'), 'compound', ('warranty', 'NN')), (('depot', 'NNS'), 'compound', ('repair', 'NN')), (('depot', 'NNS'), 'acl', ('deemed', 'VBN')), (('deemed', 'VBN'), 'dobj', ('time', 'NN')), (('caused', 'VBD'), 'nsubj', ('abuse', 'NN')), (('abuse', 'NN'), 'amod', ('physical', 'JJ')), (('abuse', 'NN'), 'acl', ('covered', 'VBN'))]
[(('took', 'VBD'), 'nsubj', ('work', 'NN')), (('took', 'VBD'), 'nsubj', ('day', 'NN')), (('day', 'NN'), 'advmod', ('exactly', 'RB')), (('day', 'NN'), 'amod', ('like', 'JJ')), (('took', 'VBD'), 'dobj', ('box', 'NN'))]
[(('gesture', 'NN'), 'dep', ('however', 'RB')), (('gesture', 'NN'), 'amod', ('multi', 'JJ')), (('gesture', 'NN'), 'compound', ('touch', 'NN')), (('gesture', 'NN'), 'acl:relcl', ('make', 'VBP')), (('make', 'VBP'), 'nsubj', ('area', 'NN')), (('area', 'NN'), 'amod', ('large', 'JJ')), (('area', 'NN'), 'compound', ('tracking', 'NN')), (('make', 'VBP'), 'dobj', ('mouse', 'NN')), (('mouse', 'NN'), 'amod', ('external', 'JJ')), (('mouse', 'NN'), 'amod', ('unnecessary', 'JJ')), (('mouse', 'NN'), 'dep', ('gaming', 'NN')), (('gaming', 'NN'), 'mark', ('unless', 'IN'))]
[(('mention', 'VB'), 'ccomp', ('decide', 'VBP')), (('decide', 'VBP'), 'advmod', ('sometimes', 'RB')), (('decide', 'VBP'), 'nsubj', ('unit', 'NN')), (('unit', 'NN'), 'amod', ('whole', 'JJ')), (('unit', 'NN'), 'compound', ('charger', 'NN')), (('decide', 'VBP'), 'dobj', ('work', 'NN')), (('decide', 'VBP'), 'advmod', ('entirely', 'RB'))]
[(('statement', 'NN'), 'amod', ('real', 'JJ')), (('statement', 'NN'), 'compound', ('problem', 'NN')), (('statement', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'nummod', ('7', 'CD')), (('life', 'NN'), 'compound', ('hour', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('statement', 'NN'), 'dep', ('lie', 'NN')), (('lie', 'NN'), 'amod', ('mere', 'JJ')), (('lie', 'NN'), 'compound', ('exaggeration', 'NN'))]
[(('_', 'VB'), 'dobj', ('dead', 'NN')), (('dead', 'NN'), 'det', ('the', 'DT')), (('dead', 'NN'), 'amod', ('motherboard', 'JJ'))]
[(('said', 'VBD'), 'nsubj', ('guy', 'NN')), (('guy', 'NN'), 'compound', ('tech', 'NN')), (('said', 'VBD'), 'dobj', ('center', 'NN')), (('center', 'NN'), 'compound', ('service', 'NN')), (('center', 'NN'), 'nmod', ('exchange', 'NN')), (('exchange', 'NN'), 'nummod', ('1', 'CD')), (('1', 'CD'), 'compound', ('1', 'CD')), (('exchange', 'NN'), 'dep', ('team', 'NN')), (('team', 'NN'), 'amod', ('direct', 'JJ')), (('team', 'NN'), 'compound', ('concern', 'NN')), (('team', 'NN'), 'compound', ('sale', 'NN')), (('team', 'NN'), 'acl:relcl', ('bought', 'VBD')), (('bought', 'VBD'), 'nsubj', ('shop', 'NN')), (('shop', 'NN'), 'amod', ('retail', 'JJ')), (('bought', 'VBD'), 'dobj', ('netbook', 'NN'))]
[(('page', 'NN'), 'compound', ('addition', 'NN')), (('page', 'NN'), 'compound', ('design', 'NN')), (('page', 'NN'), 'compound', ('tool', 'NN')), (('page', 'NN'), 'dep', ('keynote', 'VB')), (('keynote', 'VB'), 'xcomp', ('make', 'VB')), (('make', 'VB'), 'xcomp', ('easier', 'JJR')), (('easier', 'JJR'), 'advmod', ('much', 'RB')), (('make', 'VB'), 'ccomp', ('create', 'VB')), (('create', 'VB'), 'dobj', ('professional', 'JJ')), (('professional', 'JJ'), 'acl', ('looking', 'VBG')), (('looking', 'VBG'), 'dobj', ('presentation', 'NN')), (('presentation', 'NN'), 'compound', ('document', 'NN'))]
[(('found', 'VBD'), 'dobj', ('access', 'NN')), (('access', 'NN'), 'amod', ('able', 'JJ')), (('able', 'JJ'), 'advmod', ('also', 'RB')), (('able', 'JJ'), 'advmod', ('easy', 'RB')), (('found', 'VBD'), 'nsubj', ('access', 'NN')), (('access', 'NN'), 'nummod', ('wireless', 'CD')), (('access', 'NN'), 'compound', ('internet', 'NN'))]
[(('mac', 'VBP'), 'iobj', ('computer', 'NN')), (('mac', 'VBP'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'advmod', ('free', 'JJ')), (('mac', 'VBP'), 'dep', ('wait', 'VB')), (('wait', 'VB'), 'ccomp', ('shut', 'VB')), (('shut', 'VB'), 'nsubj', ('boot', 'NN')), (('boot', 'NN'), 'compound', ('window', 'NN')), (('shut', 'VB'), 'dobj', ('virus', 'NN')), (('mac', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('associated', 'VBN'))]
[(('call', 'VBP'), 'dep', ('paid', 'VBD')), (('paid', 'VBD'), 'nsubj', ('warranty', 'NN')), (('warranty', 'NN'), 'amod', ('first', 'JJ')), (('warranty', 'NN'), 'compound', ('record', 'NN')), (('warranty', 'NN'), 'nummod', ('3', 'CD')), (('warranty', 'NN'), 'compound', ('year', 'NN')), (('paid', 'VBD'), 'dobj', ('400', 'CD')), (('400', 'CD'), 'advmod', ('almost', 'RB')), (('call', 'VBP'), 'xcomp', ('spend', 'VB')), (('spend', 'VB'), 'dobj', ('hour', 'NN')), (('spend', 'VB'), 'nmod', ('fax', 'NN')), (('fax', 'NN'), 'dep', ('online', 'NN')), (('fax', 'NN'), 'compound', ('chat', 'NN')), (('fax', 'NN'), 'compound', ('service', 'NN')), (('call', 'VBP'), 'nsubj', ('document', 'NN')), (('document', 'NN'), 'amod', ('multiple', 'JJ'))]
[(('come', 'VBP'), 'advmod', ('also', 'RB')), (('come', 'VBP'), 'dobj', ('application', 'NN')), (('application', 'NN'), 'amod', ('useful', 'JJ')), (('application', 'NN'), 'nmod', ('iphoto', 'NN')), (('iphoto', 'NN'), 'case', ('like', 'IN')), (('come', 'VBP'), 'nsubj', ('application', 'NN')), (('application', 'NN'), 'amod', ('best', 'JJS')), (('application', 'NN'), 'compound', ('photo', 'NN')), (('application', 'NN'), 'advmod', ('ever', 'RB'))]
[(('built', 'VBD'), 'dep', ('run', 'VBP')), (('run', 'VBP'), 'nsubj', ('card', 'NN')), (('card', 'NN'), 'compound', ('ati', 'NN')), (('card', 'NN'), 'amod', ('graphic', 'JJ')), (('card', 'NN'), 'acl:relcl', ('need', 'VBP')), (('need', 'VBP'), 'dobj', ('huge', 'JJ')), (('huge', 'JJ'), 'dep', ('definitely', 'RB')), (('definitely', 'RB'), 'cc', ('plus', 'CC')), (('need', 'VBP'), 'nsubj', ('value', 'NN')), (('value', 'NN'), 'amod', ('good', 'JJ')), (('need', 'VBP'), 'xcomp', ('able', 'JJ')), (('run', 'VBP'), 'dobj', ('intel', 'NN')), (('intel', 'NN'), 'amod', ('older', 'JJR')), (('older', 'JJR'), 'advmod', ('slightly', 'RB')), (('intel', 'NN'), 'compound', ('game', 'NN')), (('built', 'VBD'), 'ccomp', ('trouble', 'VB')), (('trouble', 'VB'), 'nsubj', ('card', 'NN')), (('trouble', 'VB'), 'aux', ('would', 'MD')), (('trouble', 'VB'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'det', ('half', 'DT')), (('built', 'VBD'), 'nsubj', ('warcraft', 'NN')), (('warcraft', 'NN'), 'nummod', ('2', 'CD')), (('warcraft', 'NN'), 'amod', ('even', 'JJ')), (('warcraft', 'NN'), 'compound', ('world', 'NN'))]
[(('looked', 'VBD'), 'nmod', ('feature', 'NN')), (('feature', 'NN'), 'advmod', ('around', 'RB')), (('feature', 'NN'), 'case', ('based', 'VBN')), (('feature', 'NN'), 'compound', ('price', 'NN')), (('looked', 'VBD'), 'nsubj', ('landed', 'NNP')), (('landed', 'NNP'), 'compound', ('comparison', 'NN')), (('landed', 'NNP'), 'compound', ('brand', 'NN')), (('landed', 'NNP'), 'compound', ('trusted', 'NNP'))]
[(('replaced', 'VBD'), 'nsubj', ('_', 'NNP')), (('replaced', 'VBD'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('replaced', 'VBD'), 'nmod', ('board', 'NN')), (('board', 'NN'), 'advmod', ('well', 'RB')), (('board', 'NN'), 'compound', ('mother', 'NN'))]
[(('husband', 'NN'), 'dep', ('us', 'PRP')), (('husband', 'NN'), 'dep', ('music', 'NN')), (('music', 'NN'), 'advmod', ('mostly', 'RB')), (('music', 'NN'), 'compound', ('game', 'NN')), (('music', 'NN'), 'compound', ('email', 'NN'))]
[(('performs', 'VBZ'), 'nsubj', ('security', 'NN')), (('security', 'NN'), 'amod', ('dual', 'JJ')), (('security', 'NN'), 'compound', ('boot', 'NN')), (('security', 'NN'), 'compound', ('linux', 'NN')), (('security', 'NN'), 'amod', ('o', 'JJ')), (('o', 'JJ'), 'amod', ('prone', 'JJ')), (('performs', 'VBZ'), 'advmod', ('flawlessly', 'RB'))]
[(('come', 'VB'), 'xcomp', ('imovie', 'JJ'))]
[(('took', 'VBD'), 'dobj', ('store', 'NN')), (('store', 'NN'), 'compound', ('apple', 'NN')), (('took', 'VBD'), 'nsubj', ('pocket', 'NN')), (('pocket', 'NN'), 'nummod', ('guess', 'CD')), (('pocket', 'NN'), 'amod', ('fixed', 'JJ')), (('pocket', 'NN'), 'compound', ('cost', 'NN'))]
[(('shocked', 'VBD'), 'nsubj', ('fried', 'NNS')), (('fried', 'NNS'), 'amod', ('_', 'JJ')), (('fried', 'NNS'), 'amod', ('casing', 'JJ')), (('fried', 'NNS'), 'compound', ('power', 'NN')), (('fried', 'NNS'), 'compound', ('cord', 'NN')), (('shocked', 'VBD'), 'ccomp', ('pulled', 'VBD')), (('pulled', 'VBD'), 'nsubj', ('husband', 'NN')), (('pulled', 'VBD'), 'dobj', ('socket', 'NN'))]
[(('lap', 'VBP'), 'nsubj', ('sitting', 'VBG')), (('lap', 'VBP'), 'ccomp', ('look', 'VBP')), (('look', 'VBP'), 'nsubj', ('front', 'NN')), (('front', 'NN'), 'compound', ('desk', 'NN')), (('look', 'VBP'), 'ccomp', ('im', 'VB')), (('im', 'VB'), 'nsubj', ('enough', 'NN')), (('enough', 'NN'), 'amod', ('big', 'JJ')), (('im', 'VB'), 'aux', ('could', 'MD')), (('im', 'VB'), 'dobj', ('lenovo', 'NN')), (('lenovo', 'NN'), 'amod', ('used', 'JJ')), (('lenovo', 'NN'), 'acl:relcl', ('want', 'VBP')), (('want', 'VBP'), 'nsubj', ('tablet', 'NN')), (('tablet', 'NN'), 'nummod', ('10', 'CD')), (('tablet', 'NN'), 'nmod', ('size', 'NN')), (('size', 'NN'), 'case', ('plus', 'CC')), (('size', 'NN'), 'amod', ('great', 'JJ')), (('want', 'VBP'), 'xcomp', ('unplug', 'VB')), (('unplug', 'VB'), 'ccomp', ('take', 'VB')), (('take', 'VB'), 'nsubj', ('monitor', 'NN')), (('monitor', 'NN'), 'amod', ('external', 'JJ')), (('monitor', 'NN'), 'compound', ('keyboard', 'NN')), (('monitor', 'NN'), 'compound', ('mouse', 'NN')), (('take', 'VB'), 'xcomp', ('take', 'VB')), (('take', 'VB'), 'dobj', ('video', 'NN')), (('video', 'NN'), 'amod', ('photo', 'JJ'))]
[(('mac', 'VB'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('mac', 'VB'), 'advmod', ('simply', 'RB')), (('mac', 'VB'), 'dep', ('make', 'VB')), (('make', 'VB'), 'dobj', ('sense', 'NN'))]
[(('want', 'VB'), 'nsubj', ('thing', 'NN')), (('want', 'VB'), 'aux', ('would', 'MD')), (('want', 'VB'), 'xcomp', ('add', 'VB')), (('add', 'VB'), 'ccomp', ('read', 'VB')), (('read', 'VB'), 'nsubj', ('bluray', 'NN')), (('bluray', 'NN'), 'amod', ('internal', 'JJ')), (('read', 'VB'), 'xcomp', ('write', 'VB')), (('write', 'VB'), 'dobj', ('drive', 'NN'))]
[(('get', 'VBP'), 'nsubj', ('computer', 'NN')), (('get', 'VBP'), 'ccomp', ('place', 'VBP')), (('place', 'VBP'), 'nsubj', ('drop', 'NN')), (('drop', 'NN'), 'amod', ('strong', 'JJ')), (('drop', 'NN'), 'compound', ('signal', 'NN')), (('place', 'VBP'), 'ccomp', ('loses', 'VBZ')), (('loses', 'VBZ'), 'nsubj', ('book', 'NN')), (('book', 'NN'), 'amod', ('net', 'JJ')), (('loses', 'VBZ'), 'dobj', ('signal', 'NN'))]
[(('screen', 'NN'), 'dep', ('crystal', 'NN')), (('crystal', 'NN'), 'amod', ('large', 'JJ')), (('crystal', 'NN'), 'dep', ('resolution', 'NN')), (('resolution', 'NN'), 'amod', ('amazing', 'JJ')), (('amazing', 'JJ'), 'amod', ('clear', 'JJ')), (('resolution', 'NN'), 'compound', ('color', 'NN'))]
[(('understand', 'VB'), 'dobj', ('starter', 'NNP')), (('starter', 'NNP'), 'compound', ('window', 'NN')), (('starter', 'NNP'), 'nummod', ('7', 'CD')), (('starter', 'NNP'), 'acl', ('included', 'VBN'))]
[(('light', 'NN'), 'amod', ('great', 'JJ')), (('light', 'NN'), 'compound', ('computer', 'NN')), (('light', 'NN'), 'dep', ('use', 'NN')), (('use', 'NN'), 'compound', ('home', 'NN')), (('use', 'NN'), 'compound', ('use', 'NN')), (('use', 'NN'), 'compound', ('business', 'NN'))]
[(('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'advmod', ('probably', 'RB')), (('life', 'NN'), 'dep', ('best', 'JJS'))]
[(('lot', 'NN'), 'amod', ('plenty', 'JJ')), (('lot', 'NN'), 'compound', ('memory', 'NN')), (('lot', 'NN'), 'dep', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('lot', 'NN'), 'dep', ('graphic', 'NNS')), (('graphic', 'NNS'), 'amod', ('great', 'JJ'))]
[(('stand', 'VBP'), 'nsubj', ('pad', 'NN')), (('pad', 'NN'), 'compound', ('track', 'NN')), (('stand', 'VBP'), 'advmod', ('really', 'RB')), (('stand', 'VBP'), 'advcl', ('use', 'VBP')), (('use', 'VBP'), 'mark', ('though', 'IN')), (('use', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('several', 'JJ')), (('thing', 'NN'), 'amod', ('different', 'JJ')), (('thing', 'NN'), 'nmod', ('finger', 'NN')), (('finger', 'NN'), 'case', ('depending', 'VBG')), (('finger', 'NN'), 'amod', ('many', 'JJ')), (('use', 'VBP'), 'xcomp', ('thinking', 'VBG')), (('thinking', 'VBG'), 'nsubj', ('pad', 'NN')), (('pad', 'NN'), 'compound', ('track', 'NN')), (('thinking', 'VBG'), 'dep', ('awesome', 'JJ')), (('thinking', 'VBG'), 'dobj', ('apple', 'NN'))]
[(('feel', 'VB'), 'dobj', ('toshiba', 'NN')), (('toshiba', 'NN'), 'amod', ('better', 'JJR'))]
[(('netbook', 'NN'), 'amod', ('bad', 'JJ')), (('netbook', 'NN'), 'compound', ('boy', 'NN')), (('netbook', 'NN'), 'amod', ('main', 'JJ')), (('netbook', 'NN'), 'compound', ('thing', 'NN')), (('netbook', 'NN'), 'acl', ('desinged', 'VBN')), (('desinged', 'VBN'), 'xcomp', ('surfing', 'VBG')), (('surfing', 'VBG'), 'dobj', ('boy', 'NN')), (('boy', 'NN'), 'compound', ('web', 'NN')), (('boy', 'NN'), 'compound', ('boy', 'NN')), (('netbook', 'NN'), 'dep', ('ever', 'RB'))]
[(('bought', 'VBD'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'compound', ('mom', 'NN')), (('life', 'NN'), 'compound', ('report', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('bought', 'VBD'), 'nmod:tmod', ('day', 'NN')), (('day', 'NN'), 'amod', ('last', 'JJ')), (('bought', 'VBD'), 'nsubj', ('excellent', 'NNP')), (('excellent', 'NNP'), 'amod', ('lightweight', 'JJ')), (('excellent', 'NNP'), 'compound', ('response', 'NN')), (('excellent', 'NNP'), 'compound', ('computing', 'NN')), (('excellent', 'NNP'), 'compound', ('internet', 'NN')), (('excellent', 'NNP'), 'compound', ('focused', 'NNP')), (('excellent', 'NNP'), 'compound', ('activity', 'NN')), (('excellent', 'NNP'), 'compound', ('mail', 'NN')), (('excellent', 'NNP'), 'compound', ('research', 'NN')), (('excellent', 'NNP'), 'compound', ('etc', 'NNP'))]
[(('say', 'VBP'), 'nsubj', ('people', 'NNS')), (('say', 'VBP'), 'ccomp', ('hold', 'VBP')), (('hold', 'VBP'), 'nsubj', ('pc', 'NN')), (('hold', 'VBP'), 'ccomp', ('mac', 'VBP')), (('mac', 'VBP'), 'nsubj', ('value', 'NN')), (('value', 'NN'), 'amod', ('functionality', 'JJ')), (('mac', 'VBP'), 'ccomp', ('think', 'VBP')), (('think', 'VBP'), 'nsubj', ('look', 'NN')), (('look', 'NN'), 'amod', ('pretty', 'JJ')), (('think', 'VBP'), 'ccomp', ('said', 'VBD')), (('said', 'VBD'), 'nsubj', ('something', 'NN')), (('said', 'VBD'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'compound', ('simplicity', 'NN'))]
[(('boot', 'NN'), 'compound', ('machine', 'NN')), (('boot', 'NN'), 'amod', ('slow', 'JJ')), (('boot', 'NN'), 'advmod', ('occasionally', 'RB')), (('boot', 'NN'), 'dep', ('crash', 'JJ')), (('crash', 'JJ'), 'advmod', ('completely', 'RB'))]
[(('run', 'VB'), 'xcomp', ('dreamweaver', 'VB')), (('dreamweaver', 'VB'), 'dobj', ('application', 'NN')), (('application', 'NN'), 'amod', ('final', 'JJ')), (('application', 'NN'), 'compound', ('cut', 'NN')), (('application', 'NN'), 'compound', ('pro', 'NN')), (('application', 'NN'), 'nummod', ('7', 'CD')), (('application', 'NN'), 'compound', ('photoshop', 'NN')), (('application', 'NN'), 'amod', ('safari', 'JJ')), (('application', 'NN'), 'nummod', ('firefox', 'CD')), (('application', 'NN'), 'compound', ('msn', 'NN')), (('application', 'NN'), 'compound', ('messenger', 'NN')), (('dreamweaver', 'VB'), 'advmod', ('constantly', 'RB')), (('dreamweaver', 'VB'), 'dobj', ('time', 'NN'))]
[(('stylish', 'JJ'), 'dep', ('color', 'NN')), (('color', 'NN'), 'amod', ('white', 'JJ')), (('stylish', 'JJ'), 'ccomp', ('take', 'VBP')), (('take', 'VBP'), 'nsubj', ('student', 'NN')), (('student', 'NN'), 'compound', ('college', 'NN')), (('take', 'VBP'), 'advmod', ('easy', 'RB')), (('take', 'VBP'), 'ccomp', ('carry', 'VB')), (('carry', 'VB'), 'xcomp', ('take', 'VB')), (('take', 'VB'), 'dobj', ('class', 'NN'))]
[(('drive', 'NN'), 'dep', ('computer', 'NN')), (('computer', 'NN'), 'dep', ('hardly', 'RB')), (('computer', 'NN'), 'compound', ('memory', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ'))]
[(('make', 'VBP'), 'nsubj', ('cost', 'NN')), (('cost', 'NN'), 'advmod', ('yes', 'RB')), (('make', 'VBP'), 'dobj', ('quality', 'NN')), (('quality', 'NN'), 'compound', ('speed', 'NN')), (('quality', 'NN'), 'compound', ('construction', 'NN')), (('make', 'VBP'), 'advmod', ('longevity', 'RB'))]
[(('beautiful', 'NNS'), 'amod', ('lightweight', 'JJ')), (('beautiful', 'NNS'), 'compound', ('screen', 'NN'))]
[(('shut', 'VBD'), 'nsubj', ('boot', 'NN')), (('boot', 'NN'), 'amod', ('fast', 'JJ'))]
[(('hardware', 'NN'), 'compound', ('commodity', 'NN'))]
[(('everything', 'NN'), 'dep', ('software', 'NN')), (('software', 'NN'), 'amod', ('easy', 'JJ')), (('software', 'NN'), 'compound', ('use', 'NN')), (('software', 'NN'), 'compound', ('mac', 'NN')), (('software', 'NN'), 'dep', ('software', 'NN')), (('software', 'NN'), 'amod', ('simpler', 'JJR')), (('simpler', 'JJR'), 'advmod', ('much', 'RB')), (('software', 'NN'), 'compound', ('microsoft', 'NN'))]
[(('wish', 'NN'), 'compound', ('thing', 'NN')), (('wish', 'NN'), 'dep', ('macbook', 'NN')), (('macbook', 'NN'), 'nummod', ('15', 'CD')), (('macbook', 'NN'), 'compound', ('inch', 'NN')), (('macbook', 'NN'), 'dep', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('pro', 'JJ')), (('keyboard', 'NN'), 'amod', ('better', 'JJR')), (('better', 'JJR'), 'advmod', ('much', 'RB')), (('keyboard', 'NN'), 'compound', ('speaker', 'NN')), (('keyboard', 'NN'), 'compound', ('side', 'NN'))]
[(('inspected', 'VBD'), 'nsubj', ('course', 'NN')), (('inspected', 'VBD'), 'ccomp', ('hinge', 'VB')), (('hinge', 'VB'), 'nsubj', ('netbooks', 'NNS')), (('hinge', 'VB'), 'advmod', ('clearly', 'RB')), (('hinge', 'VB'), 'dobj', ('tighter', 'JJR')), (('hinge', 'VB'), 'advmod', ('even', 'RB')), (('hinge', 'VB'), 'dep', ('demonstrate', 'VB')), (('demonstrate', 'VB'), 'dobj', ('others', 'NNS')), (('others', 'NNS'), 'compound', ('difference', 'NN')), (('others', 'NNS'), 'compound', ('netbook', 'NN'))]
[(('get', 'VBP'), 'nsubj', ('price', 'NN')), (('get', 'VBP'), 'ccomp', ('exceeded', 'VBD')), (('exceeded', 'VBD'), 'dobj', ('expectation', 'NN'))]
[(('ram', 'NN'), 'dep', ('faster', 'RBR')), (('ram', 'NN'), 'compound', ('processor', 'NN'))]
[(('make', 'VBP'), 'nsubj', ('cost', 'NN')), (('cost', 'NN'), 'advmod', ('yes', 'RB')), (('make', 'VBP'), 'dobj', ('quality', 'NN')), (('quality', 'NN'), 'compound', ('speed', 'NN')), (('quality', 'NN'), 'compound', ('construction', 'NN')), (('make', 'VBP'), 'advmod', ('longevity', 'RB'))]
[(('make', 'VB'), 'dep', ('bios', 'NNS')), (('bios', 'NNS'), 'dep', ('tey', 'RB')), (('bios', 'NNS'), 'amod', ('even', 'JJ')), (('bios', 'NNS'), 'compound', ('support', 'NN')), (('make', 'VB'), 'aux', ('could', 'MD')), (('make', 'VB'), 'nsubj', ('company', 'NN')), (('company', 'NN'), 'compound', ('bios', 'NNS')), (('bios', 'NNS'), 'compound', ('problem', 'NN')), (('make', 'VB'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'amod', ('decent', 'JJ')), (('decent', 'JJ'), 'advmod', ('fairly', 'RB')), (('make', 'VB'), 'dep', ('get', 'VB')), (('get', 'VB'), 'compound:prt', ('away', 'RP')), (('get', 'VB'), 'dobj', ('insanity', 'NN'))]
[(('run', 'VBN'), 'nsubj', ('warranty', 'NN')), (('warranty', 'NN'), 'compound', ('course', 'NN')), (('run', 'VBN'), 'nmod:tmod', ('month', 'NN')), (('month', 'NN'), 'amod', ('next', 'JJ'))]
[(('got', 'VBD'), 'advmod', ('also', 'RB')), (('got', 'VBD'), 'dobj', ('bonus', 'NN')), (('bonus', 'NN'), 'amod', ('added', 'VBN')), (('got', 'VBD'), 'nsubj', ('hd', 'NN')), (('hd', 'NN'), 'nummod', ('30', 'CD')), (('hd', 'NN'), 'acl:relcl', ('monitor', 'VBP')), (('monitor', 'VBP'), 'advmod', ('really', 'RB')), (('monitor', 'VBP'), 'dep', ('help', 'VB')), (('help', 'VB'), 'xcomp', ('extend', 'VB')), (('extend', 'VB'), 'ccomp', ('keep', 'VB')), (('keep', 'VB'), 'nsubj', ('screen', 'NN')), (('keep', 'VB'), 'dobj', ('eye', 'NN')), (('eye', 'NN'), 'amod', ('fresh', 'JJ'))]
[(('failed', 'VBD'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'compound', ('info', 'NN')), (('failed', 'VBD'), 'dobj', ('kernal', 'NN')), (('kernal', 'NN'), 'compound', ('load', 'NN')), (('kernal', 'NN'), 'acl', ('missing', 'VBG')), (('missing', 'VBG'), 'xcomp', ('corrupt', 'JJ'))]
[(('find', 'VB'), 'advmod', ('_', 'RB')), (('find', 'VB'), 'aux', ('could', 'MD')), (('find', 'VB'), 'dobj', ('number', 'NN')), (('number', 'NN'), 'compound', ('phone', 'NN')), (('find', 'VB'), 'advmod', ('anywhere', 'RB')), (('find', 'VB'), 'nsubj', ('result', 'NN')), (('result', 'NN'), 'compound', ('call', 'NN')), (('result', 'NN'), 'amod', ('actual', 'JJ')), (('result', 'NN'), 'amod', ('live', 'JJ')), (('result', 'NN'), 'compound', ('person', 'NN')), (('result', 'NN'), 'compound', ('tech', 'NN')), (('result', 'NN'), 'compound', ('support', 'NN')), (('result', 'NN'), 'nmod', ('chat', 'NN')), (('chat', 'NN'), 'dep', ('online', 'NN'))]
[(('sadly', 'RB'), 'ccomp', ('froze', 'VBD')), (('froze', 'VBD'), 'nsubj', ('replacement', 'NN')), (('froze', 'VBD'), 'ccomp', ('turn', 'VB')), (('turn', 'VB'), 'csubj', ('updating', 'VBG')), (('updating', 'VBG'), 'dobj', ('bios', 'NNS')), (('bios', 'NNS'), 'acl', ('shut', 'VBN')), (('turn', 'VB'), 'aux', ('would', 'MD')), (('turn', 'VB'), 'advmod', ('back', 'RB'))]
[(('needed', 'VBD'), 'nsubj', ('_', 'NNP')), (('needed', 'VBD'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'amod', ('laptop', 'JJ')), (('use', 'NN'), 'compound', ('school', 'NN'))]
[(('called', 'VBD'), 'dobj', ('run', 'NN')), (('run', 'NN'), 'amod', ('laptop', 'JJ')), (('called', 'VBD'), 'nsubj', ('hate', 'NN')), (('hate', 'NN'), 'amod', ('slow', 'JJ'))]
[(('ever', 'RB'), 'dep', ('bought', 'VBD')), (('bought', 'VBD'), 'mark', ('since', 'IN')), (('bought', 'VBD'), 'dobj', ('laptop', 'NN')), (('bought', 'VBD'), 'nmod', ('break', 'NN')), (('break', 'NN'), 'advmod', ('far', 'RB')), (('break', 'NN'), 'compound', ('experience', 'NN')), (('break', 'NN'), 'compound', ('nothing', 'NN')), (('break', 'NN'), 'amod', ('constant', 'JJ')), (('bought', 'VBD'), 'nmod', ('service', 'NN')), (('service', 'NN'), 'case', ('down', 'IN')), (('service', 'NN'), 'amod', ('laptop', 'JJ')), (('service', 'NN'), 'amod', ('bad', 'JJ')), (('service', 'NN'), 'compound', ('customer', 'NN')), (('service', 'NN'), 'acl', ('received', 'VBN')), (('received', 'VBN'), 'dobj', ('hotlines', 'NNS')), (('hotlines', 'NNS'), 'compound', ('phone', 'NN')), (('hotlines', 'NNS'), 'compound', ('toshiba', 'NN')), (('hotlines', 'NNS'), 'compound', ('customer', 'NN')), (('hotlines', 'NNS'), 'compound', ('service', 'NN'))]
[(('think', 'VB'), 'dobj', ('manual', 'NN')), (('think', 'VB'), 'advmod', ('hard', 'RB')), (('hard', 'RB'), 'advmod', ('somewhere', 'RB')), (('think', 'VB'), 'dep', ('drive', 'VB')), (('drive', 'VB'), 'dobj', ('copy', 'NN')), (('copy', 'NN'), 'amod', ('hard', 'JJ')), (('hard', 'JJ'), 'advmod', ('rather', 'RB'))]
[(('able', 'JJ'), 'advmod', ('_', 'RB')), (('able', 'JJ'), 'advmod', ('also', 'RB')), (('able', 'JJ'), 'dep', ('install', 'VB')), (('install', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'compound', ('use', 'NN')), (('program', 'NN'), 'compound', ('photoshop', 'NN')), (('program', 'NN'), 'compound', ('aftereffect', 'NN')), (('install', 'VB'), 'advmod', ('easily', 'RB'))]
[(('make', 'VBP'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'amod', ('loaded', 'JJ')), (('program', 'NN'), 'dep', ('user', 'NN')), (('user', 'NN'), 'amod', ('good', 'JJ')), (('user', 'NN'), 'amod', ('average', 'JJ')), (('make', 'VBP'), 'xcomp', ('slow', 'JJ')), (('slow', 'JJ'), 'nsubj', ('way', 'NN')), (('way', 'NN'), 'compound', ('run', 'NN'))]
[(('used', 'VBD'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'compound', ('love', 'NN')), (('keyboard', 'NN'), 'amod', ('solid', 'JJ')), (('keyboard', 'NN'), 'amod', ('machined', 'JJ')), (('keyboard', 'NN'), 'compound', ('aluminum', 'NN')), (('keyboard', 'NN'), 'compound', ('frame', 'NN')), (('keyboard', 'NN'), 'amod', ('laptop', 'JJ')), (('laptop', 'JJ'), 'dep', ('best', 'JJS'))]
[(('build', 'VBP'), 'nsubj', ('capacity', 'NN')), (('capacity', 'NN'), 'compound', ('everything', 'NN')), (('capacity', 'NN'), 'compound', ('fine', 'NNP')), (('capacity', 'NN'), 'compound', ('machine', 'NN')), (('capacity', 'NN'), 'compound', ('speed', 'NN'))]
[(('ram', 'VBP'), 'nsubj', ('16gb', 'NNS')), (('16gb', 'NNS'), 'nummod', ('4', 'CD')), (('16gb', 'NNS'), 'amod', ('ram', 'JJ')), (('16gb', 'NNS'), 'compound', ('slot', 'NN')), (('16gb', 'NNS'), 'nummod', ('2', 'CD')), (('16gb', 'NNS'), 'amod', ('hdd', 'JJ')), (('16gb', 'NNS'), 'compound', ('bay', 'NN')), (('ram', 'VBP'), 'xcomp', ('support', 'VB')), (('support', 'VB'), 'dobj', ('issue', 'NN')), (('issue', 'NN'), 'amod', ('wireless', 'JJ')), (('support', 'VB'), 'advmod', ('least', 'JJS'))]
[(('want', 'VBP'), 'nsubj', ('capability', 'NN')), (('capability', 'NN'), 'acl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'acl', ('made', 'VBN')), (('made', 'VBN'), 'advmod', ('alone', 'RB')), (('want', 'VBP'), 'dobj', ('mac', 'NN'))]
[(('thought', 'VBD'), 'nsubj', ('yes', 'RB')), (('thought', 'VBD'), 'ccomp', ('realize', 'VBP')), (('realize', 'VBP'), 'nsubj', ('expese', 'NN')), (('expese', 'NN'), 'amod', ('much', 'JJ')), (('much', 'JJ'), 'advmod', ('little', 'RB')), (('realize', 'VBP'), 'xcomp', ('get', 'VB')), (('get', 'VB'), 'dobj', ('pay', 'NN'))]
[(('accommodates', 'VBZ'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('easy', 'JJ')), (('keyboard', 'NN'), 'compound', ('use', 'NN')), (('accommodates', 'VBZ'), 'advmod', ('easily', 'RB')), (('accommodates', 'VBZ'), 'xcomp', ('fantasic', 'JJ')), (('fantasic', 'JJ'), 'nsubj', ('weight', 'NN')), (('weight', 'NN'), 'amod', ('large', 'JJ')), (('weight', 'NN'), 'compound', ('hand', 'NN'))]
[(('expired', 'VBD'), 'nsubj', ('warranty', 'NN')), (('warranty', 'NN'), 'nummod', ('one', 'CD')), (('warranty', 'NN'), 'compound', ('month', 'NN')), (('expired', 'VBD'), 'ccomp', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('charger', 'NN')), (('charger', 'NN'), 'compound', ('replacement', 'NN'))]
[(('everything', 'NN'), 'amod', ('pretty', 'JJ')), (('everything', 'NN'), 'amod', ('much', 'JJ')), (('everything', 'NN'), 'dep', ('computer', 'NN')), (('computer', 'NN'), 'advmod', ('else', 'RB')), (('everything', 'NN'), 'dep', ('working', 'NN')), (('working', 'NN'), 'amod', ('good', 'JJ')), (('working', 'NN'), 'compound', ('stop', 'NN'))]
[(('show', 'VB'), 'dep', ('screen', 'NN')), (('show', 'VB'), 'dobj', ('color', 'NN')), (('color', 'NN'), 'amod', ('great', 'JJ'))]
[(('replace', 'VB'), 'nmod:tmod', ('april', 'NNP')), (('april', 'NNP'), 'amod', ('motherboard', 'JJ'))]
[(('value', 'NN'), 'amod', ('good', 'JJ')), (('value', 'NN'), 'compound', ('laptop', 'NN'))]
[(('replacing', 'VBG'), 'dobj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('hard', 'JJ')), (('battery', 'NN'), 'compound', ('drive', 'NN')), (('battery', 'NN'), 'acl', ('stopped', 'VBN')), (('stopped', 'VBN'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'xcomp', ('frustrating', 'JJ')), (('frustrating', 'JJ'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'nummod', ('3', 'CD')), (('use', 'NN'), 'compound', ('month', 'NN'))]
[(('may', 'MD'), 'nsubj', ('_', 'NNP')), (('_', 'NNP'), 'acl', ('considered', 'VBN')), (('may', 'MD'), 'dobj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('much', 'JJ')), (('may', 'MD'), 'xcomp', ('looking', 'VBG')), (('looking', 'VBG'), 'dobj', ('issue', 'NN')), (('issue', 'NN'), 'amod', ('plenty', 'JJ')), (('issue', 'NN'), 'compound', ('space', 'NN'))]
[(('enjoy', 'VB'), 'advmod', ('also', 'RB')), (('enjoy', 'VB'), 'dobj', ('macbook', 'NN')), (('macbook', 'NN'), 'compound', ('fact', 'NN')), (('macbook', 'NN'), 'acl:relcl', ('allows', 'VBZ')), (('allows', 'VBZ'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('pro', 'JJ')), (('allows', 'VBZ'), 'dobj', ('window', 'NN')), (('window', 'NN'), 'compound', ('run', 'NN')), (('window', 'NN'), 'nummod', ('7', 'CD')), (('allows', 'VBZ'), 'xcomp', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('vmware', 'JJ'))]
[(('pc', 'VBP'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'compound', ('user', 'NN')), (('pc', 'VBP'), 'nsubj', ('keynote', 'NNP')), (('keynote', 'NNP'), 'compound', ('powerpoint', 'NN')), (('keynote', 'NNP'), 'compound', ('program', 'NN')), (('keynote', 'NNP'), 'compound', ('slide', 'NN')), (('keynote', 'NNP'), 'compound', ('show', 'NN')), (('keynote', 'NNP'), 'compound', ('presentation', 'NN')), (('keynote', 'NNP'), 'compound', ('mac', 'NN')), (('keynote', 'NNP'), 'compound', ('user', 'NN')), (('keynote', 'NNP'), 'compound', ('utilize', 'NNP'))]
[(('called', 'VBN'), 'dobj', ('one', 'NN')), (('one', 'NN'), 'det', ('another', 'DT')), (('one', 'NN'), 'acl', ('shipped', 'VBN')), (('shipped', 'VBN'), 'ccomp', ('get', 'VB')), (('get', 'VB'), 'dobj', ('money', 'NN')), (('called', 'VBN'), 'dep', ('said', 'VBD')), (('said', 'VBD'), 'advmod', ('back', 'RB')), (('said', 'VBD'), 'dobj', ('policy', 'NN')), (('policy', 'NN'), 'compound', ('return', 'NN')), (('policy', 'NN'), 'amod', ('twenty', 'CD')), (('twenty', 'CD'), 'compound', ('23', 'CD')), (('called', 'VBN'), 'nsubj', ('purchase', 'NN')), (('purchase', 'NN'), 'nummod', ('three', 'CD')), (('purchase', 'NN'), 'compound', ('day', 'NN')), (('purchase', 'NN'), 'compound', ('date', 'NN'))]
[(('feel', 'VBP'), 'advmod', ('overall', 'RB')), (('feel', 'VBP'), 'xcomp', ('netbook', 'VB')), (('netbook', 'VB'), 'dobj', ('performance', 'NN')), (('performance', 'NN'), 'amod', ('poor', 'JJ')), (('performance', 'NN'), 'compound', ('quality', 'NN')), (('performance', 'NN'), 'amod', ('poor', 'JJ')), (('feel', 'VBP'), 'dep', ('work', 'VBP')), (('work', 'VBP'), 'mark', ('although', 'IN')), (('work', 'VBP'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'amod', ('great', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN'))]
[(('anything', 'NN'), 'neg', ('never', 'RB')), (('anything', 'NN'), 'advmod', ('really', 'RB')), (('anything', 'NN'), 'amod', ('big', 'JJ')), (('anything', 'NN'), 'amod', ('downloading', 'JJ')), (('anything', 'NN'), 'acl', ('worried', 'VBN')), (('worried', 'VBN'), 'xcomp', ('getting', 'VBG')), (('getting', 'VBG'), 'dobj', ('virus', 'NN')), (('virus', 'NN'), 'nmod', ('norton', 'NNS')), (('norton', 'NNS'), 'case', ('plus', 'CC')), (('norton', 'NNS'), 'compound', ('thought', 'NN')), (('norton', 'NNS'), 'amod', ('protected', 'VBN'))]
[(('changed', 'VBD'), 'nsubj', ('people', 'NNS')), (('changed', 'VBD'), 'ccomp', ('got', 'VBD')), (('got', 'VBD'), 'nsubj', ('spot', 'NN')), (('got', 'VBD'), 'dobj', ('piece', 'NN')), (('piece', 'NN'), 'amod', ('new', 'JJ')), (('piece', 'NN'), 'compound', ('arm', 'NN')), (('got', 'VBD'), 'nmod', ('receipt', 'NN')), (('receipt', 'NN'), 'advmod', ('even', 'RB')), (('receipt', 'NN'), 'compound', ('request', 'NN'))]
[(('surprised', 'VBD'), 'nsubj', ('display', 'NN')), (('display', 'NN'), 'compound', ('quality', 'NN')), (('surprised', 'VBD'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('performance', 'NN')), (('laptop', 'NN'), 'compound', ('quality', 'NN')), (('laptop', 'NN'), 'compound', ('hp', 'NN'))]
[(('iphotos', 'VBZ'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'amod', ('excellent', 'JJ')), (('program', 'NN'), 'acl', ('storing', 'VBG')), (('storing', 'VBG'), 'advcl', ('organizing', 'VBG')), (('organizing', 'VBG'), 'dobj', ('photo', 'NN'))]
[(('support', 'NN'), 'compound', ('product', 'NN')), (('support', 'NN'), 'dep', ('cost', 'NN')), (('cost', 'NN'), 'amod', ('poor', 'JJ')), (('cost', 'NN'), 'compound', ('phone', 'NN')), (('cost', 'NN'), 'compound', ('call', 'NN')), (('support', 'NN'), 'dep', ('distan', 'NN')), (('distan', 'NN'), 'amod', ('long', 'JJ'))]
[(('hour', 'NN'), 'nummod', ('10', 'CD')), (('hour', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('hour', 'NN'), 'dep', ('something', 'NN')), (('something', 'NN'), 'advmod', ('really', 'RB')), (('something', 'NN'), 'advmod', ('else', 'RB'))]
[(('xp', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'compound', ('osx', 'NN')), (('xp', 'VBP'), 'xcomp', ('running', 'VBG')), (('running', 'VBG'), 'dobj', ('time', 'NN'))]
[(('nightmare', 'NN'), 'compound', ('vista', 'NN'))]
[(('strength', 'NN'), 'dep', ('weakness', 'NN')), (('weakness', 'NN'), 'amod', ('shaped', 'JJ')), (('shaped', 'JJ'), 'advmod', ('well', 'RB')), (('weakness', 'NN'), 'amod', ('videocard', 'JJ')), (('videocard', 'JJ'), 'amod', ('bad', 'JJ'))]
[(('paint', 'VBP'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('externally', 'JJ')), (('keyboard', 'NN'), 'amod', ('key', 'JJ')), (('keyboard', 'NN'), 'acl', ('falling', 'VBG')), (('falling', 'VBG'), 'dobj', ('us', 'PRP')), (('paint', 'VBP'), 'ccomp', ('sit', 'VBP')), (('sit', 'VBP'), 'nsubj', ('hand', 'NN')), (('hand', 'NN'), 'compound', ('rubbing', 'NN')), (('hand', 'NN'), 'compound', ('button', 'NN')), (('hand', 'NN'), 'compound', ('mouse', 'NN')), (('hand', 'NN'), 'compound', ('pad', 'NN')), (('hand', 'NN'), 'dep', ('heals', 'NNS')), (('sit', 'VBP'), 'dep', ('screen', 'NN')), (('screen', 'NN'), 'dobj', ('glare', 'NN')), (('glare', 'NN'), 'amod', ('terrible', 'JJ'))]
[(('clock', 'NN'), 'dep', ('somehow', 'RB')), (('clock', 'NN'), 'compound', ('system', 'NN')), (('clock', 'NN'), 'acl', ('got', 'VBN')), (('got', 'VBN'), 'dobj', ('reboot', 'NN')), (('reboot', 'NN'), 'amod', ('messed', 'JJ'))]
[(('designed', 'VBN'), 'nsubj', ('way', 'NN')), (('way', 'NN'), 'amod', ('key', 'JJ')), (('way', 'NN'), 'amod', ('weird', 'JJ')), (('way', 'NN'), 'compound', ('place', 'NN')), (('designed', 'VBN'), 'advmod', ('large', 'JJ')), (('large', 'JJ'), 'dep', ('way', 'NN'))]
[(('window', 'NN'), 'advmod', ('also', 'RB')), (('window', 'NN'), 'case', ('like', 'IN')), (('window', 'NN'), 'amod', ('scroll', 'JJ')), (('window', 'NN'), 'acl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('trackpad', 'NN')), (('trackpad', 'NN'), 'nummod', ('two', 'CD')), (('trackpad', 'NN'), 'compound', ('finger', 'NN'))]
[(('keep', 'VBP'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('keep', 'VBP'), 'advmod', ('also', 'RB')), (('keep', 'VBP'), 'ccomp', ('think', 'VBP')), (('think', 'VBP'), 'nsubj', ('claim', 'NN')), (('think', 'VBP'), 'advmod', ('still', 'RB')), (('think', 'VBP'), 'xcomp', ('macbook', 'VB')), (('macbook', 'VB'), 'advmod', ('ahead', 'RB')), (('ahead', 'RB'), 'advmod', ('much', 'RB')), (('macbook', 'VB'), 'dobj', ('pack', 'NN')), (('pack', 'NN'), 'compound', ('rest', 'NN'))]
[(('feature', 'VB'), 'nmod', ('block', 'NN')), (('block', 'NN'), 'case', ('like', 'IN')), (('block', 'NN'), 'amod', ('font', 'JJ')), (('block', 'NN'), 'nmod', ('school', 'NN')), (('school', 'NN'), 'case', ('like', 'IN')), (('school', 'NN'), 'amod', ('old', 'JJ'))]
[(('wiped', 'VBD'), 'ccomp', ('installed', 'VBD')), (('installed', 'VBD'), 'nsubj', ('everything', 'NN')), (('everything', 'NN'), 'advmod', ('nearly', 'RB')), (('installed', 'VBD'), 'dobj', ('firefox', 'NN')), (('firefox', 'NN'), 'amod', ('openoffice', 'JJ')), (('installed', 'VBD'), 'xcomp', ('operating', 'VBG')), (('operating', 'VBG'), 'dobj', ('machine', 'NN')), (('machine', 'NN'), 'amod', ('efficient', 'JJ')), (('efficient', 'JJ'), 'advmod', ('incredibly', 'RB')), (('machine', 'NN'), 'amod', ('useful', 'JJ')), (('wiped', 'VBD'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('great', 'JJ'))]
[(('screen', 'VB'), 'xcomp', ('responsive', 'JJ')), (('responsive', 'JJ'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'compound', ('crystal', 'NN')), (('system', 'NN'), 'amod', ('clear', 'JJ'))]
[(('screen', 'VB'), 'xcomp', ('responsive', 'JJ')), (('responsive', 'JJ'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'compound', ('crystal', 'NN')), (('system', 'NN'), 'amod', ('clear', 'JJ'))]
[(('give', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('bad', 'JJ')), (('give', 'VBP'), 'xcomp', ('possible', 'JJ')), (('possible', 'JJ'), 'nsubj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('worst', 'JJS'))]
[(('called', 'VBN'), 'xcomp', ('good', 'JJ')), (('good', 'JJ'), 'nsubj', ('support', 'NN')), (('support', 'NN'), 'compound', ('customer', 'NN')), (('called', 'VBN'), 'dep', ('went', 'VBD')), (('went', 'VBD'), 'ccomp', ('affect', 'VBP')), (('affect', 'VBP'), 'nsubj', ('feature', 'NN')), (('feature', 'NN'), 'compound', ('safety', 'NN')), (('affect', 'VBP'), 'ccomp', ('chose', 'VBD')), (('chose', 'VBD'), 'nsubj', ('performance', 'NN')), (('called', 'VBN'), 'nsubj', ('message', 'NN')), (('message', 'NN'), 'nummod', ('hide', 'CD'))]
[(('make', 'VBP'), 'nsubj', ('flexibility', 'NN')), (('flexibility', 'NN'), 'amod', ('sheer', 'JJ')), (('flexibility', 'NN'), 'compound', ('power', 'NN')), (('make', 'VBP'), 'ccomp', ('techie', 'VB')), (('techie', 'VB'), 'nsubj', ('pro', 'NN')), (('pro', 'NN'), 'compound', ('macbook', 'NN')), (('techie', 'VB'), 'aux', ('must', 'MD'))]
[(('think', 'VBP'), 'advmod', ('honest', 'JJ')), (('think', 'VBP'), 'nsubj', ('idk', 'NN')), (('idk', 'NN'), 'nummod', ('faulty', 'CD')), (('idk', 'NN'), 'compound', ('equipment', 'NN')), (('idk', 'NN'), 'compound', ('something', 'NN'))]
[(('hate', 'VB'), 'dobj', ('screen', 'NN')), (('screen', 'NN'), 'compound', ('display', 'NN')), (('screen', 'NN'), 'acl', ('done', 'VBN')), (('done', 'VBN'), 'ccomp', ('change', 'VB')), (('change', 'VB'), 'nsubj', ('everything', 'NN')), (('change', 'VB'), 'aux', ('could', 'MD'))]
[(('take', 'VB'), 'advmod', ('long', 'RB')), (('take', 'VB'), 'ccomp', ('switched', 'VBN')), (('switched', 'VBN'), 'auxpass', ('get', 'VB')), (('switched', 'VBN'), 'dobj', ('fine', 'NN')), (('fine', 'NN'), 'compound', ('mac', 'NN')), (('fine', 'NN'), 'compound', ('computer', 'NN')), (('fine', 'NN'), 'compound', ('program', 'NN')), (('fine', 'NN'), 'compound', ('navigation', 'NN')), (('fine', 'NN'), 'nmod', ('function', 'NN')), (('function', 'NN'), 'case', ('like', 'IN')), (('function', 'NN'), 'compound', ('way', 'NN')), (('function', 'NN'), 'compound', ('laptop', 'NN')), (('function', 'NN'), 'amod', ('better', 'JJR')), (('better', 'JJR'), 'advmod', ('much', 'RB'))]
[(('tried', 'VBD'), 'nsubj', ('_', 'NNP')), (('tried', 'VBD'), 'xcomp', ('charge', 'VB')), (('charge', 'VB'), 'dobj', ('luck', 'NN')), (('luck', 'NN'), 'amod', ('different', 'JJ')), (('luck', 'NN'), 'compound', ('battery', 'NN'))]
[(('got', 'VBN'), 'advmod', ('back', 'RB')), (('got', 'VBN'), 'dep', ('built', 'VBD')), (('built', 'VBD'), 'ccomp', ('built', 'VBD')), (('built', 'VBD'), 'nsubj', ('webcam', 'NN')), (('built', 'VBD'), 'ccomp', ('touched', 'VBD')), (('touched', 'VBD'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'acl', ('shorting', 'VBG')), (('shorting', 'VBG'), 'dobj', ('anytime', 'RB')), (('touched', 'VBD'), 'ccomp', ('mean', 'VBP')), (('mean', 'VBP'), 'nsubj', ('mind', 'NN')), (('mind', 'NN'), 'compound', ('lid', 'NN')), (('mean', 'VBP'), 'ccomp', ('suffered', 'VBD')), (('suffered', 'VBD'), 'nsubj', ('fiance', 'NN')), (('fiance', 'NN'), 'compound', ('communication', 'NN')), (('fiance', 'NN'), 'acl', ('deployed', 'VBN')), (('suffered', 'VBD'), 'ccomp', ('reset', 'VB')), (('reset', 'VB'), 'nsubj', ('thru', 'NNP')), (('reset', 'VB'), 'aux', ('would', 'MD')), (('reset', 'VB'), 'advmod', ('constandly', 'RB')), (('reset', 'VB'), 'xcomp', ('able', 'JJ')), (('able', 'JJ'), 'nsubj', ('computer', 'NN')), (('got', 'VBN'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'compound', ('use', 'NN')), (('mic', 'NN'), 'compound', ('cam', 'NN')), (('mic', 'NN'), 'acl:relcl', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('anytime', 'RB'))]
[(('seems', 'VBZ'), 'xcomp', ('run', 'NN')), (('run', 'NN'), 'amod', ('slow', 'JJ')), (('run', 'NN'), 'compound', ('occassionally', 'NN')), (('seems', 'VBZ'), 'nsubj', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('many', 'JJ')), (('etc', 'NN'), 'compound', ('application', 'NN')), (('etc', 'NN'), 'compound', ('ie', 'NN')), (('etc', 'NN'), 'compound', ('internet', 'NN')), (('etc', 'NN'), 'compound', ('tab', 'NN')), (('etc', 'NN'), 'compound', ('program', 'NN')), (('etc', 'NN'), 'advmod', ('simultaneously', 'RB'))]
[(('create', 'VB'), 'aux', ('might', 'MD')), (('create', 'VB'), 'advmod', ('deep', 'RB')), (('deep', 'RB'), 'nmod:npmod', ('something', 'NN')), (('deep', 'RB'), 'nmod', ('window', 'NN')), (('window', 'NN'), 'case', ('within', 'IN')), (('create', 'VB'), 'dep', ('unable', 'JJ')), (('create', 'VB'), 'dobj', ('image', 'NN')), (('image', 'NN'), 'compound', ('disk', 'NN')), (('create', 'VB'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ'))]
[(('arent', 'NN'), 'compound', ('feature', 'NN')), (('arent', 'NN'), 'dep', ('wheel', 'NN')), (('wheel', 'NN'), 'amod', ('friendly', 'JJ')), (('wheel', 'NN'), 'compound', ('volume', 'NN')), (('arent', 'NN'), 'dep', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('sound', 'JJ')), (('etc', 'NN'), 'compound', ('quality', 'NN'))]
[(('make', 'VBP'), 'nsubj', ('_', 'NNP')), (('make', 'VBP'), 'advmod', ('way', 'RB')), (('way', 'RB'), 'advmod', ('literally', 'RB')), (('make', 'VBP'), 'ccomp', ('sing', 'VB')), (('sing', 'VB'), 'dobj', ('vista', 'NN'))]
[(('make', 'VBP'), 'nsubj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('window', 'NN')), (('make', 'VBP'), 'xcomp', ('unusable', 'JJ')), (('unusable', 'JJ'), 'nsubj', ('computer', 'NN')), (('unusable', 'JJ'), 'advmod', ('almost', 'RB')), (('make', 'VBP'), 'advcl', ('service', 'NN')), (('service', 'NN'), 'dep', ('online', 'NN'))]
[(('girlfriend', 'NN'), 'dep', ('however', 'RB')), (('girlfriend', 'NN'), 'acl', ('realized', 'VBN')), (('realized', 'VBN'), 'ccomp', ('hinge', 'VB')), (('hinge', 'VB'), 'nsubj', ('netbook', 'NN')), (('hinge', 'VB'), 'dobj', ('lcd', 'NN')), (('lcd', 'NN'), 'amod', ('open', 'JJ')), (('open', 'JJ'), 'advmod', ('loose', 'JJ')), (('loose', 'JJ'), 'advmod', ('bit', 'RB')), (('lcd', 'NN'), 'amod', ('close', 'JJ'))]
[(('purchased', 'VBN'), 'dobj', ('netbook', 'NN')), (('netbook', 'NN'), 'acl:relcl', ('crashed', 'VBD')), (('crashed', 'VBD'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('original', 'JJ')), (('laptop', 'NN'), 'compound', ('toshiba', 'NN')), (('crashed', 'VBD'), 'ccomp', ('expired', 'VBD')), (('expired', 'VBD'), 'nsubj', ('warranty', 'NN')), (('warranty', 'NN'), 'amod', ('right', 'JJ'))]
[(('changed', 'VBD'), 'dep', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('cosmetically', 'JJ')), (('changed', 'VBD'), 'nsubj', ('top', 'NN')), (('top', 'NN'), 'nummod', ('2', 'CD')), (('top', 'NN'), 'compound', ('function', 'NN')), (('top', 'NN'), 'compound', ('key', 'NN'))]
[(('expected', 'VBN'), 'nsubj', ('shorter', 'NNS')), (('shorter', 'NNS'), 'compound', ('battery', 'NN')), (('shorter', 'NNS'), 'compound', ('life', 'NN'))]
[(('interested', 'JJ'), 'advmod', ('hp', 'RB')), (('interested', 'JJ'), 'dep', ('selling', 'VBG')), (('selling', 'VBG'), 'xcomp', ('helping', 'VBG')), (('helping', 'VBG'), 'nsubj', ('netbook', 'NN')), (('netbook', 'NN'), 'amod', ('extended', 'JJ')), (('netbook', 'NN'), 'compound', ('warranty', 'NN')), (('netbook', 'NN'), 'compound', ('cost', 'NN')), (('helping', 'VBG'), 'dep', ('new', 'JJ')), (('helping', 'VBG'), 'dobj', ('fixing', 'VBG'))]
[(('semprom', 'NN'), 'compound', ('processor', 'NN')), (('semprom', 'NN'), 'compound', ('amd', 'NN')), (('semprom', 'NN'), 'dep', ('hd', 'NN')), (('hd', 'NN'), 'nummod', ('1', 'CD')), (('1', 'CD'), 'compound', ('2', 'CD')), (('hd', 'NN'), 'compound', ('ghz', 'NN')), (('hd', 'NN'), 'compound', ('bummer', 'NN')), (('hd', 'NN'), 'compound', ('power', 'NN')), (('hd', 'NN'), 'dep', ('computing', 'NN')), (('computing', 'NN'), 'amod', ('heavy', 'JJ'))]
[(('way', 'NN'), 'dep', ('screen', 'NN')), (('screen', 'NN'), 'amod', ('bigger', 'JJR')), (('screen', 'NN'), 'dep', ('hdmi', 'NNS')), (('hdmi', 'NNS'), 'amod', ('connect', 'JJ')), (('connect', 'JJ'), 'amod', ('able', 'JJ'))]
[(('feature', 'NN'), 'amod', ('overall', 'JJ')), (('feature', 'NN'), 'amod', ('poor', 'JJ')), (('feature', 'NN'), 'dep', ('performance', 'NN')), (('performance', 'NN'), 'amod', ('average', 'JJ')), (('performance', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('poor', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('feature', 'NN'), 'dep', ('poor', 'NN')), (('poor', 'NN'), 'amod', ('excellent', 'JJ')), (('poor', 'NN'), 'compound', ('price', 'NN')), (('poor', 'NN'), 'compound', ('value', 'NN'))]
[(('used', 'VBN'), 'nsubjpass', ('screen', 'NN')), (('screen', 'NN'), 'dep', ('little', 'JJ')), (('screen', 'NN'), 'amod', ('hated', 'VBN')), (('hated', 'VBN'), 'advmod', ('glary', 'RB')), (('screen', 'NN'), 'acl', ('clicking', 'VBG')), (('clicking', 'VBG'), 'dobj', ('button', 'NN')), (('used', 'VBN'), 'auxpass', ('got', 'VBD'))]
[(('turned', 'VBD'), 'nsubj', ('_', 'NNP')), (('turned', 'VBD'), 'nsubj', ('night', 'NN')), (('night', 'NN'), 'nummod', ('one', 'CD')), (('turned', 'VBD'), 'dobj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('freaking', 'VBG')), (('thing', 'NN'), 'acl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('steady', 'NNS')), (('steady', 'NNS'), 'amod', ('next', 'JJ')), (('steady', 'NNS'), 'compound', ('day', 'NN')), (('steady', 'NNS'), 'compound', ('turn', 'NN')), (('steady', 'NNS'), 'compound', ('gui', 'NN')), (('steady', 'NNS'), 'compound', ('screen', 'NN')), (('steady', 'NNS'), 'amod', ('dark', 'JJ')), (('steady', 'NNS'), 'compound', ('power', 'NN')), (('steady', 'NNS'), 'amod', ('light', 'JJ')), (('steady', 'NNS'), 'amod', ('steady', 'JJ')), (('steady', 'NNS'), 'amod', ('hard', 'JJ')), (('steady', 'NNS'), 'compound', ('drive', 'NN')), (('steady', 'NNS'), 'compound', ('light', 'NN')), (('steady', 'NNS'), 'acl', ('flashing', 'VBG')), (('flashing', 'VBG'), 'advmod', ('usually', 'RB'))]
[(('money', 'NN'), 'dep', ('fast', 'RB')), (('fast', 'RB'), 'nmod:npmod', ('use', 'NN')), (('use', 'NN'), 'nummod', ('_', 'CD')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('money', 'NN'), 'amod', ('great', 'JJ')), (('money', 'NN'), 'amod', ('graphic', 'JJ'))]
[(('use', 'NN'), 'compound', ('screen', 'NN')), (('use', 'NN'), 'amod', ('bright', 'JJ')), (('use', 'NN'), 'amod', ('vivid', 'JJ')), (('use', 'NN'), 'compound', ('keyboard', 'NN')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('use', 'NN'), 'dep', ('use', 'NN')), (('use', 'NN'), 'amod', ('important', 'JJ')), (('use', 'NN'), 'dep', ('typers', 'NNS')), (('typers', 'NNS'), 'amod', ('quick', 'JJ'))]
[(('computer', 'NN'), 'dep', ('well', 'RB')), (('well', 'RB'), 'ccomp', ('becomes', 'VBZ')), (('becomes', 'VBZ'), 'nsubj', ('play', 'NN')), (('play', 'NN'), 'amod', ('certain', 'JJ')), (('play', 'NN'), 'compound', ('game', 'NN')), (('becomes', 'VBZ'), 'xcomp', ('game', 'NN')), (('game', 'NN'), 'amod', ('hot', 'JJ')), (('game', 'NN'), 'compound', ('playing', 'NN'))]
[(('lot', 'NN'), 'dep', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('extra', 'JJ')), (('keyboard', 'NN'), 'compound', ('space', 'NN')), (('keyboard', 'NN'), 'amod', ('small', 'JJ')), (('small', 'JJ'), 'advmod', ('ridiculously', 'RB'))]
[(('switch', 'VB'), 'dobj', ('need', 'NN')), (('need', 'NN'), 'amod', ('top', 'JJ')), (('switch', 'VB'), 'dep', ('memorize', 'VB')), (('memorize', 'VB'), 'dobj', ('combination', 'NN')), (('combination', 'NN'), 'amod', ('key', 'JJ')), (('memorize', 'VB'), 'advcl', ('flicking', 'VBG')), (('flicking', 'VBG'), 'advmod', ('rather', 'RB')), (('flicking', 'VBG'), 'dobj', ('switch', 'NN'))]
[(('involves', 'VBZ'), 'nsubj', ('problem', 'NN')), (('problem', 'NN'), 'amod', ('second', 'JJ')), (('involves', 'VBZ'), 'ccomp', ('advertised', 'VBD')), (('advertised', 'VBD'), 'nsubj', ('battery', 'NN')), (('advertised', 'VBD'), 'ccomp', ('show', 'VBP')), (('show', 'VBP'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'compound', ('storage', 'NN')), (('life', 'NN'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('11', 'CD')), (('life', 'NN'), 'amod', ('charged', 'VBN')), (('charged', 'VBN'), 'advmod', ('fully', 'RB')), (('show', 'VBP'), 'dobj', ('service', 'NN')), (('service', 'NN'), 'nummod', ('7', 'CD')), (('service', 'NN'), 'compound', ('hour', 'NN'))]
[(('sent', 'VBD'), 'nsubj', ('asus', 'NNS')), (('asus', 'NNS'), 'nummod', ('2', 'CD')), (('asus', 'NNS'), 'compound', ('month', 'NN')), (('asus', 'NNS'), 'compound', ('complaint', 'NN')), (('sent', 'VBD'), 'advmod', ('finally', 'RB')), (('sent', 'VBD'), 'iobj', ('power', 'NN')), (('power', 'NN'), 'amod', ('right', 'JJ')), (('sent', 'VBD'), 'dobj', ('techie', 'NN')), (('techie', 'NN'), 'compound', ('supply', 'NN'))]
[(('clear', 'VB'), 'dobj', ('everything', 'NN')), (('everything', 'NN'), 'compound', ('picture', 'NN'))]
[(('would', 'MD'), 'aux', ('could', 'MD')), (('would', 'MD'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('perfect', 'JJ')), (('would', 'MD'), 'xcomp', ('ddr5', 'VB')), (('ddr5', 'VB'), 'dep', ('faster', 'JJR')), (('ddr5', 'VB'), 'nsubj', ('5850', 'NNS')), (('5850', 'NNS'), 'compound', ('system', 'NN')), (('5850', 'NNS'), 'compound', ('memory', 'NN')), (('5850', 'NNS'), 'compound', ('radeon', 'NN')), (('ddr5', 'VB'), 'aux', ('would', 'MD')), (('ddr5', 'VB'), 'advcl', ('ddr3', 'JJ')), (('ddr3', 'JJ'), 'advmod', ('instead', 'RB'))]
[(('think', 'VB'), 'dobj', ('camera', 'NN')), (('think', 'VB'), 'dep', ('forgot', 'VBD')), (('forgot', 'VBD'), 'nsubj', ('requirement', 'NN')), (('requirement', 'NN'), 'nummod', ('one', 'CD')), (('forgot', 'VBD'), 'dobj', ('one', 'NN')), (('one', 'NN'), 'compound', ('check', 'NN')), (('one', 'NN'), 'compound', ('specification', 'NN')), (('one', 'NN'), 'acl', ('purchased', 'VBN'))]
[(('bought', 'VBD'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'compound', ('mom', 'NN')), (('life', 'NN'), 'compound', ('report', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('bought', 'VBD'), 'nmod:tmod', ('day', 'NN')), (('day', 'NN'), 'amod', ('last', 'JJ')), (('bought', 'VBD'), 'nsubj', ('excellent', 'NNP')), (('excellent', 'NNP'), 'amod', ('lightweight', 'JJ')), (('excellent', 'NNP'), 'compound', ('response', 'NN')), (('excellent', 'NNP'), 'compound', ('computing', 'NN')), (('excellent', 'NNP'), 'compound', ('internet', 'NN')), (('excellent', 'NNP'), 'compound', ('focused', 'NNP')), (('excellent', 'NNP'), 'compound', ('activity', 'NN')), (('excellent', 'NNP'), 'compound', ('mail', 'NN')), (('excellent', 'NNP'), 'compound', ('research', 'NN')), (('excellent', 'NNP'), 'compound', ('etc', 'NNP'))]
[(('advertised', 'VBD'), 'dep', ('laptop', 'JJ')), (('advertised', 'VBD'), 'nsubj', ('look', 'NN')), (('look', 'NN'), 'nummod', ('15', 'CD')), (('look', 'NN'), 'compound', ('casing', 'NN')), (('advertised', 'VBD'), 'nmod', ('17', 'CD')), (('17', 'CD'), 'case', ('like', 'IN'))]
[(('change', 'NN'), 'nummod', ('1', 'CD')), (('change', 'NN'), 'dep', ('window', 'NN')), (('window', 'NN'), 'amod', ('desktop', 'JJ')), (('window', 'NN'), 'compound', ('background', 'NN')), (('change', 'NN'), 'dep', ('function', 'NN')), (('function', 'NN'), 'nummod', ('7', 'CD')), (('function', 'NN'), 'amod', ('starter', 'JJ')), (('function', 'NN'), 'compound', ('support', 'NN'))]
[(('processor', 'NN'), 'dep', ('load', 'NN')), (('load', 'NN'), 'amod', ('quick', 'JJ')), (('load', 'NN'), 'amod', ('effective', 'JJ')), (('processor', 'NN'), 'dep', ('application', 'NN')), (('application', 'NN'), 'amod', ('webpage', 'JJ'))]
[(('get', 'VBP'), 'dep', ('price', 'NN')), (('get', 'VBP'), 'dobj', ('asus', 'NNS')), (('asus', 'NNS'), 'compound', ('lot', 'NN')), (('get', 'VBP'), 'nsubj', ('re', 'NN')), (('re', 'NN'), 'nummod', ('1920x1080', 'CD'))]
[(('buy', 'VB'), 'advmod', ('best', 'RB')), (('buy', 'VB'), 'ccomp', ('respect', 'VB')), (('respect', 'VB'), 'nsubj', ('service', 'NN')), (('service', 'NN'), 'nummod', ('5', 'CD')), (('service', 'NN'), 'compound', ('star', 'NN')), (('service', 'NN'), 'compound', ('sale', 'NN')), (('respect', 'VB'), 'dobj', ('men', 'NNS')), (('men', 'NNS'), 'amod', ('old', 'JJ')), (('respect', 'VB'), 'dep', ('owes', 'VBZ')), (('owes', 'VBZ'), 'nsubj', ('support', 'NN')), (('support', 'NN'), 'amod', ('familiar', 'JJ')), (('support', 'NN'), 'compound', ('technology', 'NN')), (('support', 'NN'), 'amod', ('dell', 'JJ')), (('support', 'NN'), 'compound', ('computer', 'NN')), (('support', 'NN'), 'nummod', ('3', 'CD')), (('support', 'NN'), 'compound', ('star', 'NN')), (('support', 'NN'), 'compound', ('dell', 'NN')), (('owes', 'VBZ'), 'dobj', ('couple', 'NN'))]
[(('asus', 'VBZ'), 'nsubj', ('logon', 'NN')), (('logon', 'NN'), 'amod', ('facial', 'JJ')), (('logon', 'NN'), 'compound', ('recognition', 'NN')), (('logon', 'NN'), 'compound', ('work', 'NN')), (('logon', 'NN'), 'compound', ('window', 'NN')), (('logon', 'NN'), 'advmod', ('either', 'RB'))]
[(('construction', 'NN'), 'amod', ('unibody', 'JJ')), (('construction', 'NN'), 'dep', ('beautiful', 'NNS')), (('beautiful', 'NNS'), 'amod', ('solid', 'JJ')), (('beautiful', 'NNS'), 'amod', ('sleek', 'JJ'))]
[(('buy', 'VBP'), 'nsubj', ('store', 'NN')), (('store', 'NN'), 'amod', ('lucky', 'JJ')), (('store', 'NN'), 'amod', ('local', 'JJ')), (('store', 'NN'), 'acl', ('selling', 'VBG')), (('selling', 'VBG'), 'advmod', ('best', 'RB')), (('best', 'RB'), 'nmod:npmod', ('2000', 'CD')), (('selling', 'VBG'), 'ccomp', ('buy', 'VB')), (('buy', 'VB'), 'xcomp', ('able', 'JJ')), (('able', 'JJ'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('matched', 'VBN')), (('buy', 'VBP'), 'dobj', ('1000', 'CD')), (('1000', 'CD'), 'nummod', ('one', 'CD'))]
[(('screen', 'NN'), 'amod', ('gorgeous', 'JJ')), (('screen', 'NN'), 'dep', ('good', 'JJ')), (('good', 'JJ'), 'advmod', ('yummy', 'RB'))]
[(('price', 'NN'), 'amod', ('cheaper', 'JJR')), (('price', 'NN'), 'dep', ('product', 'NN')), (('product', 'NN'), 'amod', ('equal', 'JJ')), (('product', 'NN'), 'amod', ('cheap', 'JJ'))]
[(('find', 'VB'), 'xcomp', ('better', 'JJR')), (('better', 'JJR'), 'nsubj', ('performance', 'NN')), (('performance', 'NN'), 'amod', ('many', 'JJ')), (('performance', 'NN'), 'compound', ('laptop', 'NN')), (('better', 'JJR'), 'advmod', ('even', 'RB')), (('better', 'JJR'), 'ccomp', ('find', 'VB')), (('find', 'VB'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('lower', 'JJR')), (('find', 'VB'), 'aux', ('can', 'MD')), (('find', 'VB'), 'neg', ('not', 'RB')), (('find', 'VB'), 'xcomp', ('look', 'VB')), (('look', 'VB'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'amod', ('easy', 'JJ')), (('mac', 'NN'), 'compound', ('application', 'NN')), (('mac', 'NN'), 'compound', ('experience', 'NN'))]
[(('use', 'VBP'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'compound', ('iphoto', 'NN')), (('use', 'VBP'), 'nsubj', ('expert', 'NN')), (('expert', 'NN'), 'amod', ('great', 'JJ')), (('expert', 'NN'), 'compound', ('program', 'NN')), (('expert', 'NN'), 'compound', ('anyone', 'NN')), (('expert', 'NN'), 'compound', ('photography', 'NN')), (('expert', 'NN'), 'amod', ('amateur', 'JJ')), (('expert', 'NN'), 'advmod', ('alike', 'RB'))]
[(('wish', 'VB'), 'ccomp', ('came', 'VBD')), (('came', 'VBD'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'compound', ('iwork', 'NN')), (('office', 'NN'), 'compound', ('m', 'NN')), (('came', 'VBD'), 'ccomp', ('come', 'VBP')), (('come', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'compound', ('mac', 'NN')), (('office', 'NN'), 'compound', ('m', 'NN')), (('come', 'VBP'), 'advmod', ('even', 'RB')), (('come', 'VBP'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('pc', 'NN'))]
[(('student', 'NN'), 'dep', ('also', 'RB')), (('student', 'NN'), 'amod', ('good', 'JJ')), (('student', 'NN'), 'compound', ('college', 'NN')), (('student', 'NN'), 'acl:relcl', ('need', 'VBP')), (('need', 'VBP'), 'dobj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('easy', 'JJ')), (('easy', 'JJ'), 'amod', ('reliable', 'JJ')), (('computer', 'NN'), 'compound', ('use', 'NN'))]
[(('startup', 'VBZ'), 'nsubj', ('shutdown', 'NN')), (('shutdown', 'NN'), 'nummod', ('30', 'CD')), (('shutdown', 'NN'), 'amod', ('second', 'JJ')), (('shutdown', 'NN'), 'nummod', ('2', 'CD')), (('startup', 'VBZ'), 'dep', ('resume', 'VB')), (('resume', 'VB'), 'advmod', ('second', 'RB')), (('second', 'RB'), 'nmod:npmod', ('4', 'CD')), (('resume', 'VB'), 'dobj', ('sleep', 'NN')), (('sleep', 'NN'), 'nummod', ('0', 'CD')), (('sleep', 'NN'), 'amod', ('second', 'JJ')), (('second', 'JJ'), 'compound', ('2', 'CD'))]
[(('got', 'VBD'), 'advmod', ('early', 'RB')), (('got', 'VBD'), 'aux', ('may', 'MD')), (('got', 'VBD'), 'advmod', ('back', 'RB')), (('back', 'RB'), 'dep', ('back', 'NN')), (('back', 'RB'), 'dep', ('time', 'NN')), (('got', 'VBD'), 'dobj', ('day', 'NN')), (('day', 'NN'), 'nummod', ('1', 'CD')), (('day', 'NN'), 'acl:relcl', ('sent', 'VBD')), (('sent', 'VBD'), 'nsubj', ('issue', 'NN')), (('issue', 'NN'), 'amod', ('new', 'JJ')), (('sent', 'VBD'), 'advmod', ('back', 'RB')), (('sent', 'VBD'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'amod', ('6th', 'JJ')), (('got', 'VBD'), 'nsubj', ('repair', 'NN')), (('repair', 'NN'), 'amod', ('expedited', 'JJ')), (('repair', 'NN'), 'acl', ('supposed', 'VBN')), (('supposed', 'VBN'), 'nmod', ('day', 'NN')), (('day', 'NN'), 'case', ('without', 'IN')), (('day', 'NN'), 'nummod', ('3', 'CD')), (('day', 'NN'), 'acl', ('supposed', 'VBN')), (('supposed', 'VBN'), 'dobj', ('tech', 'NN')), (('tech', 'NN'), 'amod', ('fixed', 'JJ')), (('tech', 'NN'), 'amod', ('senior', 'JJ'))]
[(('purchased', 'VBD'), 'advmod', ('previously', 'RB')), (('purchased', 'VBD'), 'dobj', ('13', 'CD')), (('purchased', 'VBD'), 'dep', ('macbook', 'VB')), (('macbook', 'VB'), 'dobj', ('nvidia', 'NN')), (('nvidia', 'NN'), 'amod', ('pro', 'JJ')), (('nvidia', 'NN'), 'amod', ('spec', 'JJ')), (('nvidia', 'NN'), 'compound', ('aluminum', 'NN')), (('nvidia', 'NN'), 'compound', ('style', 'NN')), (('purchased', 'VBD'), 'nsubj', ('issue', 'NN')), (('issue', 'NN'), 'nummod', ('9800', 'CD')), (('issue', 'NN'), 'amod', ('mistaken', 'JJ')), (('issue', 'NN'), 'amod', ('major', 'JJ')), (('issue', 'NN'), 'compound', ('heating', 'NN'))]
[(('gave', 'VBD'), 'nsubj', ('attempt', 'NN')), (('attempt', 'NN'), 'amod', ('numerous', 'JJ')), (('attempt', 'NN'), 'acl', ('trying', 'VBG')), (('trying', 'VBG'), 'advcl', ('setting', 'VBG')), (('setting', 'VBG'), 'case', ('including', 'VBG')), (('setting', 'VBG'), 'dobj', ('setup', 'NN')), (('setup', 'NN'), 'compound', ('clock', 'NN')), (('setup', 'NN'), 'compound', ('bios', 'NNS')), (('setting', 'VBG'), 'advmod', ('directly', 'RB')), (('gave', 'VBD'), 'xcomp', ('techie', 'JJ'))]
[(('use', 'VBP'), 'advmod', ('also', 'RB')), (('use', 'VBP'), 'ccomp', ('run', 'VBP')), (('run', 'VBP'), 'nsubj', ('paralles', 'NNS')), (('run', 'VBP'), 'ccomp', ('xp', 'VBP')), (('xp', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('virtual', 'JJ')), (('window', 'NN'), 'compound', ('machine', 'NN')), (('xp', 'VBP'), 'xcomp', ('server', 'NN')), (('server', 'NN'), 'nsubj', ('enterprise', 'NN')), (('enterprise', 'NN'), 'amod', ('professional', 'JJ')), (('enterprise', 'NN'), 'compound', ('window', 'NN')), (('enterprise', 'NN'), 'nummod', ('7', 'CD')), (('enterprise', 'NN'), 'compound', ('home', 'NN')), (('enterprise', 'NN'), 'amod', ('premium', 'JJ')), (('enterprise', 'NN'), 'compound', ('window', 'NN')), (('enterprise', 'NN'), 'compound', ('server', 'NN')), (('server', 'NN'), 'nummod', ('2003', 'CD')), (('server', 'NN'), 'compound', ('window', 'NN')), (('use', 'VBP'), 'nsubj', ('enterprise', 'NN')), (('enterprise', 'NN'), 'nummod', ('2008', 'CD'))]
[(('keyboard', 'NN'), 'amod', ('good', 'JJ')), (('keyboard', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('long', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'dep', ('window', 'NN')), (('window', 'NN'), 'amod', ('hard', 'JJ')), (('hard', 'JJ'), 'dep', ('largest', 'JJS')), (('window', 'NN'), 'compound', ('drive', 'NN')), (('keyboard', 'NN'), 'dep', ('7', 'CD'))]
[(('user', 'NN'), 'dep', ('also', 'RB')), (('user', 'NN'), 'nummod', ('one', 'CD')), (('user', 'NN'), 'acl', ('mentioned', 'VBN')), (('mentioned', 'VBN'), 'dobj', ('macbook', 'NN')), (('macbook', 'NN'), 'compound', ('edge', 'NN')), (('macbook', 'NN'), 'acl:relcl', ('spend', 'VBP')), (('spend', 'VBP'), 'nsubj', ('money', 'NN')), (('money', 'NN'), 'amod', ('sharp', 'JJ')), (('spend', 'VBP'), 'ccomp', ('seem', 'VBP')), (('seem', 'VBP'), 'nsubj', ('shell', 'NN')), (('shell', 'NN'), 'nummod', ('one', 'CD')), (('shell', 'NN'), 'amod', ('incase', 'JJ')), (('seem', 'VBP'), 'xcomp', ('problem', 'NN'))]
[(('scored', 'VBD'), 'nsubj', ('business', 'NN')), (('business', 'NN'), 'amod', ('great', 'JJ')), (('business', 'NN'), 'compound', ('running', 'NN')), (('business', 'NN'), 'compound', ('vista', 'NN')), (('scored', 'VBD'), 'ccomp', ('score', 'VBP')), (('score', 'VBP'), 'nsubj', ('index', 'NN')), (('index', 'NN'), 'nummod', ('5', 'CD')), (('index', 'NN'), 'amod', ('x', 'JJ')), (('index', 'NN'), 'acl', ('seen', 'VBN')), (('seen', 'VBN'), 'neg', ('never', 'RB')), (('seen', 'VBN'), 'dobj', ('total', 'NN')), (('total', 'NN'), 'compound', ('window', 'NN')), (('total', 'NN'), 'compound', ('machine', 'NN')), (('score', 'VBP'), 'dobj', ('5', 'CD'))]
[(('navigate', 'NNPS'), 'amod', ('easy', 'JJ')), (('easy', 'JJ'), 'amod', ('secure', 'JJ'))]
[(('resolution', 'NN'), 'dep', ('higher', 'JJR')), (('higher', 'JJR'), 'advmod', ('even', 'RB')), (('resolution', 'NN'), 'dep', ('market', 'NN')), (('market', 'NN'), 'amod', ('laptop', 'JJ'))]
[(('web', 'VBN'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'nummod', ('10', 'CD')), (('life', 'NN'), 'compound', ('hour', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('web', 'VBN'), 'xcomp', ('browsing', 'VBG')), (('browsing', 'VBG'), 'dobj', ('editing', 'NN')), (('editing', 'NN'), 'compound', ('word', 'NN')), (('browsing', 'VBG'), 'advcl', ('making', 'VBG')), (('making', 'VBG'), 'dobj', ('movie', 'NN')), (('movie', 'NN'), 'amod', ('perfect', 'JJ')), (('movie', 'NN'), 'compound', ('classroom', 'NN')), (('movie', 'NN'), 'compound', ('office', 'NN')), (('movie', 'NN'), 'compound', ('term', 'NN')), (('movie', 'NN'), 'compound', ('gaming', 'NN')), (('movie', 'NN'), 'acl', ('playing', 'VBG')), (('playing', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('5', 'CD'))]
[(('delivery', 'NN'), 'advmod', ('early', 'RB'))]
[(('feature', 'NN'), 'amod', ('many', 'JJ')), (('feature', 'NN'), 'amod', ('wonderful', 'JJ')), (('feature', 'NN'), 'dep', ('benefit', 'VB')), (('benefit', 'VB'), 'dobj', ('macbook', 'NN')), (('macbook', 'NN'), 'amod', ('new', 'JJ'))]
[(('book', 'NN'), 'compound', ('machine', 'NN')), (('book', 'NN'), 'compound', ('bluray', 'NN')), (('book', 'NN'), 'compound', ('player', 'NN')), (('book', 'NN'), 'dep', ('mention', 'VB')), (('mention', 'VB'), 'dobj', ('hdtv', 'NNS')), (('hdtv', 'NNS'), 'amod', ('connect', 'JJ'))]
[(('computer', 'NN'), 'compound', ('use', 'NN')), (('computer', 'NN'), 'dep', ('print', 'NN')), (('print', 'NN'), 'advmod', ('basically', 'RB')), (('print', 'NN'), 'compound', ('check', 'NN')), (('print', 'NN'), 'compound', ('email', 'NN')), (('print', 'NN'), 'compound', ('surf', 'NN')), (('print', 'NN'), 'compound', ('web', 'NN')), (('computer', 'NN'), 'dep', ('paper', 'NN')), (('paper', 'NN'), 'compound', ('coupon', 'NN')), (('paper', 'NN'), 'compound', ('college', 'NN'))]
[(('carry', 'VBP'), 'nsubj', ('bulky', 'NNS')), (('bulky', 'NNS'), 'amod', ('heavy', 'JJ')), (('carry', 'VBP'), 'advmod', ('hard', 'RB')), (('carry', 'VBP'), 'dobj', ('size', 'NN'))]
[(('even', 'RB'), 'dep', ('playing', 'VBG')), (('playing', 'VBG'), 'mark', ('like', 'IN')), (('playing', 'VBG'), 'dobj', ('game', 'NN')), (('game', 'NN'), 'amod', ('online', 'JJ')), (('game', 'NN'), 'dep', ('window', 'NN')), (('window', 'NN'), 'amod', ('wonderful', 'JJ')), (('window', 'NN'), 'compound', ('feature', 'NN')), (('window', 'NN'), 'compound', ('dualboot', 'NN'))]
[(('gotten', 'VBN'), 'nsubj', ('past', 'NN')), (('gotten', 'VBN'), 'iobj', ('sandpaper', 'NN')), (('sandpaper', 'NN'), 'amod', ('superfine', 'JJ')), (('gotten', 'VBN'), 'dobj', ('edge', 'NN')), (('edge', 'NN'), 'amod', ('fixed', 'VBN')), (('edge', 'NN'), 'acl', ('rounding', 'VBG'))]
[(('function', 'NN'), 'compound', ('love', 'NN')), (('function', 'NN'), 'compound', ('size', 'NN')), (('function', 'NN'), 'compound', ('keyboard', 'NN'))]
[(('issue', 'VB'), 'ccomp', ('increase', 'VB')), (('increase', 'VB'), 'nsubj', ('resolution', 'NN')), (('resolution', 'NN'), 'nummod', ('1', 'CD')), (('resolution', 'NN'), 'compound', ('screen', 'NN')), (('resolution', 'NN'), 'compound', ('video', 'NN')), (('increase', 'VB'), 'iobj', ('resolution', 'NN')), (('resolution', 'NN'), 'amod', ('higher', 'JJR')), (('increase', 'VB'), 'dobj', ('60', 'CD')), (('60', 'CD'), 'nummod', ('1024', 'CD')), (('60', 'CD'), 'amod', ('x', 'JJ'))]
[(('use', 'VBP'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('simple', 'JJ')), (('simple', 'JJ'), 'advmod', ('relatively', 'RB')), (('use', 'VBP'), 'advcl', ('bought', 'VBD')), (('bought', 'VBD'), 'mark', ('though', 'IN')), (('bought', 'VBD'), 'dobj', ('dummy', 'NN')), (('dummy', 'NN'), 'compound', ('mac', 'NN')), (('bought', 'VBD'), 'advmod', ('well', 'RB')), (('bought', 'VBD'), 'nmod', ('2', 'CD')), (('2', 'CD'), 'case', ('worth', 'IN'))]
[(('carry', 'VBP'), 'dep', ('lightweight', 'JJ')), (('lightweight', 'JJ'), 'amod', ('laptop', 'JJ')), (('carry', 'VBP'), 'advmod', ('easily', 'RB')), (('carry', 'VBP'), 'advmod', ('around', 'RB')), (('carry', 'VBP'), 'dep', ('knapsack', 'VB')), (('knapsack', 'VB'), 'dobj', ('book', 'NN')), (('book', 'NN'), 'amod', ('full', 'JJ')), (('book', 'NN'), 'compound', ('text', 'NN')), (('knapsack', 'VB'), 'advmod', ('barely', 'RB')), (('carry', 'VBP'), 'nsubj', ('weight', 'NN')), (('weight', 'NN'), 'nummod', ('add', 'CD'))]
[(('got', 'VBD'), 'dobj', ('assurance', 'NN')), (('got', 'VBD'), 'nsubj', ('people', 'NNS')), (('people', 'NNS'), 'nummod', ('2', 'CD')), (('people', 'NNS'), 'amod', ('different', 'JJ')), (('people', 'NNS'), 'acl', ('remaining', 'VBG')), (('remaining', 'VBG'), 'ccomp', ('transfer', 'VB')), (('transfer', 'VB'), 'nsubj', ('warranty', 'NN')), (('warranty', 'NN'), 'nummod', ('10', 'CD')), (('warranty', 'NN'), 'compound', ('month', 'NN')), (('transfer', 'VB'), 'aux', ('would', 'MD')), (('transfer', 'VB'), 'dobj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('new', 'JJ'))]
[(('arm', 'VB'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'amod', ('velcro', 'JJ')), (('use', 'NN'), 'amod', ('torn', 'JJ')), (('use', 'NN'), 'nummod', ('one', 'CD'))]
[(('program', 'NN'), 'amod', ('many', 'JJ')), (('program', 'NN'), 'amod', ('great', 'JJ')), (('program', 'NN'), 'dep', ('iphotos', 'NNS')), (('iphotos', 'NNS'), 'amod', ('ilife', 'JJ')), (('program', 'NN'), 'dep', ('others', 'NNS'))]
[(('speed', 'VB'), 'dobj', ('satisfied', 'NNS')), (('satisfied', 'NNS'), 'amod', ('incredible', 'JJ'))]
[(('impressed', 'VBD'), 'advmod', ('really', 'RB')), (('impressed', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'nummod', ('quality', 'CD')), (('computer', 'NN'), 'compound', ('performance', 'NN')), (('computer', 'NN'), 'compound', ('price', 'NN'))]
[(('pay', 'NN'), 'amod', ('dell', 'JJ')), (('pay', 'NN'), 'compound', ('customer', 'NN')), (('pay', 'NN'), 'compound', ('disservice', 'NN')), (('pay', 'NN'), 'compound', ('insult', 'NN')), (('pay', 'NN'), 'compound', ('customer', 'NN')), (('pay', 'NN'), 'dep', ('money', 'NN')), (('money', 'NN'), 'amod', ('good', 'JJ')), (('pay', 'NN'), 'dep', ('product', 'NN')), (('product', 'NN'), 'amod', ('shoddy', 'JJ'))]
[(('love', 'VBP'), 'xcomp', ('build', 'VB')), (('build', 'VB'), 'advmod', ('solid', 'RB')), (('build', 'VB'), 'dobj', ('light', 'NN')), (('love', 'VBP'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'nummod', ('wt', 'CD')), (('life', 'NN'), 'amod', ('excellent', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN'))]
[(('bought', 'VBD'), 'dobj', ('anticipation', 'NN')), (('anticipation', 'NN'), 'amod', ('logitech', 'JJ')), (('anticipation', 'NN'), 'amod', ('desktop', 'JJ')), (('anticipation', 'NN'), 'compound', ('set', 'NN')), (('anticipation', 'NN'), 'acl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'compound', ('mbp', 'NN')), (('use', 'NN'), 'acl', ('touchpad', 'VBN')), (('bought', 'VBD'), 'nsubj', ('time', 'NN')), (('time', 'NN'), 'nummod', ('90', 'CD'))]
[(('arent', 'NN'), 'compound', ('feature', 'NN')), (('arent', 'NN'), 'dep', ('wheel', 'NN')), (('wheel', 'NN'), 'amod', ('friendly', 'JJ')), (('wheel', 'NN'), 'compound', ('volume', 'NN')), (('arent', 'NN'), 'dep', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('sound', 'JJ')), (('etc', 'NN'), 'compound', ('quality', 'NN'))]
[(('window', 'VBZ'), 'nsubj', ('opinion', 'NN')), (('opinion', 'NN'), 'nummod', ('7', 'CD')), (('opinion', 'NN'), 'amod', ('starter', 'JJ')), (('window', 'VBZ'), 'dep', ('think', 'VB')), (('think', 'VB'), 'advmod', ('great', 'JJ')), (('great', 'JJ'), 'dep', ('way', 'NN')), (('think', 'VB'), 'xcomp', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('basic', 'NN')), (('basic', 'NN'), 'amod', ('netbook', 'JJ')), (('basic', 'NN'), 'amod', ('basic', 'JJ')), (('basic', 'NN'), 'amod', ('basic', 'JJ'))]
[(('called', 'VBD'), 'nsubj', ('application', 'NN')), (('called', 'VBD'), 'ccomp', ('allows', 'VBZ')), (('allows', 'VBZ'), 'nsubj', ('camp', 'NN')), (('camp', 'NN'), 'compound', ('boot', 'NN')), (('allows', 'VBZ'), 'xcomp', ('add', 'VB')), (('add', 'VB'), 'xcomp', ('x', 'SYM')), (('x', 'SYM'), 'nsubj', ('o', 'NN')), (('o', 'NN'), 'det', ('another', 'DT')), (('x', 'SYM'), 'nmod', ('window', 'NN')), (('window', 'NN'), 'case', ('like', 'IN'))]
[(('stand', 'VBP'), 'nsubj', ('apple', 'NN')), (('apple', 'NN'), 'acl', ('saving', 'VBG')), (('saving', 'VBG'), 'dobj', ('fact', 'NN')), (('fact', 'NN'), 'compound', ('grace', 'NN')), (('saving', 'VBG'), 'advmod', ('least', 'JJS')), (('stand', 'VBP'), 'nmod', ('support', 'NN')), (('support', 'NN'), 'case', ('behind', 'IN')), (('support', 'NN'), 'compound', ('product', 'NN')), (('stand', 'VBP'), 'xcomp', ('justify', 'VB')), (('justify', 'VB'), 'dep', ('great', 'JJ')), (('justify', 'VB'), 'aux', ('would', 'MD')), (('justify', 'VB'), 'nsubj', ('reliable', 'NNS')), (('reliable', 'NNS'), 'amod', ('nice', 'JJ')), (('reliable', 'NNS'), 'compound', ('product', 'NN')), (('justify', 'VB'), 'dobj', ('premium', 'NN'))]
[(('got', 'VBD'), 'advmod', ('even', 'RB')), (('got', 'VBD'), 'dobj', ('son', 'NN')), (('son', 'NN'), 'amod', ('teenage', 'JJ')), (('got', 'VBD'), 'nsubj', ('offer', 'NN')), (('offer', 'NN'), 'nummod', ('one', 'CD')), (('offer', 'NN'), 'compound', ('feature', 'NN')), (('got', 'VBD'), 'nmod', ('band', 'NN')), (('band', 'NN'), 'case', ('like', 'IN')), (('band', 'NN'), 'amod', ('ichat', 'JJ')), (('band', 'NN'), 'compound', ('photobooth', 'NN')), (('band', 'NN'), 'compound', ('garage', 'NN'))]
[(('_', 'VBG'), 'ccomp', ('deal', 'VB')), (('deal', 'VB'), 'nsubj', ('service', 'NN')), (('service', 'NN'), 'compound', ('toshiba', 'NN')), (('service', 'NN'), 'compound', ('customer', 'NN')), (('deal', 'VB'), 'advmod', ('indirectly', 'RB')), (('deal', 'VB'), 'dobj', ('problem', 'NN')), (('deal', 'VB'), 'advmod', ('constantly', 'RB')), (('deal', 'VB'), 'xcomp', ('tranferring', 'VBG')), (('tranferring', 'VBG'), 'dobj', ('country', 'NN')), (('country', 'NN'), 'nummod', ('one', 'CD')), (('country', 'NN'), 'acl:relcl', ('called', 'VBD')), (('called', 'VBD'), 'nsubj', ('kidding', 'NN')), (('kidding', 'NN'), 'det', ('another', 'DT')), (('called', 'VBD'), 'dobj', ('hour', 'NN')), (('hour', 'NN'), 'amod', ('different', 'JJ')), (('called', 'VBD'), 'nmod:tmod', ('day', 'NN')), (('_', 'VBG'), 'dep', ('get', 'VBP')), (('get', 'VBP'), 'dobj', ('someone', 'NN')), (('_', 'VBG'), 'nsubj', ('country', 'NN')), (('country', 'NN'), 'advmod', ('else', 'RB')), (('country', 'NN'), 'det', ('another', 'DT')), (('country', 'NN'), 'acl', ('trying', 'VBG')), (('trying', 'VBG'), 'ccomp', ('tell', 'VB')), (('tell', 'VB'), 'aux', ('get', 'VB')), (('tell', 'VB'), 'dobj', ('story', 'NN')), (('story', 'NN'), 'compound', ('life', 'NN')), (('country', 'NN'), 'acl', ('call', 'VBP')), (('call', 'VBP'), 'mark', ('since', 'IN')), (('call', 'VBP'), 'csubj', ('make', 'VB')), (('make', 'VB'), 'xcomp', ('sound', 'JJ')), (('sound', 'JJ'), 'nmod', ('list', 'NN')), (('list', 'NN'), 'case', ('like', 'IN')), (('list', 'NN'), 'compound', ('history', 'NN')), (('call', 'VBP'), 'advmod', ('front', 'RB')), (('front', 'RB'), 'advmod', ('right', 'RB'))]
[(('build', 'VB'), 'advmod', ('overall', 'RB')), (('build', 'VB'), 'xcomp', ('recommend', 'VB')), (('recommend', 'VB'), 'nsubj', ('unit', 'NN')), (('unit', 'NN'), 'compound', ('quality', 'NN')), (('recommend', 'VB'), 'dep', ('excellent', 'JJ')), (('recommend', 'VB'), 'xcomp', ('looking', 'VBG')), (('looking', 'VBG'), 'nsubj', ('anyone', 'NN')), (('looking', 'VBG'), 'dep', ('else', 'RB')), (('looking', 'VBG'), 'dobj', ('netbook', 'NN'))]
[(('loved', 'VBD'), 'nsubj', ('netbook', 'NN')), (('netbook', 'NN'), 'nmod', ('o', 'NN')), (('o', 'NN'), 'case', ('minus', 'CC')), (('o', 'NN'), 'compound', ('fact', 'NN')), (('o', 'NN'), 'compound', ('window', 'NN')), (('o', 'NN'), 'acl', ('started', 'VBN')), (('started', 'VBN'), 'xcomp', ('happening', 'VBG'))]
[(('comfterbale', 'VB'), 'xcomp', ('use', 'VB')), (('use', 'VB'), 'dobj', ('transport', 'NN')), (('transport', 'NN'), 'amod', ('light', 'JJ')), (('transport', 'NN'), 'amod', ('easy', 'JJ'))]
[(('need', 'VBP'), 'dobj', ('plug', 'NN')), (('plug', 'NN'), 'compound', ('power', 'NN')), (('plug', 'NN'), 'compound', ('mouse', 'NN')), (('plug', 'NN'), 'compound', ('cable', 'NN')), (('need', 'VBP'), 'nmod', ('mouse', 'NN')), (('mouse', 'NN'), 'advmod', ('back', 'RB')), (('mouse', 'NN'), 'advmod', ('instead', 'RB')), (('mouse', 'NN'), 'compound', ('side', 'NN')), (('mouse', 'NN'), 'compound', ('way', 'NN')), (('mouse', 'NN'), 'compound', ('operating', 'NN')), (('need', 'VBP'), 'nsubj', ('area', 'NN')), (('area', 'NN'), 'amod', ('small', 'JJ'))]
[(('feature', 'NN'), 'dep', ('mostly', 'RB')), (('feature', 'NN'), 'compound', ('love', 'NN')), (('feature', 'NN'), 'compound', ('drag', 'NN')), (('feature', 'NN'), 'compound', ('drop', 'NN'))]
[(('bought', 'VBD'), 'nsubj', ('ratio', 'NN')), (('ratio', 'NN'), 'nummod', ('laptop', 'CD')), (('ratio', 'NN'), 'compound', ('performance', 'NN')), (('ratio', 'NN'), 'compound', ('price', 'NN'))]
[(('searching', 'VBG'), 'dobj', ('supply', 'NN')), (('supply', 'NN'), 'amod', ('online', 'JJ')), (('supply', 'NN'), 'compound', ('power', 'NN')), (('supply', 'NN'), 'acl', ('found', 'VBN')), (('found', 'VBN'), 'dobj', ('site', 'NN'))]
[(('machine', 'NN'), 'case', ('compared', 'VBN')), (('machine', 'NN'), 'amod', ('spec', 'JJ')), (('spec', 'JJ'), 'advmod', ('similarly', 'RB')), (('machine', 'NN'), 'compound', ('pc', 'NN')), (('machine', 'NN'), 'acl:relcl', ('work', 'VBP')), (('work', 'VBP'), 'nsubj', ('value', 'NN')), (('value', 'NN'), 'amod', ('good', 'JJ')), (('value', 'NN'), 'amod', ('built', 'VBN')), (('built', 'VBN'), 'advmod', ('well', 'RB')), (('work', 'VBP'), 'dobj', ('box', 'NN')), (('box', 'NN'), 'amod', ('right', 'JJ')), (('right', 'JJ'), 'advmod', ('easily', 'RB'))]
[(('ease', 'VB'), 'ccomp', ('beat', 'VB')), (('beat', 'VB'), 'nsubj', ('bar', 'NN')), (('bar', 'NN'), 'compound', ('use', 'NN')), (('bar', 'NN'), 'compound', ('top', 'NN')), (('bar', 'NN'), 'compound', ('service', 'NN')), (('bar', 'NN'), 'compound', ('apple', 'NN')), (('bar', 'NN'), 'compound', ('phone', 'NN')), (('bar', 'NN'), 'compound', ('assistance', 'NN')), (('bar', 'NN'), 'compound', ('bellying', 'NN')), (('bar', 'NN'), 'dep', ('genius', 'NNS')), (('beat', 'VB'), 'aux', ('can', 'MD')), (('beat', 'VB'), 'neg', ('not', 'RB'))]
[(('quality', 'NN'), 'amod', ('good', 'JJ')), (('quality', 'NN'), 'dep', ('made', 'VBN')), (('made', 'VBN'), 'advmod', ('well', 'RB'))]
[(('came', 'VBD'), 'nsubj', ('course', 'NN')), (('course', 'NN'), 'acl:relcl', ('software', 'NN')), (('software', 'NN'), 'advmod', ('also', 'RB')), (('software', 'NN'), 'amod', ('several', 'JJ')), (('software', 'NN'), 'amod', ('great', 'JJ')), (('software', 'NN'), 'dep', ('package', 'NN')), (('came', 'VBD'), 'xcomp', ('free', 'JJ')), (('came', 'VBD'), 'nmod', ('iwork', 'NN')), (('iwork', 'NN'), 'case', ('including', 'VBG')), (('iwork', 'NN'), 'acl', ('garageband', 'VBN')), (('garageband', 'VBN'), 'xcomp', ('imovie', 'JJ'))]
[(('itunes', 'NNS'), 'dep', ('program', 'NN')), (('program', 'NN'), 'amod', ('handy', 'JJ')), (('program', 'NN'), 'compound', ('music', 'NN')), (('program', 'NN'), 'compound', ('management', 'NN')), (('itunes', 'NNS'), 'dep', ('ipod', 'NN')), (('ipod', 'NN'), 'amod', ('essential', 'JJ')), (('ipod', 'NN'), 'compound', ('anyone', 'NN'))]
[(('speed', 'VB'), 'dobj', ('nothing', 'NN')), (('nothing', 'NN'), 'compound', ('difference', 'NN')), (('nothing', 'NN'), 'amod', ('next', 'JJ')), (('nothing', 'NN'), 'acl:relcl', ('buy', 'VB')), (('buy', 'VB'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'compound', ('mac', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('drive', 'NN'), 'acl', ('upgraded', 'VBN')), (('upgraded', 'VBN'), 'advmod', ('manually', 'RB')), (('buy', 'VB'), 'aux', ('could', 'MD')), (('speed', 'VB'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'nummod', ('60', 'CD')), (('drive', 'NN'), 'amod', ('500gb', 'JJ')), (('drive', 'NN'), 'amod', ('external', 'JJ')), (('drive', 'NN'), 'amod', ('hard', 'JJ'))]
[(('poor', 'JJ'), 'advmod', ('likely', 'RB')), (('poor', 'JJ'), 'advmod', ('due', 'RB')), (('poor', 'JJ'), 'dep', ('grounding', 'VBG')), (('grounding', 'VBG'), 'dobj', ('component', 'NN')), (('component', 'NN'), 'compound', ('isolation', 'NN')), (('grounding', 'VBG'), 'advcl', ('hoping', 'VBG')), (('hoping', 'VBG'), 'dobj', ('isolator', 'NN')), (('isolator', 'NN'), 'amod', ('fixed', 'VBN')), (('isolator', 'NN'), 'compound', ('ground', 'NN')), (('isolator', 'NN'), 'compound', ('loop', 'NN')), (('isolator', 'NN'), 'acl', ('expected', 'VBN')), (('expected', 'VBN'), 'advmod', ('still', 'RB')), (('expected', 'VBN'), 'dobj', ('range', 'NN')), (('range', 'NN'), 'amod', ('better', 'JJR')), (('range', 'NN'), 'compound', ('product', 'NN')), (('range', 'NN'), 'amod', ('quality', 'JJ')), (('range', 'NN'), 'compound', ('price', 'NN'))]
[(('macbook', 'VBP'), 'nsubj', ('memory', 'NN')), (('memory', 'NN'), 'amod', ('upgraded', 'VBN')), (('macbook', 'VBP'), 'ccomp', ('issue', 'VBP')), (('issue', 'VBP'), 'nsubj', ('pro', 'FW')), (('issue', 'VBP'), 'neg', ('never', 'RB')), (('issue', 'VBP'), 'xcomp', ('running', 'VBG')), (('running', 'VBG'), 'dobj', ('application', 'NN')), (('application', 'NN'), 'amod', ('many', 'JJ')), (('application', 'NN'), 'amod', ('many', 'JJ'))]
[(('said', 'VBD'), 'nsubj', ('tightened', 'NN')), (('tightened', 'NN'), 'nummod', ('hinge', 'CD')), (('tightened', 'NN'), 'amod', ('motherboard', 'JJ')), (('tightened', 'NN'), 'amod', ('dismantle', 'JJ')), (('tightened', 'NN'), 'amod', ('whole', 'JJ')), (('tightened', 'NN'), 'compound', ('thing', 'NN'))]
[(('drawback', 'VBZ'), 'nsubj', ('screen', 'NN')), (('screen', 'NN'), 'amod', ('dirty', 'JJ')), (('drawback', 'VBZ'), 'dep', ('get', 'VB')), (('get', 'VB'), 'advmod', ('quickly', 'RB')), (('quickly', 'RB'), 'advmod', ('rather', 'RB'))]
[(('leopard', 'VBD'), 'nsubj', ('snow', 'NN')), (('snow', 'NN'), 'compound', ('mac', 'NN')), (('leopard', 'VBD'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('easy', 'JJ'), 'advmod', ('extremely', 'RB')), (('leopard', 'VBD'), 'advcl', ('win', 'VBP')), (('win', 'VBP'), 'mark', ('although', 'IN')), (('win', 'VBP'), 'nsubj', ('different', 'JJ')), (('win', 'VBP'), 'dobj', ('win7', 'NNS')), (('win7', 'NNS'), 'compound', ('xp', 'NN')), (('win7', 'NNS'), 'compound', ('visa', 'NN'))]
[(('fixed', 'VBN'), 'nsubj', ('system', 'NN'))]
[(('change', 'VB'), 'nsubj', ('setting', 'NN')), (('change', 'VB'), 'aux', ('would', 'MD')), (('change', 'VB'), 'dobj', ('size', 'NN')), (('size', 'NN'), 'compound', ('reason', 'NN')), (('size', 'NN'), 'compound', ('screen', 'NN')), (('size', 'NN'), 'acl:relcl', ('change', 'VB')), (('change', 'VB'), 'aux', ('would', 'MD')), (('change', 'VB'), 'nmod', ('whatnot', 'NN')), (('whatnot', 'NN'), 'case', ('like', 'IN')), (('whatnot', 'NN'), 'amod', ('pixel', 'JJ')), (('whatnot', 'NN'), 'compound', ('size', 'NN'))]
[(('unable', 'JJ'), 'advmod', ('vista', 'RB')), (('unable', 'JJ'), 'dep', ('install', 'VB')), (('install', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('uninstall', 'JJ'))]
[(('said', 'VBD'), 'nsubj', ('downloads', 'NNS')), (('downloads', 'NNS'), 'amod', ('short', 'JJ')), (('downloads', 'NNS'), 'compound', ('space', 'NN')), (('downloads', 'NNS'), 'acl:relcl', ('completed', 'VBD')), (('completed', 'VBD'), 'nsubj', ('problem', 'NN')), (('problem', 'NN'), 'advmod', ('always', 'RB')), (('said', 'VBD'), 'xcomp', ('corrupted', 'JJ'))]
[(('call', 'VB'), 'ccomp', ('ask', 'VB')), (('ask', 'VB'), 'nsubj', ('hp', 'NN')), (('ask', 'VB'), 'ccomp', ('come', 'VB')), (('come', 'VB'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'compound', ('recovery', 'NN')), (('computer', 'NN'), 'compound', ('disk', 'NN')), (('come', 'VB'), 'dobj', ('one', 'CD')), (('come', 'VB'), 'advmod', ('completely', 'RB')), (('come', 'VB'), 'dep', ('redo', 'VB'))]
[(('run', 'VB'), 'xcomp', ('dreamweaver', 'VB')), (('dreamweaver', 'VB'), 'dobj', ('application', 'NN')), (('application', 'NN'), 'amod', ('final', 'JJ')), (('application', 'NN'), 'compound', ('cut', 'NN')), (('application', 'NN'), 'compound', ('pro', 'NN')), (('application', 'NN'), 'nummod', ('7', 'CD')), (('application', 'NN'), 'compound', ('photoshop', 'NN')), (('application', 'NN'), 'amod', ('safari', 'JJ')), (('application', 'NN'), 'nummod', ('firefox', 'CD')), (('application', 'NN'), 'compound', ('msn', 'NN')), (('application', 'NN'), 'compound', ('messenger', 'NN')), (('dreamweaver', 'VB'), 'advmod', ('constantly', 'RB')), (('dreamweaver', 'VB'), 'dobj', ('time', 'NN'))]
[(('feature', 'NN'), 'amod', ('installed', 'JJ')), (('feature', 'NN'), 'dep', ('software', 'NN')), (('software', 'NN'), 'amod', ('certain', 'JJ')), (('software', 'NN'), 'compound', ('printer', 'NN')), (('software', 'NN'), 'acl:relcl', ('attractive', 'JJ')), (('attractive', 'JJ'), 'advmod', ('also', 'RB'))]
[(('run', 'VB'), 'xcomp', ('dreamweaver', 'VB')), (('dreamweaver', 'VB'), 'dobj', ('application', 'NN')), (('application', 'NN'), 'amod', ('final', 'JJ')), (('application', 'NN'), 'compound', ('cut', 'NN')), (('application', 'NN'), 'compound', ('pro', 'NN')), (('application', 'NN'), 'nummod', ('7', 'CD')), (('application', 'NN'), 'compound', ('photoshop', 'NN')), (('application', 'NN'), 'amod', ('safari', 'JJ')), (('application', 'NN'), 'nummod', ('firefox', 'CD')), (('application', 'NN'), 'compound', ('msn', 'NN')), (('application', 'NN'), 'compound', ('messenger', 'NN')), (('dreamweaver', 'VB'), 'advmod', ('constantly', 'RB')), (('dreamweaver', 'VB'), 'dobj', ('time', 'NN'))]
[(('ibook', 'VB'), 'dobj', ('connection', 'NN')), (('connection', 'NN'), 'amod', ('backup', 'JJ')), (('connection', 'NN'), 'amod', ('firewire', 'JJ')), (('firewire', 'JJ'), 'advmod', ('also', 'RB')), (('firewire', 'JJ'), 'nmod:npmod', ('us', 'PRP'))]
[(('see', 'VB'), 'xcomp', ('may', 'MD')), (('may', 'MD'), 'nsubj', ('pro', 'NN')), (('pro', 'NN'), 'compound', ('macbook', 'NN')), (('may', 'MD'), 'dep', ('different', 'JJ')), (('may', 'MD'), 'dobj', ('tag', 'NN')), (('tag', 'NN'), 'amod', ('huge', 'JJ')), (('tag', 'NN'), 'compound', ('price', 'NN')), (('may', 'MD'), 'dep', ('come', 'VB')), (('come', 'VB'), 'ccomp', ('need', 'VB')), (('need', 'VB'), 'nsubj', ('software', 'NN')), (('software', 'NN'), 'amod', ('full', 'JJ')), (('need', 'VB'), 'aux', ('would', 'MD')), (('need', 'VB'), 'advmod', ('actually', 'RB')), (('need', 'VB'), 'dobj', ('update', 'NN')), (('update', 'NN'), 'amod', ('free', 'JJ')), (('update', 'NN'), 'amod', ('future', 'JJ'))]
[(('advertised', 'VBD'), 'dep', ('laptop', 'JJ')), (('advertised', 'VBD'), 'nsubj', ('look', 'NN')), (('look', 'NN'), 'nummod', ('15', 'CD')), (('look', 'NN'), 'compound', ('casing', 'NN')), (('advertised', 'VBD'), 'nmod', ('17', 'CD')), (('17', 'CD'), 'case', ('like', 'IN'))]
[(('become', 'VBP'), 'nsubj', ('itunes', 'NNS')), (('itunes', 'NNS'), 'compound', ('brand', 'NN')), (('become', 'VBP'), 'ccomp', ('keep', 'VBP')), (('keep', 'VBP'), 'nsubj', ('lexicon', 'NN')), (('lexicon', 'NN'), 'amod', ('ingrained', 'JJ')), (('keep', 'VBP'), 'ccomp', ('started', 'VBD')), (('started', 'VBD'), 'nsubj', ('apple', 'NN')), (('apple', 'NN'), 'compound', ('mind', 'NN'))]
[(('ease', 'VB'), 'ccomp', ('beat', 'VB')), (('beat', 'VB'), 'nsubj', ('bar', 'NN')), (('bar', 'NN'), 'compound', ('use', 'NN')), (('bar', 'NN'), 'compound', ('top', 'NN')), (('bar', 'NN'), 'compound', ('service', 'NN')), (('bar', 'NN'), 'compound', ('apple', 'NN')), (('bar', 'NN'), 'compound', ('phone', 'NN')), (('bar', 'NN'), 'compound', ('assistance', 'NN')), (('bar', 'NN'), 'compound', ('bellying', 'NN')), (('bar', 'NN'), 'dep', ('genius', 'NNS')), (('beat', 'VB'), 'aux', ('can', 'MD')), (('beat', 'VB'), 'neg', ('not', 'RB'))]
[(('screen', 'VB'), 'xcomp', ('great', 'JJ')), (('great', 'JJ'), 'nsubj', ('sharpness', 'NN')), (('sharpness', 'NN'), 'amod', ('graphic', 'JJ')), (('sharpness', 'NN'), 'compound', ('clarity', 'NN'))]
[(('connect', 'VBP'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('lacie', 'JJ')), (('drive', 'NN'), 'amod', ('2big', 'JJ')), (('drive', 'NN'), 'amod', ('external', 'JJ')), (('drive', 'NN'), 'nmod', ('firewire', 'NN')), (('firewire', 'NN'), 'case', ('via', 'IN')), (('connect', 'VBP'), 'nsubj', ('machine', 'NN')), (('machine', 'NN'), 'nummod', ('800', 'CD')), (('machine', 'NN'), 'amod', ('interface', 'JJ')), (('machine', 'NN'), 'amod', ('useful', 'JJ')), (('machine', 'NN'), 'compound', ('time', 'NN'))]
[(('_', 'VB'), 'ccomp', ('go', 'VBP')), (('go', 'VBP'), 'advmod', ('also', 'RB')), (('go', 'VBP'), 'nsubj', ('key', 'NN')), (('key', 'NN'), 'amod', ('alot', 'JJ')), (('key', 'NN'), 'compound', ('trouble', 'NN')), (('key', 'NN'), 'compound', ('shift', 'NN')), (('go', 'VBP'), 'dobj', ('line', 'NN'))]
[(('researched', 'VBN'), 'dep', ('found', 'VBD')), (('found', 'VBD'), 'advmod', ('best', 'RBS')), (('researched', 'VBN'), 'nsubj', ('macconnection', 'NNS')), (('macconnection', 'NNS'), 'compound', ('price', 'NN'))]
[(('called', 'VBD'), 'ccomp', ('told', 'VBD')), (('told', 'VBD'), 'nsubj', ('depot', 'NN')), (('depot', 'NN'), 'compound', ('repair', 'NN')), (('told', 'VBD'), 'ccomp', ('send', 'VB')), (('send', 'VB'), 'aux', ('would', 'MD')), (('send', 'VB'), 'dobj', ('box', 'NN')), (('box', 'NN'), 'amod', ('new', 'JJ')), (('called', 'VBD'), 'nsubj', ('depot', 'NNP')), (('depot', 'NNP'), 'compound', ('return', 'NN')), (('depot', 'NNP'), 'compound', ('computer', 'NN')), (('depot', 'NNP'), 'compound', ('repair', 'NNP'))]
[(('keyboard', 'NN'), 'amod', ('good', 'JJ')), (('keyboard', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('long', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'dep', ('window', 'NN')), (('window', 'NN'), 'amod', ('hard', 'JJ')), (('hard', 'JJ'), 'dep', ('largest', 'JJS')), (('window', 'NN'), 'compound', ('drive', 'NN')), (('keyboard', 'NN'), 'dep', ('7', 'CD'))]
[(('keeper', 'VBP'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('overall', 'JJ')), (('keeper', 'VBP'), 'advmod', ('definitely', 'RB')), (('keeper', 'VBP'), 'dobj', ('array', 'NN')), (('array', 'NN'), 'amod', ('simple', 'JJ')), (('simple', 'JJ'), 'cc', ('yet', 'CC')), (('simple', 'JJ'), 'conj', ('stylish', 'JJ')), (('array', 'NN'), 'compound', ('design', 'NN')), (('array', 'NN'), 'acl:relcl', ('choose', 'VBP')), (('choose', 'VBP'), 'nsubj', ('color', 'NN')), (('color', 'NN'), 'nmod:poss', ('fantastic', 'WP$'))]
[(('o', 'VBP'), 'nsubj', ('design', 'NN')), (('design', 'NN'), 'compound', ('everything', 'NN')), (('o', 'VBP'), 'dobj', ('point', 'NN')), (('point', 'NN'), 'amod', ('simple', 'JJ'))]
[(('said', 'VBD'), 'nsubj', ('tightened', 'NN')), (('tightened', 'NN'), 'nummod', ('hinge', 'CD')), (('tightened', 'NN'), 'amod', ('motherboard', 'JJ')), (('tightened', 'NN'), 'amod', ('dismantle', 'JJ')), (('tightened', 'NN'), 'amod', ('whole', 'JJ')), (('tightened', 'NN'), 'compound', ('thing', 'NN'))]
[(('problem', 'NN'), 'compound', ('hardware', 'NN'))]
[(('impressed', 'VBN'), 'dobj', ('programming', 'NN')), (('programming', 'NN'), 'nmod', ('iphoto', 'NN')), (('iphoto', 'NN'), 'case', ('including', 'VBG'))]
[(('size', 'NN'), 'compound', ('window', 'NN')), (('size', 'NN'), 'compound', ('linux', 'NN')), (('size', 'NN'), 'compound', ('user', 'NN')), (('size', 'NN'), 'compound', ('love', 'NN')), (('size', 'NN'), 'dep', ('artwork', 'NN')), (('artwork', 'NN'), 'compound', ('screen', 'NN')), (('artwork', 'NN'), 'amod', ('big', 'JJ')), (('artwork', 'NN'), 'amod', ('enough', 'JJ')), (('artwork', 'NN'), 'compound', ('use', 'NN')), (('artwork', 'NN'), 'compound', ('internet', 'NN')), (('artwork', 'NN'), 'amod', ('small', 'JJ')), (('small', 'JJ'), 'advmod', ('yet', 'RB')), (('artwork', 'NN'), 'amod', ('portable', 'JJ')), (('portable', 'JJ'), 'advmod', ('enough', 'RB')), (('portable', 'JJ'), 'advmod', ('reasonably', 'RB'))]
[(('left', 'VBD'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'det', ('another', 'DT')), (('left', 'VBD'), 'nsubj', ('month', 'NN')), (('left', 'VBD'), 'ccomp', ('broke', 'VBD')), (('broke', 'VBD'), 'nsubj', ('key', 'NN')), (('key', 'NN'), 'compound', ('mouse', 'NN')), (('broke', 'VBD'), 'ccomp', ('send', 'VB')), (('send', 'VB'), 'nsubj', ('costed', 'NN')), (('costed', 'NN'), 'nummod', ('175', 'CD')), (('send', 'VB'), 'dobj', ('fix', 'NN'))]
[(('buy', 'NN'), 'amod', ('moral', 'JJ')), (('buy', 'NN'), 'compound', ('story', 'NN')), (('buy', 'NN'), 'dep', ('customer', 'NN')), (('customer', 'NN'), 'compound', ('anything', 'NN')), (('customer', 'NN'), 'compound', ('company', 'NN')), (('customer', 'NN'), 'compound', ('respect', 'NN'))]
[(('warranty', 'NN'), 'amod', ('graphic', 'JJ')), (('warranty', 'NN'), 'amod', ('awful', 'JJ')), (('warranty', 'NN'), 'dep', ('payment', 'NN')), (('payment', 'NN'), 'amod', ('cheap', 'JJ')), (('cheap', 'JJ'), 'advmod', ('even', 'RB')), (('cheap', 'JJ'), 'dep', ('worth', 'IN')), (('payment', 'NN'), 'dep', ('computer', 'NN'))]
[(('aspire', 'VBP'), 'dobj', ('wont', 'NN')), (('aspire', 'VBP'), 'dep', ('tried', 'VBD')), (('tried', 'VBD'), 'advmod', ('even', 'RB')), (('tried', 'VBD'), 'nsubj', ('screen', 'NN')), (('screen', 'NN'), 'amod', ('boot', 'JJ')), (('screen', 'NN'), 'amod', ('past', 'JJ')), (('screen', 'NN'), 'compound', ('acer', 'NN')), (('screen', 'NN'), 'acl', ('droid', 'VBN')), (('tried', 'VBD'), 'dobj', ('htc', 'NN')), (('htc', 'NN'), 'compound', ('motorola', 'NN')), (('aspire', 'VBP'), 'nsubj', ('port', 'NN')), (('port', 'NN'), 'nummod', ('plugged', 'CD')), (('port', 'NN'), 'compound', ('usb', 'NN'))]
[(('get', 'VB'), 'dep', ('price', 'NN')), (('price', 'NN'), 'nummod', ('_', 'CD')), (('price', 'NN'), 'amod', ('worse', 'JJR')), (('get', 'VB'), 'aux', ('could', 'MD')), (('get', 'VB'), 'dobj', ('netbook', 'NN')), (('get', 'VB'), 'nsubj', ('machine', 'NN')), (('machine', 'NN'), 'nummod', ('outperforms', 'CD'))]
[(('messed', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'compound', ('in_november', 'NN')), (('messed', 'VBD'), 'advmod', ('entirely', 'RB')), (('messed', 'VBD'), 'dobj', ('window', 'NN')), (('window', 'NN'), 'compound', ('power', 'NN')), (('window', 'NN'), 'amod', ('intalling', 'VBG')), (('window', 'NN'), 'acl:relcl', ('flashed', 'VBD')), (('flashed', 'VBD'), 'nsubj', ('hd', 'NN')), (('hd', 'NN'), 'compound', ('update', 'NN')), (('flashed', 'VBD'), 'dobj', ('everything', 'NN')), (('everything', 'NN'), 'amod', ('lost', 'VBN')), (('everything', 'NN'), 'nmod', ('format', 'NN')), (('format', 'NN'), 'case', ('including', 'VBG')), (('format', 'NN'), 'compound', ('school', 'NN')), (('format', 'NN'), 'compound', ('assignment', 'NN')), (('format', 'NN'), 'compound', ('irriplaceable', 'NN')), (('format', 'NN'), 'compound', ('picture', 'NN')), (('format', 'NN'), 'amod', ('digital', 'JJ')), (('format', 'NN'), 'acl:relcl', ('update', 'VB')), (('update', 'VB'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('several', 'JJ')), (('update', 'VB'), 'xcomp', ('roll', 'VB')), (('roll', 'VB'), 'nsubj', ('reason', 'NN')), (('reason', 'NN'), 'amod', ('installed', 'JJ')), (('roll', 'VB'), 'dep', ('unable', 'JJ')), (('roll', 'VB'), 'compound:prt', ('back', 'RP')), (('roll', 'VB'), 'dobj', ('everything', 'NN')), (('everything', 'NN'), 'compound', ('driver', 'NN')), (('everything', 'NN'), 'acl:relcl', ('update', 'VB')), (('update', 'VB'), 'nsubj', ('condition', 'NN')), (('condition', 'NN'), 'advmod', ('earlier', 'RBR')), (('condition', 'NN'), 'amod', ('working', 'JJ')), (('update', 'VB'), 'dobj', ('history', 'NN')), (('history', 'NN'), 'amod', ('installed', 'JJ')), (('history', 'NN'), 'amod', ('deleted', 'JJ'))]
[(('called', 'VBD'), 'ccomp', ('told', 'VBD')), (('told', 'VBD'), 'nsubj', ('depot', 'NN')), (('depot', 'NN'), 'compound', ('repair', 'NN')), (('told', 'VBD'), 'ccomp', ('send', 'VB')), (('send', 'VB'), 'aux', ('would', 'MD')), (('send', 'VB'), 'dobj', ('box', 'NN')), (('box', 'NN'), 'amod', ('new', 'JJ')), (('called', 'VBD'), 'nsubj', ('depot', 'NNP')), (('depot', 'NNP'), 'compound', ('return', 'NN')), (('depot', 'NNP'), 'compound', ('computer', 'NN')), (('depot', 'NNP'), 'compound', ('repair', 'NNP'))]
[(('cant', 'NN'), 'compound', ('screen', 'NN')), (('cant', 'NN'), 'compound', ('keyboard', 'NN')), (('cant', 'NN'), 'compound', ('mouse', 'NN')), (('cant', 'NN'), 'dep', ('see', 'VB')), (('see', 'VB'), 'xcomp', ('spending', 'VBG')), (('spending', 'VBG'), 'xcomp', ('worth', 'JJ')), (('worth', 'JJ'), 'nsubj', ('multi', 'NNS')), (('multi', 'NNS'), 'amod', ('extra', 'JJ')), (('multi', 'NNS'), 'compound', ('money', 'NN')), (('multi', 'NNS'), 'compound', ('jump', 'NN')), (('multi', 'NNS'), 'compound', ('mac', 'NN')), (('multi', 'NNS'), 'amod', ('beautiful', 'JJ')), (('multi', 'NNS'), 'compound', ('screen', 'NN')), (('multi', 'NNS'), 'amod', ('responsive', 'JJ')), (('multi', 'NNS'), 'compound', ('island', 'NN')), (('multi', 'NNS'), 'amod', ('backlit', 'JJ')), (('multi', 'NNS'), 'compound', ('keyboard', 'NN')), (('multi', 'NNS'), 'compound', ('fun', 'NN')), (('multi', 'NNS'), 'dep', ('mouse', 'NN')), (('mouse', 'NN'), 'compound', ('touch', 'NN')), (('spending', 'VBG'), 'dobj', ('money', 'NN')), (('money', 'NN'), 'amod', ('extra', 'JJ')), (('money', 'NN'), 'advmod', ('alone', 'RB'))]
[(('control', 'VBP'), 'nsubj', ('volume', 'NN')), (('volume', 'NN'), 'compound', ('downfall', 'NN'))]
[(('screen', 'VB'), 'xcomp', ('good', 'JJ')), (('good', 'JJ'), 'nsubj', ('angle', 'NN')), (('angle', 'NN'), 'amod', ('nice', 'JJ')), (('angle', 'NN'), 'compound', ('side', 'NN')), (('angle', 'NN'), 'compound', ('view', 'NN')), (('good', 'JJ'), 'advmod', ('pretty', 'RB'))]
[(('weary', 'JJ'), 'advmod', ('little', 'RB')), (('weary', 'JJ'), 'dep', ('purchasing', 'VBG')), (('purchasing', 'VBG'), 'ccomp', ('look', 'VBP')), (('look', 'VBP'), 'nsubj', ('macbook', 'NN')), (('macbook', 'NN'), 'det', ('another', 'DT')), (('macbook', 'NN'), 'nummod', ('13', 'CD')), (('look', 'VBP'), 'advmod', ('later', 'RB')), (('later', 'RB'), 'nmod:npmod', ('year', 'NN')), (('year', 'NN'), 'nummod', ('2', 'CD')), (('2', 'CD'), 'advmod', ('almost', 'RB')), (('look', 'VBP'), 'nmod', ('macbooks', 'NNS')), (('macbooks', 'NNS'), 'case', ('like', 'IN')), (('macbooks', 'NNS'), 'amod', ('newer', 'JJR')), (('macbooks', 'NNS'), 'acl', ('gotten', 'VBN')), (('gotten', 'VBN'), 'xcomp', ('time', 'NN')), (('time', 'NN'), 'amod', ('current', 'JJ')), (('time', 'NN'), 'compound', ('line', 'NN')), (('time', 'NN'), 'amod', ('graphic', 'JJ')), (('time', 'NN'), 'compound', ('card', 'NN')), (('time', 'NN'), 'compound', ('order', 'NN')), (('time', 'NN'), 'advmod', ('around', 'RB'))]
[(('love', 'VB'), 'dobj', ('trackpad', 'NN')), (('trackpad', 'NN'), 'amod', ('multi', 'JJ')), (('trackpad', 'NN'), 'compound', ('touch', 'NN'))]
[(('use', 'VB'), 'nsubj', ('g4', 'NNS')), (('g4', 'NNS'), 'compound', ('powerbook', 'NN')), (('use', 'VB'), 'aux', ('would', 'MD')), (('use', 'VB'), 'neg', ('never', 'RB')), (('use', 'VB'), 'xcomp', ('trackpad', 'JJ')), (('trackpad', 'JJ'), 'ccomp', ('use', 'VB')), (('use', 'VB'), 'aux', ('would', 'MD')), (('use', 'VB'), 'dobj', ('mouse', 'NN')), (('mouse', 'NN'), 'amod', ('external', 'JJ')), (('use', 'VB'), 'nmod', ('trackpad', 'NN')), (('trackpad', 'NN'), 'case', ('like', 'IN'))]
[(('cd', 'VB'), 'dobj', ('purpose', 'NN')), (('purpose', 'NN'), 'compound', ('drive', 'NN')), (('purpose', 'NN'), 'compound', ('computer', 'NN')), (('purpose', 'NN'), 'compound', ('defeat', 'NN')), (('purpose', 'NN'), 'acl', ('keeping', 'VBG')), (('keeping', 'VBG'), 'dobj', ('cd', 'NN')), (('cd', 'NN'), 'compound', ('file', 'NN'))]
[(('included', 'VBD'), 'dobj', ('subwoofer', 'NN')), (('subwoofer', 'NN'), 'amod', ('extra', 'JJ')), (('subwoofer', 'NN'), 'amod', ('sonic', 'JJ')), (('sonic', 'JJ'), 'advmod', ('sony', 'RB')), (('subwoofer', 'NN'), 'compound', ('stage', 'NN')), (('subwoofer', 'NN'), 'compound', ('software', 'NN')), (('subwoofer', 'NN'), 'compound', ('speaker', 'NN')), (('subwoofer', 'NN'), 'acl', ('got', 'VBN')), (('got', 'VBN'), 'xcomp', ('worth', 'JJ')), (('included', 'VBD'), 'nsubj', ('mouse', 'NN')), (('mouse', 'NN'), 'compound', ('money', 'NN')), (('mouse', 'NN'), 'compound', ('bluetooth', 'NN')), (('mouse', 'NN'), 'nmod', ('port', 'NN')), (('port', 'NN'), 'advmod', ('supposedly', 'RB')), (('port', 'NN'), 'amod', ('bluetooth', 'JJ')), (('port', 'NN'), 'compound', ('enabled', 'NN')), (('port', 'NN'), 'compound', ('computer', 'NN')), (('port', 'NN'), 'amod', ('extended', 'VBN')), (('port', 'NN'), 'compound', ('life', 'NN')), (('port', 'NN'), 'compound', ('battery', 'NN')), (('port', 'NN'), 'amod', ('docking', 'VBG'))]
[(('seemed', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('first', 'JJ')), (('seemed', 'VBD'), 'xcomp', ('end', 'VB')), (('end', 'VB'), 'nsubj', ('deal', 'NN')), (('deal', 'NN'), 'amod', ('great', 'JJ')), (('end', 'VB'), 'dep', ('high', 'JJ')), (('high', 'JJ'), 'advmod', ('seemingly', 'RB')), (('end', 'VB'), 'dobj', ('price', 'NN')), (('price', 'NN'), 'amod', ('low', 'JJ')), (('low', 'JJ'), 'amod', ('spec', 'JJ')), (('price', 'NN'), 'amod', ('low', 'JJ'))]
[(('purchased', 'VBD'), 'advmod', ('also', 'RB')), (('purchased', 'VBD'), 'dobj', ('iwork', 'NN')), (('purchased', 'VBD'), 'dep', ('go', 'VB')), (('go', 'VB'), 'dobj', ('spreadsheet', 'NN')), (('spreadsheet', 'NN'), 'compound', ('program', 'NN')), (('spreadsheet', 'NN'), 'compound', ('word', 'NN')), (('spreadsheet', 'NN'), 'compound', ('processing', 'NN')), (('purchased', 'VBD'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'nummod', ('presentation', 'CD')), (('office', 'NN'), 'amod', ('similar', 'JJ')), (('office', 'NN'), 'compound', ('microsoft', 'NN'))]
[(('make', 'VBP'), 'nsubj', ('user', 'NN')), (('user', 'NN'), 'amod', ('lifelong', 'JJ')), (('user', 'NN'), 'compound', ('window', 'NN')), (('user', 'NN'), 'amod', ('pleased', 'VBN')), (('pleased', 'VBN'), 'advmod', ('extremely', 'RB')), (('make', 'VBP'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'compound', ('change', 'NN'))]
[(('mac', 'VBP'), 'nsubj', ('everything', 'NN')), (('mac', 'VBP'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'amod', ('appealing', 'JJ')), (('appealing', 'JJ'), 'advmod', ('visually', 'RB')), (('use', 'NN'), 'amod', ('easy', 'JJ'))]
[(('keyboard', 'NN'), 'nmod', ('keyboard', 'NN')), (('keyboard', 'NN'), 'case', ('like', 'IN')), (('keyboard', 'NN'), 'amod', ('laptop', 'JJ'))]
[(('used', 'VBD'), 'nsubj', ('computer', 'NN')), (('used', 'VBD'), 'dobj', ('design', 'NN')), (('design', 'NN'), 'advmod', ('daily', 'RB')), (('design', 'NN'), 'amod', ('nice', 'JJ')), (('design', 'NN'), 'amod', ('compact', 'JJ'))]
[(('make', 'VBP'), 'nsubj', ('trackpad', 'NN')), (('trackpad', 'NN'), 'compound', ('thing', 'NN')), (('make', 'VBP'), 'xcomp', ('navigating', 'JJ')), (('navigating', 'JJ'), 'advcl', ('quicker', 'JJR')), (('quicker', 'JJR'), 'case', ('around', 'IN')), (('quicker', 'JJR'), 'nmod:npmod', ('program', 'NN')), (('program', 'NN'), 'compound', ('computer', 'NN')), (('program', 'NN'), 'amod', ('simpler', 'JJR')), (('simpler', 'JJR'), 'advmod', ('much', 'RB')), (('make', 'VBP'), 'xcomp', ('easier', 'RBR'))]
[(('_', 'VB'), 'ccomp', ('started', 'VBD')), (('started', 'VBD'), 'advmod', ('actually', 'RB')), (('started', 'VBD'), 'nsubj', ('toshiba', 'NN')), (('toshiba', 'NN'), 'compound', ('contact', 'NN')), (('started', 'VBD'), 'ccomp', ('supplied', 'VBD')), (('supplied', 'VBD'), 'nsubj', ('problem', 'NN')), (('problem', 'NN'), 'acl', ('given', 'VBN')), (('given', 'VBN'), 'ccomp', ('run', 'VB')), (('run', 'VB'), 'compound:prt', ('around', 'RP')), (('supplied', 'VBD'), 'ccomp', ('expired', 'VBD')), (('expired', 'VBD'), 'nsubj', ('delay', 'NN')), (('delay', 'NN'), 'amod', ('serial', 'JJ')), (('delay', 'NN'), 'compound', ('number', 'NN')), (('delay', 'NN'), 'compound', ('order', 'NN')), (('delay', 'NN'), 'acl', ('sending', 'VBG')), (('sending', 'VBG'), 'dobj', ('warrenty', 'NN')), (('warrenty', 'NN'), 'amod', ('laptop', 'JJ'))]
[(('feature', 'VB'), 'dobj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('great', 'JJ')), (('feature', 'VB'), 'dep', ('need', 'VB')), (('need', 'VB'), 'dobj', ('speaker', 'NN')), (('speaker', 'NN'), 'amod', ('better', 'JJR'))]
[(('turned', 'VBD'), 'dobj', ('email', 'NN')), (('turned', 'VBD'), 'dep', ('acknowledge', 'VB')), (('acknowledge', 'VB'), 'nsubj', ('help', 'NN')), (('help', 'NN'), 'amod', ('next', 'JJ')), (('help', 'NN'), 'amod', ('vain', 'JJ')), (('acknowledge', 'VB'), 'aux', ('get', 'VBP')), (('turned', 'VBD'), 'nsubj', ('warranty', 'NN')), (('warranty', 'NN'), 'amod', ('valid', 'JJ')), (('valid', 'JJ'), 'advmod', ('still', 'RB'))]
[(('value', 'NN'), 'amod', ('great', 'JJ')), (('value', 'NN'), 'dep', ('brand', 'NN')), (('brand', 'NN'), 'amod', ('fast', 'JJ')), (('brand', 'NN'), 'compound', ('delivery', 'NN')), (('brand', 'NN'), 'compound', ('computer', 'NN')), (('brand', 'NN'), 'compound', ('work', 'NN')), (('value', 'NN'), 'dep', ('pleased', 'NNS')), (('pleased', 'NNS'), 'amod', ('new', 'JJ')), (('pleased', 'NNS'), 'compound', ('problem', 'NN'))]
[(('pay', 'VBP'), 'dep', ('willing', 'JJ')), (('pay', 'VBP'), 'dobj', ('another', 'DT')), (('pay', 'VBP'), 'nsubj', ('disc', 'NN')), (('disc', 'NN'), 'nummod', ('200', 'CD')), (('disc', 'NN'), 'compound', ('dollar', 'NN')), (('disc', 'NN'), 'compound', ('window', 'NN'))]
[(('wanted', 'VBD'), 'nsubj', ('power', 'NN')), (('power', 'NN'), 'compound', ('feature', 'NN')), (('wanted', 'VBD'), 'xcomp', ('replace', 'VB')), (('replace', 'VB'), 'dobj', ('machine', 'NN')), (('machine', 'NN'), 'amod', ('desktop', 'JJ'))]
[(('start', 'VBP'), 'nsubj', ('macbook', 'NN')), (('start', 'VBP'), 'ccomp', ('display', 'VBP')), (('display', 'VBP'), 'nsubj', ('fantastic', 'NNS')), (('fantastic', 'NNS'), 'amod', ('fast', 'JJ')), (('fantastic', 'NNS'), 'compound', ('crash', 'NN')), (('display', 'VBP'), 'dobj', ('model', 'NN')), (('model', 'NN'), 'amod', ('small', 'JJ')), (('model', 'NN'), 'amod', ('light', 'JJ')), (('model', 'NN'), 'nummod', ('3', 'CD')), (('3', 'CD'), 'compound', ('13', 'CD')), (('display', 'VBP'), 'dep', ('complaining', 'VBG')), (('complaining', 'VBG'), 'advmod', ('always', 'RB')), (('complaining', 'VBG'), 'ccomp', ('update', 'VB')), (('update', 'VB'), 'dobj', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('lost', 'JJ')), (('etc', 'NN'), 'compound', ('connection', 'NN')), (('etc', 'NN'), 'compound', ('error', 'NN')), (('etc', 'NN'), 'amod', ('blue', 'JJ')), (('etc', 'NN'), 'compound', ('screen', 'NN'))]
[(('hold', 'VBP'), 'nsubj', ('battery', 'NN')), (('hold', 'VBP'), 'advmod', ('well', 'RB')), (('hold', 'VBP'), 'dep', ('built', 'VBN')), (('built', 'VBN'), 'advmod', ('solidly', 'RB')), (('built', 'VBN'), 'ccomp', ('run', 'VB')), (('run', 'VB'), 'advmod', ('fast', 'RB'))]
[(('arent', 'NN'), 'compound', ('feature', 'NN')), (('arent', 'NN'), 'dep', ('wheel', 'NN')), (('wheel', 'NN'), 'amod', ('friendly', 'JJ')), (('wheel', 'NN'), 'compound', ('volume', 'NN')), (('arent', 'NN'), 'dep', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('sound', 'JJ')), (('etc', 'NN'), 'compound', ('quality', 'NN'))]
[(('built', 'VBD'), 'advmod', ('apparently', 'RB')), (('built', 'VBD'), 'advmod', ('well', 'RB')), (('built', 'VBD'), 'dobj', ('look', 'NN')), (('look', 'NN'), 'amod', ('gorgeous', 'JJ')), (('built', 'VBD'), 'nsubj', ('performance', 'NN')), (('performance', 'NN'), 'nummod', ('i5', 'CD')), (('performance', 'NN'), 'amod', ('macbook', 'JJ')), (('performance', 'NN'), 'amod', ('pro', 'JJ')), (('performance', 'NN'), 'amod', ('winning', 'JJ')), (('performance', 'NN'), 'compound', ('combination', 'NN')), (('performance', 'NN'), 'compound', ('price', 'NN'))]
[(('connect', 'VBP'), 'nsubj', ('machine', 'NN')), (('connect', 'VBP'), 'ccomp', ('say', 'VBP')), (('say', 'VBP'), 'nsubj', ('toshiba', 'NN')), (('say', 'VBP'), 'ccomp', ('replace', 'VB')), (('replace', 'VB'), 'ccomp', ('repair', 'VB')), (('repair', 'VB'), 'nsubj', ('card', 'NN')), (('card', 'NN'), 'compound', ('connection', 'NN')), (('repair', 'VB'), 'aux', ('may', 'MD')), (('repair', 'VB'), 'advmod', ('warranty', 'RB')), (('repair', 'VB'), 'dobj', ('warranty', 'NN')), (('warranty', 'NN'), 'nummod', ('30', 'CD')), (('warranty', 'NN'), 'compound', ('day', 'NN')), (('repair', 'VB'), 'advcl', ('occurance', 'VBP')), (('occurance', 'VBP'), 'advmod', ('even', 'RB')), (('occurance', 'VBP'), 'mark', ('though', 'IN')), (('occurance', 'VBP'), 'nsubj', ('month', 'NN')), (('month', 'NN'), 'amod', ('constant', 'JJ')), (('month', 'NN'), 'nummod', ('5', 'CD')), (('occurance', 'VBP'), 'advcl', ('bought', 'VBD')), (('bought', 'VBD'), 'mark', ('since', 'IN')), (('bought', 'VBD'), 'dobj', ('netbook', 'NN'))]
[(('eliminates', 'VBZ'), 'nsubj', ('option', 'NN')), (('option', 'NN'), 'compound', ('program', 'NN')), (('option', 'NN'), 'compound', ('keynote', 'NN')), (('option', 'NN'), 'compound', ('page', 'NN')), (('option', 'NN'), 'compound', ('number', 'NN')), (('option', 'NN'), 'nmod', ('document', 'NN')), (('document', 'NN'), 'case', ('save', 'IN')), (('document', 'NN'), 'amod', ('compatible', 'JJ')), (('compatible', 'JJ'), 'amod', ('microsoft', 'JJ')), (('eliminates', 'VBZ'), 'advmod', ('really', 'RB')), (('eliminates', 'VBZ'), 'dobj', ('need', 'NN')), (('need', 'NN'), 'amod', ('actual', 'JJ'))]
[(('stopped', 'VBD'), 'xcomp', ('booting', 'VBG')), (('booting', 'VBG'), 'dobj', ('le', 'FW')), (('booting', 'VBG'), 'nmod:tmod', ('week', 'NN')), (('stopped', 'VBD'), 'nsubj', ('warranty', 'NN')), (('warranty', 'NN'), 'nummod', ('one', 'CD')), (('warranty', 'NN'), 'compound', ('year', 'NN'))]
[(('mac', 'VB'), 'xcomp', ('buying', 'VBG')), (('buying', 'VBG'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'compound', ('version', 'NN')), (('office', 'NN'), 'compound', ('microsoft', 'NN')), (('buying', 'VBG'), 'dep', ('cheaper', 'JJR')), (('buying', 'VBG'), 'dobj', ('work', 'NN')), (('work', 'NN'), 'amod', ('actual', 'JJ')), (('buying', 'VBG'), 'advmod', ('well', 'RB'))]
[(('make', 'VBP'), 'nsubj', ('cord', 'NN')), (('cord', 'NN'), 'acl', ('coming', 'VBG')), (('coming', 'VBG'), 'dobj', ('power', 'NN')), (('power', 'NN'), 'amod', ('right', 'JJ')), (('power', 'NN'), 'acl:relcl', ('left', 'VBD')), (('left', 'VBD'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'compound', ('cord', 'NN')), (('mic', 'NN'), 'amod', ('coming', 'JJ')), (('mic', 'NN'), 'amod', ('front', 'JJ')), (('mic', 'NN'), 'compound', ('headphone', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'conj', ('connection', 'NN')), (('connection', 'NN'), 'compound', ('network', 'NN')), (('make', 'VBP'), 'dobj', ('cord', 'NN')), (('cord', 'NN'), 'amod', ('messy', 'JJ')), (('cord', 'NN'), 'compound', ('setup', 'NN')), (('cord', 'NN'), 'acl', ('going', 'VBG')), (('going', 'VBG'), 'dobj', ('direction', 'NN')), (('direction', 'NN'), 'det', ('every', 'DT'))]
[(('mac', 'VB'), 'xcomp', ('free', 'JJ')), (('free', 'JJ'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'advmod', ('also', 'RB')), (('program', 'NN'), 'amod', ('many', 'JJ')), (('program', 'NN'), 'compound', ('apps', 'NNS')), (('program', 'NN'), 'amod', ('cheap', 'JJ')), (('cheap', 'JJ'), 'advmod', ('quite', 'RB'))]
[(('expandable', 'JJ'), 'dep', ('gui', 'NN')), (('gui', 'NN'), 'amod', ('high', 'JJ')), (('gui', 'NN'), 'compound', ('quality', 'NN')), (('gui', 'NN'), 'compound', ('killer', 'NN')), (('gui', 'NN'), 'amod', ('stable', 'JJ')), (('stable', 'JJ'), 'advmod', ('extremely', 'RB')), (('expandable', 'JJ'), 'advmod', ('highly', 'RB')), (('expandable', 'JJ'), 'dep', ('use', 'NN')), (('use', 'NN'), 'case', ('bundled', 'IN')), (('use', 'NN'), 'compound', ('application', 'NN')), (('application', 'NN'), 'compound', ('lot', 'NN')), (('application', 'NN'), 'amod', ('good', 'JJ')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('use', 'NN'), 'amod', ('gorgeous', 'JJ')), (('gorgeous', 'JJ'), 'advmod', ('absolutely', 'RB'))]
[(('wiped', 'VBD'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('several', 'JJ')), (('wiped', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('installed', 'JJ')), (('computer', 'NN'), 'acl', ('bought', 'VBN'))]
[(('mac', 'NN'), 'dep', ('best', 'RB')), (('mac', 'NN'), 'compound', ('world', 'NN')), (('mac', 'NN'), 'compound', ('power', 'NN')), (('mac', 'NN'), 'compound', ('ease', 'NN'))]
[(('purchased', 'VBD'), 'ccomp', ('took', 'VBD')), (('took', 'VBD'), 'nsubj', ('store', 'NN')), (('store', 'NN'), 'amod', ('major', 'JJ')), (('store', 'NN'), 'compound', ('electronics', 'NN')), (('took', 'VBD'), 'ccomp', ('find', 'VBP')), (('find', 'VBP'), 'nsubj', ('department', 'NN')), (('department', 'NN'), 'compound', ('service', 'NN')), (('purchased', 'VBD'), 'nsubj', ('problem', 'NN'))]
[(('laptop', 'NN'), 'amod', ('next', 'JJ')), (('laptop', 'NN'), 'compound', ('acer', 'NN')), (('laptop', 'NN'), 'dep', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('fan', 'NN')), (('laptop', 'NN'), 'compound', ('bottom', 'NN')), (('laptop', 'NN'), 'compound', ('right', 'NN'))]
[(('allow', 'VB'), 'nsubj', ('toshiba', 'NN')), (('toshiba', 'NN'), 'compound', ('wish', 'NN')), (('allow', 'VB'), 'aux', ('would', 'MD')), (('allow', 'VB'), 'ccomp', ('select', 'VB')), (('select', 'VB'), 'nsubj', ('customer', 'NN')), (('select', 'VB'), 'dobj', ('setup', 'NN')), (('setup', 'NN'), 'compound', ('option', 'NN')), (('setup', 'NN'), 'compound', ('boot', 'NN')), (('setup', 'NN'), 'compound', ('o', 'NN')), (('select', 'VB'), 'dep', ('remove', 'VB')), (('remove', 'VB'), 'dobj', ('stuff', 'NN')), (('stuff', 'NN'), 'amod', ('unnecessary', 'JJ'))]
[(('built', 'VBN'), 'advmod', ('well', 'RB'))]
[(('played', 'VBD'), 'nsubj', ('nephew', 'NN')), (('nephew', 'NN'), 'amod', ('niece', 'JJ')), (('played', 'VBD'), 'ccomp', ('run', 'VBP')), (('run', 'VBP'), 'nsubj', ('game', 'NN')), (('game', 'NN'), 'compound', ('web', 'NN')), (('run', 'VBP'), 'ccomp', ('require', 'VB')), (('require', 'VB'), 'nsubj', ('anything', 'NN')), (('require', 'VB'), 'dep', ('dedicated', 'VBN')), (('dedicated', 'VBN'), 'dobj', ('card', 'NN')), (('card', 'NN'), 'amod', ('video', 'JJ'))]
[(('editing', 'NN'), 'dep', ('also', 'RB')), (('editing', 'NN'), 'amod', ('capable', 'JJ')), (('editing', 'NN'), 'amod', ('moderate', 'JJ')), (('editing', 'NN'), 'compound', ('video', 'NN')), (('editing', 'NN'), 'dep', ('need', 'VB')), (('need', 'VB'), 'mark', ('although', 'IN')), (('need', 'VB'), 'aux', ('may', 'MD')), (('need', 'VB'), 'ccomp', ('boost', 'VB')), (('boost', 'VB'), 'nsubj', ('performance', 'NN')), (('boost', 'VB'), 'iobj', ('duty', 'NN')), (('duty', 'NN'), 'amod', ('larger', 'JJR')), (('duty', 'NN'), 'compound', ('macbook', 'NN')), (('duty', 'NN'), 'amod', ('pro', 'JJ')), (('duty', 'NN'), 'compound', ('heavy', 'NN')), (('boost', 'VB'), 'dobj', ('editing', 'NN')), (('editing', 'NN'), 'amod', ('mobile', 'JJ')), (('editing', 'NN'), 'compound', ('video', 'NN'))]
[(('work', 'NN'), 'compound', ('downfall', 'NN')), (('work', 'NN'), 'compound', ('lot', 'NN')), (('work', 'NN'), 'compound', ('software', 'NN')), (('work', 'NN'), 'dep', ('price', 'NN')), (('price', 'NN'), 'compound', ('mac', 'NN')), (('price', 'NN'), 'compound', ('iwork', 'NN')), (('price', 'NN'), 'compound', ('worth', 'NN'))]
[(('want', 'VBP'), 'nsubj', ('machine', 'NN')), (('machine', 'NN'), 'compound', ('need', 'NN')), (('machine', 'NN'), 'acl', ('surfing', 'VBG')), (('surfing', 'VBG'), 'dobj', ('word', 'NN')), (('word', 'NN'), 'compound', ('email', 'NN')), (('word', 'NN'), 'amod', ('checking', 'VBG')), (('word', 'NN'), 'acl', ('processing', 'VBG')), (('processing', 'VBG'), 'advcl', ('watching', 'VBG')), (('watching', 'VBG'), 'dobj', ('machine', 'NN')), (('machine', 'NN'), 'compound', ('movie', 'NN')), (('machine', 'NN'), 'nummod', ('two', 'CD'))]
[(('operation', 'NN'), 'case', ('like', 'IN')), (('operation', 'NN'), 'compound', ('price', 'NN'))]
[(('price', 'VB'), 'nsubj', ('budget', 'NN')), (('budget', 'NN'), 'nummod', ('13', 'CD')), (('budget', 'NN'), 'amod', ('macbook', 'JJ')), (('budget', 'NN'), 'amod', ('pro', 'JJ')), (('budget', 'NN'), 'compound', ('fit', 'NN')), (('budget', 'NN'), 'dep', ('tax', 'NN')), (('tax', 'NN'), 'amod', ('free', 'JJ')), (('tax', 'NN'), 'compound', ('shipping', 'NN')), (('price', 'VB'), 'aux', ('ca', 'MD')), (('price', 'VB'), 'advmod', ('best', 'RBS')), (('price', 'VB'), 'xcomp', ('get', 'VB')), (('get', 'VB'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'amod', ('great', 'JJ'))]
[(('perfect', 'JJ'), 'nsubj', ('thing', 'NN')), (('perfect', 'JJ'), 'xcomp', ('expected', 'VBN')), (('expected', 'VBN'), 'nsubj', ('speaker', 'NN')), (('speaker', 'NN'), 'compound', ('netbook', 'NN')), (('expected', 'VBN'), 'dep', ('loud', 'JJ'))]
[(('got', 'VBD'), 'nsubj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('first', 'JJ')), (('battery', 'NN'), 'amod', ('full', 'JJ')), (('battery', 'NN'), 'compound', ('charge', 'NN')), (('got', 'VBD'), 'iobj', ('2', 'CD')), (('got', 'VBD'), 'dobj', ('hour', 'NN')), (('hour', 'NN'), 'amod', ('full', 'JJ'))]
[(('say', 'VBP'), 'nsubj', ('suffice', 'NNP')), (('say', 'VBP'), 'ccomp', ('keep', 'VBP')), (('keep', 'VBP'), 'nsubj', ('pro', 'NN')), (('pro', 'NN'), 'compound', ('macbook', 'NN')), (('keep', 'VBP'), 'xcomp', ('going', 'VBG')), (('going', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'amod', ('long', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('going', 'VBG'), 'advcl', ('blazing', 'VBG')), (('blazing', 'VBG'), 'dobj', ('speed', 'NN'))]
[(('make', 'VBP'), 'nsubj', ('cord', 'NN')), (('cord', 'NN'), 'acl', ('coming', 'VBG')), (('coming', 'VBG'), 'dobj', ('power', 'NN')), (('power', 'NN'), 'amod', ('right', 'JJ')), (('power', 'NN'), 'acl:relcl', ('left', 'VBD')), (('left', 'VBD'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'compound', ('cord', 'NN')), (('mic', 'NN'), 'amod', ('coming', 'JJ')), (('mic', 'NN'), 'amod', ('front', 'JJ')), (('mic', 'NN'), 'compound', ('headphone', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'conj', ('connection', 'NN')), (('connection', 'NN'), 'compound', ('network', 'NN')), (('make', 'VBP'), 'dobj', ('cord', 'NN')), (('cord', 'NN'), 'amod', ('messy', 'JJ')), (('cord', 'NN'), 'compound', ('setup', 'NN')), (('cord', 'NN'), 'acl', ('going', 'VBG')), (('going', 'VBG'), 'dobj', ('direction', 'NN')), (('direction', 'NN'), 'det', ('every', 'DT'))]
[(('detect', 'VBP'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'det', ('either', 'DT')), (('computer', 'NN'), 'amod', ('slow', 'JJ')), (('detect', 'VBP'), 'xcomp', ('slow', 'VB')), (('slow', 'VB'), 'nsubj', ('typed', 'NNS')), (('typed', 'NNS'), 'amod', ('key', 'JJ')), (('slow', 'VB'), 'dep', ('unlikely', 'JJ')), (('slow', 'VB'), 'dobj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('typist', 'JJ')), (('slow', 'VB'), 'advmod', ('simply', 'RB')), (('slow', 'VB'), 'dep', ('detect', 'VB')), (('detect', 'VB'), 'dobj', ('typed', 'NNS')), (('typed', 'NNS'), 'amod', ('key', 'JJ'))]
[(('lost', 'VBD'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'compound', ('computer', 'NN')), (('keyboard', 'NN'), 'compound', ('issue', 'NN')), (('lost', 'VBD'), 'dobj', ('function', 'NN')), (('function', 'NN'), 'det', ('half', 'DT')), (('function', 'NN'), 'compound', ('keyboard', 'NN'))]
[(('tried', 'VBN'), 'ccomp', ('make', 'VB')), (('make', 'VB'), 'ccomp', ('passed', 'VBN')), (('passed', 'VBN'), 'nsubjpass', ('wouldnt', 'NN')), (('wouldnt', 'NN'), 'amod', ('recovey', 'JJ')), (('wouldnt', 'NN'), 'compound', ('disk', 'NN')), (('passed', 'VBN'), 'auxpass', ('get', 'VB')), (('passed', 'VBN'), 'dobj', ('disk', 'NN')), (('disk', 'NN'), 'amod', ('first', 'JJ')), (('disk', 'NN'), 'compound', ('recovery', 'NN'))]
[(('mac', 'VBP'), 'nsubj', ('pc', 'NN')), (('pc', 'NN'), 'amod', ('previous', 'JJ')), (('pc', 'NN'), 'compound', ('laptop', 'NN')), (('mac', 'VBP'), 'advmod', ('still', 'RB')), (('mac', 'VBP'), 'dobj', ('system', 'NN')), (('system', 'NN'), 'amod', ('clean', 'JJ')), (('clean', 'JJ'), 'advmod', ('osx', 'RB')), (('system', 'NN'), 'amod', ('smooth', 'JJ')), (('system', 'NN'), 'compound', ('operating', 'NN'))]
[(('recommend', 'VB'), 'nsubj', ('summary', 'NN')), (('summary', 'NN'), 'amod', ('brief', 'JJ')), (('summary', 'NN'), 'acl:relcl', ('say', 'VB')), (('say', 'VB'), 'aux', ('would', 'MD')), (('recommend', 'VB'), 'aux', ('would', 'MD')), (('recommend', 'VB'), 'ccomp', ('steer', 'VB')), (('steer', 'VB'), 'nsubj', ('anyone', 'NN')), (('anyone', 'NN'), 'amod', ('dell', 'JJ')), (('anyone', 'NN'), 'amod', ('vostro', 'JJ')), (('anyone', 'NN'), 'nummod', ('1000', 'CD')), (('anyone', 'NN'), 'nmod', ('opinion', 'NN')), (('opinion', 'NN'), 'case', ('due', 'JJ')), (('opinion', 'NN'), 'advmod', ('right', 'RB')), (('opinion', 'NN'), 'amod', ('awful', 'JJ')), (('opinion', 'NN'), 'compound', ('setup', 'NN')), (('steer', 'VB'), 'xcomp', ('clear', 'JJ')), (('clear', 'JJ'), 'ccomp', ('want', 'VBP')), (('want', 'VBP'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('decent', 'JJ'))]
[(('_', 'VBG'), 'advcl', ('taking', 'VBG')), (('taking', 'VBG'), 'compound:prt', ('back', 'RP')), (('taking', 'VBG'), 'dobj', ('buy', 'JJ')), (('buy', 'JJ'), 'advmod', ('best', 'RBS')), (('_', 'VBG'), 'dep', ('found', 'VBD')), (('_', 'VBG'), 'nsubj', ('piece', 'NN')), (('piece', 'NN'), 'amod', ('tiny', 'JJ')), (('piece', 'NN'), 'amod', ('plastic', 'JJ')), (('piece', 'NN'), 'nmod', ('issue', 'NN')), (('issue', 'NN'), 'case', ('inside', 'IN')), (('issue', 'NN'), 'amod', ('broken', 'VBN')), (('issue', 'NN'), 'compound', ('manuf', 'NN'))]
[(('die', 'VB'), 'dobj', ('enthusiast', 'NN')), (('enthusiast', 'NN'), 'amod', ('hard', 'JJ')), (('enthusiast', 'NN'), 'compound', ('window', 'NN')), (('die', 'VB'), 'nsubj', ('point', 'NN')), (('point', 'NN'), 'nummod', ('shunned', 'CD')), (('point', 'NN'), 'compound', ('idea', 'NN')), (('point', 'NN'), 'compound', ('mac', 'NN'))]
[(('mcbook', 'VBP'), 'nsubj', ('apple', 'NN')), (('apple', 'NN'), 'amod', ('easy', 'JJ')), (('apple', 'NN'), 'compound', ('anyone', 'NN')), (('apple', 'NN'), 'compound', ('use', 'NN')), (('mcbook', 'VBP'), 'advmod', ('specially', 'RB')), (('mcbook', 'VBP'), 'dobj', ('notebook', 'NN')), (('notebook', 'NN'), 'amod', ('pro', 'JJ'))]
[(('come', 'VBP'), 'nsubj', ('system', 'NN')), (('come', 'VBP'), 'ccomp', ('started', 'VBD')), (('started', 'VBD'), 'nsubj', ('work', 'NN')), (('work', 'NN'), 'acl', ('trying', 'VBG')), (('trying', 'VBG'), 'advmod', ('properly', 'RB')), (('trying', 'VBG'), 'dobj', ('problem', 'NN')), (('problem', 'NN'), 'compound', ('fix', 'NN')), (('started', 'VBD'), 'xcomp', ('working', 'VBG'))]
[(('plug', 'VBP'), 'ccomp', ('performs', 'VBZ')), (('performs', 'VBZ'), 'nsubj', ('macosx', 'NN')), (('macosx', 'NN'), 'nummod', ('22', 'CD')), (('macosx', 'NN'), 'compound', ('monitor', 'NN')), (('macosx', 'NN'), 'amod', ('speedy', 'JJ')), (('performs', 'VBZ'), 'advmod', ('well', 'RB')), (('plug', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('dual', 'JJ')), (('window', 'NN'), 'compound', ('core', 'NN')), (('window', 'NN'), 'compound', ('dell', 'NN')), (('window', 'NN'), 'amod', ('core', 'NN')), (('core', 'NN'), 'compound', ('7', 'CD')), (('core', 'NN'), 'dep', ('quad', 'JJ'))]
[(('build', 'VBP'), 'nsubj', ('capacity', 'NN')), (('capacity', 'NN'), 'compound', ('everything', 'NN')), (('capacity', 'NN'), 'compound', ('fine', 'NNP')), (('capacity', 'NN'), 'compound', ('machine', 'NN')), (('capacity', 'NN'), 'compound', ('speed', 'NN'))]
[(('called', 'VBD'), 'dobj', ('panel', 'NN')), (('panel', 'NN'), 'compound', ('headquarters', 'NN')), (('panel', 'NN'), 'compound', ('report', 'NN')), (('panel', 'NN'), 'compound', ('tft', 'NN')), (('panel', 'NN'), 'acl', ('broken', 'VBN')), (('broken', 'VBN'), 'nmod:tmod', ('week', 'NN')), (('week', 'NN'), 'amod', ('fixed', 'JJ')), (('week', 'NN'), 'compound', ('end', 'NN')), (('called', 'VBD'), 'nmod:tmod', ('week', 'NN')), (('called', 'VBD'), 'nsubj', ('3', 'CD'))]
[(('feel', 'VBP'), 'xcomp', ('bought', 'VBD')), (('bought', 'VBD'), 'nsubj', ('case', 'NN')), (('case', 'NN'), 'amod', ('comfortable', 'JJ')), (('case', 'NN'), 'compound', ('buy', 'NN')), (('bought', 'VBD'), 'dep', ('happy', 'JJ')), (('bought', 'VBD'), 'nsubj', ('nice', 'NN')), (('nice', 'NN'), 'amod', ('plus', 'IN')), (('nice', 'NN'), 'compound', ('look', 'NN')), (('bought', 'VBD'), 'dobj', ('one', 'NN')), (('one', 'NN'), 'amod', ('white', 'JJ')), (('bought', 'VBD'), 'advmod', ('best', 'RBS')), (('feel', 'VBP'), 'nsubj', ('buy', 'VB'))]
[(('night', 'NN'), 'compound', ('charge', 'NN')), (('night', 'NN'), 'dep', ('skip', 'VB')), (('skip', 'VB'), 'xcomp', ('taking', 'VBG')), (('taking', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'nummod', ('cord', 'CD')), (('life', 'NN'), 'amod', ('good', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN'))]
[(('bar', 'NN'), 'dep', ('also', 'RB')), (('bar', 'NN'), 'compound', ('space', 'NN')), (('bar', 'NN'), 'acl:relcl', ('make', 'VBP')), (('make', 'VBP'), 'advmod', ('noisy', 'RB')), (('make', 'VBP'), 'dep', ('click', 'VB')), (('click', 'VB'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'det', ('every', 'DT')), (('use', 'NN'), 'compound', ('time', 'NN'))]
[(('included', 'VBD'), 'nsubj', ('game', 'NN')), (('included', 'VBD'), 'dobj', ('game', 'NN')), (('game', 'NN'), 'amod', ('good', 'JJ'))]
[(('looked', 'VBD'), 'nmod', ('feature', 'NN')), (('feature', 'NN'), 'advmod', ('around', 'RB')), (('feature', 'NN'), 'case', ('based', 'VBN')), (('feature', 'NN'), 'compound', ('price', 'NN')), (('looked', 'VBD'), 'nsubj', ('landed', 'NNP')), (('landed', 'NNP'), 'compound', ('comparison', 'NN')), (('landed', 'NNP'), 'compound', ('brand', 'NN')), (('landed', 'NNP'), 'compound', ('trusted', 'NNP'))]
[(('start', 'VBP'), 'nsubj', ('premium', 'NN')), (('premium', 'NN'), 'compound', ('price', 'NN')), (('premium', 'NN'), 'amod', ('much', 'JJ')), (('much', 'JJ'), 'advmod', ('little', 'RB')), (('start', 'VBP'), 'xcomp', ('looking', 'VBG')), (('looking', 'VBG'), 'dobj', ('feature', 'NN')), (('looking', 'VBG'), 'nmod', ('cash', 'NN')), (('cash', 'NN'), 'case', ('worth', 'IN')), (('cash', 'NN'), 'amod', ('added', 'VBN'))]
[(('o', 'NN'), 'compound', ('improvement', 'NN')), (('o', 'NN'), 'dep', ('gradual', 'JJ')), (('gradual', 'JJ'), 'advmod', ('relatively', 'RB')), (('o', 'NN'), 'dep', ('substantive', 'JJ'))]
[(('wish', 'VB'), 'ccomp', ('came', 'VBD')), (('came', 'VBD'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'compound', ('iwork', 'NN')), (('office', 'NN'), 'compound', ('m', 'NN')), (('came', 'VBD'), 'ccomp', ('come', 'VBP')), (('come', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'compound', ('mac', 'NN')), (('office', 'NN'), 'compound', ('m', 'NN')), (('come', 'VBP'), 'advmod', ('even', 'RB')), (('come', 'VBP'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('pc', 'NN'))]
[(('temperature', 'NN'), 'nmod', ('temperature', 'NN')), (('temperature', 'NN'), 'case', ('outside', 'IN')), (('temperature', 'NN'), 'amod', ('alright', 'JJ')), (('temperature', 'NN'), 'compound', ('track', 'NN')), (('temperature', 'NN'), 'compound', ('core', 'NN')), (('temperature', 'NN'), 'amod', ('processing', 'VBG')), (('temperature', 'NN'), 'compound', ('unit', 'NN'))]
[(('must', 'MD'), 'nsubj', ('absolute', 'NNS')), (('absolute', 'NNS'), 'compound', ('window', 'NN')), (('absolute', 'NNS'), 'compound', ('laptop', 'NN')), (('absolute', 'NNS'), 'amod', ('wireless', 'JJ')), (('absolute', 'NNS'), 'compound', ('mouse', 'NN'))]
[(('upgradable', 'VBP'), 'nsubj', ('battery', 'NN')), (('upgradable', 'VBP'), 'dobj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('longer', 'JJR')), (('battery', 'NN'), 'compound', ('life', 'NN'))]
[(('screen', 'NN'), 'nsubj', ('inch', 'NN')), (('inch', 'NN'), 'amod', ('laptop', 'JJ')), (('inch', 'NN'), 'compound', ('look', 'NN')), (('inch', 'NN'), 'amod', ('great', 'JJ')), (('inch', 'NN'), 'compound', ('surface', 'NN')), (('inch', 'NN'), 'nummod', ('17', 'CD')), (('screen', 'NN'), 'dobj', ('point', 'NN')), (('point', 'NN'), 'amod', ('good', 'JJ')), (('point', 'NN'), 'compound', ('price', 'NN')), (('point', 'NN'), 'acl:relcl', ('run', 'VBP')), (('run', 'VBP'), 'nsubj', ('boot', 'NN')), (('boot', 'NN'), 'amod', ('nice', 'JJ')), (('boot', 'NN'), 'compound', ('appearance', 'NN')), (('run', 'VBP'), 'advmod', ('quickly', 'RB')), (('run', 'VBP'), 'dobj', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('fast', 'JJ'))]
[(('played', 'VBN'), 'dobj', ('game', 'NN')), (('game', 'NN'), 'amod', ('various', 'JJ')), (('played', 'VBN'), 'nmod', ('problem', 'NN')), (('problem', 'NN'), 'case', ('without', 'IN')), (('played', 'VBN'), 'dep', ('ran', 'VBD')), (('ran', 'VBD'), 'dobj', ('aero', 'NN')), (('ran', 'VBD'), 'advmod', ('smoothly', 'RB')), (('played', 'VBN'), 'nsubj', ('flawlessly', 'NN'))]
[(('laptop', 'NN'), 'amod', ('serious', 'JJ')), (('laptop', 'NN'), 'compound', ('gaming', 'NN')), (('laptop', 'NN'), 'dep', ('machine', 'NN')), (('machine', 'NN'), 'amod', ('serious', 'JJ')), (('machine', 'NN'), 'compound', ('medium', 'NN'))]
[(('window', 'NN'), 'amod', ('loaded', 'JJ')), (('window', 'NN'), 'dep', ('7', 'CD')), (('7', 'CD'), 'nmod', ('flawlessly', 'NN')), (('flawlessly', 'NN'), 'case', ('via', 'IN')), (('flawlessly', 'NN'), 'compound', ('bootcamp', 'NN')), (('flawlessly', 'NN'), 'compound', ('work', 'NN'))]
[(('visual', 'JJ'), 'dep', ('fast', 'RB')), (('visual', 'JJ'), 'advmod', ('great', 'RB'))]
[(('play', 'VBP'), 'nsubj', ('software', 'NN')), (('software', 'NN'), 'advmod', ('even', 'RB')), (('play', 'VBP'), 'dobj', ('dvd', 'NN'))]
[(('find', 'VB'), 'xcomp', ('better', 'JJR')), (('better', 'JJR'), 'nsubj', ('performance', 'NN')), (('performance', 'NN'), 'amod', ('many', 'JJ')), (('performance', 'NN'), 'compound', ('laptop', 'NN')), (('better', 'JJR'), 'advmod', ('even', 'RB')), (('better', 'JJR'), 'ccomp', ('find', 'VB')), (('find', 'VB'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('lower', 'JJR')), (('find', 'VB'), 'aux', ('can', 'MD')), (('find', 'VB'), 'neg', ('not', 'RB')), (('find', 'VB'), 'xcomp', ('look', 'VB')), (('look', 'VB'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'amod', ('easy', 'JJ')), (('mac', 'NN'), 'compound', ('application', 'NN')), (('mac', 'NN'), 'compound', ('experience', 'NN'))]
[(('mention', 'VB'), 'xcomp', ('amazing', 'JJ')), (('amazing', 'JJ'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('amazing', 'JJ'), 'advmod', ('absolutely', 'RB'))]
[(('horrible', 'JJ'), 'advmod', ('absolutely', 'RB')), (('horrible', 'JJ'), 'dep', ('use', 'VB')), (('use', 'VB'), 'nmod', ('feature', 'NN')), (('feature', 'NN'), 'case', ('despite', 'IN')), (('feature', 'NN'), 'amod', ('called', 'VBN')), (('feature', 'NN'), 'amod', ('advanced', 'JJ'))]
[(('told', 'VBD'), 'nsubj', ('week', 'NN')), (('week', 'NN'), 'acl', ('got', 'VBN')), (('got', 'VBN'), 'advmod', ('finally', 'RB')), (('got', 'VBN'), 'compound:prt', ('back', 'RP')), (('told', 'VBD'), 'dobj', ('motherboard', 'NN')), (('motherboard', 'NN'), 'amod', ('motherboard', 'JJ')), (('motherboard', 'NN'), 'amod', ('failed', 'VBN')), (('motherboard', 'NN'), 'amod', ('installed', 'JJ')), (('motherboard', 'NN'), 'amod', ('new', 'JJ'))]
[(('want', 'VBP'), 'nsubj', ('card', 'NN')), (('card', 'NN'), 'amod', ('switchable', 'JJ')), (('card', 'NN'), 'amod', ('graphic', 'JJ')), (('card', 'NN'), 'amod', ('sweet', 'JJ')), (('sweet', 'JJ'), 'advmod', ('pretty', 'RB')), (('want', 'VBP'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('gaming', 'NN'))]
[(('upgraded', 'VBD'), 'ccomp', ('replaced', 'VBD')), (('replaced', 'VBD'), 'nsubj', ('memory', 'NN')), (('replaced', 'VBD'), 'ccomp', ('win', 'VBP')), (('win', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'compound', ('base', 'NN')), (('window', 'NN'), 'amod', ('starter', 'NN')), (('starter', 'NN'), 'compound', ('7', 'CD')), (('upgraded', 'VBD'), 'nsubj', ('fine', 'NN')), (('fine', 'NN'), 'nummod', ('7', 'CD')), (('fine', 'NN'), 'compound', ('home', 'NN')), (('fine', 'NN'), 'compound', ('run', 'NN'))]
[(('light', 'NN'), 'amod', ('great', 'JJ')), (('light', 'NN'), 'compound', ('computer', 'NN')), (('light', 'NN'), 'dep', ('use', 'NN')), (('use', 'NN'), 'compound', ('home', 'NN')), (('use', 'NN'), 'compound', ('use', 'NN')), (('use', 'NN'), 'compound', ('business', 'NN'))]
[(('screen', 'NN'), 'nsubj', ('size', 'NN')), (('size', 'NN'), 'compound', ('love', 'NN')), (('screen', 'NN'), 'advcl', ('tote', 'VB')), (('tote', 'VB'), 'mark', ('although', 'IN')), (('tote', 'VB'), 'nsubj', ('lightweight', 'JJ')), (('lightweight', 'JJ'), 'advmod', ('still', 'RB')), (('tote', 'VB'), 'advmod', ('easy', 'RB')), (('tote', 'VB'), 'compound:prt', ('around', 'RP'))]
[(('tried', 'VBD'), 'advmod', ('whenever', 'WRB')), (('tried', 'VBD'), 'ccomp', ('restart', 'VB')), (('restart', 'VB'), 'nsubj', ('turn', 'NN')), (('restart', 'VB'), 'aux', ('would', 'MD')), (('restart', 'VB'), 'ccomp', ('launched', 'VBD')), (('launched', 'VBD'), 'advmod', ('soon', 'RB')), (('launched', 'VBD'), 'nsubj', ('bios', 'NNS')), (('launched', 'VBD'), 'dobj', ('winblows', 'NNS')), (('winblows', 'NNS'), 'compound', ('window', 'NN')), (('launched', 'VBD'), 'nmod', ('call', 'NN')), (('call', 'NN'), 'case', ('like', 'IN')), (('call', 'NN'), 'compound', ('ot', 'NN'))]
[(('friend', 'NN'), 'dep', ('replace', 'VB')), (('replace', 'VB'), 'dobj', ('look', 'NN')), (('look', 'NN'), 'amod', ('entire', 'JJ')), (('look', 'NN'), 'amod', ('motherboard', 'JJ')), (('look', 'NN'), 'compound', ('wife', 'NN')), (('replace', 'VB'), 'advcl', ('well', 'RB')), (('well', 'RB'), 'case', ('like', 'IN'))]
[(('internet', 'NN'), 'amod', ('graphic', 'JJ')), (('internet', 'NN'), 'amod', ('clean', 'JJ')), (('internet', 'NN'), 'amod', ('sharp', 'JJ')), (('internet', 'NN'), 'dep', ('seamless', 'NNS')), (('seamless', 'NNS'), 'amod', ('interface', 'JJ'))]
[(('provide', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'acl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('doesnt', 'NN')), (('doesnt', 'NN'), 'compound', ('document', 'NN')), (('doesnt', 'NN'), 'compound', ('creation', 'NN')), (('doesnt', 'NN'), 'compound', ('apple', 'NN')), (('provide', 'VBP'), 'ccomp', ('work', 'VB')), (('work', 'VB'), 'nsubj', ('processor', 'NN')), (('processor', 'NN'), 'compound', ('kind', 'NN')), (('processor', 'NN'), 'compound', ('word', 'NN')), (('work', 'VB'), 'dobj', ('iwork', 'NN')), (('iwork', 'NN'), 'compound', ('window', 'NN')), (('work', 'VB'), 'nmod', ('office', 'NN')), (('office', 'NN'), 'advmod', ('cheap', 'RB')), (('office', 'NN'), 'case', ('compared', 'VBN'))]
[(('returned', 'VBN'), 'iobj', ('repair', 'NN')), (('repair', 'NN'), 'amod', ('laptop', 'JJ')), (('returned', 'VBN'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'amod', ('2nd', 'JJ')), (('returned', 'VBN'), 'dep', ('came', 'VBD')), (('came', 'VBD'), 'advmod', ('back', 'RB')), (('returned', 'VBN'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('obvious', 'JJ')), (('keyboard', 'NN'), 'amod', ('physical', 'JJ')), (('keyboard', 'NN'), 'compound', ('damage', 'NN')), (('keyboard', 'NN'), 'acl', ('bulging', 'VBG')), (('bulging', 'VBG'), 'dobj', ('grill', 'NN')), (('grill', 'NN'), 'compound', ('speaker', 'NN')), (('grill', 'NN'), 'acl', ('pressed', 'VBN')), (('pressed', 'VBN'), 'dobj', ('button', 'NN')), (('pressed', 'VBN'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'xcomp', ('inoperative', 'JJ')), (('inoperative', 'JJ'), 'nsubj', ('port', 'NN')), (('port', 'NN'), 'compound', ('usb', 'NN'))]
[(('worked', 'VBD'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'compound', ('version', 'NN')), (('program', 'NN'), 'amod', ('saved', 'JJ')), (('saved', 'JJ'), 'amod', ('able', 'JJ')), (('worked', 'VBD'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'amod', ('opened', 'VBN')), (('mac', 'NN'), 'compound', ('pc', 'NN')), (('mac', 'NN'), 'compound', ('mac', 'NN')), (('mac', 'NN'), 'compound', ('version', 'NN')), (('mac', 'NN'), 'compound', ('program', 'NN')), (('mac', 'NN'), 'amod', ('superior', 'JJ')), (('superior', 'JJ'), 'advmod', ('graphically', 'RB')), (('superior', 'JJ'), 'advmod', ('functionally', 'RB'))]
[(('unable', 'JJ'), 'advmod', ('vista', 'RB')), (('unable', 'JJ'), 'dep', ('install', 'VB')), (('install', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('uninstall', 'JJ'))]
[(('set', 'VBD'), 'advmod', ('fast', 'RB')), (('fast', 'RB'), 'dep', ('easy', 'JJ')), (('easy', 'JJ'), 'advmod', ('easy', 'RB')), (('easy', 'JJ'), 'advmod', ('easy', 'RB')), (('set', 'VBD'), 'dobj', ('hook', 'NN')), (('hook', 'NN'), 'amod', ('easy', 'JJ')), (('set', 'VBD'), 'nsubj', ('network', 'NN')), (('network', 'NN'), 'amod', ('wireless', 'JJ'))]
[(('lot', 'NN'), 'amod', ('plenty', 'JJ')), (('lot', 'NN'), 'compound', ('memory', 'NN')), (('lot', 'NN'), 'dep', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('lot', 'NN'), 'dep', ('graphic', 'NNS')), (('graphic', 'NNS'), 'amod', ('great', 'JJ'))]
[(('sized', 'VBD'), 'advmod', ('nicely', 'RB')), (('sized', 'VBD'), 'nsubj', ('power', 'NN')), (('power', 'NN'), 'amod', ('laptop', 'JJ')), (('power', 'NN'), 'compound', ('lot', 'NN')), (('power', 'NN'), 'compound', ('processing', 'NN')), (('power', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('long', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN'))]
[(('rewired', 'VBD'), 'nsubj', ('jack', 'NN')), (('jack', 'NN'), 'amod', ('_', 'JJ')), (('jack', 'NN'), 'amod', ('fixed', 'VBN')), (('jack', 'NN'), 'compound', ('dc', 'NN')), (('jack', 'NN'), 'nmod', ('unit', 'NN')), (('unit', 'NN'), 'case', ('inside', 'IN')), (('rewired', 'VBD'), 'ccomp', ('replaced', 'VBD')), (('replaced', 'VBD'), 'nsubj', ('jack', 'NN')), (('jack', 'NN'), 'compound', ('dc', 'NN')), (('jack', 'NN'), 'nmod', ('laptop', 'NN')), (('laptop', 'NN'), 'case', ('outside', 'IN')), (('replaced', 'VBD'), 'dobj', ('brick', 'NN')), (('brick', 'NN'), 'compound', ('power', 'NN'))]
[(('get', 'VB'), 'advmod', ('even', 'RB')), (('get', 'VB'), 'dobj', ('card', 'NN')), (('card', 'NN'), 'compound', ('satellite', 'NN')), (('card', 'NN'), 'acl', ('bought', 'VBN')), (('bought', 'VBN'), 'advmod', ('begin', 'VB'))]
[(('also', 'RB'), 'dep', ('made', 'VBD')), (('made', 'VBD'), 'mark', ('like', 'IN')), (('made', 'VBD'), 'nsubj', ('noise', 'NN')), (('noise', 'NN'), 'amod', ('loud', 'JJ')), (('made', 'VBD'), 'ccomp', ('get', 'VB')), (('get', 'VB'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('bottom', 'JJ')), (('get', 'VB'), 'aux', ('would', 'MD')), (('get', 'VB'), 'xcomp', ('hot', 'JJ')), (('hot', 'JJ'), 'advmod', ('really', 'RB'))]
[(('_', 'VBD'), 'ccomp', ('flash', 'VBP')), (('flash', 'VBP'), 'nsubj', ('adobe', 'NN')), (('adobe', 'NN'), 'amod', ('numerous', 'JJ')), (('adobe', 'NN'), 'compound', ('problem', 'NN')), (('adobe', 'NN'), 'compound', ('vista', 'NN')), (('flash', 'VBP'), 'ccomp', ('quits', 'VBZ')), (('quits', 'VBZ'), 'nsubj', ('player', 'NN')), (('quits', 'VBZ'), 'ccomp', ('explore', 'VB')), (('explore', 'VB'), 'nsubj', ('internet', 'NN')), (('internet', 'NN'), 'amod', ('uninstalled', 'JJ')), (('internet', 'NN'), 'amod', ('reinsalled', 'JJ')), (('explore', 'VB'), 'ccomp', ('lose', 'VB')), (('lose', 'VB'), 'nsubj', ('quits', 'NNP')), (('lose', 'VB'), 'ccomp', ('appeared', 'VBD')), (('appeared', 'VBD'), 'nsubj', ('whatever', 'WDT')), (('appeared', 'VBD'), 'csubj', ('working', 'VBG')), (('working', 'VBG'), 'advmod', ('also', 'RB')), (('working', 'VBG'), 'dobj', ('update', 'NN')), (('update', 'NN'), 'compound', ('window', 'NN')), (('appeared', 'VBD'), 'dobj', ('computer', 'NN')), (('appeared', 'VBD'), 'advcl', ('got', 'VBD')), (('got', 'VBD'), 'mark', ('since', 'IN')), (('got', 'VBD'), 'dobj', ('updated', 'NNS')), (('got', 'VBD'), 'advmod', ('probably', 'RB')), (('_', 'VBD'), 'nsubj', ('update', 'NN')), (('update', 'NN'), 'nummod', ('400', 'CD')), (('update', 'NN'), 'compound', ('time', 'NN'))]
[(('crashed', 'VBD'), 'nsubj', ('computer', 'NN')), (('crashed', 'VBD'), 'advmod', ('frequently', 'RB')), (('crashed', 'VBD'), 'ccomp', ('decreased', 'VBD')), (('decreased', 'VBD'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('decreased', 'VBD'), 'advmod', ('quickly', 'RB'))]
[(('stopped', 'VBN'), 'nsubj', ('charger', 'NN')), (('charger', 'NN'), 'nummod', ('4', 'CD')), (('charger', 'NN'), 'compound', ('month', 'NN')), (('stopped', 'VBN'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'dep', ('forced', 'VBN')), (('forced', 'VBN'), 'ccomp', ('go', 'VB')), (('go', 'VB'), 'xcomp', ('buy', 'VB')), (('buy', 'VB'), 'ccomp', ('keep', 'VB')), (('keep', 'VB'), 'nsubj', ('hardware', 'NN')), (('hardware', 'NN'), 'amod', ('new', 'JJ')), (('keep', 'VB'), 'dobj', ('computer', 'NN')), (('computer', 'NN'), 'acl', ('running', 'VBG'))]
[(('supposed', 'VBD'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('supposed', 'VBD'), 'ccomp', ('ran', 'VBD')), (('ran', 'VBD'), 'nsubj', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('6', 'CD')), (('ran', 'VBD'), 'advmod', ('even', 'RB')), (('ran', 'VBD'), 'ccomp', ('last', 'VB')), (('last', 'VB'), 'nsubj', ('effeciency', 'NN')), (('effeciency', 'NN'), 'compound', ('battery', 'NN')), (('effeciency', 'NN'), 'amod', ('high', 'JJ')), (('effeciency', 'NN'), 'acl', ('setting', 'VBG')), (('setting', 'VBG'), 'dobj', ('battery', 'NN')), (('last', 'VB'), 'aux', ('would', 'MD')), (('last', 'VB'), 'xcomp', ('average', 'JJ')), (('average', 'JJ'), 'nmod', ('5', 'CD')), (('5', 'CD'), 'compound', ('2', 'CD')), (('5', 'CD'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('3', 'CD'))]
[(('feel', 'VBP'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('real', 'JJ')), (('computer', 'NN'), 'compound', ('stand', 'NN')), (('feel', 'VBP'), 'dobj', ('speed', 'NN')), (('speed', 'NN'), 'compound', ('keyboard', 'NN'))]
[(('work', 'NN'), 'compound', ('downfall', 'NN')), (('work', 'NN'), 'compound', ('lot', 'NN')), (('work', 'NN'), 'compound', ('software', 'NN')), (('work', 'NN'), 'dep', ('price', 'NN')), (('price', 'NN'), 'compound', ('mac', 'NN')), (('price', 'NN'), 'compound', ('iwork', 'NN')), (('price', 'NN'), 'compound', ('worth', 'NN'))]
[(('lap', 'VBP'), 'nsubj', ('sitting', 'VBG')), (('lap', 'VBP'), 'ccomp', ('look', 'VBP')), (('look', 'VBP'), 'nsubj', ('front', 'NN')), (('front', 'NN'), 'compound', ('desk', 'NN')), (('look', 'VBP'), 'ccomp', ('im', 'VB')), (('im', 'VB'), 'nsubj', ('enough', 'NN')), (('enough', 'NN'), 'amod', ('big', 'JJ')), (('im', 'VB'), 'aux', ('could', 'MD')), (('im', 'VB'), 'dobj', ('lenovo', 'NN')), (('lenovo', 'NN'), 'amod', ('used', 'JJ')), (('lenovo', 'NN'), 'acl:relcl', ('want', 'VBP')), (('want', 'VBP'), 'nsubj', ('tablet', 'NN')), (('tablet', 'NN'), 'nummod', ('10', 'CD')), (('tablet', 'NN'), 'nmod', ('size', 'NN')), (('size', 'NN'), 'case', ('plus', 'CC')), (('size', 'NN'), 'amod', ('great', 'JJ')), (('want', 'VBP'), 'xcomp', ('unplug', 'VB')), (('unplug', 'VB'), 'ccomp', ('take', 'VB')), (('take', 'VB'), 'nsubj', ('monitor', 'NN')), (('monitor', 'NN'), 'amod', ('external', 'JJ')), (('monitor', 'NN'), 'compound', ('keyboard', 'NN')), (('monitor', 'NN'), 'compound', ('mouse', 'NN')), (('take', 'VB'), 'xcomp', ('take', 'VB')), (('take', 'VB'), 'dobj', ('video', 'NN')), (('video', 'NN'), 'amod', ('photo', 'JJ'))]
[(('pay', 'VB'), 'ccomp', ('want', 'VBP')), (('want', 'VBP'), 'nsubj', ('spec', 'NN')), (('spec', 'NN'), 'compound', ('attention', 'NN')), (('want', 'VBP'), 'dobj', ('option', 'NN'))]
[(('chip', 'NN'), 'compound', ('sata', 'NN')), (('chip', 'NN'), 'compound', ('controller', 'NN')), (('chip', 'NN'), 'compound', ('motherboard', 'NN')), (('chip', 'NN'), 'dep', ('let', 'VB')), (('let', 'VB'), 'ccomp', ('talk', 'VB')), (('talk', 'VB'), 'nsubj', ('cpu', 'NN')), (('talk', 'VB'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ'))]
[(('use', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'amod', ('several', 'JJ')), (('office', 'NN'), 'compound', ('program', 'NN')), (('office', 'NN'), 'compound', ('school', 'NN')), (('use', 'VBP'), 'xcomp', ('etc', 'FW')), (('etc', 'FW'), 'compound', ('page', 'NN')), (('etc', 'FW'), 'compound', ('number', 'NN')), (('etc', 'FW'), 'compound', ('keynote', 'NN')), (('etc', 'FW'), 'compound', ('etc', 'NN')), (('etc', 'FW'), 'compound', ('music', 'NN')), (('etc', 'FW'), 'compound', ('garageband', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('management', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('booth', 'NN')), (('etc', 'FW'), 'compound', ('iphoto', 'NN')), (('etc', 'FW'), 'compound', ('video', 'NN')), (('etc', 'FW'), 'compound', ('editing', 'NN')), (('etc', 'FW'), 'compound', ('movie', 'NN')), (('etc', 'FW'), 'compound', ('making', 'NN')), (('etc', 'FW'), 'dep', ('imovie', 'NNS'))]
[(('internet', 'VBD'), 'dobj', ('capability', 'NN')), (('internet', 'VBD'), 'advmod', ('also', 'RB')), (('internet', 'VBD'), 'nsubj', ('signal', 'NN')), (('signal', 'NN'), 'amod', ('strong', 'JJ')), (('signal', 'NN'), 'compound', ('pick', 'NN')), (('signal', 'NN'), 'advmod', ('easily', 'RB'))]
[(('say', 'VBP'), 'nsubj', ('suffice', 'NNP')), (('say', 'VBP'), 'ccomp', ('keep', 'VBP')), (('keep', 'VBP'), 'nsubj', ('pro', 'NN')), (('pro', 'NN'), 'compound', ('macbook', 'NN')), (('keep', 'VBP'), 'xcomp', ('going', 'VBG')), (('going', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'amod', ('long', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('going', 'VBG'), 'advcl', ('blazing', 'VBG')), (('blazing', 'VBG'), 'dobj', ('speed', 'NN'))]
[(('scream', 'NN'), 'nsubj', ('processor', 'NN')), (('scream', 'NN'), 'dobj', ('graphic', 'NN')), (('graphic', 'NN'), 'amod', ('unique', 'JJ')), (('graphic', 'NN'), 'compound', ('way', 'NN')), (('graphic', 'NN'), 'compound', ('apple', 'NN')), (('graphic', 'NN'), 'compound', ('osx', 'NN')), (('graphic', 'NN'), 'nummod', ('16', 'CD')), (('graphic', 'NN'), 'compound', ('function', 'NN')), (('graphic', 'NN'), 'acl', ('routed', 'VBN')), (('routed', 'VBN'), 'dobj', ('hardware', 'NN')), (('routed', 'VBN'), 'nmod', ('software', 'NN')), (('software', 'NN'), 'advmod', ('rather', 'RB'))]
[(('vary', 'VBP'), 'dep', ('handle', 'VBP')), (('handle', 'VBP'), 'nsubj', ('toshiba', 'NN')), (('handle', 'VBP'), 'ccomp', ('seems', 'VBZ')), (('seems', 'VBZ'), 'nsubj', ('repair', 'NN')), (('vary', 'VBP'), 'ccomp', ('indicate', 'VBP')), (('indicate', 'VBP'), 'nsubj', ('folk', 'NN')), (('indicate', 'VBP'), 'dep', ('charged', 'VBN')), (('charged', 'VBN'), 'dobj', ('repair', 'NN')), (('repair', 'NN'), 'amod', ('intial', 'JJ')), (('intial', 'JJ'), 'advmod', ('even', 'RB')), (('repair', 'NN'), 'compound', ('fix', 'NN')), (('repair', 'NN'), 'compound', ('others', 'NNS')), (('repair', 'NN'), 'acl', ('done', 'VBN')), (('vary', 'VBP'), 'nsubj', ('time', 'NN')), (('time', 'NN'), 'nummod', ('5', 'CD'))]
[(('temp', 'NN'), 'amod', ('ideal', 'JJ')), (('temp', 'NN'), 'compound', ('child', 'NN'))]
[(('find', 'VB'), 'xcomp', ('using', 'VBG')), (('using', 'VBG'), 'ccomp', ('would', 'MD')), (('would', 'MD'), 'nsubj', ('thought', 'NN')), (('thought', 'NN'), 'nummod', ('10', 'CD')), (('thought', 'NN'), 'amod', ('key', 'JJ'))]
[(('allow', 'VBP'), 'dep', ('build', 'VBP')), (('build', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('best', 'JJS')), (('build', 'VBP'), 'dobj', ('company', 'NN')), (('company', 'NN'), 'compound', ('computer', 'NN')), (('company', 'NN'), 'compound', ('u', 'NN')), (('company', 'NN'), 'nmod', ('dell', 'NN')), (('dell', 'NN'), 'case', ('like', 'IN')), (('allow', 'VBP'), 'xcomp', ('choose', 'VB')), (('choose', 'VB'), 'dobj', ('component', 'NN')), (('component', 'NN'), 'acl:relcl', ('get', 'VBP')), (('get', 'VBP'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('better', 'JJR')), (('get', 'VBP'), 'ccomp', ('compare', 'VBP')), (('compare', 'VBP'), 'nsubj', ('computer', 'NN')), (('compare', 'VBP'), 'dobj', ('apple', 'NN')), (('apple', 'NN'), 'nummod', ('one', 'CD')), (('apple', 'NN'), 'acl:relcl', ('google', 'VBP')), (('google', 'VBP'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'nummod', ('2000', 'CD')), (('google', 'VBP'), 'ccomp', ('find', 'VBP')), (('find', 'VBP'), 'nsubj', ('coupon', 'NN')), (('coupon', 'NN'), 'amod', ('dell', 'JJ')), (('find', 'VBP'), 'ccomp', ('take', 'VB')), (('take', 'VB'), 'nsubj', ('code', 'NN')), (('take', 'VB'), 'dobj', ('signifant', 'NN')), (('allow', 'VBP'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'nummod', ('_', 'CD')), (('price', 'NN'), 'compound', ('amount', 'NN'))]
[(('screen', 'NN'), 'nummod', ('17', 'CD')), (('screen', 'NN'), 'compound', ('inch', 'NN')), (('screen', 'NN'), 'dep', ('light', 'NN')), (('light', 'NN'), 'amod', ('large', 'JJ')), (('light', 'NN'), 'compound', ('computer', 'NN'))]
[(('price', 'NN'), 'dep', ('product', 'NN')), (('product', 'NN'), 'amod', ('good', 'JJ')), (('price', 'NN'), 'dep', ('quality', 'NN')), (('quality', 'NN'), 'amod', ('top', 'JJ'))]
[(('gesture', 'NN'), 'dep', ('however', 'RB')), (('gesture', 'NN'), 'amod', ('multi', 'JJ')), (('gesture', 'NN'), 'compound', ('touch', 'NN')), (('gesture', 'NN'), 'acl:relcl', ('make', 'VBP')), (('make', 'VBP'), 'nsubj', ('area', 'NN')), (('area', 'NN'), 'amod', ('large', 'JJ')), (('area', 'NN'), 'compound', ('tracking', 'NN')), (('make', 'VBP'), 'dobj', ('mouse', 'NN')), (('mouse', 'NN'), 'amod', ('external', 'JJ')), (('mouse', 'NN'), 'amod', ('unnecessary', 'JJ')), (('mouse', 'NN'), 'dep', ('gaming', 'NN')), (('gaming', 'NN'), 'mark', ('unless', 'IN'))]
[(('feature', 'NN'), 'amod', ('overall', 'JJ')), (('feature', 'NN'), 'amod', ('poor', 'JJ')), (('feature', 'NN'), 'dep', ('performance', 'NN')), (('performance', 'NN'), 'amod', ('average', 'JJ')), (('performance', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('poor', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('feature', 'NN'), 'dep', ('poor', 'NN')), (('poor', 'NN'), 'amod', ('excellent', 'JJ')), (('poor', 'NN'), 'compound', ('price', 'NN')), (('poor', 'NN'), 'compound', ('value', 'NN'))]
[(('function', 'NN'), 'compound', ('love', 'NN')), (('function', 'NN'), 'compound', ('size', 'NN')), (('function', 'NN'), 'compound', ('keyboard', 'NN'))]
[(('understand', 'VBP'), 'nsubj', ('techie', 'NN')), (('techie', 'NN'), 'amod', ('much', 'JJ')), (('techie', 'NN'), 'compound', ('computer', 'NN')), (('understand', 'VBP'), 'dobj', ('problem', 'NN')), (('problem', 'NN'), 'amod', ('of_the', 'JJ')), (('problem', 'NN'), 'amod', ('internal', 'JJ')), (('problem', 'NN'), 'nmod', ('program', 'NN')), (('program', 'NN'), 'case', ('though', 'IN')), (('program', 'NN'), 'compound', ('trend', 'NN')), (('program', 'NN'), 'amod', ('micro', 'JJ')), (('program', 'NN'), 'amod', ('antiviral', 'JJ'))]
[(('could', 'MD'), 'advmod', ('shut', 'JJ')), (('shut', 'JJ'), 'advmod', ('close', 'RB')), (('close', 'RB'), 'nmod:npmod', ('bay', 'NN')), (('bay', 'NN'), 'nummod', ('2nd', 'CD')), (('bay', 'NN'), 'compound', ('hdd', 'NN')), (('close', 'RB'), 'nmod', ('break', 'NN')), (('break', 'NN'), 'case', ('since', 'IN')), (('break', 'NN'), 'compound', ('bracket', 'NN')), (('shut', 'JJ'), 'advmod', ('even', 'RB')), (('shut', 'JJ'), 'advmod', ('still', 'RB')), (('could', 'MD'), 'nsubj', ('flaw', 'NN')), (('flaw', 'NN'), 'amod', ('major', 'JJ')), (('flaw', 'NN'), 'dep', ('user', 'NN')), (('user', 'NN'), 'amod', ('dual', 'JJ')), (('user', 'NN'), 'compound', ('hdd', 'NN'))]
[(('sound', 'VB'), 'dobj', ('card', 'NN')), (('card', 'NN'), 'amod', ('limited', 'VBN')), (('limited', 'VBN'), 'dep', ('though', 'IN'))]
[(('admit', 'VBP'), 'nsubj', ('pc', 'NN')), (('pc', 'NN'), 'compound', ('user', 'NN')), (('admit', 'VBP'), 'xcomp', ('running', 'VBG')), (('running', 'VBG'), 'nsubj', ('pro', 'NN')), (('pro', 'NN'), 'compound', ('macbook', 'NN')), (('running', 'VBG'), 'dep', ('better', 'JJR')), (('running', 'VBG'), 'dobj', ('system', 'NN')), (('system', 'NN'), 'acl', ('found', 'VBN')), (('found', 'VBN'), 'xcomp', ('getting', 'VBG')), (('getting', 'VBG'), 'dobj', ('job', 'NN')), (('job', 'NN'), 'acl', ('done', 'VBN')), (('done', 'VBN'), 'xcomp', ('quicker', 'JJR'))]
[(('looking', 'VBG'), 'dobj', ('something', 'NN')), (('looking', 'VBG'), 'dep', ('fly', 'VBP')), (('fly', 'VBP'), 'dobj', ('play', 'NN')), (('play', 'NN'), 'amod', ('massive', 'JJ')), (('play', 'NN'), 'compound', ('spreadsheet', 'NN')), (('looking', 'VBG'), 'nsubj', ('game', 'NN')), (('game', 'NN'), 'amod', ('graphic', 'JJ')), (('game', 'NN'), 'amod', ('intensive', 'JJ')), (('game', 'NN'), 'acl', ('getting', 'VBG')), (('getting', 'VBG'), 'advmod', ('better', 'RBR')), (('getting', 'VBG'), 'dobj', ('machine', 'NN')), (('machine', 'NN'), 'acl', ('aimed', 'VBN')), (('aimed', 'VBN'), 'dobj', ('market', 'NN')), (('market', 'NN'), 'compound', ('segment', 'NN'))]
[(('keyboard', 'NN'), 'dep', ('also', 'RB')), (('keyboard', 'NN'), 'acl', ('replaced', 'VBN')), (('replaced', 'VBN'), 'dobj', ('expense', 'NN'))]
[(('eliminates', 'VBZ'), 'nsubj', ('option', 'NN')), (('option', 'NN'), 'compound', ('program', 'NN')), (('option', 'NN'), 'compound', ('keynote', 'NN')), (('option', 'NN'), 'compound', ('page', 'NN')), (('option', 'NN'), 'compound', ('number', 'NN')), (('option', 'NN'), 'nmod', ('document', 'NN')), (('document', 'NN'), 'case', ('save', 'IN')), (('document', 'NN'), 'amod', ('compatible', 'JJ')), (('compatible', 'JJ'), 'amod', ('microsoft', 'JJ')), (('eliminates', 'VBZ'), 'advmod', ('really', 'RB')), (('eliminates', 'VBZ'), 'dobj', ('need', 'NN')), (('need', 'NN'), 'amod', ('actual', 'JJ'))]
[(('memory', 'NN'), 'compound', ('difference', 'NN')), (('memory', 'NN'), 'compound', ('toshiba', 'NN')), (('memory', 'NN'), 'compound', ('lot', 'NN')), (('memory', 'NN'), 'dep', ('space', 'NN')), (('space', 'NN'), 'amod', ('hard', 'JJ')), (('space', 'NN'), 'compound', ('drive', 'NN'))]
[(('speaker', 'NN'), 'dep', ('use', 'NN')), (('use', 'NN'), 'amod', ('small', 'JJ')), (('use', 'NN'), 'amod', ('real', 'JJ'))]
[(('comfterbale', 'VB'), 'xcomp', ('use', 'VB')), (('use', 'VB'), 'dobj', ('transport', 'NN')), (('transport', 'NN'), 'amod', ('light', 'JJ')), (('transport', 'NN'), 'amod', ('easy', 'JJ'))]
[(('typing', 'VBG'), 'dobj', ('keyboard', 'NN')), (('typing', 'VBG'), 'dep', ('becomes', 'VBZ')), (('typing', 'VBG'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'amod', ('uncomfortable', 'JJ')), (('use', 'NN'), 'amod', ('extended', 'JJ')), (('use', 'NN'), 'nmod', ('rest', 'NN')), (('rest', 'NN'), 'case', ('due', 'IN')), (('rest', 'NN'), 'amod', ('sharp', 'JJ')), (('rest', 'NN'), 'compound', ('edge', 'NN')), (('rest', 'NN'), 'compound', ('wrist', 'NN'))]
[(('security', 'NN'), 'amod', ('graphic', 'JJ')), (('graphic', 'JJ'), 'amod', ('awesome', 'JJ')), (('security', 'NN'), 'amod', ('assuring', 'JJ')), (('security', 'NN'), 'dep', ('perfect', 'JJ'))]
[(('love', 'VBP'), 'xcomp', ('build', 'VB')), (('build', 'VB'), 'advmod', ('solid', 'RB')), (('build', 'VB'), 'dobj', ('light', 'NN')), (('love', 'VBP'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'nummod', ('wt', 'CD')), (('life', 'NN'), 'amod', ('excellent', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN'))]
[(('waiting', 'VBG'), 'dobj', ('i7', 'NNS')), (('waiting', 'VBG'), 'advmod', ('well', 'RB')), (('waiting', 'VBG'), 'nmod', ('price', 'NN')), (('price', 'NN'), 'case', ('worth', 'IN')), (('price', 'NN'), 'amod', ('great', 'JJ')), (('price', 'NN'), 'compound', ('value', 'NN'))]
[(('connects', 'VBZ'), 'dep', ('portable', 'JJ')), (('portable', 'JJ'), 'advmod', ('extremely', 'RB')), (('connects', 'VBZ'), 'advmod', ('easily', 'RB')), (('connects', 'VBZ'), 'dobj', ('library', 'NN')), (('library', 'NN'), 'amod', ('wifi', 'JJ')), (('connects', 'VBZ'), 'nsubj', ('elsewhere', 'RB'))]
[(('temperature', 'NN'), 'nmod', ('temperature', 'NN')), (('temperature', 'NN'), 'case', ('outside', 'IN')), (('temperature', 'NN'), 'amod', ('alright', 'JJ')), (('temperature', 'NN'), 'compound', ('track', 'NN')), (('temperature', 'NN'), 'compound', ('core', 'NN')), (('temperature', 'NN'), 'amod', ('processing', 'VBG')), (('temperature', 'NN'), 'compound', ('unit', 'NN'))]
[(('spend', 'VBP'), 'nsubj', ('fact', 'NN')), (('spend', 'VBP'), 'ccomp', ('underscore', 'VBP')), (('underscore', 'VBP'), 'nsubj', ('webcam', 'NN')), (('webcam', 'NN'), 'nummod', ('100', 'CD')), (('underscore', 'VBP'), 'dobj', ('machine', 'NN')), (('machine', 'NN'), 'compound', ('value', 'NN'))]
[(('saw', 'VBD'), 'nsubj', ('toy', 'NN')), (('toy', 'NN'), 'amod', ('real', 'JJ')), (('toy', 'NN'), 'amod', ('touchpad', 'JJ')), (('saw', 'VBD'), 'dobj', ('brand', 'NN'))]
[(('changed', 'VBD'), 'advmod', ('forever', 'RB')), (('changed', 'VBD'), 'dobj', ('window', 'NN')), (('window', 'NN'), 'amod', ('longer', 'JJR')), (('window', 'NN'), 'compound', ('buy', 'NN')), (('window', 'NN'), 'acl', ('based', 'VBN')), (('based', 'VBN'), 'dobj', ('machine', 'NN')), (('changed', 'VBD'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'amod', ('personal', 'JJ'))]
[(('work', 'VB'), 'dobj', ('production', 'NN')), (('production', 'NN'), 'compound', ('film', 'NN')), (('production', 'NN'), 'compound', ('editing', 'NN')), (('production', 'NN'), 'compound', ('post', 'NN')), (('work', 'VB'), 'dep', ('need', 'VB')), (('need', 'VB'), 'dobj', ('speed', 'NN')), (('speed', 'NN'), 'amod', ('laptop', 'JJ')), (('speed', 'NN'), 'compound', ('power', 'NN')), (('speed', 'NN'), 'compound', ('memory', 'NN')), (('need', 'VB'), 'advmod', ('well', 'RB'))]
[(('call', 'VB'), 'dobj', ('support', 'NN')), (('support', 'NN'), 'compound', ('tech', 'NN')), (('support', 'NN'), 'acl', ('routed', 'VBN')), (('routed', 'VBN'), 'dobj', ('someone', 'NN')), (('someone', 'NN'), 'acl:relcl', ('know', 'VBP')), (('know', 'VBP'), 'nsubj', ('country', 'NN')), (('country', 'NN'), 'det', ('another', 'DT'))]
[(('carry', 'VB'), 'advmod', ('thus', 'RB')), (('carry', 'VB'), 'ccomp', ('topple', 'VB')), (('topple', 'VB'), 'nsubj', ('screen', 'NN')), (('screen', 'NN'), 'amod', ('slanted', 'JJ')), (('screen', 'NN'), 'compound', ('angle', 'NN')), (('topple', 'VB'), 'ccomp', ('understand', 'VB')), (('understand', 'VB'), 'nsubj', ('slide', 'NN')), (('understand', 'VB'), 'xcomp', ('mean', 'VB'))]
[(('issue', 'VB'), 'ccomp', ('increase', 'VB')), (('increase', 'VB'), 'nsubj', ('resolution', 'NN')), (('resolution', 'NN'), 'nummod', ('1', 'CD')), (('resolution', 'NN'), 'compound', ('screen', 'NN')), (('resolution', 'NN'), 'compound', ('video', 'NN')), (('increase', 'VB'), 'iobj', ('resolution', 'NN')), (('resolution', 'NN'), 'amod', ('higher', 'JJR')), (('increase', 'VB'), 'dobj', ('60', 'CD')), (('60', 'CD'), 'nummod', ('1024', 'CD')), (('60', 'CD'), 'amod', ('x', 'JJ'))]
[(('recomend', 'VB'), 'nsubj', ('overall', 'JJ')), (('recomend', 'VB'), 'aux', ('would', 'MD')), (('recomend', 'VB'), 'ccomp', ('tell', 'VB')), (('tell', 'VB'), 'nsubj', ('anybody', 'NN')), (('tell', 'VB'), 'xcomp', ('want', 'VB')), (('want', 'VB'), 'ccomp', ('play', 'VB')), (('play', 'VB'), 'nsubj', ('music', 'NN')), (('music', 'NN'), 'amod', ('burn', 'JJ')), (('play', 'VB'), 'dobj', ('game', 'NN')), (('game', 'NN'), 'amod', ('video', 'JJ')), (('play', 'VB'), 'dep', ('buy', 'VB')), (('buy', 'VB'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'compound', ('cd', 'NN'))]
[(('worked', 'VBD'), 'nsubj', ('top', 'NN')), (('top', 'NN'), 'amod', ('purchased', 'JJ')), (('top', 'NN'), 'compound', ('toshiba', 'NN')), (('top', 'NN'), 'compound', ('lap', 'NN')), (('worked', 'VBD'), 'ccomp', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('warrenty', 'NN')), (('warrenty', 'NN'), 'amod', ('good', 'JJ'))]
[(('nothing', 'NN'), 'amod', ('improved', 'JJ')), (('nothing', 'NN'), 'dep', ('system', 'NN')), (('system', 'NN'), 'advmod', ('else', 'RB')), (('system', 'NN'), 'compound', ('resolution', 'NN')), (('system', 'NN'), 'compound', ('appearance', 'NN')), (('system', 'NN'), 'compound', ('cooling', 'NN')), (('nothing', 'NN'), 'dep', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('graphic', 'JJ')), (('etc', 'NN'), 'compound', ('card', 'NN'))]
[(('come', 'VBP'), 'nsubj', ('installation', 'NN')), (('installation', 'NN'), 'amod', ('additional', 'JJ')), (('installation', 'NN'), 'compound', ('caveat', 'NN')), (('installation', 'NN'), 'compound', ('base', 'NN')), (('come', 'VBP'), 'ccomp', ('user', 'VB')), (('user', 'VB'), 'nsubj', ('software', 'NN')), (('software', 'NN'), 'amod', ('toshiba', 'JJ')), (('software', 'NN'), 'amod', ('specific', 'JJ')), (('user', 'VB'), 'aux', ('may', 'MD')), (('user', 'VB'), 'aux', ('may', 'MD')), (('user', 'VB'), 'dobj', ('liking', 'NN'))]
[(('ram', 'VBP'), 'nsubj', ('16gb', 'NNS')), (('16gb', 'NNS'), 'nummod', ('4', 'CD')), (('16gb', 'NNS'), 'amod', ('ram', 'JJ')), (('16gb', 'NNS'), 'compound', ('slot', 'NN')), (('16gb', 'NNS'), 'nummod', ('2', 'CD')), (('16gb', 'NNS'), 'amod', ('hdd', 'JJ')), (('16gb', 'NNS'), 'compound', ('bay', 'NN')), (('ram', 'VBP'), 'xcomp', ('support', 'VB')), (('support', 'VB'), 'dobj', ('issue', 'NN')), (('issue', 'NN'), 'amod', ('wireless', 'JJ')), (('support', 'VB'), 'advmod', ('least', 'JJS'))]
[(('compared', 'VBD'), 'mark', ('although', 'IN')), (('compared', 'VBD'), 'nsubj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('window', 'NN')), (('compared', 'VBD'), 'dobj', ('suck', 'NN')), (('suck', 'NN'), 'compound', ('window', 'NN')), (('suck', 'NN'), 'compound', ('xp', 'NN'))]
[(('load', 'VB'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('reloaded', 'JJ')), (('window', 'NN'), 'dep', ('software', 'NN')), (('software', 'NN'), 'nummod', ('7', 'CD')), (('software', 'NN'), 'amod', ('ultimate', 'JJ')), (('software', 'NN'), 'amod', ('bluetooth', 'JJ')), (('software', 'NN'), 'compound', ('fingerprint', 'NN')), (('software', 'NN'), 'compound', ('reader', 'NN')), (('load', 'VB'), 'aux', ('would', 'MD'))]
[(('affordability', 'NNS'), 'amod', ('great', 'JJ')), (('affordability', 'NNS'), 'compound', ('pick', 'NN')), (('affordability', 'NNS'), 'compound', ('portability', 'NN'))]
[(('deal', 'NN'), 'dep', ('company', 'NN')), (('company', 'NN'), 'dep', ('nightmare', 'NN')), (('nightmare', 'NN'), 'amod', ('worse', 'JJR')), (('worse', 'JJR'), 'advmod', ('even', 'RB'))]
[(('seemed', 'VBD'), 'advmod', ('also', 'RB')), (('seemed', 'VBD'), 'nsubj', ('disc', 'NN')), (('disc', 'NN'), 'compound', ('problem', 'NN')), (('disc', 'NN'), 'amod', ('hard', 'JJ')), (('disc', 'NN'), 'acl:relcl', ('claim', 'VBP')), (('claim', 'VBP'), 'nsubj', ('load', 'NN')), (('load', 'NN'), 'amod', ('certain', 'JJ')), (('load', 'NN'), 'compound', ('time', 'NN')), (('load', 'NN'), 'compound', ('window', 'NN')), (('claim', 'VBP'), 'xcomp', ('able', 'JJ')), (('able', 'JJ'), 'ccomp', ('find', 'VBP')), (('find', 'VBP'), 'dobj', ('file', 'NN')), (('file', 'NN'), 'compound', ('driver', 'NN'))]
[(('replaced', 'VBD'), 'nsubj', ('_', 'NNP')), (('_', 'NNP'), 'acl', ('sent', 'VBN')), (('sent', 'VBN'), 'advmod', ('back', 'RB')), (('replaced', 'VBD'), 'dobj', ('fan', 'NN')), (('fan', 'NN'), 'amod', ('motherboard', 'JJ')), (('replaced', 'VBD'), 'advmod', ('inside', 'RB'))]
[(('idvd', 'VBD'), 'expl', ('there', 'EX')), (('idvd', 'VBD'), 'advmod', ('also', 'RB')), (('idvd', 'VBD'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'acl', ('dedicated', 'VBN')), (('dedicated', 'VBN'), 'xcomp', ('putting', 'VBG')), (('putting', 'VBG'), 'dobj', ('medium', 'NN')), (('medium', 'NN'), 'amod', ('favorite', 'JJ')), (('putting', 'VBG'), 'advmod', ('together', 'RB')), (('program', 'NN'), 'acl:relcl', ('project', 'VBP')), (('project', 'VBP'), 'nsubj', ('video', 'NN')), (('video', 'NN'), 'compound', ('photo', 'NN')), (('video', 'NN'), 'amod', ('recording', 'VBG')), (('project', 'VBP'), 'ccomp', ('create', 'VB')), (('create', 'VB'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'nummod', ('one', 'CD')), (('create', 'VB'), 'dobj', ('family', 'NN')), (('family', 'NN'), 'amod', ('perfect', 'JJ')), (('family', 'NN'), 'compound', ('memoir', 'NN')), (('family', 'NN'), 'compound', ('parent', 'NN')), (('family', 'NN'), 'acl', ('sibling', 'VBG')), (('sibling', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'compound', ('person', 'NN')), (('life', 'NN'), 'amod', ('important', 'JJ')), (('life', 'NN'), 'acl:relcl', ('may', 'MD'))]
[(('life', 'NN'), 'dep', ('fast', 'RB')), (('life', 'NN'), 'amod', ('excellent', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN'))]
[(('performance', 'NN'), 'compound', ('impressed', 'NN')), (('performance', 'NN'), 'compound', ('battery', 'NN')), (('performance', 'NN'), 'compound', ('life', 'NN')), (('performance', 'NN'), 'dep', ('memory', 'NN')), (('memory', 'NN'), 'amod', ('small', 'JJ')), (('memory', 'NN'), 'compound', ('amount', 'NN'))]
[(('netbook', 'VBP'), 'dep', ('netbook', 'NN')), (('netbook', 'NN'), 'compound', ('downside', 'NN')), (('netbook', 'NN'), 'amod', ('much', 'JJ')), (('much', 'JJ'), 'advmod', ('pretty', 'RB')), (('netbook', 'VBP'), 'xcomp', ('life', 'NN')), (('life', 'NN'), 'nsubj', ('something', 'NN')), (('something', 'NN'), 'compound', ('screen', 'NN')), (('something', 'NN'), 'compound', ('size', 'NN')), (('life', 'NN'), 'amod', ('stare', 'JJ')), (('life', 'NN'), 'amod', ('entire', 'JJ')), (('life', 'NN'), 'nummod', ('11', 'CD')), (('11', 'CD'), 'compound', ('10', 'CD')), (('life', 'NN'), 'compound', ('hour', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('netbook', 'VBP'), 'nsubj', ('week', 'NN')), (('week', 'NN'), 'nummod', ('five', 'CD')), (('week', 'NN'), 'compound', ('day', 'NN'))]
[(('color', 'NN'), 'amod', ('gray', 'JJ')), (('color', 'NN'), 'dep', ('choice', 'NN')), (('choice', 'NN'), 'amod', ('good', 'JJ'))]
[(('looking', 'VBG'), 'dobj', ('feature', 'NN')), (('feature', 'NN'), 'compound', ('mac', 'NN')), (('feature', 'NN'), 'amod', ('portable', 'JJ')), (('feature', 'NN'), 'acl', ('looking', 'VBG'))]
[(('can', 'MD'), 'neg', ('not', 'RB')), (('can', 'MD'), 'nsubj', ('product', 'NN')), (('product', 'NN'), 'nummod', ('happier', 'CD')), (('product', 'NN'), 'compound', ('service', 'NN'))]
[(('allows', 'VBZ'), 'nsubj', ('viewer', 'NN')), (('viewer', 'NN'), 'amod', ('multiple', 'JJ')), (('viewer', 'NN'), 'compound', ('page', 'NN')), (('allows', 'VBZ'), 'ccomp', ('see', 'VBP')), (('see', 'VBP'), 'nsubj', ('button', 'NN')), (('button', 'NN'), 'compound', ('press', 'NN')), (('button', 'NN'), 'compound', ('one', 'NN')), (('see', 'VBP'), 'ccomp', ('opened', 'VBD')), (('opened', 'VBD'), 'nsubj', ('page', 'NN')), (('page', 'NN'), 'det', ('every', 'DT')), (('page', 'NN'), 'amod', ('separate', 'JJ')), (('opened', 'VBD'), 'advmod', ('currently', 'RB')), (('opened', 'VBD'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'nsubj', ('screen', 'NN')), (('screen', 'NN'), 'compound', ('time', 'NN')), (('screen', 'NN'), 'compound', ('one', 'NN')), (('working', 'VBG'), 'dep', ('great', 'JJ')), (('working', 'VBG'), 'dobj', ('shopping', 'NN')), (('shopping', 'NN'), 'amod', ('non', 'JJ')), (('shopping', 'NN'), 'compound', ('stop', 'NN')), (('working', 'VBG'), 'advcl', ('online', 'NN'))]
[(('provide', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'acl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('doesnt', 'NN')), (('doesnt', 'NN'), 'compound', ('document', 'NN')), (('doesnt', 'NN'), 'compound', ('creation', 'NN')), (('doesnt', 'NN'), 'compound', ('apple', 'NN')), (('provide', 'VBP'), 'ccomp', ('work', 'VB')), (('work', 'VB'), 'nsubj', ('processor', 'NN')), (('processor', 'NN'), 'compound', ('kind', 'NN')), (('processor', 'NN'), 'compound', ('word', 'NN')), (('work', 'VB'), 'dobj', ('iwork', 'NN')), (('iwork', 'NN'), 'compound', ('window', 'NN')), (('work', 'VB'), 'nmod', ('office', 'NN')), (('office', 'NN'), 'advmod', ('cheap', 'RB')), (('office', 'NN'), 'case', ('compared', 'VBN'))]
[(('fun', 'NN'), 'amod', ('strong', 'JJ')), (('fun', 'NN'), 'compound', ('performance', 'NN')), (('fun', 'NN'), 'compound', ('device', 'NN')), (('fun', 'NN'), 'compound', ('make', 'NN')), (('fun', 'NN'), 'compound', ('use', 'NN')), (('fun', 'NN'), 'dep', ('requirement', 'NN')), (('requirement', 'NN'), 'amod', ('strong', 'JJ')), (('requirement', 'NN'), 'compound', ('sense', 'NN')), (('requirement', 'NN'), 'compound', ('era', 'NN')), (('requirement', 'NN'), 'compound', ('speed', 'NN')), (('requirement', 'NN'), 'compound', ('device', 'NN')), (('requirement', 'NN'), 'compound', ('serf', 'NN')), (('requirement', 'NN'), 'amod', ('modern', 'JJ')), (('fun', 'NN'), 'dep', ('designer', 'NN')), (('designer', 'NN'), 'amod', ('strong', 'JJ')), (('designer', 'NN'), 'compound', ('game', 'NN')), (('designer', 'NN'), 'amod', ('useful', 'JJ'))]
[(('performance', 'NN'), 'compound', ('impressed', 'NN')), (('performance', 'NN'), 'compound', ('battery', 'NN')), (('performance', 'NN'), 'compound', ('life', 'NN')), (('performance', 'NN'), 'dep', ('memory', 'NN')), (('memory', 'NN'), 'amod', ('small', 'JJ')), (('memory', 'NN'), 'compound', ('amount', 'NN'))]
[(('terrific', 'NNS'), 'compound', ('application', 'NN')), (('terrific', 'NNS'), 'nmod', ('office', 'NN')), (('office', 'NN'), 'case', ('including', 'VBG')), (('office', 'NN'), 'compound', ('replacement', 'NN')), (('office', 'NN'), 'compound', ('microsoft', 'NN'))]
[(('quad', 'VBD'), 'nsubj', ('core2', 'NNS')), (('core2', 'NNS'), 'amod', ('faster', 'JJR')), (('faster', 'JJR'), 'advmod', ('much', 'RB')), (('core2', 'NNS'), 'compound', ('desktop', 'NN')), (('quad', 'VBD'), 'xcomp', ('running', 'VBG')), (('running', 'VBG'), 'dobj', ('ghz', 'NN')), (('ghz', 'NN'), 'nummod', ('83', 'CD')), (('83', 'CD'), 'compound', ('2', 'CD'))]
[(('notebook', 'NN'), 'compound', ('friend', 'NN')), (('notebook', 'NN'), 'compound', ('report', 'NN')), (('notebook', 'NN'), 'dep', ('picture', 'NN')), (('picture', 'NN'), 'amod', ('astonishing', 'JJ')), (('picture', 'NN'), 'compound', ('performance', 'NN')), (('notebook', 'NN'), 'dep', ('use', 'NN')), (('use', 'NN'), 'compound', ('quality', 'NN')), (('use', 'NN'), 'compound', ('ease', 'NN'))]
[(('use', 'VBP'), 'nsubj', ('fun', 'NN')), (('fun', 'NN'), 'compound', ('apple', 'FW')), (('fun', 'NN'), 'compound', ('application', 'FW')), (('fun', 'NN'), 'compound', ('ex', 'FW')), (('fun', 'NN'), 'compound', ('iphoto', 'NN')), (('fun', 'NN'), 'amod', ('cool', 'JJ')), (('cool', 'JJ'), 'advmod', ('easy', 'RB')), (('cool', 'JJ'), 'advmod', ('really', 'RB')), (('use', 'VBP'), 'nmod', ('competition', 'NN')), (('competition', 'NN'), 'case', ('unlike', 'IN'))]
[(('user', 'NN'), 'dep', ('also', 'RB')), (('user', 'NN'), 'nummod', ('one', 'CD')), (('user', 'NN'), 'acl', ('mentioned', 'VBN')), (('mentioned', 'VBN'), 'dobj', ('macbook', 'NN')), (('macbook', 'NN'), 'compound', ('edge', 'NN')), (('macbook', 'NN'), 'acl:relcl', ('spend', 'VBP')), (('spend', 'VBP'), 'nsubj', ('money', 'NN')), (('money', 'NN'), 'amod', ('sharp', 'JJ')), (('spend', 'VBP'), 'ccomp', ('seem', 'VBP')), (('seem', 'VBP'), 'nsubj', ('shell', 'NN')), (('shell', 'NN'), 'nummod', ('one', 'CD')), (('shell', 'NN'), 'amod', ('incase', 'JJ')), (('seem', 'VBP'), 'xcomp', ('problem', 'NN'))]
[(('render', 'VB'), 'dobj', ('movie', 'NN')), (('movie', 'NN'), 'amod', ('avchd', 'JJ')), (('render', 'VB'), 'nsubj', ('pc', 'NN')), (('pc', 'NN'), 'amod', ('little', 'JJ')), (('pc', 'NN'), 'compound', ('effort', 'NN')), (('pc', 'NN'), 'compound', ('problem', 'NN')), (('pc', 'NN'), 'dep', ('quad', 'VBD')), (('quad', 'VBD'), 'mark', ('unless', 'IN')), (('quad', 'VBD'), 'dobj', ('i7', 'NNS')), (('i7', 'NNS'), 'compound', ('core', 'NN'))]
[(('took', 'VBD'), 'dobj', ('4', 'CD')), (('4', 'CD'), 'nummod', ('3', 'CD')), (('took', 'VBD'), 'nmod:tmod', ('year', 'NN')), (('took', 'VBD'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'nummod', ('researching', 'CD')), (('laptop', 'NN'), 'compound', ('brand', 'NN')), (('laptop', 'NN'), 'compound', ('price', 'NN'))]
[(('encased', 'VBD'), 'nsubj', ('macbooks', 'NNS')), (('macbooks', 'NNS'), 'compound', ('shop', 'NN')), (('encased', 'VBD'), 'ccomp', ('know', 'VBP')), (('know', 'VBP'), 'nsubj', ('enclosure', 'NN')), (('enclosure', 'NN'), 'amod', ('soft', 'JJ')), (('enclosure', 'NN'), 'compound', ('rubber', 'NN')), (('know', 'VBP'), 'neg', ('never', 'RB')), (('know', 'VBP'), 'ccomp', ('buy', 'VB')), (('buy', 'VB'), 'nsubj', ('edge', 'NN')), (('edge', 'NN'), 'compound', ('razor', 'NN')), (('buy', 'VB'), 'xcomp', ('get', 'VB')), (('get', 'VB'), 'ccomp', ('use', 'VB')), (('use', 'VB'), 'nsubj', ('seal', 'NN')), (('seal', 'NN'), 'compound', ('home', 'NN')), (('seal', 'NN'), 'compound', ('break', 'NN')), (('use', 'VB'), 'dobj', ('con', 'NN')), (('con', 'NN'), 'amod', ('clever', 'JJ'))]
[(('reinstalled', 'VBN'), 'dobj', ('everything', 'NN')), (('everything', 'NN'), 'compound', ('window', 'NN')), (('everything', 'NN'), 'compound', ('recovery', 'NN')), (('everything', 'NN'), 'compound', ('disc', 'NN')), (('reinstalled', 'VBN'), 'dep', ('seemed', 'VBD')), (('reinstalled', 'VBN'), 'nsubj', ('good', 'RB'))]
[(('performs', 'VBZ'), 'nsubj', ('security', 'NN')), (('security', 'NN'), 'amod', ('dual', 'JJ')), (('security', 'NN'), 'compound', ('boot', 'NN')), (('security', 'NN'), 'compound', ('linux', 'NN')), (('security', 'NN'), 'amod', ('o', 'JJ')), (('o', 'JJ'), 'amod', ('prone', 'JJ')), (('performs', 'VBZ'), 'advmod', ('flawlessly', 'RB'))]
[(('program', 'NN'), 'dep', ('great', 'JJ')), (('great', 'JJ'), 'nmod', ('etc', 'FW')), (('etc', 'FW'), 'case', ('like', 'IN')), (('etc', 'FW'), 'amod', ('iphoto', 'JJ')), (('etc', 'FW'), 'compound', ('love', 'NN')), (('etc', 'FW'), 'compound', ('editing', 'NN')), (('etc', 'FW'), 'compound', ('capability', 'NN')), (('etc', 'FW'), 'compound', ('imail', 'NN')), (('etc', 'FW'), 'compound', ('incorporate', 'NN')), (('etc', 'FW'), 'compound', ('address', 'NN')), (('etc', 'FW'), 'compound', ('book', 'NN')), (('etc', 'FW'), 'compound', ('ipod', 'NN')), (('etc', 'FW'), 'compound', ('ipad', 'NN')), (('etc', 'FW'), 'dep', ('imovie', 'NNS'))]
[(('seems', 'VBZ'), 'nsubj', ('processor', 'NN')), (('processor', 'NN'), 'compound', ('amd', 'NN')), (('processor', 'NN'), 'compound', ('turin', 'NN')), (('seems', 'VBZ'), 'advmod', ('always', 'RB')), (('seems', 'VBZ'), 'xcomp', ('perform', 'VB')), (('perform', 'VB'), 'dobj', ('intel', 'NN')), (('intel', 'NN'), 'amod', ('better', 'JJR')), (('better', 'JJR'), 'advmod', ('much', 'RB'))]
[(('provide', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'acl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('doesnt', 'NN')), (('doesnt', 'NN'), 'compound', ('document', 'NN')), (('doesnt', 'NN'), 'compound', ('creation', 'NN')), (('doesnt', 'NN'), 'compound', ('apple', 'NN')), (('provide', 'VBP'), 'ccomp', ('work', 'VB')), (('work', 'VB'), 'nsubj', ('processor', 'NN')), (('processor', 'NN'), 'compound', ('kind', 'NN')), (('processor', 'NN'), 'compound', ('word', 'NN')), (('work', 'VB'), 'dobj', ('iwork', 'NN')), (('iwork', 'NN'), 'compound', ('window', 'NN')), (('work', 'VB'), 'nmod', ('office', 'NN')), (('office', 'NN'), 'advmod', ('cheap', 'RB')), (('office', 'NN'), 'case', ('compared', 'VBN'))]
[(('set', 'VBD'), 'advmod', ('fast', 'RB')), (('fast', 'RB'), 'dep', ('easy', 'JJ')), (('easy', 'JJ'), 'advmod', ('easy', 'RB')), (('easy', 'JJ'), 'advmod', ('easy', 'RB')), (('set', 'VBD'), 'dobj', ('hook', 'NN')), (('hook', 'NN'), 'amod', ('easy', 'JJ')), (('set', 'VBD'), 'nsubj', ('network', 'NN')), (('network', 'NN'), 'amod', ('wireless', 'JJ'))]
[(('battery', 'NN'), 'compound', ('downfall', 'NN')), (('battery', 'NN'), 'dep', ('last', 'JJ')), (('battery', 'NN'), 'dep', ('plugged', 'NNP')), (('plugged', 'NNP'), 'nummod', ('1', 'CD')), (('plugged', 'NNP'), 'nummod', ('5', 'CD')), (('plugged', 'NNP'), 'nummod', ('2', 'CD')), (('plugged', 'NNP'), 'nummod', ('0', 'CD')), (('plugged', 'NNP'), 'compound', ('hr', 'NNP'))]
[(('keyboard', 'NN'), 'dep', ('size', 'NN')), (('size', 'NN'), 'amod', ('reasonable', 'JJ'))]
[(('internet', 'NN'), 'amod', ('graphic', 'JJ')), (('internet', 'NN'), 'amod', ('clean', 'JJ')), (('internet', 'NN'), 'amod', ('sharp', 'JJ')), (('internet', 'NN'), 'dep', ('seamless', 'NNS')), (('seamless', 'NNS'), 'amod', ('interface', 'JJ'))]
[(('expires', 'VBZ'), 'nsubj', ('supply', 'NN')), (('supply', 'NN'), 'amod', ('_', 'JJ')), (('supply', 'NN'), 'compound', ('board', 'NN')), (('supply', 'NN'), 'amod', ('bad', 'JJ')), (('supply', 'NN'), 'compound', ('connector', 'NN')), (('supply', 'NN'), 'compound', ('power', 'NN')), (('expires', 'VBZ'), 'advmod', ('shortly', 'RB')), (('expires', 'VBZ'), 'advmod', ('warrenty', 'RB')), (('expires', 'VBZ'), 'dobj', ('issue', 'NN')), (('issue', 'NN'), 'compound', ('power', 'NN')), (('issue', 'NN'), 'compound', ('supply', 'NN')), (('issue', 'NN'), 'compound', ('start', 'NN'))]
[(('charge', 'NN'), 'amod', ('sleek', 'JJ')), (('charge', 'NN'), 'amod', ('lightweight', 'JJ')), (('charge', 'NN'), 'dep', ('needed', 'VBN')), (('needed', 'VBN'), 'advmod', ('quickly', 'RB'))]
[(('screen', 'NN'), 'dep', ('system', 'NN')), (('system', 'NN'), 'amod', ('bright', 'JJ')), (('system', 'NN'), 'amod', ('clear', 'JJ')), (('system', 'NN'), 'compound', ('operating', 'NN')), (('screen', 'NN'), 'dep', ('novice', 'NN')), (('novice', 'NN'), 'amod', ('solid', 'JJ')), (('novice', 'NN'), 'amod', ('friendly', 'JJ'))]
[(('seamless', 'VBZ'), 'nsubj', ('model', 'NN')), (('model', 'NN'), 'amod', ('black', 'JJ')), (('model', 'NN'), 'amod', ('nice', 'JJ')), (('nice', 'JJ'), 'advmod', ('also', 'RB')), (('seamless', 'VBZ'), 'xcomp', ('looking', 'VBG')), (('looking', 'VBG'), 'nsubj', ('appearance', 'NN')), (('looking', 'VBG'), 'dep', ('better', 'JJR')), (('better', 'JJR'), 'nmod:npmod', ('one', 'CD')), (('looking', 'VBG'), 'dobj', ('notebook', 'NN')), (('notebook', 'NN'), 'acl', ('seen', 'VBN'))]
[(('come', 'VBP'), 'nsubj', ('software', 'NN')), (('software', 'NN'), 'amod', ('ilife', 'JJ')), (('come', 'VBP'), 'ccomp', ('produce', 'VB')), (('produce', 'VB'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'compound', ('computer', 'NN')), (('use', 'NN'), 'amod', ('simple', 'JJ')), (('produce', 'VB'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'amod', ('great', 'JJ')), (('product', 'NN'), 'amod', ('finished', 'JJ'))]
[(('got', 'VBD'), 'advmod', ('even', 'RB')), (('got', 'VBD'), 'dobj', ('son', 'NN')), (('son', 'NN'), 'amod', ('teenage', 'JJ')), (('got', 'VBD'), 'nsubj', ('offer', 'NN')), (('offer', 'NN'), 'nummod', ('one', 'CD')), (('offer', 'NN'), 'compound', ('feature', 'NN')), (('got', 'VBD'), 'nmod', ('band', 'NN')), (('band', 'NN'), 'case', ('like', 'IN')), (('band', 'NN'), 'amod', ('ichat', 'JJ')), (('band', 'NN'), 'compound', ('photobooth', 'NN')), (('band', 'NN'), 'compound', ('garage', 'NN'))]
[(('college', 'NN'), 'compound', ('computer', 'NN')), (('college', 'NN'), 'compound', ('science', 'NN')), (('college', 'NN'), 'compound', ('student', 'NN')), (('college', 'NN'), 'dep', ('find', 'VB')), (('find', 'VB'), 'ccomp', ('ease', 'VB')), (('ease', 'VB'), 'nsubj', ('longevity', 'NN')), (('longevity', 'NN'), 'compound', ('portability', 'NN')), (('ease', 'VB'), 'ccomp', ('make', 'VBP')), (('make', 'VBP'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'compound', ('use', 'NN')), (('make', 'VBP'), 'advmod', ('shockingly', 'RB')), (('make', 'VBP'), 'dep', ('want', 'VB')), (('want', 'VB'), 'dobj', ('homework', 'NN'))]
[(('happens', 'VBZ'), 'nsubj', ('motherboard', 'NN')), (('motherboard', 'NN'), 'amod', ('port', 'JJ')), (('motherboard', 'NN'), 'amod', ('secured', 'JJ')), (('happens', 'VBZ'), 'xcomp', ('see', 'VB')), (('see', 'VB'), 'dobj', ('plug', 'NN')), (('plug', 'NN'), 'acl', ('gone', 'VBN'))]
[(('running', 'NN'), 'dep', ('also', 'RB')), (('running', 'NN'), 'compound', ('kinda', 'NN')), (('running', 'NN'), 'compound', ('loud', 'NN')), (('running', 'NN'), 'compound', ('fan', 'NN'))]
[(('battery', 'NN'), 'dep', ('worked', 'VBD')), (('worked', 'VBD'), 'neg', ('never', 'RB')), (('worked', 'VBD'), 'advmod', ('well', 'RB'))]
[(('make', 'VBP'), 'nsubj', ('cord', 'NN')), (('cord', 'NN'), 'acl', ('coming', 'VBG')), (('coming', 'VBG'), 'dobj', ('power', 'NN')), (('power', 'NN'), 'amod', ('right', 'JJ')), (('power', 'NN'), 'acl:relcl', ('left', 'VBD')), (('left', 'VBD'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'compound', ('cord', 'NN')), (('mic', 'NN'), 'amod', ('coming', 'JJ')), (('mic', 'NN'), 'amod', ('front', 'JJ')), (('mic', 'NN'), 'compound', ('headphone', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'conj', ('connection', 'NN')), (('connection', 'NN'), 'compound', ('network', 'NN')), (('make', 'VBP'), 'dobj', ('cord', 'NN')), (('cord', 'NN'), 'amod', ('messy', 'JJ')), (('cord', 'NN'), 'compound', ('setup', 'NN')), (('cord', 'NN'), 'acl', ('going', 'VBG')), (('going', 'VBG'), 'dobj', ('direction', 'NN')), (('direction', 'NN'), 'det', ('every', 'DT'))]
[(('find', 'VBP'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'amod', ('navigate', 'JJ')), (('navigate', 'JJ'), 'advmod', ('much', 'RB')), (('navigate', 'JJ'), 'advmod', ('easier', 'RBR')), (('system', 'NN'), 'amod', ('operating', 'VBG')), (('find', 'VBP'), 'xcomp', ('file', 'VB')), (('file', 'VB'), 'dobj', ('lot', 'NN')), (('lot', 'NN'), 'compound', ('run', 'NN')), (('file', 'VB'), 'advmod', ('faster', 'RBR'))]
[(('good', 'JJ'), 'dep', ('day', 'NN')), (('day', 'NN'), 'det', ('every', 'DT')), (('good', 'JJ'), 'dep', ('browsing', 'NN')), (('browsing', 'NN'), 'compound', ('computing', 'NN')), (('browsing', 'NN'), 'compound', ('web', 'NN'))]
[(('found', 'VBD'), 'ccomp', ('stick', 'VBP')), (('stick', 'VBP'), 'nsubj', ('2gb', 'NNS')), (('stick', 'VBP'), 'ccomp', ('keep', 'VB')), (('keep', 'VB'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'amod', ('bit', 'NN')), (('bit', 'NN'), 'compound', ('50', 'CD')), (('system', 'NN'), 'amod', ('nice', 'JJ')), (('system', 'NN'), 'amod', ('portable', 'JJ')), (('system', 'NN'), 'amod', ('decent', 'JJ')), (('decent', 'JJ'), 'advmod', ('definitely', 'RB')), (('system', 'NN'), 'amod', ('enough', 'JJ')), (('keep', 'VB'), 'dep', ('entertained', 'VBN')), (('entertained', 'VBN'), 'xcomp', ('sitting', 'VBG')), (('sitting', 'VBG'), 'dobj', ('hotel', 'NN')), (('hotel', 'NN'), 'compound', ('airplane', 'NN')), (('hotel', 'NN'), 'compound', ('couple', 'NN')), (('hotel', 'NN'), 'compound', ('hour', 'NN')), (('sitting', 'VBG'), 'advcl', ('taking', 'VBG')), (('taking', 'VBG'), 'iobj', ('care', 'NN')), (('taking', 'VBG'), 'dobj', ('minute', 'NN')), (('minute', 'NN'), 'amod', ('last', 'JJ')), (('found', 'VBD'), 'nsubj', ('document', 'NN')), (('document', 'NN'), 'nummod', ('detail', 'CD'))]
[(('run', 'VBP'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('simple', 'JJ')), (('simple', 'JJ'), 'advmod', ('plain', 'RB')), (('run', 'VBP'), 'dobj', ('load', 'NN')), (('load', 'NN'), 'amod', ('great', 'JJ')), (('run', 'VBP'), 'advmod', ('fast', 'RB'))]
[(('love', 'VBP'), 'dobj', ('stability', 'NN')), (('love', 'VBP'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'nummod', ('mac', 'CD')), (('system', 'NN'), 'compound', ('software', 'NN')), (('system', 'NN'), 'compound', ('operating', 'NN'))]
[(('use', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'amod', ('several', 'JJ')), (('office', 'NN'), 'compound', ('program', 'NN')), (('office', 'NN'), 'compound', ('school', 'NN')), (('use', 'VBP'), 'xcomp', ('etc', 'FW')), (('etc', 'FW'), 'compound', ('page', 'NN')), (('etc', 'FW'), 'compound', ('number', 'NN')), (('etc', 'FW'), 'compound', ('keynote', 'NN')), (('etc', 'FW'), 'compound', ('etc', 'NN')), (('etc', 'FW'), 'compound', ('music', 'NN')), (('etc', 'FW'), 'compound', ('garageband', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('management', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('booth', 'NN')), (('etc', 'FW'), 'compound', ('iphoto', 'NN')), (('etc', 'FW'), 'compound', ('video', 'NN')), (('etc', 'FW'), 'compound', ('editing', 'NN')), (('etc', 'FW'), 'compound', ('movie', 'NN')), (('etc', 'FW'), 'compound', ('making', 'NN')), (('etc', 'FW'), 'dep', ('imovie', 'NNS'))]
[(('continued', 'VBD'), 'nsubj', ('process', 'NN')), (('process', 'NN'), 'amod', ('_', 'JJ')), (('continued', 'VBD'), 'ccomp', ('replaced', 'VBD')), (('replaced', 'VBD'), 'nsubj', ('board', 'NN')), (('board', 'NN'), 'compound', ('repeat', 'NN')), (('board', 'NN'), 'compound', ('mother', 'NN')), (('replaced', 'VBD'), 'ccomp', ('replaced', 'VBD')), (('replaced', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'nummod', ('4', 'CD')), (('drive', 'NN'), 'compound', ('time', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('replaced', 'VBD'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'nummod', ('3', 'CD'))]
[(('dad', 'VB'), 'ccomp', ('made', 'VBD')), (('made', 'VBD'), 'nsubj', ('toshibas', 'NNS')), (('toshibas', 'NNS'), 'nummod', ('one', 'CD')), (('toshibas', 'NNS'), 'amod', ('first', 'JJ')), (('made', 'VBD'), 'advmod', ('ever', 'RB')), (('made', 'VBD'), 'ccomp', ('work', 'VB')), (('work', 'VB'), 'discourse', ('yes', 'UH')), (('work', 'VB'), 'nsubj', ('abit', 'NN')), (('abit', 'NN'), 'amod', ('slow', 'JJ')), (('work', 'VB'), 'advmod', ('still', 'RB')), (('work', 'VB'), 'dobj', ('ethernet', 'NN')), (('ethernet', 'NN'), 'amod', ('hooked', 'JJ')), (('hooked', 'JJ'), 'advmod', ('well', 'RB'))]
[(('change', 'VB'), 'nsubj', ('setting', 'NN')), (('change', 'VB'), 'aux', ('would', 'MD')), (('change', 'VB'), 'dobj', ('size', 'NN')), (('size', 'NN'), 'compound', ('reason', 'NN')), (('size', 'NN'), 'compound', ('screen', 'NN')), (('size', 'NN'), 'acl:relcl', ('change', 'VB')), (('change', 'VB'), 'aux', ('would', 'MD')), (('change', 'VB'), 'nmod', ('whatnot', 'NN')), (('whatnot', 'NN'), 'case', ('like', 'IN')), (('whatnot', 'NN'), 'amod', ('pixel', 'JJ')), (('whatnot', 'NN'), 'compound', ('size', 'NN'))]
[(('use', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'amod', ('several', 'JJ')), (('office', 'NN'), 'compound', ('program', 'NN')), (('office', 'NN'), 'compound', ('school', 'NN')), (('use', 'VBP'), 'xcomp', ('etc', 'FW')), (('etc', 'FW'), 'compound', ('page', 'NN')), (('etc', 'FW'), 'compound', ('number', 'NN')), (('etc', 'FW'), 'compound', ('keynote', 'NN')), (('etc', 'FW'), 'compound', ('etc', 'NN')), (('etc', 'FW'), 'compound', ('music', 'NN')), (('etc', 'FW'), 'compound', ('garageband', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('management', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('booth', 'NN')), (('etc', 'FW'), 'compound', ('iphoto', 'NN')), (('etc', 'FW'), 'compound', ('video', 'NN')), (('etc', 'FW'), 'compound', ('editing', 'NN')), (('etc', 'FW'), 'compound', ('movie', 'NN')), (('etc', 'FW'), 'compound', ('making', 'NN')), (('etc', 'FW'), 'dep', ('imovie', 'NNS'))]
[(('love', 'VBP'), 'xcomp', ('write', 'VB')), (('write', 'VB'), 'xcomp', ('play', 'VB')), (('play', 'VB'), 'dobj', ('programming', 'NN')), (('programming', 'NN'), 'amod', ('graphic', 'JJ')), (('programming', 'NN'), 'amod', ('html', 'JJ')), (('love', 'VBP'), 'nsubj', ('work', 'NN')), (('work', 'NN'), 'amod', ('new', 'JJ')), (('work', 'NN'), 'compound', ('toshiba', 'NN')), (('work', 'NN'), 'amod', ('great', 'JJ'))]
[(('got', 'VBD'), 'nsubj', ('thinking', 'NN')), (('thinking', 'NN'), 'amod', ('bad', 'JJ')), (('got', 'VBD'), 'dobj', ('something', 'NN')), (('something', 'NN'), 'det', ('half', 'DT')), (('something', 'NN'), 'compound', ('battery', 'NN'))]
[(('web', 'VBN'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'nummod', ('10', 'CD')), (('life', 'NN'), 'compound', ('hour', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('web', 'VBN'), 'xcomp', ('browsing', 'VBG')), (('browsing', 'VBG'), 'dobj', ('editing', 'NN')), (('editing', 'NN'), 'compound', ('word', 'NN')), (('browsing', 'VBG'), 'advcl', ('making', 'VBG')), (('making', 'VBG'), 'dobj', ('movie', 'NN')), (('movie', 'NN'), 'amod', ('perfect', 'JJ')), (('movie', 'NN'), 'compound', ('classroom', 'NN')), (('movie', 'NN'), 'compound', ('office', 'NN')), (('movie', 'NN'), 'compound', ('term', 'NN')), (('movie', 'NN'), 'compound', ('gaming', 'NN')), (('movie', 'NN'), 'acl', ('playing', 'VBG')), (('playing', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('5', 'CD'))]
[(('opted', 'VBD'), 'nmod', ('weight', 'NN')), (('weight', 'NN'), 'case', ('despite', 'IN')), (('weight', 'NN'), 'amod', ('inconvenient', 'JJ')), (('opted', 'VBD'), 'nsubj', ('battery', 'NN')), (('battery', 'NN'), 'nummod', ('12', 'CD')), (('battery', 'NN'), 'compound', ('cell', 'NN'))]
[(('mac', 'VBP'), 'iobj', ('computer', 'NN')), (('mac', 'VBP'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'advmod', ('free', 'JJ')), (('mac', 'VBP'), 'dep', ('wait', 'VB')), (('wait', 'VB'), 'ccomp', ('shut', 'VB')), (('shut', 'VB'), 'nsubj', ('boot', 'NN')), (('boot', 'NN'), 'compound', ('window', 'NN')), (('shut', 'VB'), 'dobj', ('virus', 'NN')), (('mac', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('associated', 'VBN'))]
[(('get', 'VBP'), 'nsubj', ('shop', 'NN')), (('shop', 'NN'), 'compound', ('bein', 'NN')), (('get', 'VBP'), 'ccomp', ('fix', 'VB')), (('fix', 'VB'), 'nsubj', ('time', 'NN')), (('time', 'NN'), 'amod', ('new', 'JJ')), (('time', 'NN'), 'compound', ('hardrive', 'NN')), (('time', 'NN'), 'nummod', ('2', 'CD')), (('fix', 'VB'), 'dobj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'advmod', ('touch', 'RB')), (('keyboard', 'NN'), 'compound', ('control', 'NN')), (('keyboard', 'NN'), 'compound', ('button', 'NN'))]
[(('known', 'VBN'), 'dobj', ('work', 'NN')), (('work', 'NN'), 'amod', ('safari', 'JJ')), (('work', 'NN'), 'compound', ('website', 'NN')), (('known', 'VBN'), 'dep', ('know', 'VBP')), (('know', 'VBP'), 'xcomp', ('many', 'JJ')), (('known', 'VBN'), 'nsubj', ('support', 'NN')), (('support', 'NN'), 'nummod', ('hosting', 'CD')), (('support', 'NN'), 'compound', ('company', 'NN'))]
[(('make', 'VB'), 'advmod', ('possible', 'RB')), (('make', 'VB'), 'case', ('since', 'IN')), (('make', 'VB'), 'dobj', ('driver', 'NN')), (('driver', 'NN'), 'compound', ('window', 'NN')), (('driver', 'NN'), 'compound', ('xp', 'NN')), (('driver', 'NN'), 'acl:relcl', ('stuck', 'VBD')), (('stuck', 'VBD'), 'nsubj', ('machine', 'NN')), (('machine', 'NN'), 'amod', ('sound', 'JJ')), (('machine', 'NN'), 'compound', ('card', 'NN')), (('stuck', 'VBD'), 'ccomp', ('came', 'VBD')), (('came', 'VBD'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'nummod', ('7', 'CD'))]
[(('notebook', 'NN'), 'compound', ('friend', 'NN')), (('notebook', 'NN'), 'compound', ('report', 'NN')), (('notebook', 'NN'), 'dep', ('picture', 'NN')), (('picture', 'NN'), 'amod', ('astonishing', 'JJ')), (('picture', 'NN'), 'compound', ('performance', 'NN')), (('notebook', 'NN'), 'dep', ('use', 'NN')), (('use', 'NN'), 'compound', ('quality', 'NN')), (('use', 'NN'), 'compound', ('ease', 'NN'))]
[(('take', 'VBP'), 'nsubj', ('o', 'NN')), (('take', 'VBP'), 'xcomp', ('used', 'VBN')), (('used', 'VBN'), 'auxpass', ('getting', 'VBG')), (('used', 'VBN'), 'dobj', ('user', 'NN')), (('user', 'NN'), 'advmod', ('especially', 'RB')), (('user', 'NN'), 'compound', ('window', 'NN')), (('used', 'VBN'), 'xcomp', ('learning', 'VBG')), (('learning', 'VBG'), 'advmod', ('long', 'RB')), (('learning', 'VBG'), 'dobj', ('worth', 'NN')), (('worth', 'NN'), 'compound', ('curve', 'NN'))]
[(('mac', 'VBP'), 'iobj', ('computer', 'NN')), (('mac', 'VBP'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'advmod', ('free', 'JJ')), (('mac', 'VBP'), 'dep', ('wait', 'VB')), (('wait', 'VB'), 'ccomp', ('shut', 'VB')), (('shut', 'VB'), 'nsubj', ('boot', 'NN')), (('boot', 'NN'), 'compound', ('window', 'NN')), (('shut', 'VB'), 'dobj', ('virus', 'NN')), (('mac', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('associated', 'VBN'))]
[(('load', 'NN'), 'compound', ('computer', 'NN')), (('load', 'NN'), 'dep', ('pc', 'NN')), (('pc', 'NN'), 'nummod', ('1', 'CD')), (('pc', 'NN'), 'amod', ('10th', 'JJ')), (('pc', 'NN'), 'compound', ('time', 'NN')), (('load', 'NN'), 'dep', ('pc', 'NN')), (('pc', 'NN'), 'compound', ('program', 'NN'))]
[(('want', 'VB'), 'advmod', ('really', 'RB')), (('want', 'VB'), 'ccomp', ('run', 'VB')), (('run', 'VB'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'compound', ('bang', 'NN')), (('run', 'VB'), 'aux', ('need', 'MD')), (('run', 'VB'), 'ccomp', ('go', 'VB')), (('go', 'VB'), 'nsubj', ('application', 'NN')), (('application', 'NN'), 'compound', ('window', 'NN')), (('go', 'VB'), 'dobj', ('apple', 'NN'))]
[(('love', 'VBP'), 'advmod', ('however', 'RB')), (('love', 'VBP'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'amod', ('particular', 'JJ')), (('love', 'VBP'), 'advmod', ('fast', 'RB')), (('love', 'VBP'), 'nsubj', ('feature', 'NN')), (('feature', 'NN'), 'amod', ('great', 'JJ')), (('feature', 'NN'), 'compound', ('size', 'NN')), (('feature', 'NN'), 'compound', ('fantastic', 'NN')), (('feature', 'NN'), 'nmod', ('pad', 'NN')), (('pad', 'NN'), 'case', ('like', 'IN')), (('pad', 'NN'), 'amod', ('lighted', 'VBN')), (('pad', 'NN'), 'amod', ('keyboard', 'JJ')), (('pad', 'NN'), 'amod', ('easy', 'JJ')), (('pad', 'NN'), 'compound', ('mouse', 'NN'))]
[(('run', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'nmod', ('mac', 'NN')), (('mac', 'NN'), 'case', ('like', 'IN')), (('mac', 'NN'), 'acl:relcl', ('want', 'VBP')), (('want', 'VBP'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'advmod', ('sometimes', 'RB')), (('want', 'VBP'), 'xcomp', ('able', 'JJ')), (('run', 'VBP'), 'xcomp', ('able', 'JJ'))]
[(('use', 'NN'), 'nmod', ('o', 'NN')), (('o', 'NN'), 'case', ('like', 'IN')), (('o', 'NN'), 'compound', ('mac', 'NN')), (('use', 'NN'), 'amod', ('simple', 'JJ')), (('use', 'NN'), 'amod', ('easy', 'JJ'))]
[(('expires', 'VBZ'), 'nsubj', ('supply', 'NN')), (('supply', 'NN'), 'amod', ('_', 'JJ')), (('supply', 'NN'), 'compound', ('board', 'NN')), (('supply', 'NN'), 'amod', ('bad', 'JJ')), (('supply', 'NN'), 'compound', ('connector', 'NN')), (('supply', 'NN'), 'compound', ('power', 'NN')), (('expires', 'VBZ'), 'advmod', ('shortly', 'RB')), (('expires', 'VBZ'), 'advmod', ('warrenty', 'RB')), (('expires', 'VBZ'), 'dobj', ('issue', 'NN')), (('issue', 'NN'), 'compound', ('power', 'NN')), (('issue', 'NN'), 'compound', ('supply', 'NN')), (('issue', 'NN'), 'compound', ('start', 'NN'))]
[(('noticed', 'VBD'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'compound', ('window', 'NN')), (('system', 'NN'), 'amod', ('new', 'JJ')), (('system', 'NN'), 'acl', ('called', 'VBN')), (('called', 'VBN'), 'dobj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('window', 'NN')), (('vista', 'NN'), 'nummod', ('7', 'CD')), (('vista', 'NN'), 'compound', ('u', 'NN')), (('vista', 'NN'), 'acl:relcl', ('get', 'VBP')), (('get', 'VBP'), 'nsubj', ('_', 'NNS')), (('_', 'NNS'), 'compound', ('user', 'NN')), (('get', 'VBP'), 'dobj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('bug', 'NN')), (('vista', 'NN'), 'acl', ('investing', 'VBG')), (('investing', 'VBG'), 'dobj', ('system', 'NN')), (('system', 'NN'), 'amod', ('new', 'JJ'))]
[(('cooling', 'VBG'), 'dobj', ('malfunction', 'NN')), (('malfunction', 'NN'), 'compound', ('system', 'NN')), (('malfunction', 'NN'), 'acl:relcl', ('move', 'VB')), (('move', 'VB'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'nummod', ('10', 'CD')), (('use', 'NN'), 'amod', ('minute', 'JJ')), (('use', 'NN'), 'amod', ('general', 'JJ')), (('move', 'VB'), 'aux', ('would', 'MD')), (('move', 'VB'), 'dobj', ('error', 'NN')), (('error', 'NN'), 'amod', ('past', 'JJ'))]
[(('get', 'VB'), 'aux', ('must', 'MD')), (('get', 'VB'), 'nsubj', ('inch', 'NN')), (('inch', 'NN'), 'nummod', ('15', 'CD'))]
[(('take', 'VB'), 'advmod', ('mac', 'RB')), (('take', 'VB'), 'dobj', ('amount', 'NN')), (('take', 'VB'), 'xcomp', ('starting', 'VBG')), (('starting', 'VBG'), 'ccomp', ('keep', 'VB')), (('keep', 'VB'), 'nsubj', ('pc', 'NN')), (('pc', 'NN'), 'compound', ('time', 'NN')), (('pc', 'NN'), 'compound', ('average', 'NN')), (('keep', 'VB'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'amod', ('ready', 'JJ')), (('ready', 'JJ'), 'advmod', ('cleaned', 'RB'))]
[(('screen', 'VB'), 'xcomp', ('going', 'VBG')), (('going', 'VBG'), 'dobj', ('darker', 'NNS')), (('darker', 'NNS'), 'amod', ('darker', 'JJR')), (('darker', 'NNS'), 'amod', ('darker', 'JJ'))]
[(('replacing', 'VBG'), 'dobj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('hard', 'JJ')), (('battery', 'NN'), 'compound', ('drive', 'NN')), (('battery', 'NN'), 'acl', ('stopped', 'VBN')), (('stopped', 'VBN'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'xcomp', ('frustrating', 'JJ')), (('frustrating', 'JJ'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'nummod', ('3', 'CD')), (('use', 'NN'), 'compound', ('month', 'NN'))]
[(('operate', 'VBP'), 'advmod', ('easy', 'RB')), (('operate', 'VBP'), 'ccomp', ('ordered', 'VBN')), (('ordered', 'VBN'), 'advmod', ('already', 'RB')), (('ordered', 'VBN'), 'dobj', ('gadget', 'NN')), (('gadget', 'NN'), 'compound', ('software', 'NN')), (('operate', 'VBP'), 'nsubj', ('roll', 'NN')), (('roll', 'NN'), 'amod', ('new', 'JJ')), (('roll', 'NN'), 'amod', ('laptop', 'JJ')), (('laptop', 'JJ'), 'amod', ('royce', 'JJ'))]
[(('function', 'VBP'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('first', 'JJ')), (('keyboard', 'NN'), 'compound', ('problem', 'NN')), (('function', 'VBP'), 'advmod', ('simply', 'RB')), (('function', 'VBP'), 'advmod', ('unsatisfactory', 'RB'))]
[(('need', 'VB'), 'nsubj', ('everything', 'NN')), (('everything', 'NN'), 'amod', ('much', 'JJ')), (('much', 'JJ'), 'advmod', ('pretty', 'RB')), (('need', 'VB'), 'aux', ('could', 'MD')), (('need', 'VB'), 'advmod', ('ever', 'RB')), (('need', 'VB'), 'xcomp', ('look', 'VB')), (('look', 'VB'), 'dobj', ('boot', 'NN')), (('boot', 'NN'), 'amod', ('great', 'JJ'))]
[(('warranty', 'NN'), 'compound', ('quality', 'NN')), (('warranty', 'NN'), 'compound', ('engineering', 'NN')), (('warranty', 'NN'), 'compound', ('design', 'NN')), (('warranty', 'NN'), 'parataxis', ('dropping', 'VBG')), (('dropping', 'VBG'), 'nsubj', ('damage', 'NN')), (('damage', 'NN'), 'compound', ('cover', 'NN')), (('dropping', 'VBG'), 'dobj', ('laptop', 'NN'))]
[(('feature', 'VBP'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('feature', 'VBP'), 'ccomp', ('ask', 'VB')), (('ask', 'VB'), 'nsubj', ('power', 'NN')), (('power', 'NN'), 'compound', ('speed', 'NN')), (('ask', 'VB'), 'aux', ('could', 'MD'))]
[(('go', 'VBP'), 'nsubj', ('order', 'NN')), (('go', 'VBP'), 'dobj', ('webcam', 'NN')), (('webcam', 'NN'), 'amod', ('full', 'JJ')), (('webcam', 'NN'), 'compound', ('scale', 'NN')), (('webcam', 'NN'), 'acl:relcl', ('wanted', 'VBD')), (('wanted', 'VBD'), 'nsubj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('full', 'JJ')), (('wanted', 'VBD'), 'ccomp', ('carry', 'VBP')), (('carry', 'VBP'), 'nsubj', ('something', 'NN')), (('something', 'NN'), 'amod', ('easy', 'JJ')), (('easy', 'JJ'), 'amod', ('basic', 'JJ')), (('carry', 'VBP'), 'ccomp', ('backpack', 'VBP')), (('backpack', 'VBP'), 'nsubj', ('wheelchair', 'NN')), (('wheelchair', 'NN'), 'compound', ('use', 'NN')), (('wheelchair', 'NN'), 'compound', ('crutch', 'NN')), (('backpack', 'VBP'), 'dobj', ('bag', 'NN')), (('bag', 'NN'), 'amod', ('laptop', 'JJ'))]
[(('got', 'VBN'), 'advmod', ('back', 'RB')), (('got', 'VBN'), 'dep', ('built', 'VBD')), (('built', 'VBD'), 'ccomp', ('built', 'VBD')), (('built', 'VBD'), 'nsubj', ('webcam', 'NN')), (('built', 'VBD'), 'ccomp', ('touched', 'VBD')), (('touched', 'VBD'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'acl', ('shorting', 'VBG')), (('shorting', 'VBG'), 'dobj', ('anytime', 'RB')), (('touched', 'VBD'), 'ccomp', ('mean', 'VBP')), (('mean', 'VBP'), 'nsubj', ('mind', 'NN')), (('mind', 'NN'), 'compound', ('lid', 'NN')), (('mean', 'VBP'), 'ccomp', ('suffered', 'VBD')), (('suffered', 'VBD'), 'nsubj', ('fiance', 'NN')), (('fiance', 'NN'), 'compound', ('communication', 'NN')), (('fiance', 'NN'), 'acl', ('deployed', 'VBN')), (('suffered', 'VBD'), 'ccomp', ('reset', 'VB')), (('reset', 'VB'), 'nsubj', ('thru', 'NNP')), (('reset', 'VB'), 'aux', ('would', 'MD')), (('reset', 'VB'), 'advmod', ('constandly', 'RB')), (('reset', 'VB'), 'xcomp', ('able', 'JJ')), (('able', 'JJ'), 'nsubj', ('computer', 'NN')), (('got', 'VBN'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'compound', ('use', 'NN')), (('mic', 'NN'), 'compound', ('cam', 'NN')), (('mic', 'NN'), 'acl:relcl', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('anytime', 'RB'))]
[(('pad', 'NN'), 'amod', ('full', 'JJ')), (('pad', 'NN'), 'amod', ('sized', 'JJ')), (('pad', 'NN'), 'compound', ('touch', 'NN')), (('pad', 'NN'), 'dep', ('button', 'NN')), (('button', 'NN'), 'nummod', ('2', 'CD')), (('button', 'NN'), 'nmod', ('one', 'CD')), (('one', 'CD'), 'advmod', ('instead', 'RB'))]
[(('replaced', 'VBD'), 'ccomp', ('weighed', 'VBD')), (('weighed', 'VBD'), 'nsubj', ('supply', 'NN')), (('supply', 'NN'), 'amod', ('ergonomic', 'JJ')), (('ergonomic', 'JJ'), 'amod', ('awesome', 'JJ')), (('supply', 'NN'), 'amod', ('small', 'JJ')), (('supply', 'NN'), 'amod', ('lightweight', 'JJ')), (('supply', 'NN'), 'compound', ('power', 'NN')), (('supply', 'NN'), 'compound', ('supply', 'NN')), (('supply', 'NN'), 'compound', ('power', 'NN')), (('replaced', 'VBD'), 'nsubj', ('machine', 'NN'))]
[(('screen', 'VB'), 'xcomp', ('good', 'JJ')), (('good', 'JJ'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'amod', ('awesome', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN'))]
[(('listen', 'VB'), 'ccomp', ('ease', 'VB')), (('ease', 'VB'), 'nsubj', ('video', 'NN')), (('video', 'NN'), 'compound', ('music', 'NN')), (('video', 'NN'), 'compound', ('watch', 'NN')), (('ease', 'VB'), 'dobj', ('display', 'NN')), (('display', 'NN'), 'amod', ('great', 'JJ'))]
[(('getting', 'VBG'), 'ccomp', ('must', 'MD')), (('must', 'MD'), 'nsubj', ('plan', 'NN')), (('plan', 'NN'), 'compound', ('apple', 'NN')), (('plan', 'NN'), 'compound', ('care', 'NN'))]
[(('see', 'VB'), 'xcomp', ('come', 'VB')), (('come', 'VB'), 'ccomp', ('get', 'VB')), (('get', 'VB'), 'nsubj', ('buy', 'NN')), (('buy', 'NN'), 'amod', ('laptop', 'JJ')), (('get', 'VB'), 'ccomp', ('need', 'VB')), (('need', 'VB'), 'nsubj', ('trial', 'NN')), (('trial', 'NN'), 'amod', ('normal', 'JJ')), (('trial', 'NN'), 'compound', ('operating', 'NN')), (('trial', 'NN'), 'compound', ('system', 'NN')), (('need', 'VB'), 'aux', ('must', 'MD')), (('need', 'VB'), 'dobj', ('stuff', 'NN')), (('stuff', 'NN'), 'acl', ('come', 'VBN'))]
[(('call', 'VB'), 'dobj', ('service', 'NN')), (('service', 'NN'), 'amod', ('good', 'JJ')), (('service', 'NN'), 'compound', ('sale', 'NN'))]
[(('operational', 'JJ'), 'dep', ('condition', 'NN')), (('condition', 'NN'), 'amod', ('laptop', 'JJ')), (('condition', 'NN'), 'amod', ('new', 'JJ')), (('operational', 'JJ'), 'ccomp', ('sent', 'VBD')), (('sent', 'VBD'), 'nsubj', ('1st', 'NNS')), (('1st', 'NNS'), 'amod', ('audio', 'JJ')), (('1st', 'NNS'), 'compound', ('problem', 'NN')), (('sent', 'VBD'), 'dobj', ('repair', 'NN'))]
[(('mention', 'VB'), 'xcomp', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('battery', 'NN')), (('battery', 'NN'), 'compound', ('month', 'NN')), (('using', 'VBG'), 'advmod', ('slowly', 'RB')), (('mention', 'VB'), 'nsubj', ('charge', 'NN')), (('charge', 'NN'), 'compound', ('le', 'FW')), (('charge', 'NN'), 'compound', ('le', 'FW')), (('charge', 'NN'), 'compound', ('hold', 'NN')), (('charge', 'NN'), 'acl:relcl', ('leave', 'VBP')), (('leave', 'VBP'), 'dep', ('unplugged', 'VBN')), (('unplugged', 'VBN'), 'dobj', ('minute', 'NN')), (('minute', 'NN'), 'nummod', ('5', 'CD')), (('unplugged', 'VBN'), 'nmod', ('thing', 'NN')), (('thing', 'NN'), 'case', ('without', 'IN')), (('thing', 'NN'), 'amod', ('dying', 'VBG'))]
[(('scream', 'NN'), 'nsubj', ('processor', 'NN')), (('scream', 'NN'), 'dobj', ('graphic', 'NN')), (('graphic', 'NN'), 'amod', ('unique', 'JJ')), (('graphic', 'NN'), 'compound', ('way', 'NN')), (('graphic', 'NN'), 'compound', ('apple', 'NN')), (('graphic', 'NN'), 'compound', ('osx', 'NN')), (('graphic', 'NN'), 'nummod', ('16', 'CD')), (('graphic', 'NN'), 'compound', ('function', 'NN')), (('graphic', 'NN'), 'acl', ('routed', 'VBN')), (('routed', 'VBN'), 'dobj', ('hardware', 'NN')), (('routed', 'VBN'), 'nmod', ('software', 'NN')), (('software', 'NN'), 'advmod', ('rather', 'RB'))]
[(('carry', 'VBP'), 'dep', ('lightweight', 'JJ')), (('lightweight', 'JJ'), 'amod', ('laptop', 'JJ')), (('carry', 'VBP'), 'advmod', ('easily', 'RB')), (('carry', 'VBP'), 'advmod', ('around', 'RB')), (('carry', 'VBP'), 'dep', ('knapsack', 'VB')), (('knapsack', 'VB'), 'dobj', ('book', 'NN')), (('book', 'NN'), 'amod', ('full', 'JJ')), (('book', 'NN'), 'compound', ('text', 'NN')), (('knapsack', 'VB'), 'advmod', ('barely', 'RB')), (('carry', 'VBP'), 'nsubj', ('weight', 'NN')), (('weight', 'NN'), 'nummod', ('add', 'CD'))]
[(('use', 'VB'), 'dobj', ('business', 'NN')), (('business', 'NN'), 'amod', ('tutoring', 'VBG')), (('use', 'VB'), 'advcl', ('bouncing', 'VBG')), (('bouncing', 'VBG'), 'mark', ('since', 'IN')), (('bouncing', 'VBG'), 'advmod', ('always', 'RB')), (('bouncing', 'VBG'), 'dobj', ('student', 'NN')), (('student', 'NN'), 'compound', ('student', 'NN')), (('student', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('ideal', 'JJ')), (('life', 'NN'), 'compound', ('portability', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('bouncing', 'VBG'), 'dep', ('get', 'VB')), (('get', 'VB'), 'discourse', ('yes', 'UH')), (('get', 'VB'), 'dobj', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('8', 'CD')), (('hour', 'NN'), 'acl', ('advertised', 'VBN'))]
[(('recommend', 'VB'), 'aux', ('would', 'MD')), (('recommend', 'VB'), 'ccomp', ('thats', 'VBZ')), (('thats', 'VBZ'), 'nsubj', ('speed', 'NN')), (('speed', 'NN'), 'compound', ('internet', 'NN')), (('thats', 'VBZ'), 'advmod', ('probably', 'RB')), (('thats', 'VBZ'), 'dobj', ('thing', 'NN')), (('thats', 'VBZ'), 'advmod', ('really', 'RB')), (('recommend', 'VB'), 'nsubj', ('care', 'VB'))]
[(('keyboard', 'NN'), 'nmod', ('look', 'NN')), (('look', 'NN'), 'case', ('since', 'IN')), (('look', 'NN'), 'compound', ('keyboard', 'NN')), (('look', 'NN'), 'nummod', ('100', 'CD')), (('look', 'NN'), 'compound', ('wpm', 'NN')), (('keyboard', 'NN'), 'compound', ('unit', 'NN')), (('keyboard', 'NN'), 'compound', ('comfortble', 'NN')), (('keyboard', 'NN'), 'dep', ('sticking', 'NN')), (('sticking', 'NN'), 'amod', ('key', 'JJ')), (('sticking', 'NN'), 'dep', ('lagging', 'JJ')), (('lagging', 'JJ'), 'iobj', ('configuration', 'NN')), (('configuration', 'NN'), 'amod', ('strange', 'JJ')), (('lagging', 'JJ'), 'dobj', ('etc', 'FW')), (('etc', 'FW'), 'amod', ('extra', 'JJ')), (('etc', 'FW'), 'amod', ('key', 'JJ'))]
[(('wish', 'VBP'), 'nsubj', ('product', 'NN')), (('product', 'NN'), 'amod', ('pro', 'JJ')), (('product', 'NN'), 'amod', ('great', 'JJ')), (('wish', 'VBP'), 'ccomp', ('came', 'VBD')), (('came', 'VBD'), 'nsubj', ('model', 'NN')), (('model', 'NN'), 'nummod', ('13', 'CD')), (('model', 'NN'), 'compound', ('inch', 'NN')), (('came', 'VBD'), 'dobj', ('edge', 'NN')), (('edge', 'NN'), 'amod', ('intel', 'JJ')), (('edge', 'NN'), 'compound', ('processor', 'NN')), (('edge', 'NN'), 'amod', ('comfortable', 'JJ')), (('edge', 'NN'), 'compound', ('edge', 'NN')), (('edge', 'NN'), 'acl', ('hurt', 'VBN')), (('hurt', 'VBN'), 'dobj', ('wrist', 'NN'))]
[(('hooked', 'VBD'), 'advmod', ('already', 'RB')), (('hooked', 'VBD'), 'dobj', ('look', 'NN')), (('look', 'NN'), 'amod', ('sleek', 'JJ')), (('hooked', 'VBD'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('dependability', 'JJ')), (('laptop', 'NN'), 'acl', ('shown', 'VBN'))]
[(('thought', 'VBD'), 'nsubj', ('price', 'NN')), (('price', 'NN'), 'amod', ('spec', 'JJ')), (('spec', 'JJ'), 'amod', ('great', 'JJ'))]
[(('price', 'VB'), 'nsubj', ('budget', 'NN')), (('budget', 'NN'), 'nummod', ('13', 'CD')), (('budget', 'NN'), 'amod', ('macbook', 'JJ')), (('budget', 'NN'), 'amod', ('pro', 'JJ')), (('budget', 'NN'), 'compound', ('fit', 'NN')), (('budget', 'NN'), 'dep', ('tax', 'NN')), (('tax', 'NN'), 'amod', ('free', 'JJ')), (('tax', 'NN'), 'compound', ('shipping', 'NN')), (('price', 'VB'), 'aux', ('ca', 'MD')), (('price', 'VB'), 'advmod', ('best', 'RBS')), (('price', 'VB'), 'xcomp', ('get', 'VB')), (('get', 'VB'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'amod', ('great', 'JJ'))]
[(('find', 'VBP'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'amod', ('navigate', 'JJ')), (('navigate', 'JJ'), 'advmod', ('much', 'RB')), (('navigate', 'JJ'), 'advmod', ('easier', 'RBR')), (('system', 'NN'), 'amod', ('operating', 'VBG')), (('find', 'VBP'), 'xcomp', ('file', 'VB')), (('file', 'VB'), 'dobj', ('lot', 'NN')), (('lot', 'NN'), 'compound', ('run', 'NN')), (('file', 'VB'), 'advmod', ('faster', 'RBR'))]
[(('delete', 'VBP'), 'nsubj', ('end', 'NN')), (('end', 'NN'), 'compound', ('cursor', 'NN')), (('end', 'NN'), 'acl', ('freaking', 'VBG')), (('freaking', 'VBG'), 'xcomp', ('uncommon', 'JJ')), (('uncommon', 'JJ'), 'nsubj', ('place', 'NN')), (('freaking', 'VBG'), 'advmod', ('accidentally', 'RB')), (('delete', 'VBP'), 'ccomp', ('mousepad', 'VBD')), (('mousepad', 'VBD'), 'nsubj', ('paragraph', 'NN')), (('paragraph', 'NN'), 'compound', ('word', 'NN')), (('paragraph', 'NN'), 'compound', ('sentence', 'NN'))]
[(('facebook', 'VBP'), 'nsubj', ('iphoto', 'NN')), (('iphoto', 'NN'), 'amod', ('great', 'JJ')), (('iphoto', 'NN'), 'acl', ('adding', 'VBG')), (('adding', 'VBG'), 'dobj', ('right', 'NN')), (('right', 'NN'), 'compound', ('picture', 'NN')), (('facebook', 'VBP'), 'dobj', ('site', 'NN')), (('site', 'NN'), 'amod', ('social', 'JJ')), (('site', 'NN'), 'compound', ('networking', 'NN'))]
[(('feature', 'VB'), 'dobj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('great', 'JJ')), (('feature', 'VB'), 'dep', ('need', 'VB')), (('need', 'VB'), 'dobj', ('speaker', 'NN')), (('speaker', 'NN'), 'amod', ('better', 'JJR'))]
[(('plug', 'VBP'), 'ccomp', ('performs', 'VBZ')), (('performs', 'VBZ'), 'nsubj', ('macosx', 'NN')), (('macosx', 'NN'), 'nummod', ('22', 'CD')), (('macosx', 'NN'), 'compound', ('monitor', 'NN')), (('macosx', 'NN'), 'amod', ('speedy', 'JJ')), (('performs', 'VBZ'), 'advmod', ('well', 'RB')), (('plug', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('dual', 'JJ')), (('window', 'NN'), 'compound', ('core', 'NN')), (('window', 'NN'), 'compound', ('dell', 'NN')), (('window', 'NN'), 'amod', ('core', 'NN')), (('core', 'NN'), 'compound', ('7', 'CD')), (('core', 'NN'), 'dep', ('quad', 'JJ'))]
[(('take', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'compound', ('pc', 'NN')), (('take', 'VBP'), 'advmod', ('little', 'RB')), (('take', 'VBP'), 'xcomp', ('getting', 'VBG')), (('getting', 'VBG'), 'dobj', ('use', 'NN'))]
[(('problem', 'NN'), 'compound', ('lot', 'NN')), (('problem', 'NN'), 'compound', ('writing', 'NN')), (('problem', 'NN'), 'compound', ('editing', 'NN')), (('problem', 'NN'), 'nmod', ('key', 'NN')), (('key', 'NN'), 'case', ('since', 'IN')), (('key', 'NN'), 'advmod', ('forward', 'RB')), (('key', 'NN'), 'amod', ('delete', 'JJ'))]
[(('run', 'VBP'), 'nsubj', ('everything', 'NN')), (('everything', 'NN'), 'amod', ('perfect', 'JJ')), (('run', 'VBP'), 'dobj', ('pc', 'NN')), (('pc', 'NN'), 'amod', ('faster', 'JJR')), (('pc', 'NN'), 'compound', ('average', 'NN'))]
[(('worry', 'VBP'), 'nsubj', ('mac', 'NN')), (('worry', 'VBP'), 'xcomp', ('wonderful', 'JJ')), (('wonderful', 'JJ'), 'nsubj', ('firewall', 'NN')), (('firewall', 'NN'), 'amod', ('antivirus', 'JJ')), (('firewall', 'NN'), 'compound', ('software', 'NN'))]
[(('run', 'VBP'), 'nsubj', ('defrags', 'NNS')), (('defrags', 'NNS'), 'amod', ('nightly', 'JJ')), (('defrags', 'NNS'), 'compound', ('computer', 'NN')), (('run', 'VBP'), 'dobj', ('scan', 'NNS')), (('scan', 'NNS'), 'compound', ('virus', 'NN'))]
[(('went', 'VBD'), 'nsubj', ('help', 'NN')), (('help', 'NN'), 'amod', ('toshiba', 'JJ')), (('help', 'NN'), 'amod', ('online', 'JJ')), (('help', 'NN'), 'acl', ('found', 'VBN')), (('found', 'VBN'), 'dobj', ('fix', 'NN')), (('fix', 'NN'), 'compound', ('suggestion', 'NN'))]
[(('operation', 'NN'), 'amod', ('_', 'JJ')), (('_', 'JJ'), 'nmod', ('problem', 'NN')), (('problem', 'NN'), 'case', ('since', 'IN')), (('problem', 'NN'), 'amod', ('then_i', 'JJ')), (('problem', 'NN'), 'amod', ('minor', 'JJ')), (('operation', 'NN'), 'amod', ('slow', 'JJ'))]
[(('make', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'compound', ('ram', 'NN')), (('make', 'VBP'), 'advmod', ('faster', 'RBR')), (('make', 'VBP'), 'dep', ('come', 'VB')), (('come', 'VB'), 'xcomp', ('sporting', 'VBG')), (('sporting', 'VBG'), 'ccomp', ('handle', 'VB')), (('handle', 'VB'), 'nsubj', ('performance', 'NN')), (('performance', 'NN'), 'nummod', ('2', 'CD')), (('performance', 'NN'), 'compound', ('gig', 'NN')), (('performance', 'NN'), 'amod', ('high', 'JJ')), (('handle', 'VB'), 'dobj', ('web', 'NN')), (('web', 'NN'), 'compound', ('stuff', 'NN')), (('web', 'NN'), 'compound', ('surf', 'NN')), (('web', 'NN'), 'advmod', ('faster', 'RBR')), (('faster', 'RBR'), 'nmod:npmod', ('lot', 'NN')), (('lot', 'NN'), 'amod', ('whole', 'JJ'))]
[(('graphic', 'VBZ'), 'nsubj', ('beast', 'NN')), (('beast', 'NN'), 'det', ('another', 'DT')), (('beast', 'NN'), 'amod', ('great', 'JJ')), (('beast', 'NN'), 'compound', ('thing', 'NN'))]
[(('complain', 'VBP'), 'nsubj', ('nothing', 'NN')), (('complain', 'VBP'), 'dobj', ('system', 'NN'))]
[(('ram', 'NN'), 'amod', ('little', 'JJ')), (('ram', 'NN'), 'amod', ('short', 'JJ')), (('ram', 'NN'), 'dep', ('get', 'VB')), (('get', 'VB'), 'dobj', ('pay', 'NN'))]
[(('life', 'NN'), 'amod', ('great', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN'))]
[(('reacts', 'VBZ'), 'nsubj', ('screen', 'NN')), (('screen', 'NN'), 'compound', ('fact', 'NN')), (('reacts', 'VBZ'), 'xcomp', ('lighting', 'VBG')), (('lighting', 'VBG'), 'nmod', ('luxury', 'NN')), (('luxury', 'NN'), 'case', ('around', 'IN')), (('luxury', 'NN'), 'amod', ('added', 'VBN')), (('luxury', 'NN'), 'acl', ('working', 'VBG')), (('working', 'VBG'), 'compound:prt', ('around', 'RP')), (('working', 'VBG'), 'dobj', ('others', 'NNS')), (('others', 'NNS'), 'acl:relcl', ('want', 'VBP')), (('want', 'VBP'), 'nsubj', ('area', 'NN')), (('area', 'NN'), 'amod', ('dark', 'JJ')), (('want', 'VBP'), 'ccomp', ('want', 'VBP')), (('want', 'VBP'), 'nsubj', ('privacy', 'NN')), (('want', 'VBP'), 'xcomp', ('bother', 'VB')), (('bother', 'VB'), 'xcomp', ('darker', 'VBG')), (('darker', 'VBG'), 'nsubj', ('lighting', 'NN')), (('lighting', 'NN'), 'amod', ('bright', 'JJ')), (('darker', 'VBG'), 'dep', ('convenient', 'JJ')), (('darker', 'VBG'), 'dobj', ('screen', 'NN')), (('screen', 'NN'), 'amod', ('softer', 'JJR')), (('screen', 'NN'), 'compound', ('lit', 'NN'))]
[(('led', 'VBD'), 'nsubj', ('excellent', 'JJ')), (('led', 'VBD'), 'dobj', ('monitor', 'NN')), (('monitor', 'NN'), 'amod', ('equipped', 'VBN')), (('equipped', 'VBN'), 'advmod', ('well', 'RB'))]
[(('scream', 'NN'), 'nsubj', ('processor', 'NN')), (('scream', 'NN'), 'dobj', ('graphic', 'NN')), (('graphic', 'NN'), 'amod', ('unique', 'JJ')), (('graphic', 'NN'), 'compound', ('way', 'NN')), (('graphic', 'NN'), 'compound', ('apple', 'NN')), (('graphic', 'NN'), 'compound', ('osx', 'NN')), (('graphic', 'NN'), 'nummod', ('16', 'CD')), (('graphic', 'NN'), 'compound', ('function', 'NN')), (('graphic', 'NN'), 'acl', ('routed', 'VBN')), (('routed', 'VBN'), 'dobj', ('hardware', 'NN')), (('routed', 'VBN'), 'nmod', ('software', 'NN')), (('software', 'NN'), 'advmod', ('rather', 'RB'))]
[(('perfect', 'JJ'), 'nsubj', ('size', 'NN')), (('perfect', 'JJ'), 'xcomp', ('bigger', 'JJR')), (('bigger', 'JJR'), 'nsubj', ('anything', 'NN')), (('anything', 'NN'), 'amod', ('recomend', 'JJ')), (('bigger', 'JJR'), 'ccomp', ('exceed', 'VBP')), (('exceed', 'VBP'), 'mark', ('except', 'IN')), (('exceed', 'VBP'), 'nsubj', ('person', 'NN')), (('exceed', 'VBP'), 'ccomp', ('give', 'VBP')), (('give', 'VBP'), 'nsubj', ('space', 'NN')), (('space', 'NN'), 'amod', ('limited', 'JJ'))]
[(('use', 'VBP'), 'nsubj', ('pad', 'NN')), (('pad', 'NN'), 'amod', ('headphone', 'JJ')), (('pad', 'NN'), 'compound', ('mic', 'NN')), (('pad', 'NN'), 'compound', ('jack', 'NN')), (('pad', 'NN'), 'compound', ('front', 'NN')), (('pad', 'NN'), 'compound', ('touch', 'NN')), (('pad', 'NN'), 'acl', ('making', 'VBG')), (('making', 'VBG'), 'dobj', ('pad', 'NN')), (('pad', 'NN'), 'compound', ('touch', 'NN')), (('making', 'VBG'), 'advmod', ('hard', 'RB')), (('use', 'VBP'), 'xcomp', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('headphone', 'JJ')), (('laptop', 'NN'), 'compound', ('mic', 'NN')), (('laptop', 'NN'), 'compound', ('mention', 'NN')), (('laptop', 'NN'), 'acl', ('designed', 'VBN')), (('designed', 'VBN'), 'dobj', ('person', 'NN')), (('person', 'NN'), 'amod', ('handed', 'NN')), (('handed', 'NN'), 'dep', ('right', 'JJ'))]
[(('mention', 'VB'), 'dobj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'compound', ('everything', 'NN')), (('keyboard', 'NN'), 'compound', ('size', 'NN')), (('keyboard', 'NN'), 'compound', ('weight', 'NN')), (('mention', 'VB'), 'dep', ('scream', 'VB')), (('scream', 'VB'), 'dobj', ('bulk', 'NN'))]
[(('notebook', 'NN'), 'amod', ('pro', 'JJ')), (('notebook', 'NN'), 'compound', ('macbook', 'NN')), (('notebook', 'NN'), 'amod', ('pro', 'JJ')), (('notebook', 'NN'), 'dep', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('large', 'JJ')), (('laptop', 'NN'), 'compound', ('battery', 'NN')), (('laptop', 'NN'), 'compound', ('life', 'NN')), (('laptop', 'NN'), 'compound', ('wont', 'NN')), (('laptop', 'NN'), 'compound', ('worry', 'NN')), (('laptop', 'NN'), 'compound', ('charge', 'NN')), (('notebook', 'NN'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'det', ('every', 'DT')), (('hour', 'NN'), 'nummod', ('five', 'CD'))]
[(('nice', 'JJ'), 'dep', ('look', 'VB')), (('look', 'VB'), 'dobj', ('type', 'NN')), (('type', 'NN'), 'amod', ('key', 'JJ')), (('type', 'NN'), 'amod', ('easy', 'JJ'))]
[(('stopped', 'VBD'), 'dep', ('held', 'VBD')), (('held', 'VBD'), 'nsubj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('_', 'JJ')), (('held', 'VBD'), 'neg', ('never', 'RB')), (('held', 'VBD'), 'dobj', ('charge', 'NN')), (('held', 'VBD'), 'advmod', ('longer', 'RB')), (('longer', 'RB'), 'nmod:npmod', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('one', 'CD')), (('held', 'VBD'), 'nmod', ('two', 'CD')), (('two', 'CD'), 'case', ('within', 'IN')), (('held', 'VBD'), 'nmod:tmod', ('month', 'NN')), (('stopped', 'VBD'), 'dobj', ('charge', 'NN')), (('charge', 'NN'), 'amod', ('holding', 'VBG')), (('stopped', 'VBD'), 'nsubj', ('minute', 'NN')), (('minute', 'NN'), 'nummod', ('ten', 'CD'))]
[(('1', 'CD'), 'dep', ('2', 'CD')), (('2', 'CD'), 'compound', ('1', 'CD')), (('2', 'CD'), 'dep', ('warranty', 'NN')), (('warranty', 'NN'), 'advmod', ('yes', 'RB')), (('warranty', 'NN'), 'compound', ('issue', 'NN')), (('warranty', 'NN'), 'compound', ('one', 'NN')), (('warranty', 'NN'), 'compound', ('month', 'NN'))]
[(('asked', 'VBD'), 'nsubj', ('center', 'NN')), (('center', 'NN'), 'amod', ('usual', 'JJ')), (('center', 'NN'), 'compound', ('customer', 'NN')), (('center', 'NN'), 'compound', ('service', 'NN')), (('asked', 'VBD'), 'ccomp', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('moment', 'NN')), (('moment', 'NN'), 'compound', ('hold', 'NN')), (('went', 'VBD'), 'ccomp', ('compare', 'VBP')), (('compare', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'amod', ('back', 'JJ')), (('compare', 'VBP'), 'ccomp', ('discussed', 'VBD')), (('discussed', 'VBD'), 'nsubj', ('netbooks', 'NNS')), (('netbooks', 'NNS'), 'compound', ('model', 'NN')), (('discussed', 'VBD'), 'ccomp', ('see', 'VB')), (('see', 'VB'), 'nsubj', ('colleague', 'NN')), (('see', 'VB'), 'aux', ('could', 'MD'))]
[(('called', 'VBD'), 'nsubj', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('compaq', 'CD')), (('hour', 'NN'), 'compound', ('phone', 'NN')), (('hour', 'NN'), 'nummod', ('3', 'CD')), (('called', 'VBD'), 'dep', ('got', 'VBN')), (('got', 'VBN'), 'advmod', ('finally', 'RB')), (('got', 'VBN'), 'dobj', ('problem', 'NN')), (('problem', 'NN'), 'compound', ('replacement', 'NN')), (('got', 'VBN'), 'xcomp', ('getting', 'VBG')), (('getting', 'VBG'), 'nmod', ('warranty', 'NN')), (('warranty', 'NN'), 'case', ('since', 'IN'))]
[(('call', 'VB'), 'ccomp', ('set', 'VBD')), (('set', 'VBD'), 'nsubj', ('support', 'NN')), (('support', 'NN'), 'compound', ('apple', 'NN')), (('set', 'VBD'), 'ccomp', ('walked', 'VBD')), (('walked', 'VBD'), 'nsubj', ('tech', 'NN')), (('tech', 'NN'), 'amod', ('new', 'JJ')), (('tech', 'NN'), 'compound', ('printer', 'NN')), (('tech', 'NN'), 'amod', ('wonderful', 'JJ')), (('tech', 'NN'), 'compound', ('experience', 'NN')), (('tech', 'NN'), 'amod', ('helpful', 'JJ')), (('tech', 'NN'), 'compound', ('english', 'NN')), (('tech', 'NN'), 'compound', ('speaking', 'NN')), (('tech', 'NN'), 'compound', ('vancouver', 'NN')), (('walked', 'VBD'), 'dobj', ('help', 'NN')), (('help', 'NN'), 'compound', ('process', 'NN'))]
[(('cost', 'VBD'), 'nsubj', ('money', 'NN')), (('money', 'NN'), 'amod', ('worth', 'JJ')), (('worth', 'JJ'), 'advmod', ('well', 'RB')), (('cost', 'VBD'), 'dobj', ('investment', 'NN')), (('investment', 'NN'), 'amod', ('good', 'JJ'))]
[(('build', 'VBP'), 'nsubj', ('capacity', 'NN')), (('capacity', 'NN'), 'compound', ('everything', 'NN')), (('capacity', 'NN'), 'compound', ('fine', 'NNP')), (('capacity', 'NN'), 'compound', ('machine', 'NN')), (('capacity', 'NN'), 'compound', ('speed', 'NN'))]
[(('talk', 'VB'), 'advmod', ('also', 'RB')), (('talk', 'VB'), 'aux', ('need', 'MD')), (('talk', 'VB'), 'ccomp', ('believe', 'VB')), (('believe', 'VB'), 'nsubj', ('charge', 'NN')), (('charge', 'NN'), 'amod', ('representive', 'JJ')), (('charge', 'NN'), 'compound', ('microsoft', 'NN')), (('believe', 'VB'), 'dobj', ('robbery', 'NN')), (('talk', 'VB'), 'dep', ('charged', 'VBD')), (('charged', 'VBD'), 'mark', ('since', 'IN')), (('charged', 'VBD'), 'ccomp', ('designed', 'VBD')), (('designed', 'VBD'), 'nsubj', ('amount', 'NN')), (('amount', 'NN'), 'amod', ('enormous', 'JJ')), (('designed', 'VBD'), 'advmod', ('badly', 'RB')), (('designed', 'VBD'), 'ccomp', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('people', 'NNS')), (('people', 'NNS'), 'compound', ('system', 'NN')), (('went', 'VBD'), 'aux', ('would', 'MD')), (('went', 'VBD'), 'ccomp', ('could', 'MD')), (('could', 'MD'), 'nsubj', ('xp', 'NN'))]
[(('run', 'VBP'), 'dep', ('able', 'JJ')), (('able', 'JJ'), 'nmod:npmod', ('plenty', 'NN')), (('plenty', 'NN'), 'nummod', ('gb', 'CD')), (('gb', 'CD'), 'compound', ('2', 'CD')), (('plenty', 'NN'), 'compound', ('ram', 'NN')), (('run', 'VBP'), 'dobj', ('window', 'NN')), (('window', 'NN'), 'nummod', ('7', 'CD')), (('run', 'VBP'), 'advmod', ('least', 'JJS')), (('run', 'VBP'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'nummod', ('3', 'CD')), (('3', 'CD'), 'compound', ('2', 'CD')), (('program', 'NN'), 'nmod', ('slowdown', 'NN')), (('slowdown', 'NN'), 'case', ('next', 'IN'))]
[(('keep', 'VB'), 'ccomp', ('bring', 'VB')), (('bring', 'VB'), 'nsubj', ('matter', 'NN')), (('matter', 'NN'), 'compound', ('internet', 'NN')), (('matter', 'NN'), 'compound', ('signal', 'NN'))]
[(('run', 'VBP'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('simple', 'JJ')), (('simple', 'JJ'), 'advmod', ('plain', 'RB')), (('run', 'VBP'), 'dobj', ('load', 'NN')), (('load', 'NN'), 'amod', ('great', 'JJ')), (('run', 'VBP'), 'advmod', ('fast', 'RB'))]
[(('grafics', 'VBZ'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'amod', ('awesome', 'JJ')), (('system', 'NN'), 'amod', ('cooling', 'VBG')), (('system', 'NN'), 'amod', ('better', 'JJR')), (('better', 'JJR'), 'advmod', ('much', 'RB')), (('grafics', 'VBZ'), 'dobj', ('ati', 'NN')), (('ati', 'NN'), 'compound', ('card', 'NN')), (('ati', 'NN'), 'acl:relcl', ('led', 'VBD')), (('led', 'VBD'), 'nsubj', ('ram', 'NN')), (('ram', 'NN'), 'nummod', ('5870', 'CD')), (('ram', 'NN'), 'amod', ('8gb', 'JJ')), (('led', 'VBD'), 'dobj', ('screen', 'NN')), (('screen', 'NN'), 'amod', ('backlit', 'JJ'))]
[(('called', 'VBD'), 'advmod', ('still', 'RB')), (('called', 'VBD'), 'advmod', ('warrenty', 'RB')), (('called', 'VBD'), 'dobj', ('toshiba', 'NN')), (('called', 'VBD'), 'nsubj', ('help', 'VB'))]
[(('get', 'VBP'), 'nsubj', ('_', 'NNP')), (('get', 'VBP'), 'ccomp', ('keep', 'VB')), (('keep', 'VB'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'amod', ('stuck', 'JJ')), (('use', 'NN'), 'compound', ('time', 'NN')), (('keep', 'VB'), 'xcomp', ('tapping', 'VBG')), (('tapping', 'VBG'), 'ccomp', ('get', 'VB')), (('get', 'VB'), 'dobj', ('work', 'NN'))]
[(('went', 'VBD'), 'nsubj', ('processor', 'NN')), (('went', 'VBD'), 'ccomp', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('fan', 'NN')), (('went', 'VBD'), 'ccomp', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('motherboard', 'NN'))]
[(('macbook', 'VB'), 'dobj', ('notebook', 'NN')), (('macbook', 'VB'), 'advmod', ('quickly', 'RB')), (('macbook', 'VB'), 'dep', ('die', 'VB')), (('die', 'VB'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'amod', ('short', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('die', 'VB'), 'nmod', ('program', 'NN')), (('program', 'NN'), 'advmod', ('well', 'RB')), (('program', 'NN'), 'amod', ('many', 'JJ')), (('program', 'NN'), 'compound', ('background', 'NN')), (('program', 'NN'), 'acl', ('run', 'VBN')), (('run', 'VBN'), 'nmod', ('knowlede', 'NN')), (('knowlede', 'NN'), 'case', ('without', 'IN')), (('knowlede', 'NN'), 'compound', ('user', 'NN'))]
[(('_', 'VB'), 'dobj', ('casing', 'NN')), (('casing', 'NN'), 'det', ('another', 'DT')), (('casing', 'NN'), 'amod', ('laptop', 'JJ')), (('laptop', 'JJ'), 'advmod', ('later', 'RBR')), (('later', 'RBR'), 'nmod:npmod', ('week', 'NN')), (('week', 'NN'), 'nummod', ('three', 'CD')), (('casing', 'NN'), 'amod', ('back', 'JJ')), (('casing', 'NN'), 'amod', ('new', 'JJ')), (('casing', 'NN'), 'amod', ('mousepad', 'JJ')), (('casing', 'NN'), 'amod', ('key', 'JJ'))]
[(('wanted', 'VBD'), 'dobj', ('processor', 'NN')), (('processor', 'NN'), 'compound', ('something', 'NN')), (('processor', 'NN'), 'amod', ('new', 'JJ')), (('processor', 'NN'), 'amod', ('intel', 'JJ')), (('processor', 'NN'), 'compound', ('core', 'NN')), (('processor', 'NN'), 'acl:relcl', ('hook', 'VB')), (('hook', 'VB'), 'nsubj', ('port', 'NN')), (('port', 'NN'), 'compound', ('hdmi', 'NN')), (('hook', 'VB'), 'aux', ('could', 'MD')), (('hook', 'VB'), 'advmod', ('directly', 'RB')), (('wanted', 'VBD'), 'nsubj', ('tv', 'NN'))]
[(('know', 'VB'), 'ccomp', ('think', 'VBP')), (('think', 'VBP'), 'nsubj', ('everyone', 'NN')), (('think', 'VBP'), 'ccomp', ('get', 'VBP')), (('get', 'VBP'), 'nsubj', ('mac', 'NN')), (('mac', 'NN'), 'amod', ('overrated', 'JJ')), (('overrated', 'JJ'), 'amod', ('overpriced', 'JJ')), (('get', 'VBP'), 'ccomp', ('find', 'VBP')), (('find', 'VBP'), 'nsubj', ('expense', 'NN')), (('expense', 'NN'), 'amod', ('past', 'JJ')), (('expense', 'NN'), 'amod', ('initial', 'JJ')), (('find', 'VBP'), 'xcomp', ('worth', 'JJ')), (('worth', 'JJ'), 'ccomp', ('buy', 'VB')), (('buy', 'VB'), 'nsubj', ('penny', 'NN')), (('penny', 'NN'), 'det', ('every', 'DT')), (('penny', 'NN'), 'nmod', ('plan', 'NN')), (('plan', 'NN'), 'case', ('besides', 'IN')), (('plan', 'NN'), 'advmod', ('always', 'RB')), (('plan', 'NN'), 'compound', ('financing', 'NN')), (('buy', 'VB'), 'advmod', ('best', 'RB')), (('buy', 'VB'), 'dobj', ('offer', 'NN'))]
[(('allows', 'VBZ'), 'nsubj', ('screen', 'NN')), (('screen', 'NN'), 'amod', ('big', 'JJ')), (('allows', 'VBZ'), 'xcomp', ('enjoy', 'VB')), (('enjoy', 'VB'), 'xcomp', ('watching', 'VBG')), (('watching', 'VBG'), 'dobj', ('movie', 'NN')), (('movie', 'NN'), 'compound', ('picture', 'FW')), (('movie', 'NN'), 'conj', ('etc', 'FW'))]
[(('take', 'VBP'), 'nsubj', ('use', 'NN')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('use', 'NN'), 'compound', ('pick', 'NN')), (('take', 'VBP'), 'advmod', ('long', 'RB')), (('take', 'VBP'), 'dep', ('get', 'VB')), (('get', 'VB'), 'dobj', ('o', 'NN')), (('o', 'NN'), 'amod', ('used', 'JJ')), (('o', 'NN'), 'compound', ('mac', 'NN'))]
[(('come', 'VBP'), 'nsubj', ('osx', 'NN')), (('osx', 'NN'), 'amod', ('new', 'JJ')), (('come', 'VBP'), 'dep', ('come', 'VB')), (('come', 'VB'), 'ccomp', ('make', 'VB')), (('make', 'VB'), 'nsubj', ('feature', 'NN')), (('feature', 'NN'), 'amod', ('new', 'JJ')), (('make', 'VB'), 'xcomp', ('easy', 'JJ')), (('easy', 'JJ'), 'nsubj', ('use', 'NN'))]
[(('seems', 'VBZ'), 'nsubj', ('processor', 'NN')), (('processor', 'NN'), 'compound', ('amd', 'NN')), (('processor', 'NN'), 'compound', ('turin', 'NN')), (('seems', 'VBZ'), 'advmod', ('always', 'RB')), (('seems', 'VBZ'), 'xcomp', ('perform', 'VB')), (('perform', 'VB'), 'dobj', ('intel', 'NN')), (('intel', 'NN'), 'amod', ('better', 'JJR')), (('better', 'JJR'), 'advmod', ('much', 'RB'))]
[(('sized', 'VBD'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'nummod', ('18', 'CD')), (('laptop', 'NN'), 'compound', ('inch', 'NN'))]
[(('surprised', 'VBD'), 'nsubj', ('display', 'NN')), (('display', 'NN'), 'compound', ('quality', 'NN')), (('surprised', 'VBD'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'compound', ('performance', 'NN')), (('laptop', 'NN'), 'compound', ('quality', 'NN')), (('laptop', 'NN'), 'compound', ('hp', 'NN'))]
[(('crashed', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('_', 'JJ')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('crashed', 'VBD'), 'advmod', ('well', 'RB')), (('crashed', 'VBD'), 'dep', ('buy', 'VB')), (('buy', 'VB'), 'dobj', ('cord', 'NN')), (('cord', 'NN'), 'amod', ('new', 'JJ')), (('cord', 'NN'), 'compound', ('power', 'NN'))]
[(('took', 'VBD'), 'dobj', ('star', 'NN')), (('took', 'VBD'), 'nsubj', ('software', 'NN')), (('software', 'NN'), 'nummod', ('machine', 'CD')), (('software', 'NN'), 'compound', ('lot', 'NN')), (('software', 'NN'), 'compound', ('junk', 'NN'))]
[(('worth', 'NN'), 'amod', ('general', 'JJ')), (('general', 'JJ'), 'nmod:npmod', ('quality', 'NN')), (('worth', 'NN'), 'amod', ('le', 'JJ')), (('worth', 'NN'), 'dep', ('laptop', 'JJ')), (('laptop', 'JJ'), 'amod', ('cheap', 'JJ'))]
[(('dvd', 'VBP'), 'nsubj', ('application', 'NN')), (('application', 'NN'), 'det', ('every', 'DT')), (('application', 'NN'), 'compound', ('driver', 'NN')), (('application', 'NN'), 'compound', ('driver', 'NN')), (('dvd', 'VBP'), 'ccomp', ('reload', 'VBD')), (('reload', 'VBD'), 'nsubj', ('need', 'NN')), (('need', 'NN'), 'compound', ('everything', 'NN'))]
[(('value', 'NN'), 'amod', ('great', 'JJ')), (('value', 'NN'), 'dep', ('brand', 'NN')), (('brand', 'NN'), 'amod', ('fast', 'JJ')), (('brand', 'NN'), 'compound', ('delivery', 'NN')), (('brand', 'NN'), 'compound', ('computer', 'NN')), (('brand', 'NN'), 'compound', ('work', 'NN')), (('value', 'NN'), 'dep', ('pleased', 'NNS')), (('pleased', 'NNS'), 'amod', ('new', 'JJ')), (('pleased', 'NNS'), 'compound', ('problem', 'NN'))]
[(('wish', 'VB'), 'dobj', ('webcam', 'NN')), (('wish', 'VB'), 'advcl', ('perfect', 'JJ')), (('perfect', 'JJ'), 'mark', ('though', 'IN')), (('perfect', 'JJ'), 'aux', ('would', 'MD'))]
[(('love', 'VB'), 'dobj', ('dock', 'NN')), (('love', 'VB'), 'advmod', ('simply', 'RB')), (('love', 'VB'), 'dep', ('drop', 'VB')), (('drop', 'VB'), 'ccomp', ('file', 'VB')), (('file', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('ontop', 'JJ')), (('program', 'NN'), 'amod', ('particular', 'JJ')), (('program', 'NN'), 'compound', ('program', 'NN')), (('file', 'VB'), 'advmod', ('simply', 'RB')), (('file', 'VB'), 'dep', ('open', 'VB')), (('open', 'VB'), 'dobj', ('file', 'NN'))]
[(('computer', 'NN'), 'compound', ('navigation', 'NN')), (('computer', 'NN'), 'acl', ('superior', 'JJ')), (('superior', 'JJ'), 'advmod', ('far', 'RB')), (('computer', 'NN'), 'nmod', ('system', 'NN')), (('system', 'NN'), 'case', ('compared', 'VBN')), (('system', 'NN'), 'compound', ('window', 'NN')), (('system', 'NN'), 'amod', ('operating', 'VBG')), (('system', 'NN'), 'advmod', ('well', 'RB'))]
[(('overheats', 'VBZ'), 'nsubj', ('system', 'NN')), (('overheats', 'VBZ'), 'advmod', ('constantly', 'RB')), (('overheats', 'VBZ'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'acl:relcl', ('work', 'VBP')), (('work', 'VBP'), 'nsubj', ('case', 'NN')), (('case', 'NN'), 'amod', ('short', 'JJ')), (('case', 'NN'), 'acl', ('coming', 'VBG')), (('coming', 'VBG'), 'compound:prt', ('apart', 'RP')), (('coming', 'VBG'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'amod', ('core', 'JJ')), (('use', 'NN'), 'compound', ('application', 'NN')), (('use', 'NN'), 'dep', ('day', 'NN')), (('day', 'NN'), 'det', ('every', 'DT')), (('work', 'VBP'), 'dobj', ('run', 'NN')), (('run', 'NN'), 'amod', ('graphic', 'JJ')), (('run', 'NN'), 'compound', ('artist', 'NN')), (('work', 'VBP'), 'advmod', ('poorly', 'RB'))]
[(('picked', 'VBD'), 'ccomp', ('use', 'VB')), (('use', 'VB'), 'nsubj', ('thought', 'NN')), (('thought', 'NN'), 'amod', ('inexpensive', 'JJ')), (('thought', 'NN'), 'nummod', ('400', 'CD')), (('use', 'VB'), 'aux', ('would', 'MD')), (('use', 'VB'), 'advmod', ('good', 'RB')), (('good', 'RB'), 'dep', ('easy', 'JJ')), (('picked', 'VBD'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('first', 'JJ'))]
[(('memory', 'NN'), 'compound', ('difference', 'NN')), (('memory', 'NN'), 'compound', ('toshiba', 'NN')), (('memory', 'NN'), 'compound', ('lot', 'NN')), (('memory', 'NN'), 'dep', ('space', 'NN')), (('space', 'NN'), 'amod', ('hard', 'JJ')), (('space', 'NN'), 'compound', ('drive', 'NN'))]
[(('plug', 'VBP'), 'ccomp', ('performs', 'VBZ')), (('performs', 'VBZ'), 'nsubj', ('macosx', 'NN')), (('macosx', 'NN'), 'nummod', ('22', 'CD')), (('macosx', 'NN'), 'compound', ('monitor', 'NN')), (('macosx', 'NN'), 'amod', ('speedy', 'JJ')), (('performs', 'VBZ'), 'advmod', ('well', 'RB')), (('plug', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('dual', 'JJ')), (('window', 'NN'), 'compound', ('core', 'NN')), (('window', 'NN'), 'compound', ('dell', 'NN')), (('window', 'NN'), 'amod', ('core', 'NN')), (('core', 'NN'), 'compound', ('7', 'CD')), (('core', 'NN'), 'dep', ('quad', 'JJ'))]
[(('screen', 'NN'), 'amod', ('black', 'JJ'))]
[(('pleased', 'VBD'), 'advmod', ('overall', 'RB')), (('pleased', 'VBD'), 'dobj', ('satellite', 'NN')), (('satellite', 'NN'), 'compound', ('toshiba', 'NN')), (('pleased', 'VBD'), 'nmod', ('window', 'NN')), (('window', 'NN'), 'case', ('like', 'IN')), (('window', 'NN'), 'amod', ('extra', 'JJ')), (('window', 'NN'), 'compound', ('feature', 'NN')), (('window', 'NN'), 'compound', ('love', 'NN')), (('pleased', 'VBD'), 'nsubj', ('premium', 'NN')), (('premium', 'NN'), 'nummod', ('7', 'CD')), (('premium', 'NN'), 'compound', ('home', 'NN'))]
[(('run', 'VB'), 'dobj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'amod', ('fast', 'JJ')), (('keyboard', 'NN'), 'amod', ('regular', 'JJ')), (('keyboard', 'NN'), 'compound', ('layout', 'NN')), (('keyboard', 'NN'), 'amod', ('better', 'JJR')), (('better', 'JJR'), 'advmod', ('much', 'RB'))]
[(('run', 'VBP'), 'nsubj', ('computer', 'NN')), (('run', 'VBP'), 'ccomp', ('come', 'VBP')), (('come', 'VBP'), 'nsubj', ('software', 'NN')), (('software', 'NN'), 'amod', ('fast', 'JJ')), (('software', 'NN'), 'compound', ('problem', 'NN')), (('software', 'NN'), 'compound', ('ilife', 'NN')), (('come', 'VBP'), 'ccomp', ('garageband', 'VBD')), (('garageband', 'VBD'), 'nsubj', ('itunes', 'NNS')), (('itunes', 'NNS'), 'amod', ('iphoto', 'JJ')), (('itunes', 'NNS'), 'amod', ('imovie', 'JJ')), (('itunes', 'NNS'), 'compound', ('iweb', 'NN')), (('garageband', 'VBD'), 'xcomp', ('helpful', 'JJ')), (('garageband', 'VBD'), 'advmod', ('well', 'RB'))]
[(('computer', 'NN'), 'amod', ('odd', 'JJ')), (('computer', 'NN'), 'compound', ('reason', 'NN')), (('computer', 'NN'), 'dep', ('system', 'NN')), (('system', 'NN'), 'amod', ('reconize', 'JJ')), (('system', 'NN'), 'compound', ('operation', 'NN'))]
[(('unable', 'JJ'), 'advmod', ('vista', 'RB')), (('unable', 'JJ'), 'dep', ('install', 'VB')), (('install', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('uninstall', 'JJ'))]
[(('flatline', 'VBP'), 'nsubj', ('side', 'NN')), (('side', 'NN'), 'amod', ('transcription', 'JJ')), (('side', 'NN'), 'compound', ('work', 'NN')), (('flatline', 'VBP'), 'ccomp', ('make', 'VBP')), (('make', 'VBP'), 'nsubj', ('keyboard', 'NN')), (('make', 'VBP'), 'xcomp', ('typing', 'VBG')), (('typing', 'VBG'), 'dobj', ('well', 'NN')), (('well', 'NN'), 'amod', ('quick', 'JJ')), (('well', 'NN'), 'amod', ('easy', 'JJ'))]
[(('computer', 'NN'), 'amod', ('graphic', 'JJ')), (('computer', 'NN'), 'amod', ('stellar', 'JJ')), (('stellar', 'JJ'), 'advmod', ('also', 'RB')), (('computer', 'NN'), 'dep', ('vivid', 'JJ')), (('vivid', 'JJ'), 'amod', ('clear', 'JJ'))]
[(('chance', 'VBP'), 'dep', ('lecture', 'NN')), (('lecture', 'NN'), 'amod', ('great', 'JJ')), (('lecture', 'NN'), 'amod', ('several', 'JJ')), (('chance', 'VBP'), 'advmod', ('back', 'RB')), (('back', 'RB'), 'advmod', ('back', 'RB')), (('chance', 'VBP'), 'dobj', ('charge', 'NN')), (('chance', 'VBP'), 'nsubj', ('lecture', 'NN')), (('lecture', 'NN'), 'nummod', ('one', 'CD'))]
[(('6', 'CD'), 'compound', ('5', 'CD')), (('6', 'CD'), 'dep', ('hour', 'NN')), (('6', 'CD'), 'dep', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN'))]
[(('tried', 'VBD'), 'nsubj', ('_', 'NNP')), (('tried', 'VBD'), 'dobj', ('use', 'NN')), (('tried', 'VBD'), 'advcl', ('found', 'VBD')), (('found', 'VBD'), 'mark', ('since', 'IN')), (('found', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'compound', ('disc', 'NN')), (('drive', 'NN'), 'acl', ('replaced', 'VBN')), (('replaced', 'VBN'), 'xcomp', ('taking', 'VBG')), (('taking', 'VBG'), 'compound:prt', ('back', 'RP')), (('taking', 'VBG'), 'dobj', ('squad', 'NN')), (('squad', 'NN'), 'compound', ('geek', 'NN')), (('found', 'VBD'), 'ccomp', ('replaced', 'VBD')), (('replaced', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('used', 'VBN')), (('used', 'VBN'), 'advmod', ('accidently', 'RB')), (('drive', 'NN'), 'amod', ('right', 'JJ')), (('replaced', 'VBD'), 'ccomp', ('went', 'VBD')), (('went', 'VBD'), 'nsubj', ('one', 'NN')), (('one', 'NN'), 'amod', ('first', 'JJ')), (('went', 'VBD'), 'advmod', ('back', 'RB')), (('went', 'VBD'), 'xcomp', ('get', 'VB')), (('get', 'VB'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('correct', 'JJ'))]
[(('card', 'NN'), 'amod', ('2', 'CD')), (('card', 'NN'), 'amod', ('wireless', 'JJ')), (('card', 'NN'), 'dep', ('quality', 'NN')), (('quality', 'NN'), 'dep', ('low', 'JJ'))]
[(('make', 'VBP'), 'nsubj', ('cord', 'NN')), (('cord', 'NN'), 'acl', ('coming', 'VBG')), (('coming', 'VBG'), 'dobj', ('power', 'NN')), (('power', 'NN'), 'amod', ('right', 'JJ')), (('power', 'NN'), 'acl:relcl', ('left', 'VBD')), (('left', 'VBD'), 'nsubj', ('mic', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'compound', ('cord', 'NN')), (('mic', 'NN'), 'amod', ('coming', 'JJ')), (('mic', 'NN'), 'amod', ('front', 'JJ')), (('mic', 'NN'), 'compound', ('headphone', 'NN')), (('mic', 'NN'), 'cc', ('plus', 'CC')), (('mic', 'NN'), 'conj', ('connection', 'NN')), (('connection', 'NN'), 'compound', ('network', 'NN')), (('make', 'VBP'), 'dobj', ('cord', 'NN')), (('cord', 'NN'), 'amod', ('messy', 'JJ')), (('cord', 'NN'), 'compound', ('setup', 'NN')), (('cord', 'NN'), 'acl', ('going', 'VBG')), (('going', 'VBG'), 'dobj', ('direction', 'NN')), (('direction', 'NN'), 'det', ('every', 'DT'))]
[(('sony', 'NN'), 'amod', ('_', 'JJ')), (('sony', 'NN'), 'compound', ('opinion', 'NN')), (('sony', 'NN'), 'dep', ('dropping', 'VBG')), (('dropping', 'VBG'), 'dobj', ('market', 'NN')), (('market', 'NN'), 'amod', ('fast', 'JJ')), (('market', 'NN'), 'compound', ('stock', 'NN')), (('dropping', 'VBG'), 'nmod', ('machine', 'NN')), (('machine', 'NN'), 'case', ('given', 'VBN')), (('machine', 'NN'), 'amod', ('horrible', 'JJ')), (('machine', 'NN'), 'compound', ('support', 'NN')), (('machine', 'NN'), 'acl', ('caused', 'VBN')), (('caused', 'VBN'), 'dobj', ('plunge', 'NN')), (('plunge', 'NN'), 'det', ('another', 'DT'))]
[(('program', 'NN'), 'amod', ('many', 'JJ')), (('program', 'NN'), 'amod', ('great', 'JJ')), (('program', 'NN'), 'dep', ('iphotos', 'NNS')), (('iphotos', 'NNS'), 'amod', ('ilife', 'JJ')), (('program', 'NN'), 'dep', ('others', 'NNS'))]
[(('button', 'NN'), 'amod', ('first', 'JJ')), (('button', 'NN'), 'compound', ('push', 'NN')), (('button', 'NN'), 'dep', ('lid', 'NN')), (('lid', 'NN'), 'amod', ('open', 'JJ'))]
[(('take', 'VB'), 'advmod', ('long', 'RB')), (('take', 'VB'), 'ccomp', ('switched', 'VBN')), (('switched', 'VBN'), 'auxpass', ('get', 'VB')), (('switched', 'VBN'), 'dobj', ('fine', 'NN')), (('fine', 'NN'), 'compound', ('mac', 'NN')), (('fine', 'NN'), 'compound', ('computer', 'NN')), (('fine', 'NN'), 'compound', ('program', 'NN')), (('fine', 'NN'), 'compound', ('navigation', 'NN')), (('fine', 'NN'), 'nmod', ('function', 'NN')), (('function', 'NN'), 'case', ('like', 'IN')), (('function', 'NN'), 'compound', ('way', 'NN')), (('function', 'NN'), 'compound', ('laptop', 'NN')), (('function', 'NN'), 'amod', ('better', 'JJR')), (('better', 'JJR'), 'advmod', ('much', 'RB'))]
[(('spoke', 'VBD'), 'dobj', ('rep', 'NN')), (('rep', 'NN'), 'compound', ('service', 'NN')), (('rep', 'NN'), 'dep', ('adapter', 'NN')), (('adapter', 'NN'), 'amod', ('micro', 'JJ')), (('adapter', 'NN'), 'compound', ('center', 'NN')), (('adapter', 'NN'), 'compound', ('girlfriend', 'NN')), (('adapter', 'NN'), 'compound', ('problem', 'NN')), (('adapter', 'NN'), 'compound', ('power', 'NN')), (('spoke', 'VBD'), 'nsubj', ('incident', 'NN')), (('incident', 'NN'), 'amod', ('isolated', 'VBN'))]
[(('macbook', 'VB'), 'ccomp', ('come', 'VB')), (('come', 'VB'), 'nsubj', ('pro', 'FW')), (('come', 'VB'), 'ccomp', ('protect', 'VB')), (('protect', 'VB'), 'nsubj', ('freesecuritysoftware', 'NN')), (('protect', 'VB'), 'dep', ('surfing', 'VBG')), (('surfing', 'VBG'), 'nsubj', ('internet', 'NN')), (('internet', 'NN'), 'compound', ('virus', 'NN')), (('internet', 'NN'), 'compound', ('intrusive', 'NNP')), (('internet', 'NN'), 'compound', ('thing', 'NN')), (('internet', 'NN'), 'compound', ('downloads', 'NNS')), (('surfing', 'VBG'), 'dobj', ('email', 'NN'))]
[(('love', 'VBP'), 'dobj', ('stability', 'NN')), (('love', 'VBP'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'nummod', ('mac', 'CD')), (('system', 'NN'), 'compound', ('software', 'NN')), (('system', 'NN'), 'compound', ('operating', 'NN'))]
[(('went', 'VBD'), 'nsubj', ('supply', 'NN')), (('supply', 'NN'), 'compound', ('power', 'NN')), (('went', 'VBD'), 'nmod:tmod', ('week', 'NN')), (('week', 'NN'), 'amod', ('bad', 'JJ')), (('week', 'NN'), 'nummod', ('2', 'CD'))]
[(('built', 'VBD'), 'advmod', ('there', 'RB')), (('built', 'VBD'), 'nsubj', ('photography', 'NN')), (('photography', 'NN'), 'nummod', ('camera', 'CD')), (('photography', 'NN'), 'amod', ('special', 'JJ')), (('photography', 'NN'), 'compound', ('effect', 'NN')), (('photography', 'NN'), 'compound', ('video', 'NN'))]
[(('use', 'NN'), 'amod', ('easier', 'JJR')), (('easier', 'JJR'), 'advmod', ('much', 'RB'))]
[(('impressed', 'VBD'), 'advmod', ('really', 'RB')), (('impressed', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'nummod', ('quality', 'CD')), (('computer', 'NN'), 'compound', ('performance', 'NN')), (('computer', 'NN'), 'compound', ('price', 'NN'))]
[(('use', 'NN'), 'nmod', ('o', 'NN')), (('o', 'NN'), 'case', ('like', 'IN')), (('o', 'NN'), 'compound', ('mac', 'NN')), (('use', 'NN'), 'amod', ('simple', 'JJ')), (('use', 'NN'), 'amod', ('easy', 'JJ'))]
[(('bought', 'VBD'), 'dobj', ('protector', 'NN')), (('bought', 'VBD'), 'nsubj', ('work', 'NN')), (('work', 'NN'), 'amod', ('key', 'JJ')), (('work', 'NN'), 'compound', ('pad', 'NN')), (('work', 'NN'), 'amod', ('emojihappy', 'JJ')), (('emojihappy', 'JJ'), 'amod', ('great', 'JJ'))]
[(('pleased', 'VBD'), 'advmod', ('overall', 'RB')), (('pleased', 'VBD'), 'dobj', ('satellite', 'NN')), (('satellite', 'NN'), 'compound', ('toshiba', 'NN')), (('pleased', 'VBD'), 'nmod', ('window', 'NN')), (('window', 'NN'), 'case', ('like', 'IN')), (('window', 'NN'), 'amod', ('extra', 'JJ')), (('window', 'NN'), 'compound', ('feature', 'NN')), (('window', 'NN'), 'compound', ('love', 'NN')), (('pleased', 'VBD'), 'nsubj', ('premium', 'NN')), (('premium', 'NN'), 'nummod', ('7', 'CD')), (('premium', 'NN'), 'compound', ('home', 'NN'))]
[(('use', 'VB'), 'advmod', ('always', 'RB')), (('use', 'VB'), 'ccomp', ('store', 'VB')), (('store', 'VB'), 'nsubj', ('disk', 'NN')), (('disk', 'NN'), 'amod', ('backup', 'JJ')), (('disk', 'NN'), 'amod', ('hard', 'JJ')), (('store', 'VB'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'amod', ('important', 'JJ')), (('time', 'NN'), 'compound', ('file', 'NN'))]
[(('wifi', 'NNS'), 'amod', ('great', 'JJ'))]
[(('wanted', 'VBD'), 'dobj', ('processor', 'NN')), (('processor', 'NN'), 'compound', ('something', 'NN')), (('processor', 'NN'), 'amod', ('new', 'JJ')), (('processor', 'NN'), 'amod', ('intel', 'JJ')), (('processor', 'NN'), 'compound', ('core', 'NN')), (('processor', 'NN'), 'acl:relcl', ('hook', 'VB')), (('hook', 'VB'), 'nsubj', ('port', 'NN')), (('port', 'NN'), 'compound', ('hdmi', 'NN')), (('hook', 'VB'), 'aux', ('could', 'MD')), (('hook', 'VB'), 'advmod', ('directly', 'RB')), (('wanted', 'VBD'), 'nsubj', ('tv', 'NN'))]
[(('cd', 'NN'), 'amod', ('reinstall', 'JJ')), (('cd', 'NN'), 'amod', ('standard', 'JJ')), (('cd', 'NN'), 'compound', ('o', 'NN')), (('cd', 'NN'), 'dep', ('driver', 'NN')), (('driver', 'NN'), 'amod', ('proprietary', 'JJ')), (('driver', 'NN'), 'compound', ('hardware', 'NN'))]
[(('using', 'VBG'), 'dobj', ('speaker', 'NN')), (('speaker', 'NN'), 'amod', ('external', 'JJ')), (('speaker', 'NN'), 'amod', ('good', 'JJ')), (('good', 'JJ'), 'amod', ('sound', 'JJ'))]
[(('mention', 'VB'), 'dobj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'compound', ('everything', 'NN')), (('keyboard', 'NN'), 'compound', ('size', 'NN')), (('keyboard', 'NN'), 'compound', ('weight', 'NN')), (('mention', 'VB'), 'dep', ('scream', 'VB')), (('scream', 'VB'), 'dobj', ('bulk', 'NN'))]
[(('navigates', 'NNS'), 'compound', ('apple', 'NN')), (('navigates', 'NNS'), 'nmod', ('internet', 'NN')), (('internet', 'NN'), 'case', ('thru', 'IN')), (('internet', 'NN'), 'amod', ('unexplored', 'JJ')), (('internet', 'NN'), 'compound', ('world', 'NN'))]
[(('feature', 'NN'), 'amod', ('overall', 'JJ')), (('feature', 'NN'), 'amod', ('poor', 'JJ')), (('feature', 'NN'), 'dep', ('performance', 'NN')), (('performance', 'NN'), 'amod', ('average', 'JJ')), (('performance', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('poor', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('feature', 'NN'), 'dep', ('poor', 'NN')), (('poor', 'NN'), 'amod', ('excellent', 'JJ')), (('poor', 'NN'), 'compound', ('price', 'NN')), (('poor', 'NN'), 'compound', ('value', 'NN'))]
[(('fast', 'RB'), 'nmod:npmod', ('thing', 'NN')), (('thing', 'NN'), 'det', ('another', 'DT')), (('fast', 'RB'), 'nmod', ('port', 'NN')), (('port', 'NN'), 'case', ('like', 'IN')), (('port', 'NN'), 'nummod', ('three', 'CD')), (('port', 'NN'), 'compound', ('usb', 'NN'))]
[(('known', 'VBN'), 'nsubj', ('reputation', 'NN')), (('reputation', 'NN'), 'compound', ('apple', 'NN')), (('known', 'VBN'), 'advmod', ('well', 'RB')), (('known', 'VBN'), 'dobj', ('usage', 'NN')), (('usage', 'NN'), 'amod', ('easy', 'JJ'))]
[(('called', 'VBD'), 'nsubj', ('desparation', 'NN')), (('called', 'VBD'), 'ccomp', ('told', 'VBD')), (('told', 'VBD'), 'nsubj', ('number', 'NN')), (('number', 'NN'), 'compound', ('customer', 'NN')), (('number', 'NN'), 'compound', ('service', 'NN')), (('told', 'VBD'), 'ccomp', ('expired', 'VBD')), (('expired', 'VBD'), 'nsubj', ('warranty', 'NN')), (('expired', 'VBD'), 'ccomp', ('cost', 'VB')), (('cost', 'VB'), 'nmod:tmod', ('day', 'NN')), (('day', 'NN'), 'nummod', ('2', 'CD')), (('cost', 'VB'), 'nsubj', ('technician', 'NN')), (('technician', 'NN'), 'amod', ('priviledge', 'JJ')), (('priviledge', 'JJ'), 'amod', ('old', 'JJ')), (('technician', 'NN'), 'amod', ('talking', 'VBG')), (('cost', 'VB'), 'aux', ('would', 'MD')), (('cost', 'VB'), 'xcomp', ('ready', 'JJ')), (('ready', 'JJ'), 'nsubj', ('card', 'NN')), (('card', 'NN'), 'compound', ('credit', 'NN'))]
[(('display', 'VB'), 'dobj', ('crisp', 'NNS')), (('crisp', 'NNS'), 'amod', ('bright', 'JJ')), (('bright', 'JJ'), 'advmod', ('incredibly', 'RB')), (('crisp', 'NNS'), 'amod', ('much', 'JJ')), (('crisp', 'NNS'), 'compound', ('brighter', 'NN')), (('crisp', 'NNS'), 'compound', ('powerbook', 'NN'))]
[(('application', 'VBZ'), 'advmod', ('also', 'RB')), (('application', 'VBZ'), 'advmod', ('easy', 'RB')), (('application', 'VBZ'), 'dep', ('find', 'VB')), (('find', 'VB'), 'dobj', ('maneuver', 'NN')), (('maneuver', 'NN'), 'amod', ('easier', 'JJR')), (('easier', 'JJR'), 'advmod', ('much', 'RB')), (('application', 'VBZ'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('owned', 'VBN')), (('owned', 'VBN'), 'advmod', ('ever', 'RB'))]
[(('exchanged', 'VBD'), 'nsubj', ('work', 'NN')), (('work', 'NN'), 'nummod', ('2', 'CD')), (('work', 'NN'), 'compound', ('hour', 'NN'))]
[(('accept', 'VBP'), 'nsubj', ('number', 'NN')), (('number', 'NN'), 'amod', ('gold', 'JJ')), (('number', 'NN'), 'amod', ('key', 'JJ')), (('number', 'NN'), 'acl:relcl', ('use', 'VB')), (('use', 'VB'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'amod', ('intall', 'JJ')), (('use', 'VB'), 'aux', ('must', 'MD')), (('use', 'VB'), 'dobj', ('number', 'NN')), (('number', 'NN'), 'amod', ('serial', 'JJ')), (('accept', 'VBP'), 'dobj', ('thing', 'NN')), (('thing', 'NN'), 'acl', ('limited', 'VBN')), (('limited', 'VBN'), 'advmod', ('far', 'RB')), (('limited', 'VBN'), 'xcomp', ('working', 'VBG')), (('working', 'VBG'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'amod', ('good', 'JJ')), (('time', 'NN'), 'amod', ('short', 'JJ'))]
[(('purchase', 'VB'), 'ccomp', ('impressed', 'JJ')), (('impressed', 'JJ'), 'nsubj', ('macbooks', 'NNS')), (('macbooks', 'NNS'), 'amod', ('opened', 'VBN')), (('macbooks', 'NNS'), 'compound', ('world', 'NN')), (('impressed', 'JJ'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'compound', ('intuition', 'NN')), (('product', 'NN'), 'compound', ('design', 'NN')), (('product', 'NN'), 'compound', ('beauty', 'NN')), (('product', 'NN'), 'acl:relcl', ('associated', 'VBN')), (('associated', 'VBN'), 'nsubj', ('advance', 'NN')), (('advance', 'NN'), 'amod', ('excellent', 'JJ')), (('advance', 'NN'), 'amod', ('technological', 'JJ'))]
[(('data', 'NNS'), 'amod', ('excellent', 'JJ')), (('data', 'NNS'), 'compound', ('speed', 'NN')), (('data', 'NNS'), 'compound', ('processing', 'NN'))]
[(('reduces', 'VBZ'), 'nsubj', ('screen', 'NN')), (('screen', 'NN'), 'acl', ('framed', 'VBN')), (('framed', 'VBN'), 'xcomp', ('unnecessary', 'JJ')), (('unnecessary', 'JJ'), 'nsubj', ('margin', 'NN')), (('margin', 'NN'), 'det', ('half', 'DT')), (('margin', 'NN'), 'amod', ('full', 'JJ')), (('margin', 'NN'), 'compound', ('inch', 'NN')), (('unnecessary', 'JJ'), 'advmod', ('obviously', 'RB')), (('reduces', 'VBZ'), 'dobj', ('bulk', 'NN')), (('bulk', 'NN'), 'compound', ('screen', 'NN')), (('bulk', 'NN'), 'compound', ('size', 'NN')), (('bulk', 'NN'), 'compound', ('increase', 'NN'))]
[(('noticed', 'VBD'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'compound', ('window', 'NN')), (('system', 'NN'), 'amod', ('new', 'JJ')), (('system', 'NN'), 'acl', ('called', 'VBN')), (('called', 'VBN'), 'dobj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('window', 'NN')), (('vista', 'NN'), 'nummod', ('7', 'CD')), (('vista', 'NN'), 'compound', ('u', 'NN')), (('vista', 'NN'), 'acl:relcl', ('get', 'VBP')), (('get', 'VBP'), 'nsubj', ('_', 'NNS')), (('_', 'NNS'), 'compound', ('user', 'NN')), (('get', 'VBP'), 'dobj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('bug', 'NN')), (('vista', 'NN'), 'acl', ('investing', 'VBG')), (('investing', 'VBG'), 'dobj', ('system', 'NN')), (('system', 'NN'), 'amod', ('new', 'JJ'))]
[(('leopard', 'VBD'), 'advmod', ('even', 'RB')), (('leopard', 'VBD'), 'mark', ('though', 'IN')), (('leopard', 'VBD'), 'nsubj', ('snow', 'NN')), (('snow', 'NN'), 'amod', ('running', 'JJ')), (('leopard', 'VBD'), 'dobj', ('cpu', 'NN')), (('cpu', 'NN'), 'nummod', ('4', 'CD')), (('4', 'CD'), 'compound', ('2', 'CD')), (('cpu', 'NN'), 'compound', ('ghz', 'NNP')), (('cpu', 'NN'), 'nummod', ('c2d', 'CD')), (('cpu', 'NN'), 'amod', ('antiquated', 'JJ')), (('antiquated', 'JJ'), 'nmod:npmod', ('bit', 'NN')), (('cpu', 'NN'), 'advmod', ('thus', 'RB')), (('cpu', 'NN'), 'acl:relcl', ('appear', 'VB')), (('appear', 'VB'), 'nsubj', ('wheel', 'NN')), (('wheel', 'NN'), 'amod', ('occasional', 'JJ')), (('wheel', 'NN'), 'amod', ('spinning', 'JJ')), (('appear', 'VB'), 'aux', ('would', 'MD')), (('appear', 'VB'), 'xcomp', ('running', 'VBG')), (('running', 'VBG'), 'dobj', ('excel', 'NNS')), (('excel', 'NNS'), 'compound', ('office', 'NN')), (('excel', 'NNS'), 'compound', ('mac', 'NN')), (('excel', 'NNS'), 'compound', ('application', 'NN')), (('excel', 'NNS'), 'compound', ('word', 'NN'))]
[(('speed', 'NN'), 'compound', ('software', 'NN')), (('speed', 'NN'), 'dep', ('enable', 'VB')), (('enable', 'VB'), 'dobj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('amazing', 'JJ'))]
[(('using', 'VBG'), 'dobj', ('thats', 'NNS')), (('thats', 'NNS'), 'amod', ('wired', 'JJ')), (('thats', 'NNS'), 'amod', ('sure', 'JJ')), (('sure', 'JJ'), 'advmod', ('lan', 'RB'))]
[(('need', 'VB'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'compound', ('purchase', 'NN')), (('mac', 'NN'), 'compound', ('virus', 'NN')), (('mac', 'NN'), 'compound', ('protection', 'NN')), (('mac', 'NN'), 'nmod', ('money', 'NN')), (('money', 'NN'), 'case', ('save', 'IN')), (('money', 'NN'), 'compound', ('lot', 'NN')), (('money', 'NN'), 'compound', ('time', 'NN'))]
[(('work', 'VB'), 'advmod', ('flawlessly', 'RB'))]
[(('arrived', 'VBD'), 'nsubj', ('macbook', 'NN')), (('arrived', 'VBD'), 'ccomp', ('sealed', 'VBD')), (('sealed', 'VBD'), 'nsubj', ('packing', 'NN')), (('packing', 'NN'), 'amod', ('nice', 'JJ')), (('packing', 'NN'), 'amod', ('twin', 'JJ')), (('sealed', 'VBD'), 'ccomp', ('work', 'VBP')), (('work', 'VBP'), 'nsubj', ('function', 'NN')), (('function', 'NN'), 'compound', ('box', 'NN')), (('work', 'VBP'), 'xcomp', ('great', 'JJ'))]
[(('score', 'VBP'), 'nsubj', ('battery', 'NN')), (('battery', 'NN'), 'acl', ('lasting', 'VBG')), (('lasting', 'VBG'), 'dobj', ('web', 'NN')), (('web', 'NN'), 'nummod', ('6', 'CD')), (('web', 'NN'), 'compound', ('hour', 'NN')), (('web', 'NN'), 'compound', ('surfing', 'NN')), (('lasting', 'VBG'), 'nmod:tmod', ('sunday', 'NNP')), (('lasting', 'VBG'), 'dep', ('checking', 'VBG')), (('checking', 'VBG'), 'dobj', ('football', 'NN')), (('score', 'VBP'), 'xcomp', ('watching', 'VBG')), (('watching', 'VBG'), 'dobj', ('video', 'NN')), (('video', 'NN'), 'amod', ('funny', 'JJ')), (('video', 'NN'), 'compound', ('youtube', 'NN'))]
[(('price', 'NN'), 'amod', ('laptop', 'JJ')), (('price', 'NN'), 'amod', ('great', 'JJ')), (('price', 'NN'), 'dep', ('look', 'NN')), (('look', 'NN'), 'amod', ('sleek', 'JJ'))]
[(('use', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'amod', ('several', 'JJ')), (('office', 'NN'), 'compound', ('program', 'NN')), (('office', 'NN'), 'compound', ('school', 'NN')), (('use', 'VBP'), 'xcomp', ('etc', 'FW')), (('etc', 'FW'), 'compound', ('page', 'NN')), (('etc', 'FW'), 'compound', ('number', 'NN')), (('etc', 'FW'), 'compound', ('keynote', 'NN')), (('etc', 'FW'), 'compound', ('etc', 'NN')), (('etc', 'FW'), 'compound', ('music', 'NN')), (('etc', 'FW'), 'compound', ('garageband', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('management', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('booth', 'NN')), (('etc', 'FW'), 'compound', ('iphoto', 'NN')), (('etc', 'FW'), 'compound', ('video', 'NN')), (('etc', 'FW'), 'compound', ('editing', 'NN')), (('etc', 'FW'), 'compound', ('movie', 'NN')), (('etc', 'FW'), 'compound', ('making', 'NN')), (('etc', 'FW'), 'dep', ('imovie', 'NNS'))]
[(('t', 'VBP'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('nice', 'JJ')), (('nice', 'JJ'), 'dep', ('higher', 'JJR')), (('laptop', 'NN'), 'compound', ('end', 'NN')), (('t', 'VBP'), 'nsubj', ('need', 'NN')), (('need', 'NN'), 'nummod', ('fit', 'CD')), (('need', 'NN'), 'compound', ('budget', 'NN')), (('need', 'NN'), 'compound', ('feature', 'NN'))]
[(('contacted', 'VBD'), 'nsubj', ('february', 'NNP')), (('february', 'NNP'), 'acl:relcl', ('failed', 'VBD')), (('failed', 'VBD'), 'nsubj', ('computer', 'NN')), (('failed', 'VBD'), 'advmod', ('completely', 'RB')), (('failed', 'VBD'), 'ccomp', ('load', 'VB')), (('load', 'VB'), 'nsubj', ('point', 'NN')), (('load', 'VB'), 'aux', ('could', 'MD')), (('load', 'VB'), 'dobj', ('window', 'NN')), (('contacted', 'VBD'), 'ccomp', ('get', 'VBP')), (('get', 'VBP'), 'nsubj', ('acer', 'NN')), (('get', 'VBP'), 'ccomp', ('took', 'VBD')), (('took', 'VBD'), 'nsubj', ('thru', 'NNS')), (('thru', 'NNS'), 'amod', ('fixed', 'JJ')), (('took', 'VBD'), 'advmod', ('warrenty', 'RB')), (('took', 'VBD'), 'ccomp', ('seemed', 'VBD')), (('seemed', 'VBD'), 'nsubj', ('day', 'NN')), (('day', 'NN'), 'nummod', ('3', 'CD')), (('day', 'NN'), 'acl', ('fighting', 'VBG')), (('fighting', 'VBG'), 'dobj', ('agent', 'NN')), (('agent', 'NN'), 'compound', ('phone', 'NN')), (('seemed', 'VBD'), 'advcl', ('spoke', 'VBD')), (('spoke', 'VBD'), 'mark', ('though', 'IN')), (('spoke', 'VBD'), 'nsubj', ('none', 'NN')), (('spoke', 'VBD'), 'dobj', ('english', 'NN'))]
[(('come', 'VBP'), 'nsubj', ('program', 'NN')), (('come', 'VBP'), 'dobj', ('leopard', 'NN')), (('leopard', 'NN'), 'amod', ('standard', 'JJ')), (('leopard', 'NN'), 'acl', ('running', 'VBG')), (('running', 'VBG'), 'dobj', ('person', 'NN')), (('person', 'NN'), 'compound', ('system', 'NN')), (('person', 'NN'), 'amod', ('enough', 'JJ')), (('person', 'NN'), 'amod', ('average', 'JJ')), (('person', 'NN'), 'acl', ('run', 'VBN')), (('run', 'VBN'), 'xcomp', ('basic', 'JJ'))]
[(('size', 'VBP'), 'advmod', ('also', 'RB')), (('size', 'VBP'), 'xcomp', ('laptop', 'JJ')), (('laptop', 'JJ'), 'advmod', ('consistancy', 'RB')), (('size', 'VBP'), 'nsubj', ('website', 'NN')), (('website', 'NN'), 'compound', ('computer', 'NN')), (('website', 'NN'), 'dep', ('problem', 'NN')), (('problem', 'NN'), 'advmod', ('even', 'RB')), (('problem', 'NN'), 'compound', ('attempt', 'NN')), (('problem', 'NN'), 'compound', ('work', 'NN')), (('problem', 'NN'), 'compound', ('computer', 'NN')), (('problem', 'NN'), 'compound', ('browser', 'NN'))]
[(('look', 'VB'), 'advmod', ('personally', 'RB')), (('personally', 'RB'), 'nmod', ('gaming', 'NN')), (('gaming', 'NN'), 'case', ('like', 'IN')), (('look', 'VB'), 'dobj', ('machine', 'NN')), (('machine', 'NN'), 'amod', ('needed', 'VBN')), (('machine', 'NN'), 'acl', ('delivered', 'VBN')), (('delivered', 'VBN'), 'dobj', ('performance', 'NN')), (('performance', 'NN'), 'compound', ('gaming', 'NN')), (('delivered', 'VBN'), 'xcomp', ('looking', 'VBG')), (('looking', 'VBG'), 'advmod', ('still', 'RB')), (('looking', 'VBG'), 'dobj', ('customer', 'NN')), (('customer', 'NN'), 'amod', ('professional', 'JJ')), (('customer', 'NN'), 'compound', ('front', 'NN'))]
[(('allows', 'VBZ'), 'nsubj', ('dashboard', 'NN')), (('dashboard', 'NN'), 'compound', ('feature', 'NN')), (('allows', 'VBZ'), 'ccomp', ('used', 'VBD')), (('used', 'VBD'), 'nsubj', ('view', 'NN')), (('used', 'VBD'), 'advmod', ('frequently', 'RB')), (('used', 'VBD'), 'dobj', ('tool', 'NN')), (('used', 'VBD'), 'nmod', ('etc', 'NNS')), (('etc', 'NNS'), 'case', ('like', 'IN')), (('etc', 'NNS'), 'compound', ('calculator', 'NN')), (('etc', 'NNS'), 'compound', ('weather', 'NN')), (('etc', 'NNS'), 'compound', ('forecast', 'NN')), (('etc', 'NNS'), 'compound', ('movie', 'NN')), (('etc', 'NNS'), 'compound', ('time', 'NN')), (('etc', 'NNS'), 'compound', ('calendar', 'NN')), (('etc', 'NNS'), 'compound', ('computer', 'NN')), (('etc', 'NNS'), 'compound', ('post', 'NN'))]
[(('love', 'VB'), 'advmod', ('easy', 'RB')), (('love', 'VB'), 'ccomp', ('see', 'VB')), (('see', 'VB'), 'dobj', ('work', 'NN')), (('work', 'NN'), 'compound', ('screen', 'NN')), (('see', 'VB'), 'advmod', ('well', 'RB')), (('see', 'VB'), 'dep', ('work', 'VB')), (('work', 'VB'), 'dobj', ('play', 'NN')), (('play', 'NN'), 'amod', ('persoal', 'JJ'))]
[(('mention', 'VB'), 'dobj', ('keyboard', 'NN')), (('keyboard', 'NN'), 'compound', ('everything', 'NN')), (('keyboard', 'NN'), 'compound', ('size', 'NN')), (('keyboard', 'NN'), 'compound', ('weight', 'NN')), (('mention', 'VB'), 'dep', ('scream', 'VB')), (('scream', 'VB'), 'dobj', ('bulk', 'NN'))]
[(('love', 'VB'), 'dobj', ('computer', 'NN')), (('computer', 'NN'), 'compound', ('size', 'NN')), (('love', 'VB'), 'nmod', ('game', 'NN')), (('game', 'NN'), 'case', ('since', 'IN')), (('game', 'NN'), 'compound', ('play', 'NN'))]
[(('play', 'VB'), 'ccomp', ('wanted', 'VBD')), (('wanted', 'VBD'), 'nsubj', ('mind', 'NN')), (('mind', 'NN'), 'amod', ('first', 'JJ')), (('mind', 'NN'), 'compound', ('person', 'NN')), (('mind', 'NN'), 'compound', ('shooter', 'NN')), (('wanted', 'VBD'), 'dobj', ('chat', 'NN')), (('chat', 'NN'), 'compound', ('run', 'NN')), (('chat', 'NN'), 'compound', ('m', 'NN')), (('chat', 'NN'), 'compound', ('office', 'NN')), (('chat', 'NN'), 'compound', ('email', 'NN')), (('chat', 'NN'), 'acl:relcl', ('listen', 'VBP')), (('listen', 'VBP'), 'nsubj', ('video', 'NN')), (('video', 'NN'), 'compound', ('download', 'NN')), (('listen', 'VBP'), 'ccomp', ('recommend', 'VBP')), (('recommend', 'VBP'), 'nsubj', ('fruit', 'NN')), (('fruit', 'NN'), 'compound', ('music', 'NN')), (('fruit', 'NN'), 'amod', ('certain', 'JJ')), (('fruit', 'NN'), 'acl', ('named', 'VBN')), (('named', 'VBN'), 'dobj', ('store', 'NN')), (('store', 'NN'), 'compound', ('music', 'NN')), (('named', 'VBN'), 'xcomp', ('looking', 'VBG')), (('looking', 'VBG'), 'dobj', ('netbook', 'NN')), (('netbook', 'NN'), 'amod', ('portable', 'JJ')), (('portable', 'JJ'), 'advmod', ('highly', 'RB')), (('portable', 'JJ'), 'cc', ('yet', 'CC')), (('portable', 'JJ'), 'conj', ('powerful', 'JJ')), (('looking', 'VBG'), 'advmod', ('highly', 'RB')), (('recommend', 'VBP'), 'xcomp', ('checking', 'VBG'))]
[(('save', 'VB'), 'nsubj', ('feature', 'NN')), (('feature', 'NN'), 'compound', ('office', 'NN')), (('feature', 'NN'), 'amod', ('compatible', 'JJ')), (('feature', 'NN'), 'acl', ('functioning', 'VBG')), (('functioning', 'VBG'), 'xcomp', ('new', 'JJ')), (('save', 'VB'), 'aux', ('might', 'MD')), (('save', 'VB'), 'advmod', ('well', 'RB')), (('save', 'VB'), 'ccomp', ('learn', 'VB')), (('learn', 'VB'), 'nsubj', ('money', 'NN')), (('learn', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('pre', 'JJ')), (('program', 'NN'), 'amod', ('installed', 'VBN')), (('program', 'NN'), 'compound', ('mac', 'NN'))]
[(('compared', 'VBD'), 'mark', ('although', 'IN')), (('compared', 'VBD'), 'nsubj', ('vista', 'NN')), (('vista', 'NN'), 'compound', ('window', 'NN')), (('compared', 'VBD'), 'dobj', ('suck', 'NN')), (('suck', 'NN'), 'compound', ('window', 'NN')), (('suck', 'NN'), 'compound', ('xp', 'NN'))]
[(('make', 'VBP'), 'nsubj', ('arisen', 'NNP')), (('arisen', 'NNP'), 'amod', ('expensive', 'JJ')), (('expensive', 'JJ'), 'advmod', ('absolutely', 'RB')), (('arisen', 'NNP'), 'compound', ('pc', 'NN')), (('arisen', 'NNP'), 'compound', ('laptop', 'NN')), (('arisen', 'NNP'), 'compound', ('ease', 'NN')), (('arisen', 'NNP'), 'compound', ('use', 'NN')), (('arisen', 'NNP'), 'compound', ('security', 'NN')), (('arisen', 'NNP'), 'compound', ('minimal', 'NN')), (('arisen', 'NNP'), 'compound', ('problem', 'NN')), (('make', 'VBP'), 'dobj', ('pricetag', 'NN')), (('pricetag', 'NN'), 'amod', ('worth', 'JJ')), (('worth', 'JJ'), 'advmod', ('well', 'RB'))]
[(('worst', 'NN'), 'compound', ('mouse', 'NN')), (('worst', 'NN'), 'compound', ('pad', 'NN')), (('worst', 'NN'), 'compound', ('button', 'NN')), (('worst', 'NN'), 'dep', ('seen', 'VBN')), (('seen', 'VBN'), 'advmod', ('ever', 'RB'))]
[(('make', 'VBP'), 'nsubj', ('cost', 'NN')), (('cost', 'NN'), 'advmod', ('yes', 'RB')), (('make', 'VBP'), 'dobj', ('quality', 'NN')), (('quality', 'NN'), 'compound', ('speed', 'NN')), (('quality', 'NN'), 'compound', ('construction', 'NN')), (('make', 'VBP'), 'advmod', ('longevity', 'RB'))]
[(('provide', 'VB'), 'nsubj', ('center', 'NN')), (('center', 'NN'), 'amod', ('supposed', 'JJ')), (('center', 'NN'), 'compound', ('lg', 'NN')), (('center', 'NN'), 'compound', ('service', 'NN')), (('provide', 'VB'), 'aux', ('can', 'MD')), (('provide', 'VB'), 'neg', ('not', 'RB')), (('provide', 'VB'), 'dobj', ('service', 'NN')), (('service', 'NN'), 'acl', ('called', 'VBN')), (('called', 'VBN'), 'dobj', ('center', 'NN')), (('center', 'NN'), 'compound', ('service', 'NN'))]
[(('start', 'VB'), 'advmod', ('easy', 'RB')), (('start', 'VB'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('overheat', 'JJ')), (('laptop', 'NN'), 'amod', ('much', 'JJ'))]
[(('run', 'VB'), 'xcomp', ('dreamweaver', 'VB')), (('dreamweaver', 'VB'), 'dobj', ('application', 'NN')), (('application', 'NN'), 'amod', ('final', 'JJ')), (('application', 'NN'), 'compound', ('cut', 'NN')), (('application', 'NN'), 'compound', ('pro', 'NN')), (('application', 'NN'), 'nummod', ('7', 'CD')), (('application', 'NN'), 'compound', ('photoshop', 'NN')), (('application', 'NN'), 'amod', ('safari', 'JJ')), (('application', 'NN'), 'nummod', ('firefox', 'CD')), (('application', 'NN'), 'compound', ('msn', 'NN')), (('application', 'NN'), 'compound', ('messenger', 'NN')), (('dreamweaver', 'VB'), 'advmod', ('constantly', 'RB')), (('dreamweaver', 'VB'), 'dobj', ('time', 'NN'))]
[(('money', 'NN'), 'dep', ('run', 'NN')), (('run', 'NN'), 'dep', ('expense', 'NN')), (('expense', 'NN'), 'amod', ('sure', 'JJ')), (('expense', 'NN'), 'amod', ('initial', 'JJ')), (('expense', 'NN'), 'compound', ('pocket', 'NN')), (('expense', 'NN'), 'dep', ('dissuade', 'NNS')), (('dissuade', 'NNS'), 'amod', ('greater', 'JJR')), (('run', 'NN'), 'dep', ('fact', 'NN')), (('fact', 'NN'), 'compound', ('anyone', 'NN')), (('run', 'NN'), 'compound', ('machine', 'NN')), (('run', 'NN'), 'nmod', ('planet', 'NN')), (('planet', 'NN'), 'case', ('like', 'IN')), (('planet', 'NN'), 'compound', ('none', 'NN')), (('money', 'NN'), 'compound', ('factor', 'NN')), (('money', 'NN'), 'acl', ('wasted', 'VBN')), (('wasted', 'VBN'), 'dobj', ('squad', 'NN')), (('squad', 'NN'), 'compound', ('geek', 'NN')), (('squad', 'NN'), 'dep', ('patch', 'NN')), (('patch', 'NN'), 'amod', ('latest', 'JJS')), (('squad', 'NN'), 'amod', ('de', 'IN')), (('squad', 'NN'), 'dep', ('pc', 'NN')), (('pc', 'NN'), 'amod', ('infested', 'JJ')), (('infested', 'JJ'), 'amod', ('corrupt', 'JJ')), (('pc', 'NN'), 'acl', ('come', 'VBN')), (('come', 'VBN'), 'advmod', ('probably', 'RB')), (('come', 'VBN'), 'xcomp', ('anyhow', 'JJ')), (('anyhow', 'JJ'), 'advmod', ('even', 'RB'))]
[(('software', 'NN'), 'compound', ('addition', 'NN')), (('software', 'NN'), 'compound', ('photo', 'NN')), (('software', 'NN'), 'compound', ('detection', 'NN')), (('software', 'NN'), 'dep', ('allow', 'VB')), (('allow', 'VB'), 'dobj', ('photo', 'NN')), (('photo', 'NN'), 'compound', ('group', 'NN')), (('allow', 'VB'), 'advmod', ('together', 'RB')), (('allow', 'VB'), 'advcl', ('picture', 'NN')), (('picture', 'NN'), 'case', ('based', 'VBN')), (('picture', 'NN'), 'case', ('upon', 'IN')), (('picture', 'NN'), 'compound', ('people', 'NNS'))]
[(('check', 'VB'), 'xcomp', ('find', 'VB')), (('find', 'VB'), 'dobj', ('port', 'NN')), (('port', 'NN'), 'compound', ('notebook', 'NN')), (('port', 'NN'), 'amod', ('missing', 'VBG')), (('port', 'NN'), 'acl:relcl', ('amd', 'VBP')), (('amd', 'VBP'), 'nsubj', ('core', 'NN')), (('core', 'NN'), 'amod', ('dual', 'JJ')), (('amd', 'VBP'), 'dobj', ('processor', 'NN')), (('processor', 'NN'), 'amod', ('intel', 'JJ'))]
[(('know', 'VB'), 'xcomp', ('beautiful', 'JJ')), (('beautiful', 'JJ'), 'nsubj', ('work', 'NN')), (('work', 'NN'), 'compound', ('computer', 'NN'))]
[(('thing', 'NN'), 'amod', ('good', 'JJ')), (('thing', 'NN'), 'dep', ('quality', 'NN')), (('quality', 'NN'), 'amod', ('graphic', 'JJ'))]
[(('look', 'VB'), 'dobj', ('feel', 'NN')), (('feel', 'NN'), 'amod', ('nice', 'JJ')), (('feel', 'NN'), 'amod', ('cheap', 'JJ')), (('cheap', 'JJ'), 'advmod', ('horribly', 'RB'))]
[(('recognize', 'VB'), 'nsubj', ('system', 'NN')), (('system', 'NN'), 'amod', ('wireless', 'JJ')), (('recognize', 'VB'), 'aux', ('would', 'MD')), (('recognize', 'VB'), 'ccomp', ('get', 'VB')), (('get', 'VB'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'nummod', ('7', 'CD')), (('get', 'VB'), 'ccomp', ('find', 'VB')), (('find', 'VB'), 'nsubj', ('online', 'JJ'))]
[(('macbook', 'VB'), 'dobj', ('better', 'JJR')), (('better', 'JJR'), 'advmod', ('much', 'RB')), (('better', 'JJR'), 'acl', ('looking', 'VBG')), (('looking', 'VBG'), 'xcomp', ('thin', 'JJ'))]
[(('used', 'VBD'), 'nsubj', ('talk', 'NN')), (('talk', 'NN'), 'compound', ('pairing', 'NN')), (('talk', 'NN'), 'amod', ('iphone', 'JJ')), (('talk', 'NN'), 'amod', ('pure', 'JJ')), (('talk', 'NN'), 'compound', ('pleasure', 'NN')), (('talk', 'NN'), 'amod', ('syncing', 'JJ')), (('syncing', 'JJ'), 'amod', ('painless', 'JJ')), (('used', 'VBD'), 'ccomp', ('snap', 'VBP')), (('snap', 'VBP'), 'csubj', ('take', 'VB')), (('take', 'VB'), 'advmod', ('forever', 'RB'))]
[(('want', 'VBP'), 'nsubj', ('machine', 'NN')), (('machine', 'NN'), 'compound', ('need', 'NN')), (('machine', 'NN'), 'acl', ('surfing', 'VBG')), (('surfing', 'VBG'), 'dobj', ('word', 'NN')), (('word', 'NN'), 'compound', ('email', 'NN')), (('word', 'NN'), 'amod', ('checking', 'VBG')), (('word', 'NN'), 'acl', ('processing', 'VBG')), (('processing', 'VBG'), 'advcl', ('watching', 'VBG')), (('watching', 'VBG'), 'dobj', ('machine', 'NN')), (('machine', 'NN'), 'compound', ('movie', 'NN')), (('machine', 'NN'), 'nummod', ('two', 'CD'))]
[(('handle', 'VB'), 'advmod', ('hard', 'RB')), (('handle', 'VB'), 'xcomp', ('operate', 'VB')), (('operate', 'VB'), 'dobj', ('school', 'NN'))]
[(('need', 'VBP'), 'dobj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('longer', 'JJR')), (('battery', 'NN'), 'amod', ('lasting', 'JJ')), (('battery', 'NN'), 'nummod', ('1', 'CD')), (('need', 'VBP'), 'nsubj', ('hr', 'NN')), (('hr', 'NN'), 'nummod', ('2', 'CD'))]
[(('best', 'JJS'), 'dep', ('price', 'NN')), (('price', 'NN'), 'compound', ('thing', 'NN')), (('price', 'NN'), 'compound', ('laptop', 'NN')), (('price', 'NN'), 'nmod', ('feature', 'NN')), (('feature', 'NN'), 'case', ('along', 'IN')), (('feature', 'NN'), 'amod', ('newer', 'JJR'))]
[(('sent', 'VBD'), 'ccomp', ('send', 'VBP')), (('send', 'VBP'), 'nsubj', ('box', 'NN')), (('send', 'VBP'), 'advmod', ('away', 'RB')), (('away', 'RB'), 'advmod', ('right', 'RB')), (('send', 'VBP'), 'ccomp', ('paid', 'VBD')), (('paid', 'VBD'), 'nsubj', ('computer', 'NN')), (('paid', 'VBD'), 'ccomp', ('got', 'VBD')), (('got', 'VBD'), 'nsubj', ('whatnot', 'NN')), (('whatnot', 'NN'), 'compound', ('postage', 'NN')), (('got', 'VBD'), 'dobj', ('computer', 'NN')), (('computer', 'NN'), 'dep', ('back', 'RP')), (('computer', 'NN'), 'dep', ('right', 'NN')), (('right', 'NN'), 'amod', ('running', 'VBG')), (('running', 'VBG'), 'advmod', ('still', 'RB')), (('sent', 'VBD'), 'nsubj', ('anything', 'NN')), (('anything', 'NN'), 'nummod', ('cd', 'CD')), (('anything', 'NN'), 'compound', ('drive', 'NN')), (('anything', 'NN'), 'compound', ('reading', 'NN'))]
[(('worry', 'VBP'), 'nsubj', ('mac', 'NN')), (('worry', 'VBP'), 'xcomp', ('wonderful', 'JJ')), (('wonderful', 'JJ'), 'nsubj', ('firewall', 'NN')), (('firewall', 'NN'), 'amod', ('antivirus', 'JJ')), (('firewall', 'NN'), 'compound', ('software', 'NN'))]
[(('mention', 'VB'), 'dobj', ('mac', 'NN')), (('mac', 'NN'), 'compound', ('fact', 'NN')), (('mention', 'VB'), 'dep', ('come', 'VB')), (('come', 'VB'), 'xcomp', ('loaded', 'VBN')), (('loaded', 'VBN'), 'advmod', ('fully', 'RB')), (('come', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('necessary', 'JJ')), (('program', 'NN'), 'amod', ('basic', 'JJ'))]
[(('told', 'VBD'), 'nsubj', ('_', 'NNP')), (('told', 'VBD'), 'ccomp', ('got', 'VBD')), (('got', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('many', 'JJ')), (('computer', 'NN'), 'amod', ('great', 'JJ')), (('got', 'VBD'), 'ccomp', ('worked', 'VBD')), (('worked', 'VBD'), 'nsubj', ('one', 'PRP')), (('worked', 'VBD'), 'nmod:tmod', ('year', 'NN')), (('year', 'NN'), 'amod', ('great', 'JJ')), (('year', 'NN'), 'nummod', ('one', 'CD')), (('worked', 'VBD'), 'dep', ('got', 'VBD')), (('got', 'VBD'), 'advmod', ('soon', 'RB')), (('got', 'VBD'), 'advmod', ('warrenty', 'RB')), (('got', 'VBD'), 'xcomp', ('bad', 'JJ')), (('bad', 'JJ'), 'advmod', ('really', 'RB'))]
[(('switch', 'VB'), 'dobj', ('need', 'NN')), (('need', 'NN'), 'amod', ('top', 'JJ')), (('switch', 'VB'), 'dep', ('memorize', 'VB')), (('memorize', 'VB'), 'dobj', ('combination', 'NN')), (('combination', 'NN'), 'amod', ('key', 'JJ')), (('memorize', 'VB'), 'advcl', ('flicking', 'VBG')), (('flicking', 'VBG'), 'advmod', ('rather', 'RB')), (('flicking', 'VBG'), 'dobj', ('switch', 'NN'))]
[(('use', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'amod', ('several', 'JJ')), (('office', 'NN'), 'compound', ('program', 'NN')), (('office', 'NN'), 'compound', ('school', 'NN')), (('use', 'VBP'), 'xcomp', ('etc', 'FW')), (('etc', 'FW'), 'compound', ('page', 'NN')), (('etc', 'FW'), 'compound', ('number', 'NN')), (('etc', 'FW'), 'compound', ('keynote', 'NN')), (('etc', 'FW'), 'compound', ('etc', 'NN')), (('etc', 'FW'), 'compound', ('music', 'NN')), (('etc', 'FW'), 'compound', ('garageband', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('management', 'NN')), (('etc', 'FW'), 'compound', ('photo', 'NN')), (('etc', 'FW'), 'compound', ('booth', 'NN')), (('etc', 'FW'), 'compound', ('iphoto', 'NN')), (('etc', 'FW'), 'compound', ('video', 'NN')), (('etc', 'FW'), 'compound', ('editing', 'NN')), (('etc', 'FW'), 'compound', ('movie', 'NN')), (('etc', 'FW'), 'compound', ('making', 'NN')), (('etc', 'FW'), 'dep', ('imovie', 'NNS'))]
[(('expect', 'VBP'), 'nsubj', ('care', 'NN')), (('care', 'NN'), 'compound', ('apple', 'NN')), (('care', 'NN'), 'acl', ('failed', 'VBN')), (('failed', 'VBN'), 'neg', ('never', 'RB')), (('expect', 'VBP'), 'dobj', ('computer', 'NN')), (('expect', 'VBP'), 'advmod', ('well', 'RB'))]
[(('called', 'VBD'), 'nsubj', ('desparation', 'NN')), (('called', 'VBD'), 'ccomp', ('told', 'VBD')), (('told', 'VBD'), 'nsubj', ('number', 'NN')), (('number', 'NN'), 'compound', ('customer', 'NN')), (('number', 'NN'), 'compound', ('service', 'NN')), (('told', 'VBD'), 'ccomp', ('expired', 'VBD')), (('expired', 'VBD'), 'nsubj', ('warranty', 'NN')), (('expired', 'VBD'), 'ccomp', ('cost', 'VB')), (('cost', 'VB'), 'nmod:tmod', ('day', 'NN')), (('day', 'NN'), 'nummod', ('2', 'CD')), (('cost', 'VB'), 'nsubj', ('technician', 'NN')), (('technician', 'NN'), 'amod', ('priviledge', 'JJ')), (('priviledge', 'JJ'), 'amod', ('old', 'JJ')), (('technician', 'NN'), 'amod', ('talking', 'VBG')), (('cost', 'VB'), 'aux', ('would', 'MD')), (('cost', 'VB'), 'xcomp', ('ready', 'JJ')), (('ready', 'JJ'), 'nsubj', ('card', 'NN')), (('card', 'NN'), 'compound', ('credit', 'NN'))]
[(('burn', 'VBP'), 'dep', ('idea', 'NN')), (('burn', 'VBP'), 'dobj', ('cd', 'NN')), (('burn', 'VBP'), 'nsubj', ('starter', 'NNP')), (('starter', 'NNP'), 'compound', ('use', 'NN')), (('starter', 'NNP'), 'compound', ('web', 'NN')), (('starter', 'NNP'), 'compound', ('cam', 'NNP'))]
[(('save', 'VBP'), 'nmod', ('program', 'NN')), (('program', 'NN'), 'case', ('like', 'IN')), (('save', 'VBP'), 'nsubj', ('office', 'NN')), (('office', 'NN'), 'amod', ('better', 'JJR')), (('save', 'VBP'), 'xcomp', ('file', 'VB')), (('file', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('compatible', 'JJ')), (('compatible', 'JJ'), 'advmod', ('completely', 'RB')), (('program', 'NN'), 'compound', ('office', 'NN')), (('file', 'VB'), 'advmod', ('well', 'RB'))]
[(('said', 'VBD'), 'nsubj', ('videocard', 'NN'))]
[(('run', 'VBP'), 'nsubj', ('ram', 'NN')), (('ram', 'NN'), 'amod', ('enough', 'JJ')), (('run', 'VBP'), 'advmod', ('smoothly', 'RB')), (('smoothly', 'RB'), 'nmod:npmod', ('memory', 'NN')), (('memory', 'NN'), 'amod', ('enough', 'JJ')), (('run', 'VBP'), 'dep', ('satisfy', 'VB')), (('satisfy', 'VB'), 'dobj', ('need', 'NN'))]
[(('window', 'NN'), 'nmod', ('foot', 'NN')), (('foot', 'NN'), 'advmod', ('also', 'RB')), (('foot', 'NN'), 'advmod', ('rather', 'RB')), (('foot', 'NN'), 'amod', ('unsteady', 'JJ')), (('foot', 'NN'), 'amod', ('susceptible', 'JJ')), (('susceptible', 'JJ'), 'dep', ('bug', 'NN')), (('bug', 'NN'), 'amod', ('many', 'JJ'))]
[(('design', 'NN'), 'case', ('without', 'IN')), (('design', 'NN'), 'compound', ('doubt', 'NN')), (('design', 'NN'), 'amod', ('fantastic', 'JJ')), (('fantastic', 'JJ'), 'amod', ('laptop', 'JJ'))]
[(('turned', 'VBD'), 'advmod', ('even', 'RB')), (('turned', 'VBD'), 'nsubj', ('protection', 'NN')), (('protection', 'NN'), 'compound', ('virus', 'NN')), (('turned', 'VBD'), 'advmod', ('always', 'RB')), (('turned', 'VBD'), 'ccomp', ('needed', 'VBD')), (('needed', 'VBD'), 'nsubj', ('update', 'NN')), (('needed', 'VBD'), 'xcomp', ('installed', 'VBN'))]
[(('found', 'VBD'), 'ccomp', ('wonder', 'VBP')), (('wonder', 'VBP'), 'nsubj', ('imformative', 'NN')), (('imformative', 'NN'), 'amod', ('easy', 'JJ')), (('imformative', 'NN'), 'compound', ('use', 'NN')), (('found', 'VBD'), 'nsubj', ('tutorial', 'NN')), (('tutorial', 'NN'), 'amod', ('alert', 'JJ')), (('tutorial', 'NN'), 'acl', ('making', 'VBG')), (('making', 'VBG'), 'dobj', ('someone', 'NN')), (('someone', 'NN'), 'amod', ('easy', 'JJ')), (('making', 'VBG'), 'advcl', ('advanced', 'JJ')), (('advanced', 'JJ'), 'case', ('like', 'IN')), (('advanced', 'JJ'), 'advmod', ('exactly', 'RB')), (('advanced', 'JJ'), 'advmod', ('technologically', 'RB')), (('advanced', 'JJ'), 'ccomp', ('learn', 'VBP')), (('learn', 'VBP'), 'xcomp', ('use', 'VB')), (('use', 'VB'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'amod', ('various', 'JJ')), (('program', 'NN'), 'compound', ('feature', 'NN'))]
[(('imagine', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('_', 'JJ')), (('imagine', 'VBP'), 'ccomp', ('jumped', 'VBD')), (('jumped', 'VBD'), 'nsubj', ('sony', 'NN')), (('jumped', 'VBD'), 'dobj', ('microsoft', 'NN')), (('microsoft', 'NN'), 'advmod', ('early', 'RB')), (('microsoft', 'NN'), 'compound', ('specification', 'NN')), (('microsoft', 'NN'), 'compound', ('vista', 'NN')), (('microsoft', 'NN'), 'compound', ('requirement', 'NN')), (('microsoft', 'NN'), 'acl', ('designed', 'VBN')), (('designed', 'VBN'), 'dobj', ('requirement', 'NN')), (('requirement', 'NN'), 'amod', ('inadequate', 'JJ'))]
[(('line', 'NN'), 'amod', ('o', 'JJ')), (('o', 'JJ'), 'amod', ('great', 'JJ')), (('line', 'NN'), 'amod', ('fabulous', 'JJ')), (('line', 'NN'), 'compound', ('improvement', 'NN')), (('line', 'NN'), 'amod', ('existing', 'VBG')), (('line', 'NN'), 'acl', ('bumping', 'VBG')), (('bumping', 'VBG'), 'dobj', ('speed', 'NN')), (('speed', 'NN'), 'compound', ('processor', 'NN')), (('bumping', 'VBG'), 'advcl', ('adding', 'VBG')), (('adding', 'VBG'), 'dobj', ('port', 'NN')), (('port', 'NN'), 'amod', ('thunderbolt', 'JJ'))]
[(('hiccup', 'NN'), 'compound', ('application', 'NN')), (('hiccup', 'NN'), 'amod', ('open', 'JJ')), (('hiccup', 'NN'), 'amod', ('second', 'JJ')), (('hiccup', 'NN'), 'compound', ('lag', 'NN')), (('hiccup', 'NN'), 'dep', ('wonder', 'NN')), (('wonder', 'NN'), 'amod', ('awkward', 'JJ')), (('wonder', 'NN'), 'compound', ('moment', 'NN')), (('wonder', 'NN'), 'nmod', ('tea', 'NN')), (('tea', 'NN'), 'case', ('whether', 'IN')), (('tea', 'NN'), 'compound', ('computer', 'NN'))]
[(('responds', 'VBZ'), 'nsubj', ('reliable', 'JJ')), (('reliable', 'JJ'), 'advmod', ('always', 'RB')), (('reliable', 'JJ'), 'acl', ('bugged', 'VBN')), (('bugged', 'VBN'), 'neg', ('never', 'RB')), (('responds', 'VBZ'), 'advmod', ('well', 'RB'))]
[(('discover', 'VBP'), 'nsubj', ('disapointed', 'NN')), (('disapointed', 'NN'), 'amod', ('sorly', 'JJ')), (('discover', 'VBP'), 'ccomp', ('thought', 'VBD')), (('thought', 'VBD'), 'nsubj', ('hp', 'NN')), (('thought', 'VBD'), 'dobj', ('honor', 'NN')), (('honor', 'NN'), 'amod', ('reputable', 'JJ')), (('honor', 'NN'), 'compound', ('company', 'NN')), (('honor', 'NN'), 'acl:relcl', ('fell', 'VBD')), (('fell', 'VBD'), 'nsubj', ('blade', 'NN')), (('blade', 'NN'), 'amod', ('warrenty', 'JJ')), (('blade', 'NN'), 'compound', ('fan', 'NN')), (('fell', 'VBD'), 'advmod', ('apart', 'RB'))]
[(('leopard', 'VBD'), 'nsubj', ('snow', 'NN')), (('snow', 'NN'), 'compound', ('mac', 'NN')), (('leopard', 'VBD'), 'dobj', ('use', 'NN')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('easy', 'JJ'), 'advmod', ('extremely', 'RB')), (('leopard', 'VBD'), 'advcl', ('win', 'VBP')), (('win', 'VBP'), 'mark', ('although', 'IN')), (('win', 'VBP'), 'nsubj', ('different', 'JJ')), (('win', 'VBP'), 'dobj', ('win7', 'NNS')), (('win7', 'NNS'), 'compound', ('xp', 'NN')), (('win7', 'NNS'), 'compound', ('visa', 'NN'))]
[(('press', 'NN'), 'compound', ('button', 'NN')), (('press', 'NN'), 'amod', ('harder', 'JJR')), (('harder', 'JJR'), 'advmod', ('little', 'RB'))]
[(('recommend', 'VB'), 'aux', ('would', 'MD')), (('recommend', 'VB'), 'dobj', ('anyone', 'NN')), (('anyone', 'NN'), 'amod', ('laptop', 'JJ')), (('anyone', 'NN'), 'acl', ('looking', 'VBG')), (('looking', 'VBG'), 'ccomp', ('get', 'VB')), (('get', 'VB'), 'xcomp', ('spend', 'VB')), (('spend', 'VB'), 'nsubj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('new', 'JJ')), (('spend', 'VB'), 'dep', ('willing', 'JJ')), (('spend', 'VB'), 'dobj', ('money', 'NN')), (('money', 'NN'), 'amod', ('little', 'JJ')), (('spend', 'VB'), 'dep', ('get', 'VB')), (('recommend', 'VB'), 'nsubj', ('quality', 'NN')), (('quality', 'NN'), 'amod', ('great', 'JJ'))]
[(('graphic', 'NNS'), 'amod', ('awesome', 'JJ'))]
[(('read', 'VB'), 'dobj', ('problem', 'NN')), (('problem', 'NN'), 'amod', ('online', 'JJ')), (('problem', 'NN'), 'compound', ('user', 'NN')), (('problem', 'NN'), 'compound', ('sound', 'NN'))]
[(('make', 'VB'), 'advmod', ('possible', 'RB')), (('make', 'VB'), 'case', ('since', 'IN')), (('make', 'VB'), 'dobj', ('driver', 'NN')), (('driver', 'NN'), 'compound', ('window', 'NN')), (('driver', 'NN'), 'compound', ('xp', 'NN')), (('driver', 'NN'), 'acl:relcl', ('stuck', 'VBD')), (('stuck', 'VBD'), 'nsubj', ('machine', 'NN')), (('machine', 'NN'), 'amod', ('sound', 'JJ')), (('machine', 'NN'), 'compound', ('card', 'NN')), (('stuck', 'VBD'), 'ccomp', ('came', 'VBD')), (('came', 'VBD'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'nummod', ('7', 'CD'))]
[(('use', 'VBP'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'compound', ('iphoto', 'NN')), (('use', 'VBP'), 'nsubj', ('expert', 'NN')), (('expert', 'NN'), 'amod', ('great', 'JJ')), (('expert', 'NN'), 'compound', ('program', 'NN')), (('expert', 'NN'), 'compound', ('anyone', 'NN')), (('expert', 'NN'), 'compound', ('photography', 'NN')), (('expert', 'NN'), 'amod', ('amateur', 'JJ')), (('expert', 'NN'), 'advmod', ('alike', 'RB'))]
[(('hinge', 'VB'), 'dobj', ('design', 'NN')), (('design', 'NN'), 'acl', ('forced', 'VBN')), (('forced', 'VBN'), 'dobj', ('connection', 'NN')), (('connection', 'NN'), 'compound', ('place', 'NN')), (('connection', 'NN'), 'amod', ('various', 'JJ')), (('connection', 'NN'), 'nmod', ('computer', 'NN')), (('computer', 'NN'), 'case', ('around', 'IN')), (('computer', 'NN'), 'acl', ('left', 'VBN')), (('left', 'VBN'), 'advmod', ('front', 'RB')), (('front', 'RB'), 'advmod', ('right', 'RB'))]
[(('make', 'VBP'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'compound', ('ram', 'NN')), (('make', 'VBP'), 'advmod', ('faster', 'RBR')), (('make', 'VBP'), 'dep', ('come', 'VB')), (('come', 'VB'), 'xcomp', ('sporting', 'VBG')), (('sporting', 'VBG'), 'ccomp', ('handle', 'VB')), (('handle', 'VB'), 'nsubj', ('performance', 'NN')), (('performance', 'NN'), 'nummod', ('2', 'CD')), (('performance', 'NN'), 'compound', ('gig', 'NN')), (('performance', 'NN'), 'amod', ('high', 'JJ')), (('handle', 'VB'), 'dobj', ('web', 'NN')), (('web', 'NN'), 'compound', ('stuff', 'NN')), (('web', 'NN'), 'compound', ('surf', 'NN')), (('web', 'NN'), 'advmod', ('faster', 'RBR')), (('faster', 'RBR'), 'nmod:npmod', ('lot', 'NN')), (('lot', 'NN'), 'amod', ('whole', 'JJ'))]
[(('web', 'VBN'), 'nsubj', ('life', 'NN')), (('life', 'NN'), 'nummod', ('10', 'CD')), (('life', 'NN'), 'compound', ('hour', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('web', 'VBN'), 'xcomp', ('browsing', 'VBG')), (('browsing', 'VBG'), 'dobj', ('editing', 'NN')), (('editing', 'NN'), 'compound', ('word', 'NN')), (('browsing', 'VBG'), 'advcl', ('making', 'VBG')), (('making', 'VBG'), 'dobj', ('movie', 'NN')), (('movie', 'NN'), 'amod', ('perfect', 'JJ')), (('movie', 'NN'), 'compound', ('classroom', 'NN')), (('movie', 'NN'), 'compound', ('office', 'NN')), (('movie', 'NN'), 'compound', ('term', 'NN')), (('movie', 'NN'), 'compound', ('gaming', 'NN')), (('movie', 'NN'), 'acl', ('playing', 'VBG')), (('playing', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'dep', ('hour', 'NN')), (('hour', 'NN'), 'nummod', ('5', 'CD'))]
[(('included', 'VBD'), 'dobj', ('subwoofer', 'NN')), (('subwoofer', 'NN'), 'amod', ('extra', 'JJ')), (('subwoofer', 'NN'), 'amod', ('sonic', 'JJ')), (('sonic', 'JJ'), 'advmod', ('sony', 'RB')), (('subwoofer', 'NN'), 'compound', ('stage', 'NN')), (('subwoofer', 'NN'), 'compound', ('software', 'NN')), (('subwoofer', 'NN'), 'compound', ('speaker', 'NN')), (('subwoofer', 'NN'), 'acl', ('got', 'VBN')), (('got', 'VBN'), 'xcomp', ('worth', 'JJ')), (('included', 'VBD'), 'nsubj', ('mouse', 'NN')), (('mouse', 'NN'), 'compound', ('money', 'NN')), (('mouse', 'NN'), 'compound', ('bluetooth', 'NN')), (('mouse', 'NN'), 'nmod', ('port', 'NN')), (('port', 'NN'), 'advmod', ('supposedly', 'RB')), (('port', 'NN'), 'amod', ('bluetooth', 'JJ')), (('port', 'NN'), 'compound', ('enabled', 'NN')), (('port', 'NN'), 'compound', ('computer', 'NN')), (('port', 'NN'), 'amod', ('extended', 'VBN')), (('port', 'NN'), 'compound', ('life', 'NN')), (('port', 'NN'), 'compound', ('battery', 'NN')), (('port', 'NN'), 'amod', ('docking', 'VBG'))]
[(('agree', 'VB'), 'dobj', ('asus', 'NNS')), (('asus', 'NNS'), 'amod', ('previous', 'JJ')), (('asus', 'NNS'), 'compound', ('comment', 'NN')), (('agree', 'VB'), 'advmod', ('tech', 'RB')), (('agree', 'VB'), 'dep', ('support', 'VB')), (('support', 'VB'), 'dobj', ('opinion', 'NN')), (('opinion', 'NN'), 'amod', ('horrible', 'JJ')), (('opinion', 'NN'), 'amod', ('con', 'JJ'))]
[(('user', 'NN'), 'compound', ('operating', 'NN')), (('user', 'NN'), 'compound', ('system', 'NN')), (('user', 'NN'), 'dep', ('pad', 'NN')), (('pad', 'NN'), 'amod', ('interface', 'JJ')), (('pad', 'NN'), 'amod', ('large', 'JJ')), (('large', 'JJ'), 'amod', ('intuitive', 'JJ')), (('pad', 'NN'), 'compound', ('multi', 'NN')), (('pad', 'NN'), 'compound', ('touch', 'NN')), (('pad', 'NN'), 'compound', ('track', 'NN')), (('pad', 'NN'), 'amod', ('amazing', 'JJ'))]
[(('mac', 'NN'), 'advmod', ('yes', 'RB')), (('mac', 'NN'), 'advmod', ('much', 'RB')), (('mac', 'NN'), 'dep', ('speed', 'NN')), (('speed', 'NN'), 'compound', ('money', 'NN')), (('speed', 'NN'), 'amod', ('average', 'JJ')), (('speed', 'NN'), 'amod', ('laptop', 'JJ')), (('speed', 'NN'), 'compound', ('comparison', 'NN')), (('speed', 'NN'), 'compound', ('style', 'NN')), (('mac', 'NN'), 'dep', ('factor', 'NN')), (('factor', 'NN'), 'amod', ('cool', 'JJ'))]
[(('want', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'compound', ('run', 'NN')), (('window', 'NN'), 'nmod', ('program', 'NN')), (('program', 'NN'), 'case', ('via', 'IN')), (('program', 'NN'), 'compound', ('bootcamp', 'NN')), (('program', 'NN'), 'compound', ('couple', 'NN')), (('want', 'VBP'), 'xcomp', ('buy', 'VB')), (('buy', 'VB'), 'dobj', ('version', 'NN')), (('version', 'NN'), 'compound', ('mac', 'NN')), (('buy', 'VB'), 'nmod', ('program', 'NN')), (('program', 'NN'), 'case', ('like', 'IN')), (('program', 'NN'), 'compound', ('cad', 'NN'))]
[(('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'dep', ('great', 'JJ'))]
[(('leather', 'VBN'), 'xcomp', ('carrying', 'VBG')), (('carrying', 'VBG'), 'dobj', ('mouse', 'NN')), (('mouse', 'NN'), 'compound', ('case', 'NN')), (('mouse', 'NN'), 'compound', ('keyboard', 'NN')), (('leather', 'VBN'), 'dep', ('arrived', 'VBD')), (('leather', 'VBN'), 'nsubj', ('warehouse', 'NN')), (('warehouse', 'NN'), 'nummod', ('two', 'CD')), (('warehouse', 'NN'), 'compound', ('day', 'NN')), (('warehouse', 'NN'), 'compound', ('memphis', 'NN'))]
[(('lauded', 'VBD'), 'advmod', ('much', 'RB')), (('lauded', 'VBD'), 'dobj', ('touch', 'NN')), (('touch', 'NN'), 'amod', ('combined', 'VBN')), (('lauded', 'VBD'), 'nsubj', ('nightmare', 'NN')), (('nightmare', 'NN'), 'nummod', ('pad', 'CD')), (('nightmare', 'NN'), 'compound', ('clicker', 'NN'))]
[(('run', 'VB'), 'dobj', ('thought', 'NN')), (('thought', 'NN'), 'amod', ('hot', 'JJ')), (('run', 'VB'), 'xcomp', ('paying', 'VBG')), (('paying', 'VBG'), 'ccomp', ('buy', 'VB')), (('buy', 'VB'), 'nsubj', ('decision', 'NN')), (('decision', 'NN'), 'compound', ('quality', 'NN')), (('buy', 'VB'), 'dobj', ('product', 'NN')), (('product', 'NN'), 'compound', ('apple', 'NN'))]
[(('love', 'VB'), 'dobj', ('software', 'NN')), (('software', 'NN'), 'amod', ('operating', 'VBG')), (('software', 'NN'), 'compound', ('system', 'NN')), (('software', 'NN'), 'amod', ('preloaded', 'JJ'))]
[(('idvd', 'VBD'), 'expl', ('there', 'EX')), (('idvd', 'VBD'), 'advmod', ('also', 'RB')), (('idvd', 'VBD'), 'dobj', ('program', 'NN')), (('program', 'NN'), 'acl', ('dedicated', 'VBN')), (('dedicated', 'VBN'), 'xcomp', ('putting', 'VBG')), (('putting', 'VBG'), 'dobj', ('medium', 'NN')), (('medium', 'NN'), 'amod', ('favorite', 'JJ')), (('putting', 'VBG'), 'advmod', ('together', 'RB')), (('program', 'NN'), 'acl:relcl', ('project', 'VBP')), (('project', 'VBP'), 'nsubj', ('video', 'NN')), (('video', 'NN'), 'compound', ('photo', 'NN')), (('video', 'NN'), 'amod', ('recording', 'VBG')), (('project', 'VBP'), 'ccomp', ('create', 'VB')), (('create', 'VB'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'nummod', ('one', 'CD')), (('create', 'VB'), 'dobj', ('family', 'NN')), (('family', 'NN'), 'amod', ('perfect', 'JJ')), (('family', 'NN'), 'compound', ('memoir', 'NN')), (('family', 'NN'), 'compound', ('parent', 'NN')), (('family', 'NN'), 'acl', ('sibling', 'VBG')), (('sibling', 'VBG'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'compound', ('person', 'NN')), (('life', 'NN'), 'amod', ('important', 'JJ')), (('life', 'NN'), 'acl:relcl', ('may', 'MD'))]
[(('run', 'VBP'), 'nsubj', ('computer', 'NN')), (('run', 'VBP'), 'ccomp', ('come', 'VBP')), (('come', 'VBP'), 'nsubj', ('software', 'NN')), (('software', 'NN'), 'amod', ('fast', 'JJ')), (('software', 'NN'), 'compound', ('problem', 'NN')), (('software', 'NN'), 'compound', ('ilife', 'NN')), (('come', 'VBP'), 'ccomp', ('garageband', 'VBD')), (('garageband', 'VBD'), 'nsubj', ('itunes', 'NNS')), (('itunes', 'NNS'), 'amod', ('iphoto', 'JJ')), (('itunes', 'NNS'), 'amod', ('imovie', 'JJ')), (('itunes', 'NNS'), 'compound', ('iweb', 'NN')), (('garageband', 'VBD'), 'xcomp', ('helpful', 'JJ')), (('garageband', 'VBD'), 'advmod', ('well', 'RB'))]
[(('agreed', 'VBD'), 'nsubj', ('i', 'NNP')), (('i', 'NNP'), 'compound', ('_', 'NNP')), (('agreed', 'VBD'), 'advmod', ('actually', 'RB')), (('agreed', 'VBD'), 'parataxis', ('replaced', 'VBD')), (('replaced', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('replaced', 'VBD'), 'dobj', ('dvd', 'NN')), (('dvd', 'NN'), 'advmod', ('twice', 'RB')), (('dvd', 'NN'), 'compound', ('mother', 'NN')), (('dvd', 'NN'), 'compound', ('board', 'NN')), (('agreed', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'advmod', ('twice', 'RB')), (('agreed', 'VBD'), 'advmod', ('finally', 'RB')), (('agreed', 'VBD'), 'xcomp', ('replace', 'VB')), (('replace', 'VB'), 'dobj', ('le', '$')), (('le', '$'), 'nummod', ('1', 'CD')), (('1', 'CD'), 'compound', ('1', 'CD')), (('replace', 'VB'), 'nmod:tmod', ('year', 'NN')), (('year', 'NN'), 'nummod', ('2', 'CD'))]
[(('looking', 'VBG'), 'nsubj', ('apple', 'NN')), (('apple', 'NN'), 'amod', ('great', 'JJ')), (('apple', 'NN'), 'compound', ('product', 'NN')), (('apple', 'NN'), 'amod', ('great', 'JJ')), (('great', 'JJ'), 'amod', ('new', 'JJ')), (('looking', 'VBG'), 'dobj', ('design', 'NN'))]
[(('turned', 'VBD'), 'nsubj', ('_', 'NNP')), (('turned', 'VBD'), 'nsubj', ('night', 'NN')), (('night', 'NN'), 'nummod', ('one', 'CD')), (('turned', 'VBD'), 'dobj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('freaking', 'VBG')), (('thing', 'NN'), 'acl', ('using', 'VBG')), (('using', 'VBG'), 'dobj', ('steady', 'NNS')), (('steady', 'NNS'), 'amod', ('next', 'JJ')), (('steady', 'NNS'), 'compound', ('day', 'NN')), (('steady', 'NNS'), 'compound', ('turn', 'NN')), (('steady', 'NNS'), 'compound', ('gui', 'NN')), (('steady', 'NNS'), 'compound', ('screen', 'NN')), (('steady', 'NNS'), 'amod', ('dark', 'JJ')), (('steady', 'NNS'), 'compound', ('power', 'NN')), (('steady', 'NNS'), 'amod', ('light', 'JJ')), (('steady', 'NNS'), 'amod', ('steady', 'JJ')), (('steady', 'NNS'), 'amod', ('hard', 'JJ')), (('steady', 'NNS'), 'compound', ('drive', 'NN')), (('steady', 'NNS'), 'compound', ('light', 'NN')), (('steady', 'NNS'), 'acl', ('flashing', 'VBG')), (('flashing', 'VBG'), 'advmod', ('usually', 'RB'))]
[(('come', 'VBP'), 'advmod', ('also', 'RB')), (('come', 'VBP'), 'dobj', ('application', 'NN')), (('application', 'NN'), 'amod', ('useful', 'JJ')), (('application', 'NN'), 'nmod', ('iphoto', 'NN')), (('iphoto', 'NN'), 'case', ('like', 'IN')), (('come', 'VBP'), 'nsubj', ('application', 'NN')), (('application', 'NN'), 'amod', ('best', 'JJS')), (('application', 'NN'), 'compound', ('photo', 'NN')), (('application', 'NN'), 'advmod', ('ever', 'RB'))]
[(('received', 'VBD'), 'ccomp', ('made', 'VBD')), (('made', 'VBD'), 'nsubj', ('replacement', 'NN')), (('made', 'VBD'), 'dobj', ('dvd', 'NN')), (('dvd', 'NN'), 'compound', ('recovery', 'NN')), (('received', 'VBD'), 'nsubj', ('dvd', 'NN')), (('dvd', 'NN'), 'nummod', ('4', 'CD')), (('dvd', 'NN'), 'compound', ('driver', 'NN')), (('dvd', 'NN'), 'compound', ('application', 'NN'))]
[(('refused', 'VBN'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'nummod', ('four', 'CD')), (('drive', 'NN'), 'compound', ('month', 'NN')), (('drive', 'NN'), 'compound', ('disc', 'NN')), (('refused', 'VBN'), 'xcomp', ('open', 'JJ'))]
[(('screen', 'NN'), 'amod', ('crisp', 'JJ')), (('screen', 'NN'), 'dep', ('life', 'NN')), (('life', 'NN'), 'amod', ('great', 'JJ')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('screen', 'NN'), 'dep', ('storage', 'NN')), (('storage', 'NN'), 'compound', ('plenty', 'NN'))]
[(('picture', 'VBP'), 'advmod', ('though', 'RB')), (('picture', 'VBP'), 'dobj', ('software', 'NN')), (('software', 'NN'), 'amod', ('video', 'JJ')), (('software', 'NN'), 'compound', ('music', 'NN')), (('picture', 'VBP'), 'advmod', ('close', 'RB')), (('close', 'RB'), 'advmod', ('nowhere', 'RB')), (('picture', 'VBP'), 'nsubj', ('im', 'NN')), (('im', 'NN'), 'amod', ('professional', 'JJ')), (('im', 'NN'), 'compound', ('grade', 'NN')), (('im', 'NN'), 'compound', ('software', 'NN')), (('im', 'NN'), 'acl', ('used', 'VBN')), (('used', 'VBN'), 'dobj', ('beginner', 'NN')), (('beginner', 'NN'), 'amod', ('cs5', 'JJ')), (('beginner', 'NN'), 'compound', ('job', 'NN')), (('used', 'VBN'), 'nmod', ('designer', 'NN')), (('designer', 'NN'), 'advmod', ('even', 'RB')), (('designer', 'NN'), 'amod', ('intermediate', 'JJ')), (('designer', 'NN'), 'compound', ('medium', 'NN'))]
[(('carry', 'VB'), 'advmod', ('easy', 'RB')), (('carry', 'VB'), 'dep', ('taken', 'VBN')), (('taken', 'VBN'), 'dobj', ('headset', 'NN')), (('headset', 'NN'), 'amod', ('hooked', 'JJ')), (('hooked', 'JJ'), 'advmod', ('anywhere', 'RB')), (('headset', 'NN'), 'compound', ('printer', 'NN'))]
[(('crashed', 'VBD'), 'nsubj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('_', 'JJ')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('crashed', 'VBD'), 'advmod', ('well', 'RB')), (('crashed', 'VBD'), 'dep', ('buy', 'VB')), (('buy', 'VB'), 'dobj', ('cord', 'NN')), (('cord', 'NN'), 'amod', ('new', 'JJ')), (('cord', 'NN'), 'compound', ('power', 'NN'))]
[(('cant', 'NN'), 'compound', ('screen', 'NN')), (('cant', 'NN'), 'compound', ('keyboard', 'NN')), (('cant', 'NN'), 'compound', ('mouse', 'NN')), (('cant', 'NN'), 'dep', ('see', 'VB')), (('see', 'VB'), 'xcomp', ('spending', 'VBG')), (('spending', 'VBG'), 'xcomp', ('worth', 'JJ')), (('worth', 'JJ'), 'nsubj', ('multi', 'NNS')), (('multi', 'NNS'), 'amod', ('extra', 'JJ')), (('multi', 'NNS'), 'compound', ('money', 'NN')), (('multi', 'NNS'), 'compound', ('jump', 'NN')), (('multi', 'NNS'), 'compound', ('mac', 'NN')), (('multi', 'NNS'), 'amod', ('beautiful', 'JJ')), (('multi', 'NNS'), 'compound', ('screen', 'NN')), (('multi', 'NNS'), 'amod', ('responsive', 'JJ')), (('multi', 'NNS'), 'compound', ('island', 'NN')), (('multi', 'NNS'), 'amod', ('backlit', 'JJ')), (('multi', 'NNS'), 'compound', ('keyboard', 'NN')), (('multi', 'NNS'), 'compound', ('fun', 'NN')), (('multi', 'NNS'), 'dep', ('mouse', 'NN')), (('mouse', 'NN'), 'compound', ('touch', 'NN')), (('spending', 'VBG'), 'dobj', ('money', 'NN')), (('money', 'NN'), 'amod', ('extra', 'JJ')), (('money', 'NN'), 'advmod', ('alone', 'RB'))]
[(('screen', 'NN'), 'nsubj', ('inch', 'NN')), (('inch', 'NN'), 'amod', ('laptop', 'JJ')), (('inch', 'NN'), 'compound', ('look', 'NN')), (('inch', 'NN'), 'amod', ('great', 'JJ')), (('inch', 'NN'), 'compound', ('surface', 'NN')), (('inch', 'NN'), 'nummod', ('17', 'CD')), (('screen', 'NN'), 'dobj', ('point', 'NN')), (('point', 'NN'), 'amod', ('good', 'JJ')), (('point', 'NN'), 'compound', ('price', 'NN')), (('point', 'NN'), 'acl:relcl', ('run', 'VBP')), (('run', 'VBP'), 'nsubj', ('boot', 'NN')), (('boot', 'NN'), 'amod', ('nice', 'JJ')), (('boot', 'NN'), 'compound', ('appearance', 'NN')), (('run', 'VBP'), 'advmod', ('quickly', 'RB')), (('run', 'VBP'), 'dobj', ('etc', 'NN')), (('etc', 'NN'), 'amod', ('fast', 'JJ'))]
[(('boasted', 'VBD'), 'nsubj', ('dv4', 'NNS')), (('boasted', 'VBD'), 'ccomp', ('drive', 'VBP')), (('drive', 'VBP'), 'nsubj', ('memory', 'NN')), (('memory', 'NN'), 'amod', ('faster', 'JJR')), (('memory', 'NN'), 'compound', ('processor', 'NN')), (('memory', 'NN'), 'amod', ('hard', 'JJ')), (('hard', 'JJ'), 'dep', ('bigger', 'JJR')), (('drive', 'VBP'), 'xcomp', ('nicer', 'JJR')), (('nicer', 'JJR'), 'nmod:npmod', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('old', 'JJ')), (('computer', 'NN'), 'nmod', ('cam', 'NN')), (('cam', 'NN'), 'case', ('plus', 'CC')), (('cam', 'NN'), 'amod', ('better', 'JJR')), (('cam', 'NN'), 'compound', ('quality', 'NN')), (('cam', 'NN'), 'compound', ('web', 'NN')), (('drive', 'VBP'), 'ccomp', ('screen', 'NN')), (('screen', 'NN'), 'dobj', ('feature', 'NN')), (('feature', 'NN'), 'amod', ('many', 'JJ'))]
[(('use', 'NN'), 'amod', ('super', 'JJ')), (('use', 'NN'), 'amod', ('easy', 'JJ'))]
[(('took', 'VBD'), 'compound:prt', ('back', 'RP')), (('took', 'VBD'), 'dobj', ('store', 'NN')), (('store', 'NN'), 'compound', ('apple', 'NN')), (('took', 'VBD'), 'nsubj', ('staff', 'NN')), (('staff', 'NN'), 'amod', ('narcissist', 'JJ')), (('staff', 'NN'), 'compound', ('genius', 'NN')), (('staff', 'NN'), 'compound', ('bar', 'NN')), (('staff', 'NN'), 'acl', ('fixed', 'VBN')), (('fixed', 'VBN'), 'xcomp', ('resetting', 'VBG')), (('resetting', 'VBG'), 'dobj', ('boot', 'NN')), (('boot', 'NN'), 'compound', ('fan', 'NN'))]
[(('upgrade', 'VBZ'), 'dobj', ('window', 'NN')), (('window', 'NN'), 'amod', ('possible', 'JJ')), (('window', 'NN'), 'amod', ('full', 'JJ')), (('upgrade', 'VBZ'), 'nsubj', ('geek', 'NN')), (('geek', 'NN'), 'nummod', ('7', 'CD')), (('geek', 'NN'), 'amod', ('happy', 'JJ')), (('happy', 'JJ'), 'advmod', ('truly', 'RB'))]
[(('yeah', 'VBP'), 'dep', ('oh', 'UH')), (('yeah', 'VBP'), 'nsubj', ('hp', 'NN')), (('hp', 'NN'), 'nummod', ('forget', 'CD')), (('hp', 'NN'), 'amod', ('expensive', 'JJ')), (('hp', 'NN'), 'compound', ('shipping', 'NN'))]
[(('gotten', 'VBN'), 'nsubj', ('idea', 'NN')), (('gotten', 'VBN'), 'aux', ('could', 'MD')), (('gotten', 'VBN'), 'advmod', ('even', 'RB')), (('gotten', 'VBN'), 'nmod', ('production', 'NN')), (('production', 'NN'), 'case', ('past', 'IN')), (('production', 'NN'), 'compound', ('quality', 'NN')), (('production', 'NN'), 'compound', ('control', 'NN'))]
[(('gave', 'VBD'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'amod', ('hard', 'JJ')), (('gave', 'VBD'), 'advmod', ('yet', 'RB')), (('gave', 'VBD'), 'nsubj', ('die', 'NN')), (('die', 'NN'), 'nummod', ('malfunction', 'CD')), (('die', 'NN'), 'compound', ('battery', 'NN'))]
[(('call', 'VB'), 'dep', ('claim', 'NN')), (('call', 'VB'), 'dobj', ('center', 'NN')), (('center', 'NN'), 'advmod', ('still', 'RB'))]
[(('get', 'VBP'), 'nsubj', ('computer', 'NN')), (('get', 'VBP'), 'ccomp', ('place', 'VBP')), (('place', 'VBP'), 'nsubj', ('drop', 'NN')), (('drop', 'NN'), 'amod', ('strong', 'JJ')), (('drop', 'NN'), 'compound', ('signal', 'NN')), (('place', 'VBP'), 'ccomp', ('loses', 'VBZ')), (('loses', 'VBZ'), 'nsubj', ('book', 'NN')), (('book', 'NN'), 'amod', ('net', 'JJ')), (('loses', 'VBZ'), 'dobj', ('signal', 'NN'))]
[(('take', 'VBP'), 'nsubj', ('order', 'NN')), (('order', 'NN'), 'amod', ('upgraded', 'JJ')), (('order', 'NN'), 'compound', ('memory', 'NN')), (('order', 'NN'), 'nummod', ('four', 'CD')), (('order', 'NN'), 'compound', ('gigabyte', 'NN')), (('take', 'VBP'), 'dobj', ('speed', 'NN')), (('speed', 'NN'), 'compound', ('advantage', 'NN')), (('speed', 'NN'), 'compound', ('performace', 'NN')), (('speed', 'NN'), 'compound', ('increase', 'NN'))]
[(('look', 'VB'), 'advmod', ('personally', 'RB')), (('personally', 'RB'), 'nmod', ('gaming', 'NN')), (('gaming', 'NN'), 'case', ('like', 'IN')), (('look', 'VB'), 'dobj', ('machine', 'NN')), (('machine', 'NN'), 'amod', ('needed', 'VBN')), (('machine', 'NN'), 'acl', ('delivered', 'VBN')), (('delivered', 'VBN'), 'dobj', ('performance', 'NN')), (('performance', 'NN'), 'compound', ('gaming', 'NN')), (('delivered', 'VBN'), 'xcomp', ('looking', 'VBG')), (('looking', 'VBG'), 'advmod', ('still', 'RB')), (('looking', 'VBG'), 'dobj', ('customer', 'NN')), (('customer', 'NN'), 'amod', ('professional', 'JJ')), (('customer', 'NN'), 'compound', ('front', 'NN'))]
[(('doesnt', 'VB'), 'xcomp', ('damn', 'RB')), (('damn', 'RB'), 'nsubj', ('work', 'NN')), (('damn', 'RB'), 'dep', ('worth', 'IN'))]
[(('fact', 'NN'), 'dep', ('opened', 'VBD')), (('opened', 'VBD'), 'advmod', ('somehow', 'RB')), (('opened', 'VBD'), 'neg', ('never', 'RB')), (('opened', 'VBD'), 'dobj', ('something', 'NN')), (('something', 'NN'), 'compound', ('speck', 'NN')), (('something', 'NN'), 'compound', ('dust', 'NN')), (('something', 'NN'), 'acl', ('got', 'VBN')), (('got', 'VBN'), 'advcl', ('screen', 'NN')), (('screen', 'NN'), 'case', ('inside', 'IN')), (('screen', 'NN'), 'advmod', ('permanently', 'RB')), (('screen', 'NN'), 'nmod', ('display', 'NN')), (('display', 'NN'), 'case', ('behind', 'IN')), (('display', 'NN'), 'amod', ('front', 'JJ')), (('display', 'NN'), 'compound', ('screen', 'NN')), (('display', 'NN'), 'compound', ('way', 'NN'))]
[(('issue', 'VBP'), 'nsubj', ('weight', 'NN')), (('weight', 'NN'), 'compound', ('course', 'NN')), (('weight', 'NN'), 'compound', ('student', 'NN')), (('issue', 'VBP'), 'advmod', ('always', 'RB'))]
[(('speed', 'VB'), 'xcomp', ('give', 'VB')), (('give', 'VB'), 'iobj', ('seamlessly', 'NN')), (('seamlessly', 'NN'), 'compound', ('power', 'NN')), (('seamlessly', 'NN'), 'compound', ('work', 'NN')), (('seamlessly', 'NN'), 'compound', ('project', 'NN')), (('give', 'VB'), 'dobj', ('sowish', 'NN')), (('sowish', 'NN'), 'amod', ('multiple', 'JJ')), (('sowish', 'NN'), 'compound', ('time', 'NN'))]
[(('needed', 'VBD'), 'advmod', ('yet', 'RB')), (('needed', 'VBD'), 'dobj', ('support', 'NN')), (('support', 'NN'), 'compound', ('customer', 'NN')), (('needed', 'VBD'), 'advmod', ('yet', 'RB')), (('needed', 'VBD'), 'nsubj', ('leap', 'NN')), (('leap', 'NN'), 'amod', ('great', 'JJ')), (('leap', 'NN'), 'compound', ('thing', 'NN')), (('leap', 'NN'), 'acl', ('bound', 'VBN')), (('bound', 'VBN'), 'nmod', ('opinion', 'NN')), (('opinion', 'NN'), 'advmod', ('ahead', 'RB')), (('opinion', 'NN'), 'compound', ('pc', 'NN'))]
[(('came', 'VBD'), 'nsubj', ('program', 'NN')), (('came', 'VBD'), 'dobj', ('iwork', 'NN')), (('iwork', 'NN'), 'amod', ('ilife', 'JJ')), (('iwork', 'NN'), 'acl', ('set', 'VBN')), (('set', 'VBN'), 'xcomp', ('beginning', 'VBG'))]
[(('life', 'NN'), 'compound', ('couple', 'NN')), (('life', 'NN'), 'compound', ('year', 'NN')), (('life', 'NN'), 'compound', ('battery', 'NN')), (('life', 'NN'), 'dep', ('began', 'VBD')), (('began', 'VBD'), 'ccomp', ('replaced', 'VBD')), (('replaced', 'VBD'), 'nsubj', ('diminish', 'NNP')), (('replaced', 'VBD'), 'ccomp', ('recall', 'VBP')), (('recall', 'VBP'), 'nsubj', ('company', 'NN')), (('company', 'NN'), 'amod', ('due', 'JJ')), (('due', 'JJ'), 'amod', ('free', 'JJ')), (('company', 'NN'), 'amod', ('wide', 'JJ')), (('recall', 'VBP'), 'dobj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('particular', 'JJ'))]
[(('make', 'VBP'), 'nsubj', ('trackpad', 'NN')), (('trackpad', 'NN'), 'compound', ('thing', 'NN')), (('make', 'VBP'), 'xcomp', ('navigating', 'JJ')), (('navigating', 'JJ'), 'advcl', ('quicker', 'JJR')), (('quicker', 'JJR'), 'case', ('around', 'IN')), (('quicker', 'JJR'), 'nmod:npmod', ('program', 'NN')), (('program', 'NN'), 'compound', ('computer', 'NN')), (('program', 'NN'), 'amod', ('simpler', 'JJR')), (('simpler', 'JJR'), 'advmod', ('much', 'RB')), (('make', 'VBP'), 'xcomp', ('easier', 'RBR'))]
[(('size', 'NN'), 'compound', ('screen', 'NN')), (('size', 'NN'), 'dep', ('email', 'NN')), (('email', 'NN'), 'amod', ('bad', 'JJ')), (('size', 'NN'), 'dep', ('browsing', 'NN')), (('browsing', 'NN'), 'compound', ('web', 'NN'))]
[(('replaced', 'VBD'), 'nsubj', ('_', 'NNP')), (('replaced', 'VBD'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('hard', 'JJ')), (('replaced', 'VBD'), 'nmod', ('board', 'NN')), (('board', 'NN'), 'advmod', ('well', 'RB')), (('board', 'NN'), 'compound', ('mother', 'NN'))]
[(('mcbook', 'VB'), 'ccomp', ('make', 'VBP')), (('make', 'VBP'), 'nsubj', ('notebook', 'NN')), (('notebook', 'NN'), 'amod', ('pro', 'JJ')), (('make', 'VBP'), 'advmod', ('easy', 'RB')), (('make', 'VBP'), 'dep', ('write', 'VB')), (('write', 'VB'), 'dobj', ('email', 'NN')), (('email', 'NN'), 'amod', ('read', 'VBN')), (('email', 'NN'), 'acl', ('blazing', 'VBG')), (('blazing', 'VBG'), 'dobj', ('speed', 'NN'))]
[(('terrific', 'NNS'), 'compound', ('application', 'NN')), (('terrific', 'NNS'), 'nmod', ('office', 'NN')), (('office', 'NN'), 'case', ('including', 'VBG')), (('office', 'NN'), 'compound', ('replacement', 'NN')), (('office', 'NN'), 'compound', ('microsoft', 'NN'))]
[(('extended', 'VBD'), 'dobj', ('warranty', 'NN')), (('extended', 'VBD'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'nummod', ('4000', 'CD')), (('extended', 'VBD'), 'dep', ('drop', 'NN')), (('drop', 'NN'), 'nummod', ('one', 'CD')), (('drop', 'NN'), 'amod', ('available', 'JJ')), (('drop', 'NN'), 'compound', ('purchase', 'NN')), (('extended', 'VBD'), 'nmod', ('menu', 'NN')), (('menu', 'NN'), 'case', ('drown', 'IN'))]
[(('hate', 'VB'), 'nsubj', ('service', 'NN')), (('service', 'NN'), 'compound', ('improvement', 'NN')), (('service', 'NN'), 'compound', ('customer', 'NN')), (('hate', 'VB'), 'aux', ('would', 'MD')), (('hate', 'VB'), 'xcomp', ('see', 'VB'))]
[(('card', 'NN'), 'amod', ('video', 'JJ')), (('card', 'NN'), 'dep', ('gamers', 'NNS')), (('gamers', 'NNS'), 'amod', ('great', 'JJ')), (('gamers', 'NNS'), 'compound', ('medium', 'NN')), (('gamers', 'NNS'), 'compound', ('average', 'NN')), (('gamers', 'NNS'), 'compound', ('gaming', 'NN')), (('card', 'NN'), 'dep', ('choice', 'NN')), (('choice', 'NN'), 'amod', ('first', 'JJ'))]
[(('garageband', 'VBD'), 'nsubj', ('work', 'NN')), (('work', 'NN'), 'amod', ('easy', 'JJ')), (('work', 'NN'), 'nmod', ('experience', 'NN')), (('experience', 'NN'), 'case', ('like', 'IN')), (('experience', 'NN'), 'compound', ('apple', 'NN')), (('experience', 'NN'), 'compound', ('application', 'NN'))]
[(('run', 'VBP'), 'nsubj', ('computer', 'NN')), (('run', 'VBP'), 'ccomp', ('come', 'VBP')), (('come', 'VBP'), 'nsubj', ('software', 'NN')), (('software', 'NN'), 'amod', ('fast', 'JJ')), (('software', 'NN'), 'compound', ('problem', 'NN')), (('software', 'NN'), 'compound', ('ilife', 'NN')), (('come', 'VBP'), 'ccomp', ('garageband', 'VBD')), (('garageband', 'VBD'), 'nsubj', ('itunes', 'NNS')), (('itunes', 'NNS'), 'amod', ('iphoto', 'JJ')), (('itunes', 'NNS'), 'amod', ('imovie', 'JJ')), (('itunes', 'NNS'), 'compound', ('iweb', 'NN')), (('garageband', 'VBD'), 'xcomp', ('helpful', 'JJ')), (('garageband', 'VBD'), 'advmod', ('well', 'RB'))]
[(('give', 'VBP'), 'nsubj', ('computer', 'NN')), (('computer', 'NN'), 'amod', ('continued', 'VBN')), (('give', 'VBP'), 'ccomp', ('died', 'VBD')), (('died', 'VBD'), 'nsubj', ('issue', 'NN')), (('issue', 'NN'), 'dep', ('june', 'NNP')), (('june', 'NNP'), 'amod', ('late', 'JJ')), (('died', 'VBD'), 'advmod', ('completely', 'RB')), (('died', 'VBD'), 'ccomp', ('tried', 'VBD')), (('tried', 'VBD'), 'ccomp', ('get', 'VBP')), (('get', 'VBP'), 'nsubj', ('acer', 'NN')), (('acer', 'NN'), 'compound', ('call', 'NN')), (('get', 'VBP'), 'ccomp', ('refused', 'VBD')), (('refused', 'VBD'), 'nsubj', ('fixed', 'VBN')), (('refused', 'VBD'), 'ccomp', ('said', 'VBD')), (('said', 'VBD'), 'nsubj', ('help', 'NN')), (('said', 'VBD'), 'ccomp', ('hung', 'VBD')), (('hung', 'VBD'), 'nsubj', ('warrenty', 'NN'))]
[(('bought', 'VBD'), 'nsubj', ('_', 'NNP')), (('bought', 'VBD'), 'ccomp', ('looked', 'VBD')), (('looked', 'VBD'), 'nsubj', ('thought', 'NN')), (('thought', 'NN'), 'amod', ('dell', 'JJ')), (('looked', 'VBD'), 'dobj', ('purchase', 'NN')), (('purchase', 'NN'), 'amod', ('wanted', 'JJ')), (('purchase', 'NN'), 'compound', ('size', 'NN')), (('purchase', 'NN'), 'compound', ('software', 'NN')), (('purchase', 'NN'), 'compound', ('option', 'NN')), (('purchase', 'NN'), 'compound', ('hardware', 'NN')), (('purchase', 'NN'), 'acl:relcl', ('find', 'VB')), (('find', 'VB'), 'nsubj', ('deal', 'NN')), (('deal', 'NN'), 'amod', ('best', 'JJS')), (('find', 'VB'), 'aux', ('could', 'MD'))]
[(('mouse', 'NN'), 'dep', ('seventy', 'RB')), (('mouse', 'NN'), 'compound', ('dollar', 'NN'))]
[(('crash', 'VB'), 'nsubj', ('program', 'NN')), (('crash', 'VB'), 'aux', ('would', 'MD')), (('crash', 'VB'), 'dobj', ('time', 'NN')), (('time', 'NN'), 'acl', ('turned', 'VBN')), (('turned', 'VBN'), 'dobj', ('laptop', 'NN')), (('laptop', 'NN'), 'amod', ('unreliable', 'JJ')), (('unreliable', 'JJ'), 'amod', ('unstable', 'JJ'))]
[(('size', 'VBP'), 'advmod', ('also', 'RB')), (('size', 'VBP'), 'xcomp', ('laptop', 'JJ')), (('laptop', 'JJ'), 'advmod', ('consistancy', 'RB')), (('size', 'VBP'), 'nsubj', ('website', 'NN')), (('website', 'NN'), 'compound', ('computer', 'NN')), (('website', 'NN'), 'dep', ('problem', 'NN')), (('problem', 'NN'), 'advmod', ('even', 'RB')), (('problem', 'NN'), 'compound', ('attempt', 'NN')), (('problem', 'NN'), 'compound', ('work', 'NN')), (('problem', 'NN'), 'compound', ('computer', 'NN')), (('problem', 'NN'), 'compound', ('browser', 'NN'))]
[(('built', 'VBD'), 'dep', ('run', 'VBP')), (('run', 'VBP'), 'nsubj', ('card', 'NN')), (('card', 'NN'), 'compound', ('ati', 'NN')), (('card', 'NN'), 'amod', ('graphic', 'JJ')), (('card', 'NN'), 'acl:relcl', ('need', 'VBP')), (('need', 'VBP'), 'dobj', ('huge', 'JJ')), (('huge', 'JJ'), 'dep', ('definitely', 'RB')), (('definitely', 'RB'), 'cc', ('plus', 'CC')), (('need', 'VBP'), 'nsubj', ('value', 'NN')), (('value', 'NN'), 'amod', ('good', 'JJ')), (('need', 'VBP'), 'xcomp', ('able', 'JJ')), (('run', 'VBP'), 'dobj', ('intel', 'NN')), (('intel', 'NN'), 'amod', ('older', 'JJR')), (('older', 'JJR'), 'advmod', ('slightly', 'RB')), (('intel', 'NN'), 'compound', ('game', 'NN')), (('built', 'VBD'), 'ccomp', ('trouble', 'VB')), (('trouble', 'VB'), 'nsubj', ('card', 'NN')), (('trouble', 'VB'), 'aux', ('would', 'MD')), (('trouble', 'VB'), 'dobj', ('life', 'NN')), (('life', 'NN'), 'det', ('half', 'DT')), (('built', 'VBD'), 'nsubj', ('warcraft', 'NN')), (('warcraft', 'NN'), 'nummod', ('2', 'CD')), (('warcraft', 'NN'), 'amod', ('even', 'JJ')), (('warcraft', 'NN'), 'compound', ('world', 'NN'))]
[(('price', 'NN'), 'dep', ('fast', 'RB')), (('fast', 'RB'), 'advmod', ('super', 'RB')), (('price', 'NN'), 'amod', ('great', 'JJ')), (('price', 'NN'), 'compound', ('value', 'NN'))]
[(('solve', 'VB'), 'nsubj', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('battery', 'NN')), (('battery', 'NN'), 'amod', ('last', 'JJ')), (('battery', 'NN'), 'amod', ('sure', 'JJ')), (('sure', 'JJ'), 'advmod', ('long', 'RB')), (('battery', 'NN'), 'amod', ('upgrade', 'JJ')), (('solve', 'VB'), 'aux', ('would', 'MD')), (('solve', 'VB'), 'dobj', ('problem', 'NN'))]
[(('macbook', 'VBP'), 'dep', ('warranty', 'NN')), (('macbook', 'VBP'), 'nmod:tmod', ('year', 'NN')), (('year', 'NN'), 'amod', ('pro', 'JJ')), (('year', 'NN'), 'amod', ('last', 'JJ')), (('year', 'NN'), 'nummod', ('5', 'CD')), (('macbook', 'VBP'), 'nsubj', ('cycle', 'NN')), (('cycle', 'NN'), 'nummod', ('1000', 'CD')), (('cycle', 'NN'), 'compound', ('battery', 'NN')), (('cycle', 'NN'), 'compound', ('recharge', 'NN'))]
[(('bought', 'VBD'), 'ccomp', ('found', 'VBD')), (('found', 'VBD'), 'nsubj', ('laptop', 'NN')), (('bought', 'VBD'), 'nsubj', ('functioning', 'NN')), (('functioning', 'NN'), 'nummod', ('tab', 'CD'))]
[(('especially', 'RB'), 'nmod', ('keyboard', 'NN')), (('keyboard', 'NN'), 'case', ('like', 'IN')), (('keyboard', 'NN'), 'amod', ('backlit', 'JJ'))]
[(('want', 'VB'), 'dobj', ('buck', 'NN')), (('buck', 'NN'), 'amod', ('little', 'JJ')), (('buck', 'NN'), 'compound', ('custom', 'NN')), (('buck', 'NN'), 'compound', ('ability', 'NN')), (('buck', 'NN'), 'compound', ('drop', 'NN')), (('want', 'VB'), 'dep', ('upgrade', 'VB')), (('upgrade', 'VB'), 'ccomp', ('win', 'VB')), (('win', 'VB'), 'nsubj', ('version', 'NN')), (('version', 'NN'), 'nummod', ('one', 'CD')), (('version', 'NN'), 'amod', ('robust', 'JJ')), (('win', 'VB'), 'dobj', ('2gb', 'NNS')), (('2gb', 'NNS'), 'nummod', ('7', 'CD')), (('2gb', 'NNS'), 'compound', ('grab', 'NN')), (('win', 'VB'), 'dep', ('stick', 'VB')), (('stick', 'VB'), 'dobj', ('bit', 'NN')), (('bit', 'NN'), 'compound', ('memory', 'NN')), (('bit', 'NN'), 'compound', ('spice', 'NN'))]
[(('cubersome', 'NNS'), 'compound', ('dislike', 'NN')), (('cubersome', 'NNS'), 'compound', ('weight', 'NN')), (('cubersome', 'NNS'), 'compound', ('size', 'NN'))]
[(('iphotos', 'VBZ'), 'nsubj', ('program', 'NN')), (('program', 'NN'), 'amod', ('excellent', 'JJ')), (('program', 'NN'), 'acl', ('storing', 'VBG')), (('storing', 'VBG'), 'advcl', ('organizing', 'VBG')), (('organizing', 'VBG'), 'dobj', ('photo', 'NN'))]
[(('change', 'NN'), 'nummod', ('1', 'CD')), (('change', 'NN'), 'dep', ('window', 'NN')), (('window', 'NN'), 'amod', ('desktop', 'JJ')), (('window', 'NN'), 'compound', ('background', 'NN')), (('change', 'NN'), 'dep', ('function', 'NN')), (('function', 'NN'), 'nummod', ('7', 'CD')), (('function', 'NN'), 'amod', ('starter', 'JJ')), (('function', 'NN'), 'compound', ('support', 'NN'))]
[(('make', 'VB'), 'advmod', ('possible', 'RB')), (('make', 'VB'), 'case', ('since', 'IN')), (('make', 'VB'), 'dobj', ('driver', 'NN')), (('driver', 'NN'), 'compound', ('window', 'NN')), (('driver', 'NN'), 'compound', ('xp', 'NN')), (('driver', 'NN'), 'acl:relcl', ('stuck', 'VBD')), (('stuck', 'VBD'), 'nsubj', ('machine', 'NN')), (('machine', 'NN'), 'amod', ('sound', 'JJ')), (('machine', 'NN'), 'compound', ('card', 'NN')), (('stuck', 'VBD'), 'ccomp', ('came', 'VBD')), (('came', 'VBD'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'nummod', ('7', 'CD'))]
[(('use', 'VBP'), 'advmod', ('also', 'RB')), (('use', 'VBP'), 'ccomp', ('run', 'VBP')), (('run', 'VBP'), 'nsubj', ('paralles', 'NNS')), (('run', 'VBP'), 'ccomp', ('xp', 'VBP')), (('xp', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('virtual', 'JJ')), (('window', 'NN'), 'compound', ('machine', 'NN')), (('xp', 'VBP'), 'xcomp', ('server', 'NN')), (('server', 'NN'), 'nsubj', ('enterprise', 'NN')), (('enterprise', 'NN'), 'amod', ('professional', 'JJ')), (('enterprise', 'NN'), 'compound', ('window', 'NN')), (('enterprise', 'NN'), 'nummod', ('7', 'CD')), (('enterprise', 'NN'), 'compound', ('home', 'NN')), (('enterprise', 'NN'), 'amod', ('premium', 'JJ')), (('enterprise', 'NN'), 'compound', ('window', 'NN')), (('enterprise', 'NN'), 'compound', ('server', 'NN')), (('server', 'NN'), 'nummod', ('2003', 'CD')), (('server', 'NN'), 'compound', ('window', 'NN')), (('use', 'VBP'), 'nsubj', ('enterprise', 'NN')), (('enterprise', 'NN'), 'nummod', ('2008', 'CD'))]
[(('recommend', 'VBP'), 'dep', ('sure', 'JJ')), (('recommend', 'VBP'), 'dobj', ('quality', 'NN')), (('recommend', 'VBP'), 'nsubj', ('reason', 'NN')), (('reason', 'NN'), 'nummod', ('gaming', 'CD')), (('reason', 'NN'), 'compound', ('desktop', 'NN')), (('reason', 'NN'), 'compound', ('rig', 'NN'))]
[(('connecting', 'VBG'), 'ccomp', ('took', 'VBD')), (('took', 'VBD'), 'nsubj', ('router', 'NN')), (('router', 'NN'), 'amod', ('wireless', 'JJ')), (('router', 'NN'), 'nmod', ('wireless', 'NN')), (('wireless', 'NN'), 'case', ('via', 'IN')), (('wireless', 'NN'), 'amod', ('built', 'VBN')), (('took', 'VBD'), 'dobj', ('time', 'NN'))]
[(('guess', 'VB'), 'ccomp', ('came', 'VBD')), (('came', 'VBD'), 'nsubj', ('thing', 'NN')), (('thing', 'NN'), 'amod', ('good', 'JJ')), (('came', 'VBD'), 'dobj', ('subwoofer', 'NN')), (('subwoofer', 'NN'), 'compound', ('speaker', 'NN'))]
[(('connect', 'VBP'), 'dobj', ('drive', 'NN')), (('drive', 'NN'), 'amod', ('lacie', 'JJ')), (('drive', 'NN'), 'amod', ('2big', 'JJ')), (('drive', 'NN'), 'amod', ('external', 'JJ')), (('drive', 'NN'), 'nmod', ('firewire', 'NN')), (('firewire', 'NN'), 'case', ('via', 'IN')), (('connect', 'VBP'), 'nsubj', ('machine', 'NN')), (('machine', 'NN'), 'nummod', ('800', 'CD')), (('machine', 'NN'), 'amod', ('interface', 'JJ')), (('machine', 'NN'), 'amod', ('useful', 'JJ')), (('machine', 'NN'), 'compound', ('time', 'NN'))]
[(('carry', 'VB'), 'dobj', ('netbook', 'NN')), (('carry', 'VB'), 'nmod', ('kinda', 'NN')), (('kinda', 'NN'), 'case', ('around', 'IN')), (('kinda', 'NN'), 'advmod', ('hence', 'RB')), (('kinda', 'NN'), 'acl', ('irritating', 'VBG')), (('irritating', 'VBG'), 'dobj', ('downwards', 'NNS')), (('downwards', 'NNS'), 'compound', ('lcd', 'NN')), (('downwards', 'NNS'), 'compound', ('slide', 'NN'))]
[(('keyboard', 'NN'), 'nmod', ('look', 'NN')), (('look', 'NN'), 'case', ('since', 'IN')), (('look', 'NN'), 'compound', ('keyboard', 'NN')), (('look', 'NN'), 'nummod', ('100', 'CD')), (('look', 'NN'), 'compound', ('wpm', 'NN')), (('keyboard', 'NN'), 'compound', ('unit', 'NN')), (('keyboard', 'NN'), 'compound', ('comfortble', 'NN')), (('keyboard', 'NN'), 'dep', ('sticking', 'NN')), (('sticking', 'NN'), 'amod', ('key', 'JJ')), (('sticking', 'NN'), 'dep', ('lagging', 'JJ')), (('lagging', 'JJ'), 'iobj', ('configuration', 'NN')), (('configuration', 'NN'), 'amod', ('strange', 'JJ')), (('lagging', 'JJ'), 'dobj', ('etc', 'FW')), (('etc', 'FW'), 'amod', ('extra', 'JJ')), (('etc', 'FW'), 'amod', ('key', 'JJ'))]
[(('use', 'VBP'), 'advmod', ('also', 'RB')), (('use', 'VBP'), 'ccomp', ('run', 'VBP')), (('run', 'VBP'), 'nsubj', ('paralles', 'NNS')), (('run', 'VBP'), 'ccomp', ('xp', 'VBP')), (('xp', 'VBP'), 'nsubj', ('window', 'NN')), (('window', 'NN'), 'amod', ('virtual', 'JJ')), (('window', 'NN'), 'compound', ('machine', 'NN')), (('xp', 'VBP'), 'xcomp', ('server', 'NN')), (('server', 'NN'), 'nsubj', ('enterprise', 'NN')), (('enterprise', 'NN'), 'amod', ('professional', 'JJ')), (('enterprise', 'NN'), 'compound', ('window', 'NN')), (('enterprise', 'NN'), 'nummod', ('7', 'CD')), (('enterprise', 'NN'), 'compound', ('home', 'NN')), (('enterprise', 'NN'), 'amod', ('premium', 'JJ')), (('enterprise', 'NN'), 'compound', ('window', 'NN')), (('enterprise', 'NN'), 'compound', ('server', 'NN')), (('server', 'NN'), 'nummod', ('2003', 'CD')), (('server', 'NN'), 'compound', ('window', 'NN')), (('use', 'VBP'), 'nsubj', ('enterprise', 'NN')), (('enterprise', 'NN'), 'nummod', ('2008', 'CD'))]
[(('key', 'NN'), 'compound', ('size', 'NN'))]
[(('_', 'VB'), 'advmod', ('also', 'RB')), (('_', 'VB'), 'dobj', ('battery', 'NN')), (('battery', 'NN'), 'acl', ('shot', 'VBN')), (('shot', 'VBN'), 'advmod', ('completely', 'RB'))]
[(('use', 'NN'), 'compound', ('screen', 'NN')), (('use', 'NN'), 'amod', ('bright', 'JJ')), (('use', 'NN'), 'amod', ('vivid', 'JJ')), (('use', 'NN'), 'compound', ('keyboard', 'NN')), (('use', 'NN'), 'amod', ('easy', 'JJ')), (('use', 'NN'), 'dep', ('use', 'NN')), (('use', 'NN'), 'amod', ('important', 'JJ')), (('use', 'NN'), 'dep', ('typers', 'NNS')), (('typers', 'NNS'), 'amod', ('quick', 'JJ'))]
[(('store', 'VB'), 'xcomp', ('honored', 'VBN')), (('honored', 'VBN'), 'ccomp', ('recommend', 'VBP')), (('recommend', 'VBP'), 'nsubj', ('comment', 'NN')), (('comment', 'NN'), 'amod', ('made', 'VBN')), (('made', 'VBN'), 'advmod', ('warrenty', 'RB')), (('recommend', 'VBP'), 'advmod', ('even', 'RB')), (('recommend', 'VBP'), 'dobj', ('warrentys', 'NNS')), (('warrentys', 'NNS'), 'compound', ('hp', 'NN')), (('warrentys', 'NNS'), 'compound', ('brand', 'NN')), (('warrentys', 'NNS'), 'compound', ('problem', 'NN'))]