-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtable.txt
10932 lines (9110 loc) · 728 KB
/
table.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
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I thought it would be as big as small paper but turn out to be just like my palm. I think it is too small to read on it... not very comfortable as regular Kindle. Would definitely recommend a paperwhite instead.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">This kindle is light and easy to use especially at the beach!!!</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Didnt know how much i'd use a kindle so went for the lower end. im happy with it, even if its a little dark</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I am 100 happy with my purchase. I caught it on sale at a really good price. I am normally a real book person, but I have a 1 year old who loves ripping up pages. The Kindle prevents that, it's extremely portable (it fits better in my purse than a giant book), and I have it loaded with lots of books. I finish one and start another, without having to go store. It serves all my needs. I picked this one over the Paperwhite because the price was unbeatable and the only difference that I could see was this one wasn't backlit. A simple book light from the Dollar tree solves that issue. This is my second Kindle (the first being the old Keyboard model, which I put down because I fell out of love with the keyboard. Lol) and it most likely won't be my last.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Solid entry level Kindle. Great for kids. Gifted for a kid of my friend and they love to use it to read more than their iPads. battery is good but higher model is a bit better.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">This make an excellent ebook reader. Don't expect much from this device except to read basic ebooks. The good thing is it's cheap and good to read in the sun.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I ordered this for my daughter, as I have the black paperwhite, and I love it. I read quite a bit and the larger books were driving me crazy having to hold them up while laying down, or wanting to take a book on vacation and lugging around a thick paperback, with this I can throw it in my bag and read anywhere. Its light weight, easy to use, the battery life lasts for weeks, which makes it an all around awesome device. My daughter is in public school and they offer an online library for E-Readers, so she can now download books for free from school! You can also download your own public library app (if your county offers that) and read free from there as well. You can shop for e-books straight from the device through Amazon.com.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I bought my Kindle about 2 months ago and the battery is already dead and will not charge</td>
<td class="column100 column4" data-column="column4">no</td>
<td class="column100 column5" data-column="column5">yes</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">amazon kindle is always the best ebook, upgrade every new model</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">It's beyond my expectation, and it can even show music score. Not fast turning though.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">If you really want to have a good read on something digital this is the item you're looking for. It really is lightweight and highly functional. The battery lasts a long time and the screen is easy on the eyes. The only difficulty sometimes is reading in extremely bright environments. Overall an excellent buy.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Love my kindle, makes reading at night so easy and it feels like you are reading a real book.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Good product for child. Who only need to read the books</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">This Kindle is a convenient size yet lettering is easy to read.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I use this every day on my commute. Great battery life, no backlight but very readable with normal lighting. I like the built in dictionary. Email yourself pdf or mobi files for easy transfers.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">It does its job but I would buy one which the screen is brighter. There are times that it's difficult to read because screen is not too bright</td>
<td class="column100 column4" data-column="column4">no</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
yes
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Great product for myself! And I bought it when there was great deal on it!</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Item work well and was easy to read from in day light</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Great product and service will refer to a friend. And the sales man r good</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Everything is great except that i can't read external pdfs properly. Either it zooms too much of too little. For kindle books it provides great experience. Battery life is awesome!</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I was looking for a kindle whitepaper. I saw online for $80. What a deal. I ordered it on line and picked it up in the store. I got it home and couldn't adjust the brightness. After a lengthy time with online customer service I called customer service. After 20 minuets with speaking to a female Elmer Fud that doesn't speak english well I figured I would just return it. Although it looks Identical to the $120 model, you can not adjust the brightness. That would have been good information before I bought it.</td>
<td class="column100 column4" data-column="column4">no</td>
<td class="column100 column5" data-column="column5">yes</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">This is a nice bare-bones reading device. Easy to set up and use. My greatest issue is that it isn't back lit so it can't be used w/o a light on in the room. Returning it an purchasing a paperwhite instead.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Easy to use and navigate, purchasing books is fast and simple and I love the fact that I can password protect this device</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">The Amazon Kindle is light weight and easy to use.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I love hear readers, I had to replace mine because I destroyed the last, but it is awesome</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Love the simplicity. Also love that I use it for reading only and can't download distracting apps.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">My husband loves this Kindle. He has a muscular disease keeping him from being able to handle anything with much weight at all. This is perfect.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I've wanted a kindle for a while and decided to get it when BB put it on sale. I am not disappointed.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I have several Kindles so knew what to expect. It is a great reading device and I keep several in different locations.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I like this e reader, but wish the screen were higher resolution. It requires decent light to look good, but it is easy on my eyes. The screen updates involve flashing the whole screen, which I noticed less over time. The advertised month long battery life is just standby time, it lasts much less if you are downloading and reading books.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">My fiancée really enjoyes it! I would definitely recommend.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Simple, great buy for your money if you are an avid reader.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I like the changes that have been made since my current 4 year old unit was purchased</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Fits nicely in your hand and its touchable. increase the size of the fonts</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Great buy, do a lot of reading and he no glear screen is awesome while in the sun.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I lie the size and weight for the kindle-makes it very convenient to take large books with me in digital format.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Great price and works great for book reading. Would recommend</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Got it when it was on sale. Totally fall in love with it. Bring with it me everywhere.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I never used kindle before. My wife gifted me on my birthday. This is the amazing product. I am using it for daily reading. The display is fantastic and no strain on eyes.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I bought this with paper white and didn’t see much of a difference in terms of resolution and use. I totally recommend this reader as it’s so small and powerful!</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">The sales people are really nice and knowledgeable to me I will come back again</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I'm a longtime Kindle user and jumped at the opportunity to bring my granddaughter into the fold with this gift. She loved it!</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Overall good product, does what is advertised, comfortable to use.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">The kindle has come in very handy lately, I always have a book to read and this is great to just grab on the go. Battery life is great, only drawback is no backlight.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I am loving my new Kindle! I have wanted one for a while and finally bought one, and even though it was the cheapest one, it has exceeded my expectations. I love how there is no glare.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I already has an older version of the Kindle, but this one is even better. I love the touch screen and the ability to scroll without buttons.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Bought this for my 90+ year-old, totally no-tech mom. Her first e-book is Gone with the Wind. She likes the size and ease of use.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Amazon kindle products have always been reliable, consistent quality and this is no different. Very happy with it.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">working well and very cheap if we think in the price way</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">The battery doesn't last as long as was advertised, if you have the money I would recommend the backlit model.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">This Kindle doesn't have a lighted screen like the pricier models but it has a higher dpi screen than the lower model. It's exactly what I needed, nothing more, nothing less. I've had no problems with the reader at all so far so I'll give it 5 stars.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">The kindle is good to download apps for books catch up with reading</td>
<td class="column100 column4" data-column="column4">no</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
yes
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">After the first one stopped working after only 3 weeks-best Buy replaced it with no fuss and it's going great. Small, lightweight (so fits in a purse/handbag) and with the anti-glare screen you can read in direct sunlight</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I bought this Kindle Paperwhite for my son to use at school, instead of his more expensive and delicate tablet. The display options make it adaptable for just about anyone, and is much easier on the eyes when reading for an extended period of time. Please keep in mind that this does not have a glowlight. The Kindle is durable, and although I bought a case for it, a case really isnt necessary if you are relatively careful with it. The most surprising thing about this has been the extra long battery life. My son is an avid reader, and noticed that he needs to charge his Kindle considerably less than when he uses his tablet.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Great item, easy to use,would recommend to anybody want to use!</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I bought this as a gift to my dad and he loves it. Well worth if you dont plan on reading in dark.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">the future of reading you just have this and it is like a whole library</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I bought this for my daughter, wanting to get her a kindle without having access to games (like with the kindle fire). This latest version of the kindle is excellent. I am jealous of my daughter and now am thinking about upgrading from my older kindle. The touchscreen is responsive. If you like reading on the kindle, it is worth the update.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">This is a great way to read books on the go. There's no backlight, so reading in darker rooms may be hard. But it's affordable and portable and a great way to take all your books with you.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I love the Kindle, it is a great product. It reduces eye strain so I enjoy reading on it. This is my second Kindle.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">i bought this as a backup. I am currently using the same headphone.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">We got the Kindle for our daughter who accompanied us to try out the two Kindle models. We were willing to buy either one and we assumed she would want the more expensive one with the backlighting feature. But as she tried both, she gravitated with certainty toward the basic model. "Why would U want to read in the dark?" She said. As the weeks and months have gone by, she says she's completely happy with the basic Kindle, it's exactly what she wanted. Perfect.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Good, able to read under bright sunlight conditions too</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Very easy to handle. many books to choose from and very convenient</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I purchased this product because I love to read and buying books got costly. With this product I can read all I want for 10.00 a month</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">it is smaller than i thought but it gets the job done.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Love my new Kindle! I hadn't read in a while and hesitant of a kindle, easy to use, lightweight and convenient to pick up a book. great for outdoor reading. only downside is if you want to read in the dark has no back light. crisp clear text and easy to set up.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Product is good, light. Amazing battery backup. I charge the Kindle one in 4 weeks. Great product for reasonable price. USB connection is easy, Books are easy to download. Overall, everyone must have Kindle with them and this is the best product/model to start with.Understandably, this is the beginner level model for people who never used Kindle before. Features like LED lights, White paper background are not available on this model. These features are there on higher models so one cannot read it in Dark without lights. But again, for this price you would not get any other good readers.If you are someone who reads in dark then I would suggest go for Higher Kindle models.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Kindle is the perfect E-reader. Easy to use and size is perfect to bring 'book' on the go.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Easy to use and it arrived exactly as described. Good beginner device for youngsters who want a device to read from.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Looking at the picture and seeing it was 8th generation I assumed it would be a great device. I had an original Kindle but I stopped using it because it wasn't backlit. I thought an 8th generation would be backlit and the picture makes it look backlit but it is not. After 25 minutes on the phone with Amazon trying to make it brighter the technician finally realized that 8th generation is not supported with backlights. I took it back to Target and purchased The Paperwhite which was more money but definitely worth it. The 8th generation one is smaller so I assumed that was the reason for the price difference. Target made the experience pleasant.</td>
<td class="column100 column4" data-column="column4">no</td>
<td class="column100 column5" data-column="column5">yes</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">My fiance really enjoyes it! I would definitely recommend.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">For me, the Kindle Black was not a good fit for me. There are times I read at night in bed when my husband is sleeping. This model doesn't have a back light so I'm unable to read at night without turning on a light and waking up my husband.So I returned and went for a Kindle Fire.</td>
<td class="column100 column4" data-column="column4">no</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
yes
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">It is still the best device for buying books and reading them. However, go with kindle paperwhite if you read books in dark places.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">Great product and service and the sales man r really nice.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">When you first turn on the kindle, the home screen does not make it easy to determine exactly how to open up and read a downloaded book.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">My wife loves it, replaces a Kindle from like 2003.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">It's small, light, and easy to read from. I just wish I would have spent the extra 30 bucks and got the paperwhite. The more i use this one the more I wish I had the option of a backlight. If you're on the fence as I was, go with the paperwhite! However if the backlight is not an issue, this device is great and I would recommend it.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">This device is good for entry level reader only in daylight.Its doesnot support reading in dark. To read in dark you will have to purchase a light or cover case with light attached. I either case it will put a lot of strain in your eyes.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I love my new Kindle. The size is perfect. It fits right in my purse. Easy to navigate and I love the touch screen. I am able to read outside without a glare. Only flaw is that it is not backlit, so in order to read in the dark I need a book light. I don't mind that so much, I just wish kindle would come out with a case for this Kindle with a built in book light like they did for the first generation Kindle.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">it would not load my books proper. took a dozen tries erasing an dreregistering. screen too dark</td>
<td class="column100 column4" data-column="column4">no</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
yes
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">I bought this for my daughter. It is our 4th Kindle bought within the family. The touchscreen is great and my daughter loves it. In fact, those of us with older model Kindles are jealous.</td>
<td class="column100 column4" data-column="column4">yes</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
no
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>
<td class="column100 column3" data-column="column3">This is a pretty cool little device. Im able to download books through wireless and read them later at my convenience. Only drawback is I wish it had more storage. But for the price, it works good.</td>
<td class="column100 column4" data-column="column4">no</td>
<td class="column100 column5" data-column="column5">no</td>
<td class="column100 column6" data-column="column6">
yes
</td>
</tr>
<tr class="row100">
<td class="column100 column1" data-column="column1">AVqVGZNvQMlgsOJE6eUY</td>
<td class="column100 column2" data-column="column2">Amazon Kindle E-Reader 6" Wifi (8th Generation, 2016)</td>