-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBooks_small.json
1000 lines (1000 loc) · 771 KB
/
Books_small.json
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
{"reviewerID": "A1E5ZR1Z4OQJG", "asin": "1495329321", "reviewerName": "Pure Jonel \"Pure Jonel\"", "helpful": [0, 0], "reviewText": "Da Silva takes the divine by storm with this unique new novel. She develops a world unlike any others while keeping it firmly in the real world. This is a very well written and entertaining novel. I was quite impressed and intrigued by the way that this solid storyline was developed, bringing the readers right into the world of the story. I was engaged throughout and definitely enjoyed my time spent reading it.I loved the character development in this novel. Da Silva creates a cast of high school students who actually act like high school students. I really appreciated the fact that none of them were thrown into situations far beyond their years, nor did they deal with events as if they had decades of life experience under their belts. It was very refreshing and added to the realism and impact of the novel. The friendships between the characters in this novel were also truly touching.Overall, this novel was fantastic. I can’t wait to read more and to find out what happens next in the series. I’d definitely recommend this debut novel by Da Silva to those who want a little YA fun with a completely unique & shocking storyline.Please note that I received a complimentary copy of this work in exchange for an honest review.", "overall": 4.0, "summary": "An amazing first novel", "unixReviewTime": 1396137600, "reviewTime": "03 30, 2014"}
{"reviewerID": "A30PZPI6FPH0A7", "asin": "0399157565", "reviewerName": "Jackmollie", "helpful": [0, 0], "reviewText": "For me personally it's the most disappointing book I have ready re: Kay Scarpetta. I generally can't put a Cornwell book down, but I had to force myself to keep reading it. Hard to stay focused when half a book describes approximately 4-6 hours.", "overall": 2.0, "summary": "disappointed", "unixReviewTime": 1400112000, "reviewTime": "05 15, 2014"}
{"reviewerID": "A1GQ2UI5BKCCRD", "asin": "0984528105", "reviewerName": "Gail Hodges", "helpful": [0, 0], "reviewText": "Very simple book, but leaves you feeling good. No over the top sex scenes, no graphic violence. Just a simple book that talks touches on child abuse and dysfunction in a family. I liked it because the author did not go into graphic detail about the abuse, but instead focused how it affected the people involved. Good story, good characters.", "overall": 4.0, "summary": "Good book", "unixReviewTime": 1401235200, "reviewTime": "05 28, 2014"}
{"reviewerID": "A2DF4LQQI6KSQ2", "asin": "0804139024", "reviewerName": "Olga", "helpful": [0, 0], "reviewText": "I read a library copy of this exceptionally well-written novel, and bought it as a gift for my son-in-law (a theoretical particle physicist) who is hard to buy for. This is a thriller, with problems and solutions unfolding one after another, and overlapping. There is science (always explained) and there is humor. It's been a while since I read a book I enjoyed so much.", "overall": 5.0, "summary": "Science Fiction at its best!", "unixReviewTime": 1396483200, "reviewTime": "04 3, 2014"}
{"reviewerID": "A1UAMAWY966P2", "asin": "0765317583", "reviewerName": "Nadyne M Ichimura", "helpful": [0, 0], "reviewText": "With the government knowing this could happen and not telling anyone then this is a good story of what would happen if an emp attack happened.", "overall": 5.0, "summary": "Excellent story", "unixReviewTime": 1397001600, "reviewTime": "04 9, 2014"}
{"reviewerID": "A37XLAHHT78YAP", "asin": "0606238409", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Love the book, great story line, keeps you entertained.for a first novel from this author she did a great job, Would definitely recommend!", "overall": 4.0, "summary": "great book!", "unixReviewTime": 1390176000, "reviewTime": "01 20, 2014"}
{"reviewerID": "AUXAGCDGL3RZP", "asin": "B00FJKDYWW", "reviewerName": "merman", "helpful": [1, 1], "reviewText": "A well written fast paced story with twists and surprises around every corner and of course a wonderful love story too.", "overall": 5.0, "summary": "Another Winner!", "unixReviewTime": 1399593600, "reviewTime": "05 9, 2014"}
{"reviewerID": "ATT15IFF1UBAQ", "asin": "0060781939", "reviewerName": "A. Nuhanovic \"AlNuhano\"", "helpful": [0, 0], "reviewText": "It was good....there is a lot going on with multiple characters, I guess setting up for the whole series and introducing the upcoming leading Duchesses.", "overall": 4.0, "summary": "Very fast paced", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A3DIRR3JME6UPQ", "asin": "1495307352", "reviewerName": "Shugabean", "helpful": [0, 0], "reviewText": "I sit here, in tears. I don't even know what to say. Never have I ever read anything like this. How does it end here? My heart is broken, but it's full. I don't know that I will ever be able to read this book again, but it know that I will never, ever forget it. Do I recommend this book? Absolutely. And no, I don't. Nothing is what it seemed and I am sitting here, thinking, what am I supposed to do now. The ending is perfect. The ending is horrible and I want something different. I read for entertainment. To be happy or frightened or whatever emotion. Right now, there are too many conflicting emotions. I'm glad I read this book, but I wish I had never picked it up. I haven't check to see if there is going to be more to the story, because I don't want to hope, then again I don't want to changeWhat happens. Basically, I am a confused mess. And I love it.", "overall": 5.0, "summary": "What just happened??", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "A3I7EO9OU6YAY", "asin": "1492254398", "reviewerName": "whitfield25", "helpful": [1, 1], "reviewText": "Loved it! Could not put it down! The only thing worse than having a deadly stalker, is that no one believes that you have a deadly stalker. Skye Sullivan KNOWS that someone ran her off the road and ended her dancing career. So how does she prove it? Trace, the man Skye has loved since she was 15 years old, is now a prime suspect. Now what? This book has you guessing all the way to the shocking end! Nicely Done!", "overall": 5.0, "summary": "A Real Page Turner!", "unixReviewTime": 1396137600, "reviewTime": "03 30, 2014"}
{"reviewerID": "AG80AJGQMMYNU", "asin": "1250000971", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Great read! Can't wait to start the next installment. Enjoyed this installment as much as the first. sometimes got a little confused on sub character's names.", "overall": 5.0, "summary": "enjoyed", "unixReviewTime": 1402012800, "reviewTime": "06 6, 2014"}
{"reviewerID": "A2L9YZC8GO8PCA", "asin": "1496101391", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "I'm not sure what to say about this book. Interesting plot idea but poorly executed. I finished it and it wasn't the worst book ever but isn't something I would recommend to anyone. And not worth the $2.99 I paid for it. Also needs some serious editing.", "overall": 3.0, "summary": "Ummmmm", "unixReviewTime": 1395705600, "reviewTime": "03 25, 2014"}
{"reviewerID": "A1UC9L30CZN5MF", "asin": "B00EBZMKXA", "reviewerName": "John Schlegel", "helpful": [0, 0], "reviewText": "This is a prologue to his new book "Innocence". I don't know what the idea was behind separating this from the book. Maybe is was to make a few extra dollars but for the cost, it was worth it.", "overall": 4.0, "summary": "OK for a short story", "unixReviewTime": 1388793600, "reviewTime": "01 4, 2014"}
{"reviewerID": "AL3Y69LODZTP8", "asin": "0449908585", "reviewerName": "Dropletform \"Drop\"", "helpful": [0, 0], "reviewText": "I liked the interwoven personal drama, set off against the genuine tribulations of being a sole traveller on a mission, in what is quite frankly a difficult part of the world to navigateSuccessfully debunking the paradise myth as well as adding a footnote to anthropology's generally poor track record in this part of the world is a bonus", "overall": 4.0, "summary": "More good stuff from Theroux", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A1D4CP1KNYDTBT", "asin": "1480225649", "reviewerName": "t. Mallory", "helpful": [0, 0], "reviewText": "I can't say enough good things about this book. An epic romance with the hot guy and insecure hot girl. I keep reading it over and over. The whole series rocks! All I can say is.....more Mason, Sam, and Logan please!", "overall": 5.0, "summary": "AWESOME TEEN ROMANCE", "unixReviewTime": 1400457600, "reviewTime": "05 19, 2014"}
{"reviewerID": "A2LFV2A4SVN1HU", "asin": "1451638833", "reviewerName": "NuForce", "helpful": [0, 0], "reviewText": "This novel has everything a sci-fi reader is looking for; Mysteries, Conspiracies, Space Travel, and Aliens.Love the story. Can't wait to see where it take me.Nu", "overall": 5.0, "summary": "Great Plot", "unixReviewTime": 1388793600, "reviewTime": "01 4, 2014"}
{"reviewerID": "AI6Q4UETJR85X", "asin": "161109884X", "reviewerName": "sblettuce", "helpful": [0, 0], "reviewText": "This fabulous story just can't be missed. Will keep the pages turning nonstop. Ended too soon and begged for more.", "overall": 5.0, "summary": "Melinda Leigh", "unixReviewTime": 1401667200, "reviewTime": "06 2, 2014"}
{"reviewerID": "A1WR5OUT03E3M8", "asin": "B00KKPKAAU", "reviewerName": "S. Lacey", "helpful": [1, 1], "reviewText": "Really enjoyed this instalment of the series! Finally Honor and Grayson get together, we've all been waiting for this since Brutes book! I feel bad for what happened to her in London so I cheered when she finally let go her rage and went for Angus' throat in the story! It was a long journey for her to get to that stage, she'd had a lot of healing to do but when she let go of her fear and attacked him I couldn't help the smile on my face!I loved how patient Grayson was with her throughout the book, helping her heal. I also loved that we seen another side of Alex and Maya when they were dealing with Honor at the start but my favourite thing about Ridgeville was how they all came together to help Honor in any way they could. The chemistry between Grayson and Honor was amazing and they certainly built the sexual tension between them until Honor was ready to mate with Grayson. She had some demons to face before she could be in the right headspace to mate with Grayson without freaking out!I hope there are more Ridgeville books as there are a few characters we didn't see (two we heard mentioned, one who appeared and a new character I'd like more off) that I'd like to see get their HEA, like the Mastin sisters and Stone as well as Deuce's sister too.", "overall": 5.0, "summary": "Excellant!", "unixReviewTime": 1401753600, "reviewTime": "06 3, 2014"}
{"reviewerID": "A3I75NCAT0LOVP", "asin": "0007386648", "reviewerName": "MaryAW \"Animal Woman\"", "helpful": [0, 0], "reviewText": "I had not previously read this author but heard a review of this book on the radio and knew I had to read it. Even we baby-boomers have huge gaps in our knowledge of World War II - Unbroken fills in gaps and brings it home to the reader. I recommend it to readers of all ages. Our fathers and grandfathers who fought this war didn't think they were doing anything but their job. Those, like Louie, who became POWs, found courage they never thought they'd have. As I read this, I wondered what I would have done in his place. I read this book in two sittings.", "overall": 5.0, "summary": "Couldn't put it down", "unixReviewTime": 1391644800, "reviewTime": "02 6, 2014"}
{"reviewerID": "A2ZNEK7BN659CT", "asin": "0991310632", "reviewerName": "Young at heart grandma", "helpful": [3, 3], "reviewText": "I have had the privilege of being a beta reader for this new aspiring author and one of her biggest critics. As an older woman, 60+, I will always be a bit shocked at the explicit sex scenes in romance novels, however, this book has a story that is deep and moving which holds you right down to the last sentence. I loved the humor that was infused throughout the book. I laughed out loud, and shed a few tears. (not the norm for me, especially the laughter) The author was able to give me a book that I didn't want to put down until I finished, and what truly surprised me was that I enjoyed reading it a second and third time, normally, I am not one to even watch a movie twice. (I did that as a beta reader to give the best feedback that I could, but really enjoyed it each time discovering nuances in the story that I'd missed the time before.) I would recommend this book to lovers of Romance Novels who enjoy story lines like Nicholas Sparks has written and aren't turned-off by a bit of the \"Fifty-shades\" explicitness. Great read!", "overall": 5.0, "summary": "Wonderful mix of tears, laughter, tenderness and sensuality.", "unixReviewTime": 1392854400, "reviewTime": "02 20, 2014"}
{"reviewerID": "A2J0H9EMVV812K", "asin": "0307395987", "reviewerName": "Joanne Hudson", "helpful": [1, 1], "reviewText": "I'm reading with a big grin on my face. THAT'S ME!!! And John has the answers. You may not realize how wonderful it is to know why I stood alone on the playground watching the other kids play games. It was like one of us was from another planet and I wasn't sure which of us. In my case I could count on the fingers of one hand the children I'd seen by kindergarten. And why do teachers approach the one child standing alone and tell him/her to go join the group? Break it down a little for Pete's sake. I didn't try to teach kids the 'right' way; I just didn't know what the heck to do with them at all. Loving it. Loving it.", "overall": 5.0, "summary": "Coming Home", "unixReviewTime": 1398988800, "reviewTime": "05 2, 2014"}
{"reviewerID": "A1OVWNG0NDPEY7", "asin": "1938857437", "reviewerName": "Lost In Romance Books", "helpful": [0, 0], "reviewText": "Cambria Hebert is an author that I wait anxiously for her next book, knowing I will love it and Tattoo, does not disappoint. I loved her novel, Text, and this reminds me a lot of that book due to the suspense and immediate chemistry between the male and female lead. Brody, a cop coming from years undercover, is rusty at following his emotions. Taylor, an unspoiled beauty, determined to see under his facade. The story starts out with a bang and the action doesn't stop. As with all of her writings, it is well written, great dialog, fast paced, and pulls you in immediately! Cambria - Text was my favorite, but Tattoo gives it a run for its money!", "overall": 5.0, "summary": "Another Hit by Cambria Hebert!", "unixReviewTime": 1395100800, "reviewTime": "03 18, 2014"}
{"reviewerID": "A2XNZ8PF6R8ZCY", "asin": "1589267109", "reviewerName": "Carpe Librum", "helpful": [2, 3], "reviewText": "This book seems to create strong feelings in all who read it. It certainly came to me highly recommended. My husband and I read this book along with the companion workbook with 4 other couples, and it was and arduous journey. For our group of Christian couples in happy marriages, there was just too much that did not apply to us. Sure, we each picked up a handy tip here and there, but it wasn't enough considering the length and repetitiveness of this book.I agree with the basis of Eggerichs' main point in this book: If she gets the love she needs, she will give him the respect he needs, which will cause him to give her the love she needs. You get it - it's the cycle of love and respect. I gave it to you in one sentence instead of 24 chapters. If this book was about a third the length, I probably would have rated it at least 1-star higher.Every time our group met after the first time, we felt like we were struggling to get something new out of what we had read. The workbook is even worse. The questions are extremely verbose restatements of what is already written in the chapters, and there are a lot of them. Each couple would need to invest a couple of hours into each session, only to feel like we were trudging through the same material each time.We were also disappointed by the lack of scriptural references. Though the book is loosely based on Ephesians 5, the author rarely includes scripture in the chapters and more often uses letters from happy Love & Respect retreat participants as teaching tools. Our group was hoping for more Biblical discussion than what we got.If your marriage needs work and you and your spouse have trouble supporting each other and understanding each other's point of view, this book may help you. If you are looking for a good small group discussion book for a group of happily married couples, I would urge you to pass. In fact, run away.", "overall": 2.0, "summary": "Very Repetitive", "unixReviewTime": 1391904000, "reviewTime": "02 9, 2014"}
{"reviewerID": "A1U8AXA4IQ8GYK", "asin": "B00G19AZTK", "reviewerName": "Amazon Customer", "helpful": [1, 1], "reviewText": "This book was disturbing, addressing several controversial topics. It's not for the squeamish. I would have given it five stars, but the dialogue was a little off in some places.", "overall": 4.0, "summary": "Disturbing", "unixReviewTime": 1404777600, "reviewTime": "07 8, 2014"}
{"reviewerID": "A1TL9VWF849YPD", "asin": "B00HGSV6I4", "reviewerName": "Judy L. Miller", "helpful": [0, 0], "reviewText": "Good plot/mystery and a strong woman investigator. A little humor and a little romance whats not to like. A very good cozy read. Read all 3 books in this series and liked each one.", "overall": 4.0, "summary": "good series", "unixReviewTime": 1401235200, "reviewTime": "05 28, 2014"}
{"reviewerID": "A2JC0AB581NIX6", "asin": "1481928430", "reviewerName": "Margaret Stevens \"Peg of the red pencil\"", "helpful": [0, 0], "reviewText": "I was intrigued by the basic premise of the book. Dr Morgan Sierra wears a stone on a thong around her neck, as does her sister. When her sister and niece are kidnapped, Morgan is told she must collect 10 other stones, called the Pentecost stones, from around the world to save them. These stones, one for each Apostle, were originally carved from the stone that closed Jesus' tomb. I was impressed by the meticulous research into the lives of the original apostles and I liked the feeling of authenticity in the scene settings. In this day and age of faltering belief, this is a good book to read even if it is fiction.", "overall": 3.0, "summary": "Very Well Researched", "unixReviewTime": 1391472000, "reviewTime": "02 4, 2014"}
{"reviewerID": "A28MCBT6E2QTDM", "asin": "B00JCYUS4I", "reviewerName": "stef75949", "helpful": [0, 0], "reviewText": "There's something about a hot fighter with anger issues. Loved this book the emotional roller coaster keeps you wanting more", "overall": 5.0, "summary": "awesome", "unixReviewTime": 1398816000, "reviewTime": "04 30, 2014"}
{"reviewerID": "AEPFI9LXLFVPZ", "asin": "1416208461", "reviewerName": "DeeAnn", "helpful": [0, 0], "reviewText": "Very cute!", "overall": 4.0, "summary": "Four Stars", "unixReviewTime": 1404345600, "reviewTime": "07 3, 2014"}
{"reviewerID": "A3F1T8R9CVNPSN", "asin": "0316098329", "reviewerName": "Eileen M Brisbane", "helpful": [0, 0], "reviewText": "What a beautifully written book from a child's unknowing limited perspective. So innocent the way Jack takes every spoken word literally that it made me more conscientious when speaking with my grandchildren.", "overall": 5.0, "summary": "Sad yet moving", "unixReviewTime": 1400112000, "reviewTime": "05 15, 2014"}
{"reviewerID": "A31W30UXKXNNRM", "asin": "1595543783", "reviewerName": "AntKathie", "helpful": [0, 0], "reviewText": "I recommend this book to anyone who wants non-stop suspense. My rating is personal,because I don't like non-stop suspense. I'll still try the next book in this series and hope it isn't quite so tense. I know there's a lot of bad people in this world. I choose not to read about the sick people who hurt children. I read for entertainment and don't find psychos enjoyable.", "overall": 3.0, "summary": "Not much of a sanctuary", "unixReviewTime": 1394668800, "reviewTime": "03 13, 2014"}
{"reviewerID": "A2PNJCX5LJOUKG", "asin": "B00BF3EILI", "reviewerName": "Lisa/Sonya", "helpful": [0, 2], "reviewText": "I read a sample and it seemed ok. The price was pretty high. Took a chance and sad that I did. Main characters were total idiots. Felt like my kid wrote his S***. Refund please!", "overall": 1.0, "summary": "Don't waste your time or money.", "unixReviewTime": 1400284800, "reviewTime": "05 17, 2014"}
{"reviewerID": "A2HYHQHSRIUZ64", "asin": "0670026077", "reviewerName": "avidreader", "helpful": [0, 0], "reviewText": "If you are looking for a book of fun facts on Elizabethan England than this is a good book for your collection. I wouldn't rely on it solely if you are buying it for research purposes, but for a basic overview I would recommend it.", "overall": 5.0, "summary": "Fun Book", "unixReviewTime": 1394409600, "reviewTime": "03 10, 2014"}
{"reviewerID": "A1N4DZQD6XINNY", "asin": "1597489417", "reviewerName": "Ash-Morning Books&Coffee", "helpful": [0, 0], "reviewText": "I guess this book was not for me I didn't even finish it I think I wanted ore context from the author I didn't really feel I. Touch with the characters", "overall": 2.0, "summary": "Blah", "unixReviewTime": 1402444800, "reviewTime": "06 11, 2014"}
{"reviewerID": "AWYTHDO9JOSMN", "asin": "0307379418", "reviewerName": "Frank Hasty", "helpful": [2, 3], "reviewText": "I enjoy reading science, mainly "popular science", Hawking usually loses me at about the second page though my career was Mechanical Engineering.As a designer I always believed that a building, steam or chemical system should be built and used as it was designed to be used. There may be some things that seem odd or are hard to understand to you,...BUT.... But, the designer just may have had some information that you as a builder or operator are not privy to.The same applies to most of "us". Dr. Lieberman clearly describes how we came about and how far we humans have drifted away from the designers intent. We enjoy escargot but avoid worms and most insects. Our ancestors would not have turned their noses up at either...raw.And and how that drift has caused us some pain and suffering. His terms are "Mismatch" and "Dysevolution". We have come so far in fact that "changing back" isn't always easy.Lieberman stresses two things, diet, and exercise. Our cousins, the Chimps and Gorillas spend much of the day walking and searching for food, they chew a while, sometimes rest a while and then start over. Walking is good! I believe he states it is almost as good for our bodies as running. At 82 I like that! Sometimes running is good, especially when a hyena or wild dog becomes interested in you. If it's a Cheeta or Leopard you're in big trouble.Actually some food can be better for us by cooking. Meat is easier to chew and now what we eat rarely has fur in it or fleas or maggots, which probably would have been eaten.The book is written for "us", it is easily understood by laymen. I recommend it to anyone, in fact I sent a copy to a granddaughter who is a runner and mostly vegetarian.", "overall": 5.0, "summary": "Enlightening, Throughly enjoyable", "unixReviewTime": 1399507200, "reviewTime": "05 8, 2014"}
{"reviewerID": "A1V26OY1Q9R8W1", "asin": "1442359315", "reviewerName": "Clara R. Lewis", "helpful": [4, 10], "reviewText": "I don't believe his story. He doesn't give me a valid reason to believe him. I think he has issues that need exploring.", "overall": 1.0, "summary": "Not yet", "unixReviewTime": 1393804800, "reviewTime": "03 3, 2014"}
{"reviewerID": "A24YDF71Q2GD34", "asin": "1606390139", "reviewerName": "Milky Lee \"CerealRider\"", "helpful": [0, 0], "reviewText": "I recommend this book to those that enjoy original, honest stories. Sometimes funny, sometimes as this story will pull you in.", "overall": 4.0, "summary": "Great Read", "unixReviewTime": 1389744000, "reviewTime": "01 15, 2014"}
{"reviewerID": "AG2FG9T3K126Q", "asin": "B00L2SHKC0", "reviewerName": "SJ KS Reader", "helpful": [0, 0], "reviewText": "I really enjoyed this book. It was a well written, easy, fun read. I loved getting to know Brad, Morgan and their friends. Can't wait for more from this author.", "overall": 5.0, "summary": "Great book.", "unixReviewTime": 1403136000, "reviewTime": "06 19, 2014"}
{"reviewerID": "A2QNK3GV9RU37", "asin": "1477595651", "reviewerName": "J. Budde \"Sarge1998\"", "helpful": [0, 0], "reviewText": "It looks like I'm going to finish all 5 books during the month of March, that should tell you what you need to know.", "overall": 5.0, "summary": "Mageborn: Book 3", "unixReviewTime": 1395273600, "reviewTime": "03 20, 2014"}
{"reviewerID": "A2YRN4DVJZ8THZ", "asin": "1623153204", "reviewerName": "Melinda Morelli \"MelAM\"", "helpful": [0, 0], "reviewText": "Sugar Detox for Beginners suggests some serious cuts to your diet. But this is because there is so much sugar in what we eat. From the sugar we know to look for to the hidden sugars that make all of our favorite foods taste so good.The diet suggested by this book is intensive and is more in the mode of a lifestyle change than a mere diet. That said the book offers a lot of help with detailed meal plans to help you through 3, 15, or 30 day sugar detox. Be sure to try the Salmon Teriyaki and any of the Quinoa dishes.", "overall": 4.0, "summary": "Need Help Cutting Down on Your Sugar Intake?", "unixReviewTime": 1389225600, "reviewTime": "01 9, 2014"}
{"reviewerID": "ADRCHQA7VH0SV", "asin": "1612183026", "reviewerName": "Diane S", "helpful": [0, 0], "reviewText": "This would make a excellent movie. Definitely not a typical chemical spill story. Great characters, great story line, and a great twist! I just love her her characters. She draws you into their world so well. Would have liked more details about what happened to the other characters at the end though. I'm really looking forward to her next book. I've enjoyed her all of her books so far but I enjoyed this one the most.", "overall": 5.0, "summary": "What a twist!", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "A33ZWZDINGU1EF", "asin": "0062516590", "reviewerName": "Margaret Kilbride", "helpful": [0, 0], "reviewText": "The magnitude of the love and dedication Julia Hill fills you with as her and Lunas story unfolds is nothing short of spiritual. The tragedy of our clear cutting our old growth forests is as ignorant and evil as our disregard for all sentient beings. Read this book, it will humble you and change your life.", "overall": 5.0, "summary": "Truly Inspiring", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "A1BFC0KY3HJLL6", "asin": "1480170445", "reviewerName": "Librarydragon", "helpful": [1, 2], "reviewText": "This story is fairly forgetable, I know because I read it once and then forgot it. It tried to be exciting, but it missed the mark. I didn't feel that the main character acted in a natural way; I don't care if you are a seasoned FBI agent, you don't insist on getting up and going to work the morning after your daughter is kidnapped.The other aspect of the novel, the cause of the financial meltdown of 2008, is probably more fact than fiction, but it is so complicated it would be hard to really understand unless you were a trained accountant. If the author really wanted to expose the corruption of the financial industry he probably should have chosen a different vehicle, because this isn't going to draw the attention of anybody.", "overall": 2.0, "summary": "forgetable", "unixReviewTime": 1394150400, "reviewTime": "03 7, 2014"}
{"reviewerID": "A5C1OSL3V49EV", "asin": "1612182739", "reviewerName": "Kerry", "helpful": [2, 2], "reviewText": "Not my type of mystery. Was able to determine \"who done it\" at onset of mystery. Not enough tension between possible love interests and other romantic option (Chris and Craig) was pretty weird. Peek into art world, specifically Georgia O'Keefe, was interesting, but not enough to save the book.", "overall": 2.0, "summary": "Transparent and predictable", "unixReviewTime": 1390089600, "reviewTime": "01 19, 2014"}
{"reviewerID": "AQMLY68U3MO1P", "asin": "1613747187", "reviewerName": "Robert William Kirkpatrick", "helpful": [0, 0], "reviewText": "It is hard to believe what you are reading in this account of this most amazing woman. Her story, well told, drives within us all the search to see what hidden goals need to be expressed despite what family, friends, and the rest of the world might think are impossible.", "overall": 5.0, "summary": "Amazing account of an amazing woman", "unixReviewTime": 1398556800, "reviewTime": "04 27, 2014"}
{"reviewerID": "A6GFZYL4A8AT9", "asin": "1933495065", "reviewerName": "J. A. Sindelar", "helpful": [0, 0], "reviewText": "Originally a good tool to get teens to begin career exploration, this might proceed a bit to slowly to keep today's young people interested. While the concepts are still relevant, the over stimulated youth of today need a quicker layout of the facts.I was taken aback that this text remained loaded with typos and grammatical errors.", "overall": 2.0, "summary": "O.K. For beginning career search", "unixReviewTime": 1390867200, "reviewTime": "01 28, 2014"}
{"reviewerID": "A1JI317V2CUPEO", "asin": "0374264260", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "I loved the book even more than the movie. Its painfully real and really witty and funny. I loved it.", "overall": 5.0, "summary": "Witty and Real", "unixReviewTime": 1389744000, "reviewTime": "01 15, 2014"}
{"reviewerID": "A176MZK64XEWFN", "asin": "0804801967", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Book is well written and enjoyable to read. It was a fairly quick read too. The characters are Interesting too. BUT, the Keanu Reeves movie is nothing like it. The movie is good in its own rights but there should be almost no comparison between the two. Its simply historical fact versus Hollywood schlock!", "overall": 4.0, "summary": "Cool story......even cooler that it is based upon. historical fact.", "unixReviewTime": 1403308800, "reviewTime": "06 21, 2014"}
{"reviewerID": "A20HBSYMB7BJ5Z", "asin": "0312951299", "reviewerName": "James G Frey", "helpful": [0, 0], "reviewText": "M C Beaton is always fun. This is the first time I've read this series. Hope there are many more.", "overall": 5.0, "summary": "such fun", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A116HRWRAF4F0N", "asin": "B00H4EXZEI", "reviewerName": "Henry", "helpful": [2, 2], "reviewText": "This book \"Road to Siran\"is my second book from the same author and he portrays the characters in such a way that it captivates all our hearts. His book \"Voice of conscience\" is a real masterpiece and I enjoyed reading it to the core of my heart. This book \"Road to Siran\" comes as a sequel to his previous work. He stimulates the reader by evaluating the characters in such a way that it gives the readers a feel of freshness.The story starts with the old reminiscence of Erin from JFK international Airport and from where the author's writing took off with a momentum. The Character Erin is represented as a person with great interest on Ballet dancing and reading books. Her fathers death had made a strong imprint on her mind which resulted in exploring to know more about her Dad. Another character by name Elicia, friend of Erin is portrayed in a memorable way, she often changes her boyfriend and comes out as an high energetic character. The communication amid Erin and Elicia in the high school brings out our own memories during those good old days, they were depicted as naughty and gets captivated to their opposite gender. The righteous Turkish Ozcan, very pretentious in nature to whom Erin got attracted at their first introduction.The author brings in equal mixture of Romance and thrill in his book, especially the non-verbal communication between Erin and Ozcan is a unique way of illustration . The unfathomable writing of his book makes the readers to associate with it emotionally which is the key triumph for the author. All the readers would enjoy and will experience enchanting feeling of love in this book. The greatest truth that actions of one will be the deciding factor of course of events in his life is nicely depicted by Kaya.", "overall": 5.0, "summary": "A Tale of Love", "unixReviewTime": 1390176000, "reviewTime": "01 20, 2014"}
{"reviewerID": "A13TSHRPNBZ48G", "asin": "B00KP5P2EY", "reviewerName": "L. Laskie \"Swillpup\"", "helpful": [1, 1], "reviewText": "Author had me in the first few pages, it initially reminded me of The Hunger Games, which I loved.Wonderfully descriptive characters and scenes make you feel like you are in the story and participating right along side of these two would be Hunters. This tale keeps you on the edge of your seat with lots of action and with a smattering of mystery and intrigue thrown in for good measure.I Loved It! I would highly recommend this book to all readers.Keep up the great work, Kaye! You knocked it outa the ballpark with this one, please give us more.", "overall": 4.0, "summary": "Knocked it outa the park!!!", "unixReviewTime": 1401840000, "reviewTime": "06 4, 2014"}
{"reviewerID": "A184TZN9UC2EZC", "asin": "0804138818", "reviewerName": "loriltx", "helpful": [1, 1], "reviewText": "I wanted to give up on this book several times in the beginning, but stuck with it based on other reviews as well as my own rule (albeit not hard fast) that I stick with a book to at least 50%. I am glad I did.While I did not love it, my lack of love was based on the total lack of a likeable character. The only redeeming value of the main character and narrator was the love he had for his daughters. The writing is superb with a well thought out and suspenseful plot. I was somewhat confused by the ending--not sure if the author just did not know how to tie up everything and resorted to resolutions that were just unrealistic or whether his ending was calculated to show that even the narrator's love for his daughters was not real and that he was therefore just as despicable as the other characters.", "overall": 4.0, "summary": "If you're looking for a warm and fuzzy read-this ain't it!", "unixReviewTime": 1404345600, "reviewTime": "07 3, 2014"}
{"reviewerID": "A3JYXUKQTYGG7A", "asin": "0547892624", "reviewerName": "James E. Barnwell \"Jim\"", "helpful": [0, 0], "reviewText": "I don't know what I was expecting but it wasn't a book about multiple affairs, drug use and lots of f words. I have always admired her talent, now I think she would have wise to have been more prudent about her private life.", "overall": 3.0, "summary": "Not the LaVerne I Knew", "unixReviewTime": 1391990400, "reviewTime": "02 10, 2014"}
{"reviewerID": "A2ITTZV7SZ30DZ", "asin": "1402258283", "reviewerName": "Rhonda", "helpful": [0, 0], "reviewText": "I completely enjoyed this book! I haven't read the first two books in the Nexus series but I was able to pick this book up and follow along completely. I'm definitely reading more about the Nexus!I received a galley copy of this book in exchange for an honest review.", "overall": 5.0, "summary": "loved the suspense", "unixReviewTime": 1388620800, "reviewTime": "01 2, 2014"}
{"reviewerID": "A3GOATL4T00AKA", "asin": "0307930467", "reviewerName": "Logan S. McDougal", "helpful": [0, 0], "reviewText": "My 5th grade son and I both enjoyed the variety of characters and preview of what to expect in middle school", "overall": 5.0, "summary": "Fab sequel. just as good as the first book", "unixReviewTime": 1399420800, "reviewTime": "05 7, 2014"}
{"reviewerID": "A1F1N09JY8FXQ2", "asin": "1250058236", "reviewerName": "Erline I. Iacaboni \"book devour\"", "helpful": [1, 2], "reviewText": "I can't say enough good things about thus book! Besides it's written by a man & seeing a man write erotica gives u a rare insight to the other side! The writing was great, idea & plot xcellent! I've absolutely fell in love with the characters! Angst in abundance But out herione has a spine of steele which I love to see, a woman that knows what she wants & fights for it & the man that fell for her! Love love love Matt!!", "overall": 5.0, "summary": "Excellent!!!!Hot Hot Hot!!!", "unixReviewTime": 1388966400, "reviewTime": "01 6, 2014"}
{"reviewerID": "A1098Z3D7ENJ2F", "asin": "B00GVQOJZ4", "reviewerName": "veronica mostel", "helpful": [0, 0], "reviewText": "WOW. THESE BOOKS ARE GREAT. CANNOT WAIT FOR THE NEXT. GLAD TO SEE FRIENDS HELPING EACH OTHER AND PULLING THROUGH THE TOUGH TIMES", "overall": 5.0, "summary": "LOVED IT", "unixReviewTime": 1398038400, "reviewTime": "04 21, 2014"}
{"reviewerID": "A1SKME00QMJR6", "asin": "B0086BG8EW", "reviewerName": "J. Robideau \"Rob\"", "helpful": [1, 1], "reviewText": "The author does a wonderful job of merging the spiritual motivation with the practical advice and techniques for getting started. He doesn't just use Bible verses to make his points, but also the words and advice of renowned artists, authors, and creators.This book deals with the common objections and problems that people have when they face the reality of creating something. There is practical advice for setting the right expectations, creating the right habits, taking criticism well, and much more.No, this is not the first time this advice has been given, but it is nice to see it all put in the light of honoring the Lord!Highly recommended for any believer!Thank you for making this book available for the free giveaway!", "overall": 5.0, "summary": "Fantastic Motivational Book for Wanna-be Creators", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "A2IRWWEGN9673D", "asin": "0805017585", "reviewerName": "erin", "helpful": [0, 0], "reviewText": "I love this story. This book is very unique and the students in my class love to read this book.", "overall": 5.0, "summary": "cute", "unixReviewTime": 1389744000, "reviewTime": "01 15, 2014"}
{"reviewerID": "AYU73OXDMBZLS", "asin": "B00ACPP3QE", "reviewerName": "Patricia Pickett", "helpful": [0, 0], "reviewText": "The book was raw with emotion and pain. It really gives you in site into the subject of the book. I can honestly say that I can understand anorexia because of the author. Great read!", "overall": 5.0, "summary": "Truly inspiring book.", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "A3QLY3PY0TTV04", "asin": "B007Y7L3EO", "reviewerName": "Pam", "helpful": [0, 0], "reviewText": "A book filled with twists and turns. You change your mind a dozen times about who the bad guy is and by the end probably find you were wrong.", "overall": 5.0, "summary": "A superb who dunit", "unixReviewTime": 1399852800, "reviewTime": "05 12, 2014"}
{"reviewerID": "A26BVUB2YJMGB7", "asin": "0316017922", "reviewerName": "Big D", "helpful": [1, 1], "reviewText": "Ancient Roman philosopher Seneca said it first, then, a couple of centuries later, famed Alabama football coach Bear Bryant echoed the thought. (Didn't know Coach Bryant was such a scholar on Roman philosophy, but that's another story for another time, another review perhaps!!!)Luck does come when preparation meets opportunity, preparation as defined by 10,000 hours work hard work and preparation, opportunity--and the traditional defintion of luck could figure in here--by when you were born. Not so much where you were born or into what economic circumstances you were born, but by the time of year that you were born. In academics and athletics, for example, being born just days or weeks past the deadline for admission or participation, could give a young person the significant advantage of having another year to develop mentally and physically thereby putting him/her a year ahead of others enrolling or beginning participation at what is technically the same time. This is defined by Gladwell as opportunity.Oh, luck does pay a part, such as who made the first computer availabale to Bill Gates, but it wasn't so much who or when as much as what Gates did with that computer, how hard he worked at it. Some things are beyond one's control, but most things are not--if you are willing to work hard and, as Bryant would say, sacrifice along the way.Not necessarily a quick read, or an easy read, but a good, thought provoking read.The Epilogue is, by far the best part of the book, but to appreciate it, really and fully appreciate it, the other nine chapters must be read first. Epilogue is very moving and insightful.", "overall": 5.0, "summary": "This Book Proves it: Seneca and Bear Bryant Were Right: Luck Does Comes When Preparation Meets Opportunty.", "unixReviewTime": 1394064000, "reviewTime": "03 6, 2014"}
{"reviewerID": "A2IXCQBN9JXV51", "asin": "1885928068", "reviewerName": "Stacy", "helpful": [0, 0], "reviewText": "I am working it and it takes some time as the exercises you must do in order to strengthen your mind to become a more powerful magician. It isn't a book that you work quickly but one that would probably take many years of working on yourself. So I do it along side of other magical practices I do. But I feel that it helps with working on concentration and visualization that help when working spell magic.", "overall": 5.0, "summary": "This is a fantastic book", "unixReviewTime": 1400025600, "reviewTime": "05 14, 2014"}
{"reviewerID": "A2348QSDI61LRX", "asin": "059530253X", "reviewerName": "Avid Reader", "helpful": [0, 0], "reviewText": "It's convoluted but I still enjoyed reading the book. I didn't realize the author was a Perry Mason fan until after I read the book and you can see Perry Mason in how the character deduces who did what. There are too many people murdered and too many psychos for such a small town but you continue to stumble along with Josh as he finally figures out who killed whom. The kids are Nancy Drew and practically raise themselves. I have a question: Does Maggie inherit? After all she is Wally's daughter.", "overall": 4.0, "summary": "Convoluted", "unixReviewTime": 1396224000, "reviewTime": "03 31, 2014"}
{"reviewerID": "A2MQURI8SGMRZO", "asin": "068816689X", "reviewerName": "carolflorida", "helpful": [0, 0], "reviewText": "Excellent book everyone should read. This is a book you'll not be able to put down. I definitely recommend it.", "overall": 5.0, "summary": "Excellent book", "unixReviewTime": 1398470400, "reviewTime": "04 26, 2014"}
{"reviewerID": "A3SYGMYDVR55NT", "asin": "1442348364", "reviewerName": "Ragen Mandell \"Avid Reader\"", "helpful": [0, 0], "reviewText": "I am a big fan of Mary Higgins Clark, but the book had some good history as well as mystery. You are brought into the past, along with the pain that is felt by her main character in trying to solve her father's murder. Very compelling book", "overall": 5.0, "summary": "Fan", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "AOUPEIOL1VGWP", "asin": "B00IKA8E1E", "reviewerName": "teri horn", "helpful": [0, 0], "reviewText": "Enjoyed some of the selections more than others, but that is to be expected in an omnibus. I find these a great way to discover new authors. Thanks", "overall": 4.0, "summary": "Enjoyed some of the selections more than others", "unixReviewTime": 1405209600, "reviewTime": "07 13, 2014"}
{"reviewerID": "A9D0O9MZMOEBX", "asin": "076420498X", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "I have read every Lynn Austin book I can get my hands on. Although this was not my favorite, her books are always worth the read.", "overall": 4.0, "summary": "Always Worth The Read", "unixReviewTime": 1398384000, "reviewTime": "04 25, 2014"}
{"reviewerID": "A1L9FKVZW5DF8E", "asin": "B00E9AM5K0", "reviewerName": "Jade Snow", "helpful": [0, 0], "reviewText": "Dragons, magic, and alpha males, oh my! What's not to love?A defiant princess must learn some hard lessons, often at the expense of her bottom, to save a kingdom.", "overall": 5.0, "summary": "Dare to Defy", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "A1W6QQ0ETZ8TAQ", "asin": "1939392756", "reviewerName": "idrathernot \"idrathernot\"", "helpful": [0, 0], "reviewText": "I adored this book. Sydney and Kyler have been bffs forever and in love but too chicken to tell each other (a favorite trope of mine) how they feel. Syd thinks manwhore Kyler could never be attracted to her and Kyler thinks ms-i-plan-for-everything Sydney deserves better than his douchy self. When they get stuck in a snow storm, truths come out.Syd was a bit insecure and Kyler was a bit hobag but the way their story played out warmed my heart which is why I say 5 This is Forever stars. It wasn't perfect but it was perfect for me and I smiled like a goofball throughout.", "overall": 5.0, "summary": "A favorite of mine!", "unixReviewTime": 1396656000, "reviewTime": "04 5, 2014"}
{"reviewerID": "A1KKU10M53PNW", "asin": "042525674X", "reviewerName": "M S", "helpful": [2, 2], "reviewText": "Great new characters, good development, as always raises more questions then it answers. I love the how pack dynamics are used.", "overall": 5.0, "summary": "LOVE IT", "unixReviewTime": 1394928000, "reviewTime": "03 16, 2014"}
{"reviewerID": "A13DW2WG6J0YYJ", "asin": "0545276470", "reviewerName": "M. J. Phillips", "helpful": [0, 0], "reviewText": "As with the other two I enjoyed this book, too. The ending was heartwarming and left me wanting more adventures to read.", "overall": 5.0, "summary": "Great finish", "unixReviewTime": 1400630400, "reviewTime": "05 21, 2014"}
{"reviewerID": "A2DBQVWGC0O1OK", "asin": "1494349841", "reviewerName": "D. A. Eckhoff", "helpful": [0, 0], "reviewText": "The book is short and to the point. It had some tips that I didn't know, but many I did.", "overall": 3.0, "summary": "Good tips", "unixReviewTime": 1399334400, "reviewTime": "05 6, 2014"}
{"reviewerID": "A1PR496BYCKTS", "asin": "1467519006", "reviewerName": "Barbara Beach", "helpful": [0, 0], "reviewText": "my second copy, well written, everyone needs to read it to see and understand what we believeto be truth or tradition", "overall": 5.0, "summary": "book for everyone", "unixReviewTime": 1396742400, "reviewTime": "04 6, 2014"}
{"reviewerID": "A24ILS2FXX2Q8S", "asin": "1480176672", "reviewerName": "Teresa loves her stuff", "helpful": [0, 0], "reviewText": "Good but difficult read. I do appreciate how the author didn't sugar coat things", "overall": 3.0, "summary": "Could be better", "unixReviewTime": 1405036800, "reviewTime": "07 11, 2014"}
{"reviewerID": "A2FNUUCH6I6U2S", "asin": "1455554332", "reviewerName": "Louise Jolly \"Bookaholic\"", "helpful": [0, 0], "reviewText": "MY REVIEW:Grand Central Publishing|May 6, 2014|Trade Paperback|ISBN: 978-1-4555-5433-1Still grieving the death of her prematurely delivered infant, Lila finds a welcome distraction in renovating a country house she's recently inherited. Surrounded by blueprints and plaster dust, though, she finds herself drawn into the story of a group of idealistic university grads from thirty years before, who'd thrown off the shackles of bourgeois city life to claim the cottage and rely only on each other on the land. But utopia-building can be fraught with unexpected peril, and when the fate of the group is left eerily unclear, Lila turns her attention to untangling a web of secrets to uncover the shocking truth of what happened that fateful year, in order to come to terms with her own loss and build a new future for herself.I was literally glued to the pages of this book. I just couldn't take my eyes off the pages for even a second. The story was solid, the characters well fleshed out and original and the surprises just kept coming. I was literally rocked off my feet by the ending and had no idea what was coming as I was nearing the end. I think shock is even a mild word to describe the end, I didn't see, nor even considered this ending. What a powerful punch this story delivered. Hannah Richell has certainly penned a winner with THE SHADOW YEAR!", "overall": 5.0, "summary": "Powerful Reading!", "unixReviewTime": 1403049600, "reviewTime": "06 18, 2014"}
{"reviewerID": "A24A5RLFRJL1VQ", "asin": "1493733680", "reviewerName": "violet baker", "helpful": [0, 0], "reviewText": "I love this entire series. I got a late start and luckily didnt have to wait as I finished each book. LOVE the main 2 characters. Not your typical heroes. I simply could not put any of these books down. 5 star, 2 thumbs up and highly recommend this entire series. It starts out different from the get go and I normally dont like that. I am old school and usually like your run of the mill zombie story. This has changed my mind. If you want a great series to read, this is it. You will be hooked from the first chapter of the first book.", "overall": 5.0, "summary": "Couldnt put this down", "unixReviewTime": 1400976000, "reviewTime": "05 25, 2014"}
{"reviewerID": "A357V5F3KAMYK3", "asin": "0373875746", "reviewerName": "M. Palmer \"Michelle P.\"", "helpful": [0, 0], "reviewText": "Rocky Point SeriesBook 1This was a sweet book about Joe Kincaid who was widowed with a seven year old daughter and a brother who would rather race cars in Europe than stay in the small town. It's also about newcomer, Gillian Parker, who just discovered she had a great grandmother who left her her estate.The story is fast paced and involves some mystery about someone who is causing "accidents" among the two main characters. Gillian also helps Joe to loosen up on his parenting and give Jenny more space. I really liked the characters in this book. The mystery part is really pretty light and is resolved fairly simple, but sometimes that's good. I do think the ending was a bit sudden...", "overall": 5.0, "summary": "Family Next Door", "unixReviewTime": 1389052800, "reviewTime": "01 7, 2014"}
{"reviewerID": "ARAP6PR2AR6FM", "asin": "B00G2GMRCU", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Beginning , Middle, and End. It's the same story he does over and over again. Some of the feats that this group does is a bit beyond belief. It is a very nice group of people. But Will Robie is a bit over the top. It's a nice story but you always know what is going to happen and who will be the winner . There is no mystery to anything. No Thriller. It was a very bland short story.", "overall": 3.0, "summary": "Same ole Same Ole...story", "unixReviewTime": 1398384000, "reviewTime": "04 25, 2014"}
{"reviewerID": "A10MGV71V351MR", "asin": "B00L2LLC0S", "reviewerName": "SallyReadsTooMuchSoWhat", "helpful": [3, 4], "reviewText": "Bastian's Storm (Surviving Raine, #2) by Shay Savage4.5 StarsOnly Shay Savage can do this to us! I mean who does that?!?! Who takes two of her most beloved male heroes and pins them against each other in a book?! Shay that’s who! When the news broke everybody flipped a s***. I however LOVED the idea and I knew if anyone could pull it off it was Shay Savage. The way that authors mind works is …..well, mind boggling! LOL We all already know that nobody writes a male POV like this author. I don’t care what anybody says, I would argue that point till I’m blue in the face but her mind works in mysterious ways I tell ya. This book had everything we come to expect from this author. It was full of action, suspense, crazy characters and hot , sexy steamy love scenes. I would have given anything to have just a little bit of Evan Ardens POV, (YES I AM an ARDEN lover get over it ladies I will NEVER switch sides LOL) I fully understand that this was Bastians book…but I LOVE me some Evan :) You Bastian lovers will love this book!", "overall": 5.0, "summary": "Nobody writes a male POV like Shay Savage!", "unixReviewTime": 1403049600, "reviewTime": "06 18, 2014"}
{"reviewerID": "AVRZY8HL8X22N", "asin": "0380776820", "reviewerName": "Amber Wiebeld", "helpful": [2, 2], "reviewText": "I didn't hold much hope when I began reading this novel as I have found very few free e-books that can be considered decent. I was glad to be proven wrong by Tanya Ann Crosby's The MacKinnon's Bride.This story sinks its claws into you within just a few pages and keeps you gripping the edge of your seat until the very end. Crosby's characters are well developed, her use of the Scottish broque is nearly unparalleled, and her plot is new and imaginative. Iain and Page are two people I'd like the chance to meet.Anyone with a love of all things related to The Highlands, Scotland, and men in kilts will treasure this free gem!", "overall": 5.0, "summary": "Scotland at its Best", "unixReviewTime": 1388620800, "reviewTime": "01 2, 2014"}
{"reviewerID": "A18ENCO6ZOHG46", "asin": "0316041173", "reviewerName": "Elaine C Pereira", "helpful": [0, 0], "reviewText": "Love the concept of modernizing fables as I understand the underlying message better than i use to. Rhymes well and fun to read", "overall": 5.0, "summary": "Creative book", "unixReviewTime": 1390089600, "reviewTime": "01 19, 2014"}
{"reviewerID": "AJ685COUDYIMD", "asin": "0758229542", "reviewerName": "T. D. Stewart \"book woof\"", "helpful": [0, 0], "reviewText": "I thoroughly enjoyed this book from beginning to end. I love quirky characters and this writer reminded me a bit of my favorite author, Anne Tyler. The icing on the cake was the influence the book had on me to want to be a better person. I'll definitely read more by this author.", "overall": 5.0, "summary": "A little bit of everything.", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "AN5ATZLL3BQWA", "asin": "1477808604", "reviewerName": "Bob Coates", "helpful": [0, 1], "reviewText": "you won't want to put it down. very easy to get interested in from the beginning of the book. I thought it was good enough for a five star rating.", "overall": 5.0, "summary": "Excellent boook", "unixReviewTime": 1393200000, "reviewTime": "02 24, 2014"}
{"reviewerID": "A1171XJKQ9CMRZ", "asin": "B00IT03ZNM", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Really great reading in this box set! Even bought more books by a few of the authors. Couldn't put the books down.", "overall": 5.0, "summary": "Great box set!", "unixReviewTime": 1399334400, "reviewTime": "05 6, 2014"}
{"reviewerID": "A5QB9BC6EPJ1S", "asin": "0615796982", "reviewerName": "Lisa", "helpful": [1, 2], "reviewText": "Her writing drove me crazy, with all the parentheses on almost every page, and the \"thoughts\" all the characters said was also distracting. The \"Showtime\" used multiple times was also lame.It's really too bad because th story itself was good, it just could have been written better.", "overall": 4.0, "summary": "Good story but...", "unixReviewTime": 1395532800, "reviewTime": "03 23, 2014"}
{"reviewerID": "A39RQDZFS8PX6L", "asin": "1491514175", "reviewerName": "CardsByCarolAnn", "helpful": [0, 0], "reviewText": "It was an okay story. How anyone would ever believe she was a man I have no idea, but I really like Connie Brockway so I gave it a try. Would I recommend it, probably not, but it was an okay read.", "overall": 3.0, "summary": "Okay Read", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "ARFAFH1EBHM", "asin": "1479127914", "reviewerName": "Pam Prater", "helpful": [0, 0], "reviewText": "What can I say about Conn and Aries except you need to read the walker bookif you like any of the others", "overall": 5.0, "summary": "OMG", "unixReviewTime": 1393027200, "reviewTime": "02 22, 2014"}
{"reviewerID": "A5MW7CGAD6631", "asin": "B00DC71HQY", "reviewerName": "geraldine linderman", "helpful": [0, 0], "reviewText": "It was so hard to read. I can't imagine how these poor ones lived though it. It was written very well.", "overall": 5.0, "summary": "Very good", "unixReviewTime": 1392508800, "reviewTime": "02 16, 2014"}
{"reviewerID": "A3HBT2LJ06CZZS", "asin": "0785262180", "reviewerName": "Judy Whann \"Judy\"", "helpful": [0, 0], "reviewText": "My husband bought this series. It is a very awesome wonderful series on how to manage your money. Handle money your way, not money handling you.", "overall": 5.0, "summary": "It is a very awesome wonderful series on how to manage your money", "unixReviewTime": 1404086400, "reviewTime": "06 30, 2014"}
{"reviewerID": "A1LSL78X9XW7R3", "asin": "0615875793", "reviewerName": "Caitlin Zabek", "helpful": [2, 2], "reviewText": "Surrender to Fate (Fate’s Path #1)By: Jacelyn RyeFour out of Five stars!“Once something leave a profound mark on the heart, the mark is always there…certain that while the mark may fade with time, the scar would remain”William and Sarah start out as children from two families who are the best of friends, and neighbors. In the wild of Colorado these two innocent children because to feel the stirrings of a first love between them but sometimes fate decides to step in and lay down a challenge. In this story fate stepped in a ripped them a part at a tender young age. Now with one in Colorado and the other in California time and distance separate them. Children grow up, they mature, they move on. Sarah and Will may seem like they want to move on with their lives but fate is always there like an elephant in the room nagging them both that something or more like someone is missing. Beware this book does have a massive cliffhanger but all will be resolved in the two books that follow in this trilogy. An emotionally charged read that will leave your breathless and needing to follow Sarah and Will on the remainder of their journey. I will say that I was a little concerned with the year when it began and as the novel passed. However after reading the novel I completely understand the authors reasoning for it and really believe this was such an asset to the novel now. I would definitely recommend this book in the future![...]Caitlin ZabekReviewer at I Heart Books", "overall": 4.0, "summary": "Surrendering to Fate left me breathless...", "unixReviewTime": 1389744000, "reviewTime": "01 15, 2014"}
{"reviewerID": "A3LMC5AGE7M4NO", "asin": "0345803485", "reviewerName": "Rita Pacheco", "helpful": [0, 0], "reviewText": "Finally jumped on the fifty shades bandwagon. Was a good book and a fun and quick read. Finished in two days, but I also had jury duty on one of those days. Seems most people have missed the point of this book. Is not just about s&m desires and dom/sub role play. There is a love story hidden in there, disguised as obsession and possession in the only way damaged people sometimes love until they learn about trust. Looking forwad to the next part of the trilogy. Not overly sexual, though does deal in many aspects of lust, heavy references to genitalia throughout, many references to alternative lifestyle including what some may consider consentual abuse more psychologically harmful than physically to the characters. Not for tweens or teens. More adult subject matter. I didn't personally find anything offensive, but I also know how to keep an open mind about books/movies, etc.", "overall": 5.0, "summary": "Was a good book and a fun and quick read", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "AQZION6BNALML", "asin": "B00HZOU554", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Reunions are always an interesting proposition. Don't we all want to be that special one? The one who is fondly remembered?", "overall": 4.0, "summary": "Nice story", "unixReviewTime": 1397433600, "reviewTime": "04 14, 2014"}
{"reviewerID": "A1KBXBOA4UG7NS", "asin": "1596686448", "reviewerName": "D. Cobb", "helpful": [0, 0], "reviewText": "Love this book. Detailed and easy to follow instructions. I especially liked the way Susan Kazmer describes how to envision your project from an emotional perspective for example-your piece can convey a "story" or theme. I am not necessarily in to the type of jewelry she designs for myself but I do respect the concept. I learned enough from the book to delve in to resin art in a manner that represents my style.", "overall": 5.0, "summary": "Great book-practical how to's in addition to some conceptualization", "unixReviewTime": 1404172800, "reviewTime": "07 1, 2014"}
{"reviewerID": "A1Q1YWCM08Y779", "asin": "1622875036", "reviewerName": "Jessica.R", "helpful": [3, 3], "reviewText": "I really enjoyed reading the book. Many surprising things in the plot. The characters of the story was designed very well and was executed amazingly and came out strongly. I really loved reading fiction books, and i would highly recommend this book!!!!!", "overall": 5.0, "summary": "Interesting story line!!!!", "unixReviewTime": 1402617600, "reviewTime": "06 13, 2014"}
{"reviewerID": "A3IF0Q601XT0Y1", "asin": "140123562X", "reviewerName": "The Fangirl \"Jeanne\"", "helpful": [0, 0], "reviewText": "I've been meaning to read this reboot for a while. Despite all the mixed reactions people have had to the New 52, I've been hearing a lot of great things from people I trust about this new take on Wonder Woman. But I was still on the fence so I waited until my library got a copy of the trade. Now after reading I feel like an ass for waiting for so long, because it is awesome.Wonder Woman has always been a blending of mythology and the DC universe, but Azzarello takes it to the next level. While some mythology and DC purists might not like the changes, I loved them. On so many levels.First, the feel of this story has more of a mythological atmosphere. It reminds me a lot of Neil Gaiman's Sandman series. We're dropped into the story, with a narrative that sounds right out of folk tale and action befitting a flagship title for DC. Yeah, this is a Wonder Woman title, while many people view her as a diplomat and peace keeper, they forget that she is also an Amazonian princess, equal in strength and power to Superman. In this story Diana doesn't hesitate to kicks ass and takes name.The story is compelling, the art is stunning, but above all that, this is a Wonder Woman I can relate to, as well as admire. She is bold, conflicted, and rightfully so. The very foundation of her existence is shaken. Everything about how she viewed herself, and her mother changes in this story, and still Diana stays true to herself and her mission.This is a dark story, lots of bloodshed, death and raw humanity. Which is right up my alley. The supporting cast is great, and diverse in very surprising ways (I LOVE Chaing's take on all the goods, especially Apollo). Gods like Hermes, Apollo and Eris are deeply involved in the story, along with the very human character Zola, who plays a big part in the story. Zola is awesome, she delivers a lot of fantastic lines that made me laugh out loud, but is also very sympathetic. She didn't ask to be thrown into the middle of a godly power struggle, but she does a great job of coping with all it.I also love the look of Diana in this book. Yes, she still has the hour-glass figure of the classic Wonder Woman, but she is taller, and broader. She looks like an Amazon of legend. She also fights like a warrior, gets in the action. Chaing does a fantastic job with action shots, and her design. Giving us enough of the old to keep her familiar, but with a whole new take on everything from her costume, complexion and stature. Paired with Azzarello's fantastic storytelling, we get a great example of a what a reboot can do. This team does it right.I can't recommend this book enough. Even if you've never read comic books, if you like Wonder Woman, mythology, or just stories featuring kick ass women at the helm, you should give this one a try.", "overall": 5.0, "summary": "A New Take on Wonder Woman, and I love it!", "unixReviewTime": 1398816000, "reviewTime": "04 30, 2014"}
{"reviewerID": "A27CTW2JEQOQNP", "asin": "B00H8ZL1M6", "reviewerName": "judy reeve", "helpful": [0, 0], "reviewText": "loved it would read more of her work. Very girly sort of book . love all the things she goes thru", "overall": 5.0, "summary": "Very hard to put down", "unixReviewTime": 1394236800, "reviewTime": "03 8, 2014"}
{"reviewerID": "A24CMGZ4KIJ7MN", "asin": "038533530X", "reviewerName": "Thomas Spruck \"Tom\"", "helpful": [0, 0], "reviewText": "My son did buy this and told me it a good thing for Christmas. Thank you for getting this to my son.", "overall": 5.0, "summary": "A Thing For My Son", "unixReviewTime": 1389398400, "reviewTime": "01 11, 2014"}
{"reviewerID": "A2EZ1I3D2UQXMJ", "asin": "1476725764", "reviewerName": "Delta Sigma \"Apollo engineer\"", "helpful": [1, 1], "reviewText": "I left the space program after Apollo, so I never knew much about the Shuttle astronauts. Sherr has done a great job in bringing the details of Sally Ride's life to the fore. I thoroughly enjoyed this book and did not want it to come to an end. Highly recommended.", "overall": 5.0, "summary": "Excellent read", "unixReviewTime": 1404432000, "reviewTime": "07 4, 2014"}
{"reviewerID": "A3JXB9KC72R4LZ", "asin": "B005E7K0MW", "reviewerName": "RedRaven617", "helpful": [0, 0], "reviewText": "I really liked the way the writer set up Maggie's misadventures. Many other books in the genre have heroines that make stupid stupid mistakes and insist on going alone into situations, even when common sense would deem otherwise. Yes, she listens to her husband, but not in a way that weakens her, but in a way that compromises so they are both satisfied. She's not a ding-a-ling. I had no idea who the killer could be and that what made the story's ending so satisfying.", "overall": 5.0, "summary": "Better than most", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A2AIE9DO5QSVBD", "asin": "0399166181", "reviewerName": "Pop Bop \"Pause and Reflect\"", "helpful": [14, 16], "reviewText": "There are a number of just-turned-30,or 40,or 50 humor books out there, and almost all of them have their engaging aspects. They do display a considerable range of styles, from the purely jokey to the angsty and way too self-involved. This book is a nice antidote to those two extremes because it is at times both funny and insightful in a rueful and self-deprecating way. By that I mean Ms. Gurwitch knows her way around a one-liner and around an extended goof of a story, (see \"AuDum at the Apple Genius Bar\"), but she also has a handle on wry commentary on the state of the recently 50. The emphasis is on wry commentary - there's no over the top hysteria, no relentless kvetching, no excess. We all get older, and some of the stuff associated with that is funny, or at least can be given a good-humored spin. That's what's going on here, and it is all done with honesty, a keen eye for the absurd, and a grown up appreciation of people and their foibles and preoccupations. So, if you'd like a gentle, humorous reminder that you aren't alone as you hit 50, this could be a very nice choice.Please note that I received a free advance ecopy of this book in exchange for a candid review. Apart from that I have no connection at all to either the author or the publisher of this book.", "overall": 4.0, "summary": "Hits the \"G\" spot; Glib, Generous and Good", "unixReviewTime": 1394064000, "reviewTime": "03 6, 2014"}
{"reviewerID": "A1LTGI7L3BD3QD", "asin": "0785145559", "reviewerName": "danny boy \"dbswongv\"", "helpful": [0, 0], "reviewText": "I am not a regular Iron Man reader. This issue collects several issues of Iron Man for a two-part arc titled Stark Resilient. Earlier issues had Iron Man wiping out his own memory to protect his IP rights, but forgetting to do a backup. thus, when they revived him, there are gaps in his memory. This reminds me of the expected downtime of my own home computer...There are genuine gaps in his recall and sometimes, Tony fakes amnesia conveniently. His new armor is regenerated from his own tissue (whatever). It's a convenient way to don the suit. Pepper hankers for the same treatment. So his armor is frontline main battle tank stuff, and hers is logistics support vehicle stuff. Rhodey questions his own role in this new technology era (he doesn't get the instantaneous armor capability - why not?).Storyline is acceptable. The artwork sucks.", "overall": 3.0, "summary": "Okay start to a reboot of Iron Man", "unixReviewTime": 1390262400, "reviewTime": "01 21, 2014"}
{"reviewerID": "A1VV5AL3WKVOF0", "asin": "B00EYMD9FI", "reviewerName": "L. Bassin \"Lbassin\"", "helpful": [1, 1], "reviewText": "I enjoyed these next three books in the series. I can't wait to read more. I am glad that Harriet and Higgins each get their HEAd.", "overall": 4.0, "summary": "Enjoyable read", "unixReviewTime": 1399680000, "reviewTime": "05 10, 2014"}
{"reviewerID": "A2I49R6VXVBU6", "asin": "0800718763", "reviewerName": "m from mi", "helpful": [0, 0], "reviewText": "Wow, I hardly know what to say about this book! Lindsey O'Connor has written a memoir that brings you through her 47 day coma and the many complications during it and afterwards in her recovery. It is a story that is so compelling, you do not want to put it down! She is open and honest about her feelings and the feelings of her family.(and what a wonderful family she has!) Without being mushy, she has left a witness of her faith and the faith of her family in the Lord who gave them strength and trust in Him through all of this. This would be an awesome book, very well written if it was fiction. Knowing that it is a true story, makes it that much more incredible! Not only is it an incredible story, Lindsey O'Connor is an exceptional writer! She has a gift with writing that makes you picture things vividly. I cannot say enough good things about this book, or recommend it enough! I left many chores undone because I did not want to stop reading! If I could give this book 6 stars, I would! Thank you Lindsey for being so open and telling your incredible story! Also, thanks for making people more aware of what a person goes through with a coma, & the brain injuries and struggles that often go along with it even if one does recover.", "overall": 5.0, "summary": "Incredible story, exceptionally written!!", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "A1678H0VTI58DO", "asin": "193846723X", "reviewerName": "Keith E. Davis", "helpful": [0, 0], "reviewText": "My wife recommended this book and she was spot on. The characters--both men & women--are varied and interesting. The world of the homeless young person is illuminated with several vivid stories, and one finds many of the characters realistic and appealing.", "overall": 5.0, "summary": "A wondeerfully written trip through homelessness in Austin TX", "unixReviewTime": 1391558400, "reviewTime": "02 5, 2014"}
{"reviewerID": "A1V67WFQ59Y8MK", "asin": "B0055PMRSS", "reviewerName": "Betty Chapman", "helpful": [0, 0], "reviewText": "I like Michael Connelly very much. The writing is good and the character is very human. I would buy another of his books.", "overall": 4.0, "summary": "A good read", "unixReviewTime": 1398038400, "reviewTime": "04 21, 2014"}
{"reviewerID": "A3T8IK6S5U1V1X", "asin": "1479138274", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "The reason I rated this book so high is....the story was so beautiful and wonderful to read. .could not put it down...if you like love stories and a little bit of mystery and suspense than this is the book for you..", "overall": 5.0, "summary": "a beautiful story", "unixReviewTime": 1392940800, "reviewTime": "02 21, 2014"}
{"reviewerID": "A3V5KBIS9TWUVY", "asin": "039916393X", "reviewerName": "Tina Says \"Tina Says\"", "helpful": [1, 1], "reviewText": "Tracy Holczer's The Secret Hum of a Daisy is the type of novel I devour, then want to begin all over again. This book is so much more than just the story that Holczer has written. It is an absolutely beautiful book, full of wisdom and sadness, and hope.Grace is twelve years old when her mother dies in an accident. It has always been just the two of them against the world. Grace's father died before she was born, and although she knows she has a grandmother out there somewhere, she has never met her. Grace's mom and grandma didn't see eye to eye on things when Grace's mom was pregnant with her, and she left town, never returning. The two move often, not really allowing themselves to settle in any one town.But now that her mom has passed away, Grace is being sent to live with her grandmother, a woman that she is sure she is not supposed to like. Her grandmother's life feels far from the one she was accustomed to living with her mom.Grace continues to want to live in the Before....before the accident, not the After. Her grief is still new, and as she tries to mourn the loss of her mother, she is also adjusting to a new school and her grandmother, who doesn't seem nearly as horrible as she anticipated.Grace learns a lot about life and about love and about moving on. Holczer's novel is so beautifully written. There is an important message within this story, and although I just finished reading this myself, would love to start over again so I can enjoy the wisdom that is imparted in its pages.This is a novel I will be recommending to everyone from my middle grade readers to my adult friends. I'm hoping The Secret Hum of a Daisy is on everyone's mind come Newbery time.", "overall": 5.0, "summary": "The Secret Hum of a Daisy: An Absolute Must Read", "unixReviewTime": 1402272000, "reviewTime": "06 9, 2014"}
{"reviewerID": "A2I6MHMAZZDCRX", "asin": "031621129X", "reviewerName": "Mark Baker", "helpful": [0, 0], "reviewText": "It appears to be a fatal single car accident until Claire takes a closer look and determines that it might have been a small bomb instead. Lindsay gets the case, but the FBI quickly take it from her. Still, she and Richie investigate, but they are finding so few clues. Will the bomber strike again?Meantime, the FBI has also spotted Mackie Morales, the one who got away. Cindy becomes obsessed with tracking this psychopath down, with the help of cops, to conduct an interview. And Yuki is getting married, but her joy might quickly turn to sorrow….This series is wildly uneven, but this is definitely one of the better books. While Claire doesn't wind up with much to do, there are still three storylines that kept me turning pages quickly to find out what would happen next in all of them. Unfortunately, three plots takes its toll again, and one of them gets short shifted in the climax. Additionally, the character development is a little shallow. Still, it was a fun, fast read.Fans of the series will delight to spend time with these ladies. This is a definite step up from the previous entry.", "overall": 4.0, "summary": "Which of The Women is the Unluckiest?", "unixReviewTime": 1399852800, "reviewTime": "05 12, 2014"}
{"reviewerID": "A3VASRU1R1UTF9", "asin": "B00JEC1HNO", "reviewerName": "Marianne Landis", "helpful": [0, 2], "reviewText": "There is nothing to this book. Just a VERY basic overview of the topic. Few examples. The book is not worth the money. The actual content of the book would equal about a third of a page typed on a page. I could probably write this myself if I were to get on Google and copy and paste a few things.", "overall": 1.0, "summary": "Not Impressed", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A3ENKA0X2G4I36", "asin": "0765320320", "reviewerName": "PDXbibliophile", "helpful": [0, 0], "reviewText": "The Rithmatist is a thinking reader's epic fantasy. It's focus on geometric patterns will appeal to budding engineers, mathematicians and architects, and the strong emphasis on battle strategy will appeal to fans of strategy games. Other than that, The Rithmatist is a pretty formulaic YA fantasy. Protagonist, Joel, is in a permanent funk because he cannot study to become a rithmatist. His only friend, Melody, is despondent because her family legacy makes her feel she must become a rithmatist, and she doesn't want to be one. Author, Brandon Sanderson, is famous for his creative vision of magic and his infusion of magic in his stories, and this true in The Rithmatist. The mythology around the magical 2D creatures is almost a bigger part of the story than the events of the rising action. Luckily, the last third of the novel all elements come together for a nail-biting, scary crisis and climax. The ending is a little too predictable, but is a perfect set-up for the sequels.", "overall": 3.0, "summary": "Who Knew Geometry Was So Crucial?", "unixReviewTime": 1395964800, "reviewTime": "03 28, 2014"}
{"reviewerID": "A3OT4O6HO7PHYO", "asin": "0803495463", "reviewerName": "Irene Egan", "helpful": [0, 0], "reviewText": "Thoroughly enjoyed my first time author Carolyn Brown. If you are interested in hot steamy love scenes in this western you will be disappointed. The book is very wholesome, humorous, and entertaining. Loved it!", "overall": 4.0, "summary": "Delightful...", "unixReviewTime": 1392249600, "reviewTime": "02 13, 2014"}
{"reviewerID": "A3GVT2F2T0YIHE", "asin": "0446533041", "reviewerName": "Monique Atgood", "helpful": [0, 0], "reviewText": "I listened to this on Audio book. I liked the performer. She did a great job.SYNOPSIS:Story opens with a young newly widowed professional, losing her marbles. She loses her job, etc. and before all her $ runs out, she moves out of state to live with an old friend and start ‘something completely new’. Her new life involves different jobs, mentoring a juvenile pyromaniac from the Big Sisters rooster, a hot new bf, a new business, her mother in law’s senility, and the return of her marbles.When she described herself as a widow, and said she was a “Jack Daniels kind, not the Jackie Kennedy kind”, I burst out laughing.The novel explores grief. I enjoyed it, but caution the reader that it is a bit of a downer, because after all, her perfect first husband died.I did not like that the widow was so selfish, when her mother in law was obviously going off her rocker, she was so wrapped up in herself, that she did nothing. However, she redeemed herself, by bringing MIL for a visit, and then eventually keeping her.If I were describing the novel on a graph, I’d say it starts ok, then goes down down down, then gradually goes up to a nice level. The graph would mirror her life.", "overall": 3.0, "summary": "Novel of Experiencing Grief and Finding a New Normal", "unixReviewTime": 1403308800, "reviewTime": "06 21, 2014"}
{"reviewerID": "AELG002596JCL", "asin": "0312306261", "reviewerName": "rhonda hedrick", "helpful": [0, 0], "reviewText": "As with all the books in this series it was a lot of fun, there was drama,action,comedy, every thing you need in a good book.", "overall": 5.0, "summary": "Laughed a lot.", "unixReviewTime": 1394409600, "reviewTime": "03 10, 2014"}
{"reviewerID": "A19EEKAYUCE68H", "asin": "0060850523", "reviewerName": "Skids \"Jules Homans\"", "helpful": [0, 1], "reviewText": "Interesting to look at a view of the future from the 1930's. The book represents Huxley's philosophy of the human condition, of our false visions of utopia and its follies, and the often suppressed instincts of individualism. It's a good read, but it often reminds me of the Jetsons", "overall": 3.0, "summary": "A Dated Classic", "unixReviewTime": 1403395200, "reviewTime": "06 22, 2014"}
{"reviewerID": "A3FOH2BIFV8ZW1", "asin": "1402251440", "reviewerName": "Laurie Durr", "helpful": [0, 0], "reviewText": "Oil thought it was a good book and I will read more by this author. I like romance and feel like I've been to Wyoming.", "overall": 5.0, "summary": "One Fine Cowboy review", "unixReviewTime": 1389139200, "reviewTime": "01 8, 2014"}
{"reviewerID": "A4H4PLTALVEOQ", "asin": "030788726X", "reviewerName": "Amanda M.", "helpful": [1, 1], "reviewText": "This book had a lot of regular recipes but also some that I didn't realize I could make from scratch, good buy.", "overall": 5.0, "summary": "Homemade twinkies!!!", "unixReviewTime": 1392163200, "reviewTime": "02 12, 2014"}
{"reviewerID": "A3MLHJRHCO6III", "asin": "0316097497", "reviewerName": "Diana Radkay", "helpful": [0, 0], "reviewText": "All the number books are good. Some better think than others. I think the first 4 or 5 are the best.", "overall": 5.0, "summary": "numbers book", "unixReviewTime": 1399939200, "reviewTime": "05 13, 2014"}
{"reviewerID": "A31B46C3YYTS47", "asin": "0778315886", "reviewerName": "Katie", "helpful": [3, 4], "reviewText": "The setting of Knights Bridge on Quabbin Reservoir made for a fantastic backdrop for this story about the unexpected events surrounding an old mill, and the romance that emerges between the unlikely pair of Samantha Bennett and Justin Sloan. Sit back and relax and enjoy this story, another great one from Carla Neggers!", "overall": 5.0, "summary": "Great setting, great characters, love the story", "unixReviewTime": 1391212800, "reviewTime": "02 1, 2014"}
{"reviewerID": "AZTWVQ8IJ0QOH", "asin": "0385732554", "reviewerName": "Jackie Lewis", "helpful": [0, 0], "reviewText": "The giver grabbed me immediately. I loved the excitement Jonas expresses as he learns of elsewhere. I am however disappointed in the ending of the book. What happens to Jonas and Gab? What happens to the village of sameness?", "overall": 3.0, "summary": "Little disappointed", "unixReviewTime": 1402444800, "reviewTime": "06 11, 2014"}
{"reviewerID": "A2OH6WF52EF8II", "asin": "1601424671", "reviewerName": "Stephanie Rollins \"Bookreviewsrus\"", "helpful": [0, 0], "reviewText": "Daniel Ryan Day felt like his Christian walk went flat. What to do? He went 10 days without several vital things in order to feel closer to God and to raise awareness of certain charities/needs.I admire him and his wife for their dedication. Would I do what they did? Probably not. The book is divided into categories of what he gave up. He goes on to explain what he learned, who he inspired him, and what charities his sacrifice was for.This is an easy read. Teenagers and older would benefit from this wonderful book. I recommend it.", "overall": 4.0, "summary": "Challenges the reader", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "A680RUE1FDO8B", "asin": "1402777477", "reviewerName": "Jerry Saperstein", "helpful": [0, 0], "reviewText": "I consider Dr. Gurgevich one of the leading practitioners of medical hypnosis.I've used some of his other work before and have been pleased with the presentation and the results.But I found this book to contain material very similar to his earlier work, which diminished my personal interest,However, I think anyone new to dr. Gurgevich and sincerely interested in learning of the benefits of medical hypnosis and practicing self-hypnosis would find this book of value.Jerry", "overall": 4.0, "summary": "Seems to be a rehash of other works, but still moderately valuable in its own right.", "unixReviewTime": 1394755200, "reviewTime": "03 14, 2014"}
{"reviewerID": "A1RHGP2OFZHWCW", "asin": "0802736041", "reviewerName": "Never too old", "helpful": [0, 0], "reviewText": "This story is about a safe cracking teen genius whose family works for a secret organization. She is assigned dangerous and deadly missions. However, the organization is compromised and accuses Maggie's family of stealing gold coins on a previous mission. Maggie must break into the house of an organization leader to clear her parent's name. The characters are colorful and young and intriguing. The break ins are dangerous and filled with suspense. The final confrontation is compelling and has twists and turns. It is a good read and I can't wait for the next one.", "overall": 4.0, "summary": "A lively adventure", "unixReviewTime": 1390003200, "reviewTime": "01 18, 2014"}
{"reviewerID": "A1WV9THI08S6CL", "asin": "B0058TTUFO", "reviewerName": "Teresa", "helpful": [1, 1], "reviewText": "I enjoyed reading this book. I'm switching between reading light, happy books for a bit, and one heavy book. I loved the characters and their thoughts and actions. I would like to read this whole series, and wish this were a real place that I could go visit.", "overall": 4.0, "summary": "lovely...", "unixReviewTime": 1389398400, "reviewTime": "01 11, 2014"}
{"reviewerID": "A45WXA5NRUIIY", "asin": "148276590X", "reviewerName": "J. Martinez \"book worm\"", "helpful": [1, 1], "reviewText": "I loved the first book in this series. I didn't know if Charlie was redeemable, but as it turns out he totally was after some soul searching. And then there is the big tough Sicilian mob boss Dante Dombroso. This story was just as funny, charming and sexy as the first. On their first date, Charlie invites Dante along for a little b&e so he can retrieve he belongings from his parents house after they throw him out following his revelation that he is gay. The hijinks that ensue, be it Hello Kitty lock pick set or the zombie lap dog, left me laughing so hard I cried. I absolutely love the characters, they are very well written and developed. Many thanks to the author, I have to go start book 3, I have really high hopes for our talented little artist/hooker, Christopher.", "overall": 5.0, "summary": "Hello kitty lock pick set....", "unixReviewTime": 1391040000, "reviewTime": "01 30, 2014"}
{"reviewerID": "A3F7OP2QILMP8T", "asin": "006056542X", "reviewerName": "Sara Paschal", "helpful": [0, 0], "reviewText": "Yes, it was a good romance with likable well written characters but I didn't see anything funny (or detect any effort to make it so) in this one. I'd definitely pass this one along with a good recommendation to a friend. It's not deep, gripping fiction but it was a relaxing enjoyable read.", "overall": 4.0, "summary": "Don't get the \"humerous\" romantic mystery genre classification", "unixReviewTime": 1394841600, "reviewTime": "03 15, 2014"}
{"reviewerID": "A3KH1OB5BYYQ8H", "asin": "B00HTXSJGS", "reviewerName": "Terence C.", "helpful": [1, 1], "reviewText": "This was a super fascinating read. I would of never expected it when I browsing for a good read on the brain. I am still on my self-improvement kick. And I would consider this book an all in one book on the Brain for the new millennium. This book explained and showed how the brain is always regenerating. And how it is always learning improving. I learned a lot of things I did not know. And I am glad because I have new outlook and my mental health and brain health. This is a recommend.", "overall": 5.0, "summary": "Brain 2.0", "unixReviewTime": 1389916800, "reviewTime": "01 17, 2014"}
{"reviewerID": "AYSQFA4Q68VSX", "asin": "149351055X", "reviewerName": "BookAddictMumma", "helpful": [4, 4], "reviewText": "I am totally and utterly addicted to the Reckless Beat guys I just can’t get enough of them, I beg and plead Eden for more even though I know she won’t share with me LOL!This the the second installment of the series and it is off the charts sizzling but there is also alot of emotional upheaval in this one too which made it a page turner for me. Let speechless at times and wanting to cry out loud I enjoyed the ride.Eden has hit on a theme that takes a lot to work with, Blake is a recovering addict and Gabi is his strength. I absolutely LOVED how Eden wrote how they first *meet* its so well written you feel like you are there witnessing it.Gabi has had her fair share of heartache in her life to and is slowly building her life up again. Her character is written in a way so that you would just love to be her best friend, but she doesn’t let to many people close.There is so much more to Blake than the loud mouth jokester he portrays himself as. I felt for him and the way his character was written was so well done.I am really looking forward to seeing the guys in the next book, Eden has a winner with this serious, I just can’t get enough!Highly Recommended", "overall": 5.0, "summary": "Emotional and Sexy Highly Recommended!!", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "A2JRO87C8F20F9", "asin": "0099450259", "reviewerName": "spuffy92", "helpful": [0, 0], "reviewText": "I greatly enjoyed reading this book and loved the author's writing style. I felt for Christopher throughout the story and couldn't put the book down until the end. Highly recommend!", "overall": 5.0, "summary": "Fantastic!", "unixReviewTime": 1390608000, "reviewTime": "01 25, 2014"}
{"reviewerID": "AX40VCNMY0Z7N", "asin": "015100692X", "reviewerName": "Uggieandme \"Deb\"", "helpful": [0, 0], "reviewText": "Superb writing!!! Loved the 3rd person narrative! Even the ending was satisfactory for me as a reader! I could have continued to read another 1000 pages ...I hated for it to end!", "overall": 5.0, "summary": "WOW!!!", "unixReviewTime": 1399248000, "reviewTime": "05 5, 2014"}
{"reviewerID": "A2QY5TQCESV63K", "asin": "1612186041", "reviewerName": "Boomer", "helpful": [0, 1], "reviewText": "Way too predicatable to be the proverbial 'page turner.' But perhaps the biggest issue for me as a reader was the inaccurate 'typing' of the villian's last name in the electronic edition it varied from page to page.", "overall": 2.0, "summary": "Prediction: You Will Find This One Very Predictable", "unixReviewTime": 1398470400, "reviewTime": "04 26, 2014"}
{"reviewerID": "A3FXO7A5UKNYVE", "asin": "098741769X", "reviewerName": "MALee", "helpful": [0, 0], "reviewText": "This is a page turner filled with intrigue, romance and humor. I thoroughly enjoyed this book, based on a true incident withhistorical background characters and fictional hero and heroine. I would recommend this to anyone who enjoys a good read.", "overall": 5.0, "summary": "Great Discovery - a New (for me) Historical Romance Author", "unixReviewTime": 1402790400, "reviewTime": "06 15, 2014"}
{"reviewerID": "A11CY6XX2DDI41", "asin": "0970032609", "reviewerName": "Matt Harmless", "helpful": [0, 0], "reviewText": "I am almost done with the book Drinking With Calvin and Luther!: A History of Alcohol in the Church by Jim West. Even though I am not quite finished with this book, and still have a few pages remaining, I wanted to go ahead and write the review because I have learned and enjoyed so much during its reading. In fact, as soon as I am done writing this review, I am going to go finish the book.I grew up in a home, church, and social circle that viewed all forms of alcohol as ... well... evil. When it was mentioned that someone was drinking or that someone drank occasionally or socially, it was absolutely appalling. I am not sure how much of this was because of actuality or because of my perceptions of the situations where drinking was encountered, but it was a definite no-no to drink in any way, shape, or form.When I got older, I began encountering people that caused my views to conflict with the reality around me... in other words, I was meeting people who were clearly steadfast Christians, but they would drink occasionally or socially. My worldview didn't allow for this. In fact, many of the drinkers that I met were by far more dedicated to the cause of the gospel than the teetotalers that I had known. So I did what any good Christian would do... I shunned them and ignored these conflicting worldviews. WAIT! NO! I went to the Bible to determine the truth! What I found was quite different than what I had "known" growing up. My views needed adjusting.When I eventually encountered Drinking With Calvin and Luther!: A History of Alcohol in the Church by Jim West, which was a Christmas gift from my wife, my views had shifted appropriately and were fairly solid now on what the Bible actually teaches concerning alcohol, but were still hazy on the practicality of these new views. This book served to solidify those views, and give me direction on how to practically apply those views. It is a very Biblical book, but what was absolutely surprising to me was the actual history of alcohol in the church, which this book does an absolutely amazing job of bringing to light.I have a great respect for church history. I believe that it is important what Christians have believed historically. This is why I am a big supporter of reading and learning from historical documents, creeds, and books. Like Paul writing to Timothy, I am often saying, "Don't forget to bring my scrolls!" (2 Timothy 4:13) ... well for me ... "books!" I mean, really, who am I, or who are we to believe that the last 2000 years Christians have gotten it wrong? In fact, tracing the beliefs that have stuck can be extraordinarily enlightening. The amount of historical information and quotes that Jim West shares from remembered and respected Christian leaders through the ages was extraordinary. It never felt cumbersome reading this book, but I did find myself often wanting to quote different portions of this book. Especially those encounters with quotes from Martin Luther, like:"Do not suppose that abuses are eliminated by destroying the object which is abused. Men can go wrong with wine and women. Shall we then prohibit and abolish women?"~Martin LutherJim West also confronted the different teachings of the prohibitionist's views by going directly to the scripture. He displayed an amazing knowledge of the topic from the historical, the Biblical, and even the opposing view points. If you are actually interested in learning what the Bible teaches concerning alcohol, then I recommend this book. If you want to learn the Church's historical stance concerning alcohol, then I highly recommend this book.I would like to point out in advance, as a Pastor myself, that there were many members of the clergy, through the ages, that were paid ... not just monetarily, but with kegs of beer for the purpose of entertaining. I am not suggesting anything... I'm just sayin'...", "overall": 4.0, "summary": "Pastors Paid with Beer!", "unixReviewTime": 1402963200, "reviewTime": "06 17, 2014"}
{"reviewerID": "A10C5RP21MQYT6", "asin": "0988761920", "reviewerName": "Nicoli Spicoli", "helpful": [0, 0], "reviewText": "I really liked this book, but I wish more than anything that the New Zealand translation gallery had been at the beginning of the book and not the end. That glossary is at least 10 pages which gives you an idea about how much you need it. Obviously a lot of words are ways to figure out, others, not so much. I did a lot of googling, lol, but it's as worth it.I also didn't know this was the 3rd book in the series until I came to rate it, but I understand it's fine as a stand alone.Very sweet, likeable characters. A teddy poo vanilla, but still a sweet HEA story.", "overall": 4.0, "summary": "Cute HEA, but read the glossary at the end FIRST!", "unixReviewTime": 1388793600, "reviewTime": "01 4, 2014"}
{"reviewerID": "AUQE590I6RQQR", "asin": "1483942473", "reviewerName": "Robert Downie", "helpful": [0, 0], "reviewText": "Enjoyed reading this book good strong group of characters", "overall": 4.0, "summary": "worth reading", "unixReviewTime": 1404172800, "reviewTime": "07 1, 2014"}
{"reviewerID": "A2B9OOCI05IEMD", "asin": "B00GBQIJ8C", "reviewerName": "L. Newsom", "helpful": [0, 0], "reviewText": "When you are piecing together the puzzle of understanding psychopathy this book is a revelation that clears common misconceptions. Ah ha!", "overall": 4.0, "summary": "A quick read!", "unixReviewTime": 1394236800, "reviewTime": "03 8, 2014"}
{"reviewerID": "A3A2OYPLC1CT4Y", "asin": "0307743926", "reviewerName": "Jenny Zimmer \"Loves To Read!\"", "helpful": [0, 0], "reviewText": "Shades of Oscar Wilde and Alfred Hitchcock! This book keeps the reader in suspense from the first to the last chapter. I would recommend this book for anyone who likes stories about relationships, World War ll , murder mystery and dealing with memories of a time gone by. Will read this author again!FEBRUARY 2014- Just finished reading this book for the second time. Liked it so much the first time that I selected it for my book club to read. I believe you'll like it as much as I do!", "overall": 5.0, "summary": "Jenny reads", "unixReviewTime": 1392163200, "reviewTime": "02 12, 2014"}
{"reviewerID": "A38RTL2EIJPWB3", "asin": "B00CGVJY3U", "reviewerName": "JustGreat", "helpful": [0, 0], "reviewText": "This book provides excellent insight into measurable and effective means to evaluate yourself and gives good relationship advice abound information to work through and evaluate a relationship a narcissistic partner relationship. It was very helpful.", "overall": 5.0, "summary": "Good book", "unixReviewTime": 1388620800, "reviewTime": "01 2, 2014"}
{"reviewerID": "AZGHKASLFXM29", "asin": "1466394579", "reviewerName": "diane chardon", "helpful": [0, 0], "reviewText": "I..Loved..This..Book...This is the first book I've read by Denise Grover Swank: and1. she now has a fan for life2. it was awesome.3. I couldn't put it down, seriously, I had to force myself to go to bed..4. Thank God there is more books in this story.It has an unpredictable twist, and ending that if she hadn't continued this story, I would have supremely upset. This story has everything, a sweet romance, action, mystery,a sci-fi element, so many twists, which made it that much more exciting. I liked the cast of characters and what a great imagination, I can't wait to read the second book....", "overall": 5.0, "summary": "MUST READ THIS BOOK!!", "unixReviewTime": 1402617600, "reviewTime": "06 13, 2014"}
{"reviewerID": "A16RSOO3J31KIE", "asin": "0425212645", "reviewerName": "Susan", "helpful": [1, 1], "reviewText": "Having grown up in Richmond and now living in Fredericksburg, I enjoyed this book because of the descriptions of the areas. The story was very good and entertaining. Molly goes to Richmond to attend an antique road show and write about it for her newspaper. While there she bumps into two interesting murders dealing with antiques, and stolen coins. I loved the side story on this one. It was a really good one.", "overall": 5.0, "summary": "Wonderfully entertaining", "unixReviewTime": 1395100800, "reviewTime": "03 18, 2014"}
{"reviewerID": "A1V2GTA4QOLD5N", "asin": "B00GMOD5P0", "reviewerName": "Uyvonne", "helpful": [1, 1], "reviewText": "This story is getting better & better. Pam is a piece of work. Her & Ralph has caused a lot of hurt. Poor Angel I hope she gets better & her sister Kari but that Divine is just like Pam. Pam niece TT shouldn't blame Angel for her father & aunts betrayal it wasn't Angel fault. I'm on to part 3", "overall": 5.0, "summary": "Yes", "unixReviewTime": 1400889600, "reviewTime": "05 24, 2014"}
{"reviewerID": "A104X2ZLOG0MFE", "asin": "0615928854", "reviewerName": "Kindle Customer", "helpful": [0, 0], "reviewText": "I found my new Favorite Author with these two books Only for You/Pieces of You!!! I read a lot to the point I don't remember when or where I got this book from or who recommend it but I am VERY thankful I did... These books are a Must read the quality is Awesome!!! These will make you laugh and cry Crocodile tears (I know I did). You will not be disappointed... Oh yeah Thanks CeCe!!! :)", "overall": 5.0, "summary": "Fantastic!!!", "unixReviewTime": 1402012800, "reviewTime": "06 6, 2014"}
{"reviewerID": "A3KEB381QTO61R", "asin": "0062223895", "reviewerName": "Shelagh", "helpful": [0, 0], "reviewText": "Three Weeks With Lady X is Eloisa James at the top of her game! I loved this book from beginning to end! One thing I find particularly appealing about Eloisa James is her uncanny ability to describe a person, not just their looks but their feelings as well and in this book she did not disappoint. Her description of India's reaction to a particularly condescending marriage proposal is a case in point, \"Aggravation marched up her spine like a troop of perfectly dressed soldiers.\"Both India and Thorn are strong characters, exceptionally good at what they do and accustomed to being in command, so when they get together sparks fly. A particularly witty exchange of letters early in the book in which neither backs down but both clearly enjoy the correspondence hints at the relationship to come. Despite their strength of character and despite their stubbornness both India and Thorn are vulnerable, largely due to difficult childhoods yet it is those hard starts to life that have shaped them into what they are. It is those vulnerabilities that made me warm to them.I found this book hard to put down. I found myself sneaking a few chapters when I woke in the middle of the night and struggling to stay awake so I could reach the end, yet also wanting to carry on living with the characters, and I guess that's the mark of a good book. Well done Eloisa James! another gem!", "overall": 5.0, "summary": "One Of Her Best", "unixReviewTime": 1396224000, "reviewTime": "03 31, 2014"}
{"reviewerID": "A3J5HBLZIVLU7", "asin": "1401911846", "reviewerName": "Betty Redfield", "helpful": [1, 1], "reviewText": "Dr Dyer never ceases to interest and enlighten with his words, sincerity and insight. Many thanks for all he does!", "overall": 5.0, "summary": "great", "unixReviewTime": 1388793600, "reviewTime": "01 4, 2014"}
{"reviewerID": "A34ZHL1UF6G3D9", "asin": "B00HJ692AC", "reviewerName": "D. Hamilton", "helpful": [1, 3], "reviewText": "I bought this book because it looked good from the sample. I should have just keep it moving with something else. The so called hero and heroine are stupid the man is a jerk and she is a doormat. She seems that she always wanted to look a the bright side even when she was in the dungeon, I just want to shake and tell her to go home, really I don't see any so called love between them. SKIP IT!!!!!!!!!!!!", "overall": 1.0, "summary": "This book SUCKED!!!", "unixReviewTime": 1390003200, "reviewTime": "01 18, 2014"}
{"reviewerID": "A2IGYMZIJGC6PN", "asin": "0980194180", "reviewerName": "Buddy", "helpful": [1, 1], "reviewText": "Very good reading. Very easy to understand. I enjoyed this book so much I have started reading it for the second time. Would recommend this book to everyone.", "overall": 5.0, "summary": "Excellent", "unixReviewTime": 1391472000, "reviewTime": "02 4, 2014"}
{"reviewerID": "AHEP4N0XIJR1K", "asin": "0985548223", "reviewerName": "jlt246", "helpful": [0, 0], "reviewText": "I only read part of this,because I just couldn't get interested in it.", "overall": 3.0, "summary": "Three Stars", "unixReviewTime": 1404518400, "reviewTime": "07 5, 2014"}
{"reviewerID": "AMTL99FCPYSE6", "asin": "B00I0DJJQU", "reviewerName": "Marlene Halliday", "helpful": [2, 2], "reviewText": "I put this book down several times because I so disagreed with the way in which different situations came about. the way in which women were used by the men for relief. how did they get so much marijuana,the beer,and medicine? if there was such a horrific war that left so much destruction, I just couldn't wrap my mind around the way life was portrayed among the different the different camps of survivors. I did finish the books and I am glad that Angela and BRADY got together.", "overall": 3.0, "summary": "Good read.", "unixReviewTime": 1395446400, "reviewTime": "03 22, 2014"}
{"reviewerID": "A286HDAX36I8WS", "asin": "1451666179", "reviewerName": "WendyCat", "helpful": [0, 0], "reviewText": "I could relate to everything in this book, and enjoyed it immensely. I have a rather dry sense of humor and I found this collection to be laugh out loud funny!", "overall": 5.0, "summary": "Hilarious and True!", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "A131XH3HIR93TW", "asin": "0399122443", "reviewerName": "cem", "helpful": [0, 0], "reviewText": "I found this novel varied in quality from the excellent to very boring.It is about a man who is an orphan who starts out poor who wants to be a great writer. He ends up being a successful writer who spends time in Hollywood. The main character is somewhat interesting-he is a tough, streetwise guy who has a high literary aspirations. He sees himself as being very straight but many readers may not agree with his view of himself.The book starts out with an incident in Las Vegas casino where I have no idea what happened since I don't gamble but the narrator becomes friends with a man named Cully.Then it proceeds to tell the narrators struggles as a beginning writer, living in the housing projects and working for the civil service. This part I found interesting in part because I know many civil servants and people who live in housing projects.The narrator gets fired from the civil service then works for a famous writer named Osano. This part of the book is boring. We don't know much about Osano except that he wants to win the Nobel prize in literature and lives like a pig. While we don't know what makes Osano a leading figure in US literature but we do know about his numerous personal failings. This part of the book is bad.The best part of the book is the ending where the narrator goes to Hollywood and to me the book ended with a punch. Some of the books stories of Hollywood life were excellent.There are some parts of the book that describe the workings of Las Vegas which I also thought was outstanding.", "overall": 4.0, "summary": "Parts slow and other parts outstanding", "unixReviewTime": 1403827200, "reviewTime": "06 27, 2014"}
{"reviewerID": "A30L2TBSVJ6X6F", "asin": "B00LDTQ2ZY", "reviewerName": "Renee Entress \"Tell us about yourself!\"", "helpful": [0, 0], "reviewText": "5 starsThis book continues the story of Keely and Vaughn. Keely is headed to her father's house to learn about him and the business. Vaughn is along for the ride. Little does he realize the person who hired him to seduce Keely is also going to be there.As Keely learns the ins and outs of the company by day her and Vaughn grow closer at night. Scorching the sheets and learning about each other.When the truth comes out about how Vaughn came into her life it will cause issues and Keely will send him away.With Vaughn gone and Brent threating her what will Keely do? Will she hand over the company or risk that Brent will reveal all to the world?Can't wait for the next installment of the story.", "overall": 5.0, "summary": "This book continues the story of Keely and Vaughn", "unixReviewTime": 1405468800, "reviewTime": "07 16, 2014"}
{"reviewerID": "A1I1GSWBIK9HLZ", "asin": "0060892102", "reviewerName": "Jill Phillips", "helpful": [0, 0], "reviewText": "I love it just like all the other books!!!!!!!!!!!!!! It's a really compelling under dog story like old teller bootable", "overall": 5.0, "summary": "amazing", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "A2KZAL0GW6LANE", "asin": "0451467302", "reviewerName": "T miles", "helpful": [0, 0], "reviewText": "Out of all of my favorite authors, Lorelei James is top pick, but this.... leaves you hanging! Great story , had me hooked from the first chapter. As I'm reading it I thought it strange that I was only getting one side. Amery's side. Sure enough. Last chapter, of course I will buy the next because come on who wouldn't want to know what happens. Very disappointed with this approach.", "overall": 5.0, "summary": "No No No", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "A1ZP7UGMPQWKQO", "asin": "B00ITUEKYA", "reviewerName": "John A. Yocco", "helpful": [0, 1], "reviewText": "The read was a page turner thru out. It showed that politics on all sides led to a blood bath that should never had happened. The American president really shoewed a lack of backbone as far as politics goes. Overall an enjoyable read.", "overall": 4.0, "summary": "very enjoyable read", "unixReviewTime": 1398038400, "reviewTime": "04 21, 2014"}
{"reviewerID": "A28JH0EXEQJ41X", "asin": "B00JD49EZG", "reviewerName": "Theresa Beck", "helpful": [0, 0], "reviewText": "I absolutely love this book. Thank u Jamie for another Amazing story that keeps you guessing. HOPE WE GET A STORY OF NANCY AND HUNTER!!I loved all characters this this story. Definitely keeps u in suspense. In the story WE have Brandon AND Katie & Meg and Greyson!! U will learn the story behind Brandon AND Greyson. How the past will always come back to haunt u. THIS IS A MUST READ...", "overall": 5.0, "summary": "Love loved it!!!!", "unixReviewTime": 1396396800, "reviewTime": "04 2, 2014"}
{"reviewerID": "A1KXDBPJI52CY2", "asin": "0982780141", "reviewerName": "Richard Kennison \"Retired USAF\"", "helpful": [2, 3], "reviewText": "I am a fan of Sally Wright, having read her whole Ben Reese series which is an excellent Detective series featuring an archivist. who had been a Second World War combat proven scout. So it was natural that I read her latest book. and was pleasantly surprised in the direction in which it took, a departure from pure crime to a more traditional novel. I am told that it is the first in a planed trilogy.It a novel with broad mature understanding that examines bonds people form: those between siblings, child to parents and vice-versa, to friends, comrades in arm, and even with four legged creatures. In this case the animals are primary horses. I know little about horses but my own dogs and cats provides me with a feel how much a person can love and cherish an animal. However the size of horses adds an element of danger to the relationship as a horse can accidental or intentionally kill a person.The story centers around two families of the horse set, one that breeds and trains horses and the other who has a family business manufacturing transportation equipment for horses. There are a number of lesser characters that cluster around the families. The various threads of relatioship quickly weave an interesting narrative filled with action and drama that should hold any readers attention. My hope is that Sally will be able to continue this trilogy.", "overall": 5.0, "summary": "A Different Sally wreight", "unixReviewTime": 1390867200, "reviewTime": "01 28, 2014"}
{"reviewerID": "AUCK94R36S5ZU", "asin": "1494808293", "reviewerName": "susan jenkins", "helpful": [0, 0], "reviewText": "I enjoyed this book. I will read the rest of the series. I recommend this book. It is different from most of the other shifter books.", "overall": 5.0, "summary": "Salem shifters and white magic", "unixReviewTime": 1403136000, "reviewTime": "06 19, 2014"}
{"reviewerID": "A31R44022QOBYZ", "asin": "B0080SA5S6", "reviewerName": "McKenna Book", "helpful": [0, 0], "reviewText": "I had originally chose this book series because I have this strange obsession with reading about werewolves lately and this one really stood out to me. This series is amazing. The way that author puts so much suspense and detail into these books makes you feel like you're really there. That's when I know I'm reading a good book. When I can visualize it. When I finished these four I became addicted to the whole series. The next part is called \"The Cain Chronicles\" which I will be reviewing soon too. I would recommend this series to anyone who likes werewolves, romance, mystery and a great book in general! HAPPY READING!!", "overall": 5.0, "summary": "Seasons of the Moon BLEW MY MIND!!", "unixReviewTime": 1389830400, "reviewTime": "01 16, 2014"}
{"reviewerID": "A207EX56SCPPYE", "asin": "1250007038", "reviewerName": "C. N.", "helpful": [1, 1], "reviewText": "Wonderful book! I really enjoyed it. It had it all. It was about friendship, betrayal, finding love and finding yourself. The characters were well written and the story just flowed. It centers on the friendship between Charlotte and Nicole. They were best friends growing up but have been distant for 10 years. Nicole reaches out to Charlotte to come to Quinnipeague for a summer to help her write a cookbook. Charlotte feels she owes Nicole and agrees to come. This sets things up for a very interesting summer where friendships and marriage will be tested and love will be found. I highly recommend this book. Great beach read!", "overall": 5.0, "summary": "Great read!!", "unixReviewTime": 1401494400, "reviewTime": "05 31, 2014"}
{"reviewerID": "A32ZGQ60J29IEW", "asin": "0345536061", "reviewerName": "book junkie", "helpful": [0, 0], "reviewText": "I am a long time Mary Balogh fan, and this is the best one she has written in a while. I bought the kindle version and I was about to buy the short story The Suitor as well. I'm glad I didn't because the kindle version of this book includes that short story for free at the end. It was also good, and interesting as it tied in with the last book I read before this one, The Arrangement.", "overall": 5.0, "summary": "Wonderful- and kindle version came with free short story!", "unixReviewTime": 1404777600, "reviewTime": "07 8, 2014"}
{"reviewerID": "A3IJ4BJMZENE4A", "asin": "0515145068", "reviewerName": "Laurie Switzer", "helpful": [0, 0], "reviewText": "This is number six of seven in the series. It has intrigue, suspense and incredible emotion! I am actually rereading the series. It is as great this time around as the first time!", "overall": 5.0, "summary": "Another wonderful book!", "unixReviewTime": 1397865600, "reviewTime": "04 19, 2014"}
{"reviewerID": "A5LV4HUHXAHD1", "asin": "B0091USXFO", "reviewerName": "mjp \"mjp Books\"", "helpful": [0, 0], "reviewText": "I not in to it also show a love growing with the trust between these two.it show the fight between a strong male Dom and a lady used to being in charge so it was fun to see who was going to win. in end .leave the ending for you read to find out who wins.", "overall": 4.0, "summary": "I like this book because although it got lot things", "unixReviewTime": 1391990400, "reviewTime": "02 10, 2014"}
{"reviewerID": "A314SSFZKE4FVN", "asin": "0446580848", "reviewerName": "J. Skilton", "helpful": [0, 0], "reviewText": "The first four John Corey books were very good - not Charm School good, but good. This one is talky and overlong. Every chapter seems to end with some variation of the line, '... and then we'd find the Panther. And one of us would die.' And there are 83 chapters. I thought we were being set up for some alternate ending in which this did not happen, but DeMille is not John LeCarre (thankfully). But the actual ending isn't all that satisfying.The author takes a shot at fleshing out the bad guy character early on, which was interesting, but then he just drops it and becomes repetitive. The closer-to-home bad guy is a walking cliche. John Corey's capacity to just be a plain jackass has grown beyond amusing here, and Kate Mayfield is given almost nothing to do.Almost all the action is packed into the last few chapters, and then, just when things got rolling, a sudden ending that wasn't worth the previous 500+ pages, basically reading about meetings. The ending seems to leave open the possibility of a sequel, which could pit John Corey against one of his teammates from this book, whom he would secretly want to succeed. Probably woouldn't be great.If you like this kind of stuff, and have already read the first four John Corey books, read any of the Sean Drummond books by Brian Haig instead. The best ones are Man in the Middle, Kingmaker, and Private Sector.", "overall": 3.0, "summary": "OK, if you really miss John & Kate", "unixReviewTime": 1389830400, "reviewTime": "01 16, 2014"}
{"reviewerID": "ADKBZUHH14HSW", "asin": "1490919554", "reviewerName": "Elaine Faye", "helpful": [0, 0], "reviewText": "Delilah Fawkes never disappoints! Billionaire's Beck and Call is a hot hot read! The chemistry in this book is steamy! This fast paced, sensual romance is one that I have read again and again! I recommend reading The Billionaire's Beck and Call!", "overall": 5.0, "summary": "Tied to Him is a MUST Read!!", "unixReviewTime": 1392595200, "reviewTime": "02 17, 2014"}
{"reviewerID": "A251JUYRDH0BPG", "asin": "0991360516", "reviewerName": "Kevin Lucia \"Author\"", "helpful": [6, 6], "reviewText": "First of all - though this might not sound like a endorsement, because I know some folks haven't dug Koontz's recent work as much - if you enjoy humor and wit in your dark fantasy/horror/supernatural thrillers, especially the easy wit in some of Koontz's sharper works, and if you enjoy Odd Thomas, this is the book for you. Luna is witty, tough, proudly dysfunctional in a gleeful sort of way, yet honestly broken, too. And though she's got a lot of Buffy Somers in her - she's not the "Chosen One" with super powers or super strength or resiliency. She knows the demonic because it's haunted her since childhood. She can see demons, she can fight them, but the only thing she's got up on regular human beings is her knowledge and association with demons, and that's it.The story's pacing is smooth, with easily-consumed, concise chapters, and the story moves right along. Yardley is very confident in telling this story, and making this world seem real. Also, we get the sense that the supernatural world we're exposed to here is merely a fraction of what's to come, so if you like supernatural mythos/mash-ups like The Dresden Files or Supernatural, this might be a good fit for you, also.Finally, I do want to address the issue of some tense slippage, which I saw someone mention in another review (that ironically misused grammar in its title). There is a little tense slippage, between first person present and first person past. But experienced readers will realize these are merely blips that got overlooked in the editing process, and they in no way detract from the story at all. Even big NY publishers miss small things like. A proofing issue is not indicative of poor writing.Pick this up today, and join Luna on The Demon Patrol. You won't regret it.", "overall": 5.0, "summary": "What happens when Buffy Meets Odd Thomas", "unixReviewTime": 1394841600, "reviewTime": "03 15, 2014"}
{"reviewerID": "A4IUPALIU4R4W", "asin": "1250001439", "reviewerName": "Emily L. Smith", "helpful": [0, 0], "reviewText": "I don't know what I was expecting but this book was off the chain. I didn't like how the book ended only because I didn't know what happened to Tressa. Did she faint or was she hit by a bullet and killed. Just when she found her soul mate and the twins were doing well. Good read.", "overall": 4.0, "summary": "Awesome", "unixReviewTime": 1403222400, "reviewTime": "06 20, 2014"}
{"reviewerID": "A3MT7Z1CYTX062", "asin": "B00KTSZM7E", "reviewerName": "RA Grove", "helpful": [1, 1], "reviewText": "In Victoria Gardner‘s book, “Volumetrics Diet: How I Lost 70 Ibs in 140 Days Using the Amazing Volumetrics Diet,” she tells her story of going from a slim, active teenager to an overweight adult due to typical overindulgence and bad lifestyle choices. As anyone who has gone to college knows, this is an all too familiar pattern and I feel that many people can relate to Victoria Gardner’s weight problem and will benefit from hearing about her success with Volumetrics. Gardner writes with a mix of humor and charm that makes her story appealing. I also like the fact that not only did Gardner change her eating habits; she also included exercise in her diet plan - two things that all doctors recommend. I highly recommend this book for anyone who is looking into diet plans and want one that doesn't involve depriving yourself of certain foods.", "overall": 5.0, "summary": "Diet with No Deprivation", "unixReviewTime": 1403395200, "reviewTime": "06 22, 2014"}
{"reviewerID": "A3S95VV9CAMOSV", "asin": "1606904388", "reviewerName": "F. E. Hinz \"book collector\"", "helpful": [0, 0], "reviewText": "Not the best jumping-on point for new readers of the Dresden Files, but will be enjoyable if you're familiar with the books and can overlook a few artistic gaffes.", "overall": 4.0, "summary": "A good tale for fans of the series", "unixReviewTime": 1398816000, "reviewTime": "04 30, 2014"}
{"reviewerID": "A3D48ENE487GWO", "asin": "0307959473", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "I felt that he talked too much about himself. I expected an inside story of the environment in the Obama administration. It was disappointing.", "overall": 3.0, "summary": "OK", "unixReviewTime": 1395100800, "reviewTime": "03 18, 2014"}
{"reviewerID": "A14YMGDC0LQ7H4", "asin": "0671427679", "reviewerName": "ELLEN ARSENEAULT", "helpful": [0, 1], "reviewText": "An interesting story, but one wonders how much is true and how much is drama. If you like Bette, as I do, you probably will enjoy reading it. If not don't bother.", "overall": 3.0, "summary": "Interesting", "unixReviewTime": 1401148800, "reviewTime": "05 27, 2014"}
{"reviewerID": "A1TYDLL929RD0N", "asin": "0452298385", "reviewerName": "Britt R.", "helpful": [0, 0], "reviewText": "I haven't read anything of Jio's before. Blackberry Winter was a Kindle Daily Deal and the description sounded interesting. At worst, I'd be out three dollars. At best, I'd find one of those gems that sneak up on you. Blackberry Winter is definitely a gem.Blackberry Winter weaves together two different tales of struggles and loss. Vera heads to work one evening and when she leaves there is snow blanketing the ground and her son is gone. Claire's life is in pieces and it takes a snow storm to put her on the path to fixing herself. The stories are beautifully interwoven, constantly pulling at my heart and never giving a moment of rest.I did figure out early on most of how the characters are connected. I initially thought that knowing the big mystery would take me out of the novel. It didn't at all. I still needed to know how things got from point A to point B and all the little pieces in the middle.Vera's story had me in tears. The pain she went through is something no mother should ever have to go through. And to have it set in 1933, when times were dire or times were fantastic, all depending on how much money there was to your name. She worked hard to make life as good as she could for her son, and it was so easy to feel the love she had for him.Claire is going through her own heartache. Her world has been broken to bits and she's not sure how she's supposed to put it back together. When a May snowstorm hits and she comes the story of Vera and Daniel Ray, something in her compels her to dig the truth out. She needs to find out how Vera's story ends and I loved going on that journey with her.Sarah Jio is an author that hadn't been on my radar before. But after reading Blackberry Winter, I will definitely be reading more of her writings. She wove a breathtaking story through these pages and had me tearing up at the end. This is a book that needs to be read.", "overall": 5.0, "summary": "Wow", "unixReviewTime": 1388793600, "reviewTime": "01 4, 2014"}
{"reviewerID": "AMQHFEOYV23LR", "asin": "0751552615", "reviewerName": "Christine (Shh Moms Reading)", "helpful": [0, 0], "reviewText": "I was nervous going into Callie and Kayden….I loved book 1 and didn’t know what to expect going into book 2.Preparing for the blog tour of The Destiny of Violet and Luke pushed me into finally reading book 2. While I LOVED LOVED The Coincidence of Callie and Kayden, The Redemption for me was heavy and intense. This couple had a lot to work through namely Callie trying to save Kayden as he has done for her. What I appreciated the most from this story was Callie’s strength to not give up on her love for Kayden. This girl proved to me time and time again how far she has come since book 1 – all because of Kayden. And this book was her returning the favor and never giving up on the hope and faith of their love.When Kayden begins to finally open up to Callie again – it’s like a breath of fresh air and I am sighing with relief because I am seeing a sliver of hope for that boy we once knew in The Coincidence. Kayden loved her so much and it destroyed me to see him push her away, feeling that he was not worthy. Together they are pieces of a missing puzzle and my world feels complete and full. Seeing Kayden feel and understand this love that is given to him so freely is beautiful.What made my heart soar was watching them both face their pasts head-on and together. As we all know, confronting your demons and your past is a hard thing to do but when you have love at your side anything is possible.This was a beautiful story of hope, healing and acceptance. Both characters who were so emotionally broken, being able to recognize their soul mate within each other and finally moving forward to a life and love that they both deserve together was simply beautiful! Love this couple! <3", "overall": 4.0, "summary": "love this couple!", "unixReviewTime": 1389571200, "reviewTime": "01 13, 2014"}
{"reviewerID": "AGZIWVRKPLJZA", "asin": "1909490199", "reviewerName": "bkblueagave", "helpful": [2, 2], "reviewText": "Welcome to book three in the blackthorn series where we meet Jask lycan leader with some series issues. If your like me i love a character with series flaws (because they are more relateable that way right?). All the books can be read separately but they each serve as a piece of the pie to show us a world corrupted and misguided by human delusion. Jask finds himself in possession of the very thing that the Higher Order is on the hunt for, a serryn. However what he doesn't count on is that she works for the allaince that wants to change the status quo. However the serryn also has sisters in blackthorn as well who are all pieces of the pie to bring down the system. Jask, haunted by his personal demons struggles to accept the fact that he is falling for the very thing that can change the world they live in. Will she feel the same way?", "overall": 5.0, "summary": "Welcome to the Blackthorn Series", "unixReviewTime": 1400889600, "reviewTime": "05 24, 2014"}
{"reviewerID": "AI0E8VI31FZV6", "asin": "0312931913", "reviewerName": "P. Harris \"learning chef\"", "helpful": [0, 0], "reviewText": "Like all of Andre Norton's books, a wonderful fantasy world to get lost in, totally enjoyable and exciting and worth the read.", "overall": 5.0, "summary": "Very Good!", "unixReviewTime": 1390089600, "reviewTime": "01 19, 2014"}
{"reviewerID": "A2XWNFCQ9U8N3S", "asin": "B00KXZUIY0", "reviewerName": "Shay44", "helpful": [1, 2], "reviewText": "I just finished The Fighters Secretary and I must say, what a hot read. What you have is Dallas. A retired fighter working now as a business man who is in the market for selling equipment and new gears for fighters. He makes a good living at it too. He has just about everything a man can ask for. Money, cars, beautiful home but what he wants most is Amanda. His secretary. She considers him basically a man whore and to him he agrees but no longer. He wants Amanda bad and knows that she is a commitment type of girl. He has tried and and she turns him down all the time but he has now found a way to "blackmail" her into giving him a shot. His expensive nipple clamps are missing. His security staff sets up a camera and we find out who the culprit is. None other than Amanda but looks can be deceiving. What he finds out in the tape is that she wants him too. Now he has a chance to get her. Will she see the error of her ways and following his lead or will she except the terms an go to jail? You will have to read and seeWow, this was a quick sexy read but it packed a lot of punch. It's sexy, quirky, and fun. I really enjoyed this story and it had me from the get go. I so didn't want to put it down.Dallas is a hottie. All the gals want him. He's rich and can get anything he ever could want. But he wants some one that wants him for him. Amanda is that girl but she has seen way to many girls come and go and ultimately doesn't want to get hurt. It's all about taking a risk. You either reap the rewards or your learn from your mistake. Their banter was hot and sexy and man it just was on fire!!!!It might be a quick read but it was well worth it. You gotta get it. You will be satisfied.Story 5Sex 5Overall 5++++Reviewed by Shay for Crystals Many Reviewers", "overall": 5.0, "summary": "LOVED IT", "unixReviewTime": 1402876800, "reviewTime": "06 16, 2014"}
{"reviewerID": "A3ES0XIED7769J", "asin": "B00G4UH0XU", "reviewerName": "Roxanne", "helpful": [0, 0], "reviewText": "I'm glad the story of Santini boys parents was told. It shows the strength of the basis of the core of a family.", "overall": 4.0, "summary": "(The Santini's) The Santini Christmas", "unixReviewTime": 1391472000, "reviewTime": "02 4, 2014"}
{"reviewerID": "A3U222PQZNW7GN", "asin": "B00CT35PIS", "reviewerName": "Geni", "helpful": [1, 1], "reviewText": "She had me hooked on the first book. I love Erin. When I am reading, I feel all of Erin's emotions.Erin was an outcast in her town. Her family moved and she was now an out cast in another town. She met a boy that didn't see the huge birth mark on her face. She fell madly in love with him and found out they both had powers. He was her soul mate literally.Now a new girl starts at school, Louise. She is an awful girl, and she wants Sean. Well she wins! Erin is in so much pain and it starts to get worse. Louise's aunt has put a spell on Sean. Can they break it? Does Erin want to help even tho Sean cheated on her with Louise?!Book is great for pre-teens and up. Read it!!! You won't be disappointed!!!!!!!", "overall": 5.0, "summary": "Torment", "unixReviewTime": 1388880000, "reviewTime": "01 5, 2014"}
{"reviewerID": "A3070P5WCI68E5", "asin": "1630350168", "reviewerName": "Jennifer Davis", "helpful": [0, 0], "reviewText": "These book are the most amazing books EVER!!!! Sean Ferro is the sexiest man alive! All the twists and turns is these books leave you thirsting for more!", "overall": 5.0, "summary": "Love, Love, Love!", "unixReviewTime": 1394150400, "reviewTime": "03 7, 2014"}
{"reviewerID": "A2EAWWQ13O2QPK", "asin": "0765326582", "reviewerName": "Robert Wiegand II", "helpful": [0, 0], "reviewText": "Can't wait for the finale", "overall": 5.0, "summary": "Five Stars", "unixReviewTime": 1404950400, "reviewTime": "07 10, 2014"}
{"reviewerID": "A3A1ASF1CPT1YI", "asin": "1491249471", "reviewerName": "mskittylover", "helpful": [0, 0], "reviewText": "Lots of humor, interesting facts in subjects in which I had little knowledge, well developed characters. Good exercise in problem solving and couldn't put the book down when I got about two thirds through it. Recommend it highly !", "overall": 5.0, "summary": "Great first book by this author!", "unixReviewTime": 1399680000, "reviewTime": "05 10, 2014"}
{"reviewerID": "AX8RNL27TE61H", "asin": "B00FJKDYWW", "reviewerName": "G. E. Fowler \"blue eyes\"", "helpful": [1, 1], "reviewText": "I have read several books by AnnaLisa Grant and loved every one of them. Her books have a messageand are very enjoyable.Can't wait to read more of her books.", "overall": 5.0, "summary": "Great book", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A1BKNLD0QJD4CZ", "asin": "B00KAQY2BC", "reviewerName": "Addicted to books \"Neb\"", "helpful": [1, 2], "reviewText": "Loved this book. Couldn't stop reading it. The story was sad and so real in a way. You fall in love with Zeke, but not immediately.", "overall": 5.0, "summary": "So real!", "unixReviewTime": 1401408000, "reviewTime": "05 30, 2014"}
{"reviewerID": "A34S69FG6QFS4L", "asin": "1414336241", "reviewerName": "Bearister \"Bearister\"", "helpful": [4, 5], "reviewText": "I enjoyed this book even though the subject matter deals with one of the most terrifying events or series of events in the history of the modern world: The systematic murder of millions of Jewish men, women and children by one of the world's most notorious psychopaths: Adolph Hitler. The story is told primarily through the eyes of a young Jewish man, Jacob Weisz, Weisz is arrested and transported to Auschwitz for his part in freeing 200 Jews who are being transported by train to Auschwitz for eventual extermination. While Weisz is a fictional character, this chronicle of his ordeal and eventual escape from that notorious death camp is very real. I cannot begin to image what innocent people went through at this place of true horror but this novel does create a believable picture of one man's existence there.", "overall": 5.0, "summary": "A Very Readable Novel Involving a True Historical Disaster", "unixReviewTime": 1395705600, "reviewTime": "03 25, 2014"}
{"reviewerID": "A30G9QBYP1N3MQ", "asin": "0399159347", "reviewerName": "Nancy L. Gleason \"nannyloug\"", "helpful": [0, 0], "reviewText": "The build of the plot takes the reader through a bit or agony, but once established the book becomes a delicious page turner. Not a shocking who-done-it, but the ending does contain a shock and provokes self examination.", "overall": 4.0, "summary": "slow to start, but a page turner", "unixReviewTime": 1400112000, "reviewTime": "05 15, 2014"}
{"reviewerID": "A3DYWIZH74ASO6", "asin": "189110554X", "reviewerName": "Rakson", "helpful": [1, 2], "reviewText": "Gifted this book but then she shipped two kinds of the energy bars. Very good, organic and the recipe was from an IU grad. All ingredients were easily bought.", "overall": 5.0, "summary": "Gift Produces Energy Bars", "unixReviewTime": 1398124800, "reviewTime": "04 22, 2014"}
{"reviewerID": "A2HDQZUKT0Q6P4", "asin": "1400069548", "reviewerName": "Teresa Willett", "helpful": [1, 1], "reviewText": "It doesn't matter what Gail Caldwell writes about -- the aftereffects of polio, hip replacement, her dog, or a life-changing five-eighths of an inch -- it is always so much more than the topic suggests. Whether she's sharing memories of her mom (and you'll love her mom's "I'll let you know" reply to...), or interpreting a dream, you'd never sit next to her on a plane and walk away thinking "what a bore." Her introspection, insight, and approach to life (the very way she describes her experiences -- "we were able to lengthen the leg... --- like saying, we were able to walk on water, or, we were able to lift the moon") combine to give a startling quality to even the most mundane and unappealing subjects.", "overall": 5.0, "summary": "Able To Lift the Moon", "unixReviewTime": 1397692800, "reviewTime": "04 17, 2014"}
{"reviewerID": "AECZ52IN0M0QL", "asin": "1451689012", "reviewerName": "Linda Krause", "helpful": [0, 0], "reviewText": "Read the first book in this series and have followed this author ever since. Can hardly wait for the next books to come out! This is a very good author to follow!", "overall": 5.0, "summary": "I'm hooked on this series!", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "A2F0G4KTBVKH59", "asin": "1477264566", "reviewerName": "Rosemary Marshall", "helpful": [0, 0], "reviewText": "I really enjoyed reading this book by Carl Reiner reflecting on his life. What a fabulous human being! What a great life!", "overall": 5.0, "summary": "A great read", "unixReviewTime": 1390089600, "reviewTime": "01 19, 2014"}
{"reviewerID": "AQ0RJHLZAU0TS", "asin": "0425259862", "reviewerName": "Peeta", "helpful": [0, 0], "reviewText": "I loved the first book of her trilogy and was a bit disappointed with the second book , of her trilogy , because the ending of this particuliar second book was as though ...she just stopped the story . Hopefully the third & final book of this Trilogy will redeemthe second book of this Trilogy .", "overall": 4.0, "summary": "Shadow Spell:Book 2 of the cousins O'Dwyer Trilogy", "unixReviewTime": 1398988800, "reviewTime": "05 2, 2014"}
{"reviewerID": "A3MOO5EO6QEQFJ", "asin": "0989450252", "reviewerName": "Justine Neopolitan", "helpful": [0, 0], "reviewText": "This was a good book. It kept me interested not like some 3rd books in a series that is just more of the same. I enjoyed reading about colton and Riley.", "overall": 5.0, "summary": "crashed", "unixReviewTime": 1396310400, "reviewTime": "04 1, 2014"}
{"reviewerID": "A3ST48U9WCET8J", "asin": "1476736499", "reviewerName": "C. Fuqua \"Doofer\"", "helpful": [0, 0], "reviewText": "I've read all the books but this one seems to be not as well written and a bit confusing compared to ANY of the previous books.", "overall": 4.0, "summary": "I've read all the books but this one seems to ...", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "A2HVU3WFPAPT0X", "asin": "B00I1P2QPI", "reviewerName": "ArthurW", "helpful": [5, 5], "reviewText": "This book has a few, general ideas on how to make money blogging but then goes into detail on how to join the author's network of gurus. You pay a monthly fee, buy more back-end products/services, sell the membership to others and - eventually - if you sell enough memberships and upgrades, you make your own money. By selling memberships rather than by blogging.I do not think that a sales pitch should be sold as a \"how-to book\"", "overall": 1.0, "summary": "A Sales Pitch, Not a Book", "unixReviewTime": 1391385600, "reviewTime": "02 3, 2014"}
{"reviewerID": "A36O3IZU4IXSL3", "asin": "0446401269", "reviewerName": "Bonnie Boudreau", "helpful": [0, 0], "reviewText": "Wonderful book. Love all of nicholas sparks books. He is a great author plus a lot of his books take place in Wilmington, NC & my sister lives there. Lovely little town!", "overall": 5.0, "summary": "At first sighr", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A3IA41GY8G0CL6", "asin": "B00DG261UW", "reviewerName": "Vtreader", "helpful": [0, 0], "reviewText": "This now was by far the best of the Four collection. Again I would have liked to have read this either before or while I was reading Divergent. I really love Tobias point of view and it just explains things better. I wonder if Roth will write more Four stories? I hope so.", "overall": 5.0, "summary": "Faction traitor must read", "unixReviewTime": 1405382400, "reviewTime": "07 15, 2014"}
{"reviewerID": "A3VQ7DDBQ28RPT", "asin": "1491510706", "reviewerName": "Jason M.S.B.", "helpful": [0, 0], "reviewText": "I would read this book over an over again. It tells of a girl struggling to survive against cancer and how heroic an strong she is while doing it.", "overall": 5.0, "summary": "Incredible!!!", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "A3FW06OAUGJ884", "asin": "1495227960", "reviewerName": "Red Cheeks Reads", "helpful": [1, 1], "reviewText": "Broken is the debut novel by K.Webster and it is HOT! From the moment I started this book I did not want to put it down. The characters of Andi and Jackson are so deliriously sexy you can’t help but to root for them the whole way through! This book is full of fun, drama and super steamy!This book is about how two people who are distancing themselves from even the remote possibility of love can change if the right person comes along!Andi is young and beautiful but her once sense of hope at a happily ever after has been lost. After she caught her fiance cheating, her whole outlook on love changed. After regaining control of her emotions, Andi decided never to let a man hurt her like that again. Now, Andi plays a game . . . the kind that keeps her heart safe but her needs met. Andi keeps men for one weekend, 3 days, of fun and excitement then she is done. She gets all the fun she wants with no commitment and no disappointment. Then Jackson happened . . .Jackson is rich. successful, handsome and oozes sex! But, Jackson comes with his own personal relationship drama that has left him scared too. When he hears Andi offering her game up to a stranger in a bar he decided to play along. He is completely down for a weekend of fun with no emotional attachment at the end. The weekend started out super hot right from the start in the club office . . .But it does not take long into their 3 days for you to be able to tell that what they are feeling is more than sex. When the weekend ends and they part ways you desperately want more for them. When life throws them back together can they get past their past baggage and work on their present?This whole book had me enthralled. I loved watching these two characters develop both individually and together. The flashbacks from their darker days really helped shape the characters for me and gave me great insight into why they handled things the way that they did. I though that K. Webster did a phenomenal job at producing a strong debut and I cannot wait for the other two books in this series!", "overall": 5.0, "summary": "A Steamy Debut", "unixReviewTime": 1392422400, "reviewTime": "02 15, 2014"}
{"reviewerID": "AIJW176H3ESVM", "asin": "0061655961", "reviewerName": "Tom Kennett", "helpful": [0, 0], "reviewText": "Eyes Wide Open is an engrossing mystery novel you can't put down. All the elements for a great read are present, believable characters, logical plot development, background with an integrated timeline, plausible story, the right amount of tension, and except for an unwanted open ending added to perhaps provide a segue to a sequel, the novel is perfect. Andrew Gross has developed a style such that I always expect the very best and in Eyes Wide Open: A Novel, he did not disappoint.", "overall": 5.0, "summary": "Engrossing Mystery", "unixReviewTime": 1392854400, "reviewTime": "02 20, 2014"}
{"reviewerID": "A2ZQG435OSH2GZ", "asin": "1596980133", "reviewerName": "Randy A. Stadt", "helpful": [1, 4], "reviewText": "If one were to be politically correct, that is, ideologically sound, one would characterize the debate between Darwinism and intelligent design as between science and the Bible, between reason and superstition. That is how it is essentially portrayed in the media and the scientific establishment.Author Jonathan Wells, however, is anything but politically correct. He portrays the debate as a conflict between two views of what is real. On the one side are the Darwinists, protectors of a materialist creation myth which begins with the words \"in the beginning were the particles in mindless motion.\" And on the other side are proponents of intelligent design, most of whom would affirm John chapter one, \"in the beginning was the Word.\"Not all I.D. proponents are Christians, but all are open to the possibility that nature may show the hallmarks not only of natural causes but also of intelligent causes. This is decidedly a politically incorrect point of view, and with examples Wells illustrates the professional cost one may incur for holding it.By citing philosopher of science Thomas Kuhn, he shows why the current Darwinian power structure is digging in its heels and refusing to consider evidence that does not comport with its materialist paradigm. But if Kuhn is right, Wells has reason to be confident that even now we are seeing the beginning of a paradigm shift as the last and strongest bastion of nineteenth-century materialism - Darwinism, crumbles before the growing onslaught of the evidence. Darwinism may go down kicking and screaming, but it will go down.", "overall": 5.0, "summary": "The Heart of the Matter", "unixReviewTime": 1389052800, "reviewTime": "01 7, 2014"}
{"reviewerID": "A1HL98I7QDBZQ7", "asin": "1484947983", "reviewerName": "Rachael Danley", "helpful": [0, 0], "reviewText": "I wasn't sure what to expect but I could not put it down. I laughed and I cried in this book. It was so real. Bella outdid herself with this one as well. She has me hooked with her Shade of a Vampire series and now this series. I am surprised I can get anything done.", "overall": 5.0, "summary": "Awesome book.", "unixReviewTime": 1399334400, "reviewTime": "05 6, 2014"}
{"reviewerID": "AQAKPQHPRHK88", "asin": "1594486344", "reviewerName": "Terrence S. Campbell", "helpful": [1, 2], "reviewText": "I guess I am not intellectual enough to appreciate this book.I have read every Larry McMurtry book on the old west ( He won the Pulitzer for Lonesome Dove so is no amateur here ) and enjoyed every minute ... probably because I liked the characters."Onion" is the single most annoying character in this book and sadly he/she is the chosen narrator ... for me, an unreliable and unlikeable one.The book also needed an editor ... it went in pointless circles and could have been much more interesting with about 100 less pages of repetition.", "overall": 2.0, "summary": "I tried, I really did", "unixReviewTime": 1394668800, "reviewTime": "03 13, 2014"}
{"reviewerID": "AN8C7BGR98HLN", "asin": "0062220500", "reviewerName": "Nash Black \"Troubadour\"", "helpful": [13, 14], "reviewText": "Jacqueline Winspear's new stand alone novel, THE CARE AND MANAGEMENT OF LIES follows the lives of three people during WWI. Thea and Tom Brissenden are brother and sister. Kezia Marchant, a city girl, meets Thea at boarding school. Thea takes Kezia home to their family farm and eventually Kezia and Tom are married.The advent of WWI changes the lives of everyone in Britain as the fighting in Europe consumes both young and old in the trenches of France.Thea flees the farm for London and after a near brush with jail during a suffrage campaign joins her brother on the battle field leaving Kezia to maintain the farm. Each lives a life they never imagined nor expected to comprehend. To shield the others a well constructed tissue of lies evolves through their letters.A fine balance of point-of-view among the characters keeps the story moving and the read turning the pages. It also leaves said reader longing for another story about survivors.CARE AND MANAGEMENT OF LIES is an excellent offering from a master story teller.Nash Black, author of Cards of Death.", "overall": 5.0, "summary": "Time when Truth Must Be Flavored", "unixReviewTime": 1397692800, "reviewTime": "04 17, 2014"}
{"reviewerID": "AEAWI4FICHL2N", "asin": "148238678X", "reviewerName": "Shelly", "helpful": [0, 0], "reviewText": "This book has it all, love, suspense, horror. Rylie finds out who the father of her babies is, brothers Seth or Abel. She will finally have to make a choice between them.", "overall": 5.0, "summary": "Wow", "unixReviewTime": 1396915200, "reviewTime": "04 8, 2014"}
{"reviewerID": "A10EAPY41X3OS8", "asin": "1620610094", "reviewerName": "Dawn D", "helpful": [0, 0], "reviewText": "The third story in the Lux Series follows suit with the other two. The storyline is interesting, I've never read a series that has being of light from another planet. My problem with this entire series is that there are far more mistakes throughout the book than there ever should be. Although this book has far fewer mistakes than the first two, there are still mistakes to be found.", "overall": 4.0, "summary": "Good storyline", "unixReviewTime": 1397260800, "reviewTime": "04 12, 2014"}
{"reviewerID": "A14JZY0OCD6QE7", "asin": "1493587412", "reviewerName": "Gracie D29", "helpful": [1, 1], "reviewText": "Beyond 10 stars. This was the perfect recipe for a book. No need to go into details, but it was just the right amount of everything needed to make a good book. Cannot believe I just found this one and book 2 was then already available - yeah me b/c I didn't have to wait for the sequel.", "overall": 5.0, "summary": "WOW, WOW & OMG soooo GOOD!!!", "unixReviewTime": 1395360000, "reviewTime": "03 21, 2014"}
{"reviewerID": "A2YVPF6ZOHJ76V", "asin": "0099911701", "reviewerName": "Joan Behnke", "helpful": [0, 1], "reviewText": "I did not like her style of writing. Too wordy and too long and not enough action. I like Time travel romance but would prefer Sky Purington or Peggy L. Henderson. Love their books", "overall": 2.0, "summary": "Too wordy, did not like her style of writing.", "unixReviewTime": 1390262400, "reviewTime": "01 21, 2014"}
{"reviewerID": "A2XVZDFJGT7JM8", "asin": "B00GAHEYDQ", "reviewerName": "SMP", "helpful": [0, 0], "reviewText": "I'm sorry to say that, for me, this book fell short of what I've expected from Macy after reading her Sultry Series. The premise of the good 'vanilla' girl and the tattooed bad boy was old.I was left wondering what this book had to do with the Dumont brothers. Apart from being set in the same town I can only see one character from this novella that transfers over into the next book of the series. Otherwise, I didn't get the connection.One can only hope that when we get to the Dumont brothers stories things will pick up because I love Macy's writing.", "overall": 3.0, "summary": "Disappointing", "unixReviewTime": 1396569600, "reviewTime": "04 4, 2014"}
{"reviewerID": "A2CA0MYM4FCQSJ", "asin": "1936009293", "reviewerName": "Meredith \"Austenesque Reviews\"", "helpful": [5, 5], "reviewText": "What if Mr. and Mrs. Bennet both experienced traumatic and disturbing tragedies that forever altered their lives?What if Mr. Bennet was indeed quiet and private, but unlike Jane Austen's character, he was a responsible parent and attentive husband?What if there were secrets, secrets, and more secrets surrounding the Bennet daughters???In many Austenesque novels we see Mr. Bennet depicted as negligent, acerbic, unsociable, and even unreasonable. Sometimes he is one of the antagonists and sometimes he is a secretly sentimental. In Suzan Lauder's debut novel, Alias Thomas Bennet, she places Mr. Bennet in a role he does not often have the good fortune to occupy – the role of hero!In this novel Mr. Bennet takes more interest and care in his family. He doesn't make sport of or ignore his wife, and she in turn is a bit more sensible and economical. He isn't careless with his finances and management of Longbourn, which results in a very comfortable living situation and adequate dowries for his daughters. When Mr. Darcy comes to town, he finds the Bennets (especially Mr. Bennet and Elizabeth) to be very intelligent and pleasant company. How do the improved manners and abundance of propriety in the Bennet household effect the illustrious Mr. Darcy of Derbyshire...Is Elizabeth still inferior? Is marrying her still a degradation?What an originative take on Pride and Prejudice! I enjoyed seeing how the different dynamics of the Bennet family impacted the storyline, and the happy and congenial atmosphere around Longbourn was heartwarming to witness. Much better than their usual disorder and disfunction! I enjoyed seeing Mr. Bennet be active in his daughters' lives and take steps to protect them from Wickham. While at times, I may have thought the Bennet family a little too near “pictures of perfection,” I overall enjoyed seeing them portrayed in a more favorable light for a change!What I loved most about this story was that it had a duel plot – besides the present-day story of Mr. Bingley letting Netherfield Park, readers learn about the traumatic experiences Mr. and Mrs. Bennet faced twenty years ago and how those experiences brought them together through periodic flashbacks. For me, learning the secrets of their past and witnessing their falling in love was my favorite part of the story. More so than the Darcy and Elizabeth storyline! (I know, how shocking, right?!?) In fact, I would have loved to see more of Mr. and Mrs. Bennet! Especially Mrs. Bennet – if Mr. Bennet is this story's hero, I think she should be the heroine. :)Unique and enthralling, Alias Thomas Bennet is a wonderful choice for readers who want to see a different side of Mr. and Mrs. Bennet! I sincerely hope we see more creative and unique novels pour from the pen of Suzan Lauder real soon!Warning: Some sexual intimacy (between Darcy and Elizabeth) and sexual violence (not between Darcy and Elizabeth)Austenesque Reviews", "overall": 4.0, "summary": "So You Think You Know Thomas Bennet...", "unixReviewTime": 1392336000, "reviewTime": "02 14, 2014"}
{"reviewerID": "AUCPUCPK3GK2C", "asin": "1465416951", "reviewerName": "Kellee", "helpful": [0, 0], "reviewText": "If ya love the Lego movie this is the book for ya. OMG this book is so good. I totally think ya should by this awesome book. PEACE!", "overall": 5.0, "summary": "AWSOME", "unixReviewTime": 1395619200, "reviewTime": "03 24, 2014"}
{"reviewerID": "A3EBDUYEW47PIB", "asin": "1442341165", "reviewerName": "DAWN M STRONG", "helpful": [0, 0], "reviewText": "I went through a very similar experience, as Shania, only I couldn't marry the other spouse, because he had died. It was entertaining to read her life story, and then to have her share her pain of infidelity, betrayal and divorce, and her come back.", "overall": 5.0, "summary": "very inspiring", "unixReviewTime": 1397347200, "reviewTime": "04 13, 2014"}
{"reviewerID": "A1RNYY1QRIDBC3", "asin": "0425270793", "reviewerName": "Delaney", "helpful": [0, 0], "reviewText": "Love this series. This is one of the best in the series. I have waited along time for this story to be told and for me it was worth the wait. Skyler, Josef and Paul make a not only funny but a wonderfully competent team. There were times when I was laughing out loud. There wasn't just one battle at the end but you had confrontations throughout this story that did not let me put down this book. Looking forward to the next book!", "overall": 5.0, "summary": "Fast Pace!", "unixReviewTime": 1389830400, "reviewTime": "01 16, 2014"}
{"reviewerID": "A2YHZL0EWSJ2DA", "asin": "1480276855", "reviewerName": "June B.", "helpful": [0, 0], "reviewText": "I did not get past three pages of this book because the f bomb was used so much i was distracted from the story line and decided not to waste any time going any further with the book if i could not get past the first three pages aggravated with the profanity", "overall": 1.0, "summary": "not impressed", "unixReviewTime": 1399420800, "reviewTime": "05 7, 2014"}
{"reviewerID": "AOYWKK9FHFU26", "asin": "B009G1EFKK", "reviewerName": "C. Peace \"Author of the Artesans of Albia fan...", "helpful": [11, 11], "reviewText": "Blood Tournament is a gritty, realistic novel full of action, emotion and suspense. Written in a full-on style, it should appeal to fans of The Hunger Games and similar dystopian novels.There is good interaction between the characters, and plenty of plausible dialogue.I did see one or two typos and issues over tense, hence my 4* rating.", "overall": 4.0, "summary": "Gritty, realistic, and full of action", "unixReviewTime": 1388620800, "reviewTime": "01 2, 2014"}
{"reviewerID": "A21HSVV5G1GF3M", "asin": "0440223342", "reviewerName": "S. F. Howell", "helpful": [0, 0], "reviewText": "Well written historical novel with characters I could bond with. Loved Julia's spirit and Morgan's vulnerablity. Good engrossing summer read.", "overall": 5.0, "summary": "Intelligent Beauty and reluctant Beast", "unixReviewTime": 1404518400, "reviewTime": "07 5, 2014"}
{"reviewerID": "A3PAK16C0K8PZ1", "asin": "1250015618", "reviewerName": "teach4173", "helpful": [1, 1], "reviewText": "This is book 3 in the Nemesis, Unlimited series.After her husband's death, Bronwyn Parrish learns that her fortune is gone. The day she leaves her home to find work, she has an unexpected guest. Marco Black, from Nemesis Unlimited, has taken the job of trying to get her fortune back. Nemesis heard about Bronwyn's trouble from her former maid. They normally didn't help the nobility, but they were convinced that Bronwyn was worthy.They soon learn that Bronwyn's late husband's business manager stole the money to cover his gambling debts and travel to Paris to find him. After locating the man, they learn that he owes money to one of France's most ruthless crime syndicates, Les Grillons. Unfortunately, the business manager can't pay back the money he owes and is soon killed. Since Bronwyn and Marco witnessed the murder, they are now on the run from Les Grillons.Marco searches out a former associate of his for help. While running from Les Grillons, Marco and Bronwyn can't fight their attraction to each other and soon become lovers after agreeing that this would be a short affair. But what happens when their feeling start to run much deeper?I LOVED this story. You see bits of Marco in the other books in the series and knowing that he was a spy for England had intrigued me. His story did not disappoint me.Browyn was not your typical society wife. When she lost all her money, she didn't lose it. She had set a plan in motion when Marco swept in to help her find the missing money. Had she been the typical society miss, Marco would have never fallen for her. His background working with Nemesis has given him a dislike of the upper class. It said a lot to Marco that Bronwyn's maid was the one asking for help. She had to be someone special to inspire such loyalty from an employee.As with all the other stories in the series, the significant other seems to fall right into the life of Nemesis. The organization plays such a big part in their lives that the relationships wouldn't work otherwise. Because of this, these stories are not your typical historical romance with the relationships taking place at several society balls. If you are looking for that type of story, this book (and series) is not for you. But if you are looking for a historical romance with some adventure and mystery then this is the series for you. I'm really hoping that Archer continues to write this series as I just can't seem to get enough of it.Thanks go to St. Martin's Press via NetGalley for a copy of the book in exchange of an honest review.", "overall": 5.0, "summary": "LOVED it!", "unixReviewTime": 1402704000, "reviewTime": "06 14, 2014"}
{"reviewerID": "ANDR90VLB09Z3", "asin": "030727179X", "reviewerName": "abiddings", "helpful": [0, 0], "reviewText": "While reading this book, I didn't know quite what to think. But I found myself being drawn in by the author's writing and her prose. I wanted to figure out how each character interconnected and how that affected Claire. I took one star away because I was not a fan of the ending of the book. Though I would read this author again.", "overall": 4.0, "summary": "In the end, I liked it", "unixReviewTime": 1393286400, "reviewTime": "02 25, 2014"}
{"reviewerID": "A28UY60PJW8PPO", "asin": "0470169419", "reviewerName": "TrueBella777", "helpful": [0, 0], "reviewText": "Great book for entertaining! Summer time sangrias are the absolute best drinks to serve at my book club and cookouts.", "overall": 5.0, "summary": "Delicious!", "unixReviewTime": 1403568000, "reviewTime": "06 24, 2014"}
{"reviewerID": "A11Y6I7C2V93J7", "asin": "1440240965", "reviewerName": "Nana Nancy", "helpful": [0, 0], "reviewText": "I haven't had a chance to make any of the patterns yet, but I have other Joan Hinds doll books and they are my favorite, so I am sure I will love this one too! The patterns look easy and the directions are clear and I love that she has pictures in the directions.", "overall": 5.0, "summary": "Great patterns", "unixReviewTime": 1401235200, "reviewTime": "05 28, 2014"}
{"reviewerID": "A5JFMRT6DTZQT", "asin": "0307353400", "reviewerName": "Jeffrey H. Wildrick", "helpful": [0, 0], "reviewText": "With more twists and turns than a Ken Follett novel, this true story of England's most unlikely spy in WWII will keep you up and turning the pages. Truly amazing.", "overall": 5.0, "summary": "Truth is stranger than fiction", "unixReviewTime": 1394582400, "reviewTime": "03 12, 2014"}
{"reviewerID": "A1KE9YF1XCNBAU", "asin": "0989108198", "reviewerName": "Charlotte", "helpful": [0, 0], "reviewText": "This series is awesome ! It's a love story that goes through happy times and horrible times. The characters pasts come back to haunt them but through love they manage to try to find a way. This story is action packed and full of love. I highly recommend you read all 3 books ! You will fall in love ! I want to say more but I have a big mouth and I'm scared I'll give away too many spoilers . Don't wait read these ! Once you do you will be hooked ! I promise !!", "overall": 5.0, "summary": "LOVE, LOVE, LOVE", "unixReviewTime": 1395878400, "reviewTime": "03 27, 2014"}
{"reviewerID": "AW40UPUC4UFDU", "asin": "1469241943", "reviewerName": "Mama C", "helpful": [0, 0], "reviewText": "This book started rather slowly, but became a story that was difficult to put down. It followed the British women who were supporting the war effort each in their own way and the bond they developed.", "overall": 5.0, "summary": "Historical fiction", "unixReviewTime": 1398556800, "reviewTime": "04 27, 2014"}
{"reviewerID": "A3A9ICH5LQFJ1P", "asin": "1476747172", "reviewerName": "Char Lotte \"Charlotte-Marie\"", "helpful": [1, 1], "reviewText": "Every book this team produces I will read. I enjoy the characters; I enjoy the plot; I wish there was more story development and back story that could contribute to a fuller experience, for me.", "overall": 3.0, "summary": "I will Always...", "unixReviewTime": 1395446400, "reviewTime": "03 22, 2014"}
{"reviewerID": "AZW65YZZ4PD3S", "asin": "B004TCWI1O", "reviewerName": "StephPhillips \"Stephanie K Phillips\"", "helpful": [0, 0], "reviewText": "Jumping to conclusions will often get you into trouble. Andrea, the lead female character, sure did make plenty of conclusions that may cost her her job and the man she's grown to love despite thinking he's exactly like her father. Quick read and a sweet story.", "overall": 4.0, "summary": "Sweet", "unixReviewTime": 1397347200, "reviewTime": "04 13, 2014"}
{"reviewerID": "ASSPJ5DE2VVN0", "asin": "B00C2JOLG6", "reviewerName": "Rebel Girl", "helpful": [1, 1], "reviewText": "Will these to ever get it together. The losses of friends ,family , babies. So sad this book and some how i keep coming back for more of these book im in to deep now to turn away", "overall": 5.0, "summary": "Tessa and Lucas", "unixReviewTime": 1398297600, "reviewTime": "04 24, 2014"}
{"reviewerID": "A2K1ZQM6AHZI7T", "asin": "0312948026", "reviewerName": "GA buyer", "helpful": [0, 0], "reviewText": "Nancy Jean Siegler was quite the swindler, and her victims were everyone around her, family, husbands, and even an old man she started out just selling a grave site to, and ended up really taking for a ride. She spent her life doing identity frauds to gamble, and became very thorough with it, until she crossed the line.", "overall": 4.0, "summary": "In The Arms of Evil", "unixReviewTime": 1391212800, "reviewTime": "02 1, 2014"}
{"reviewerID": "A3W3DFMMBUHOY6", "asin": "B0092XYEIK", "reviewerName": "Yvonne D. Leibrock \"Always Learning\"", "helpful": [0, 0], "reviewText": "Short but what a story. Kept the pages turning because you always need to know there is your happy ending. I enjoyed reading it and it didn't take me a week to finish I did it in a weekend.", "overall": 5.0, "summary": "Good things do come in small packages!", "unixReviewTime": 1402790400, "reviewTime": "06 15, 2014"}
{"reviewerID": "A315QE4ZPI2K09", "asin": "B00H43KOU2", "reviewerName": "Amazon Customer", "helpful": [1, 1], "reviewText": "I tried this book on the strength of the author's previous book, Behind the Green Curtain. I liked this one as well, and although they are two very different books, I have similar things to say about this one, which is that I enjoy her writing but am not really a fan of her plot twists. This book has two plot twists; the first one takes place about halfway through and is fine, but the second one takes place in the final pages of the book and I could have done without it. For a moment, it felt like the rug was pulled out from under me, and although the author put it back, it was rather jolting. I think things could have accomplished it in a different way. Having said that, her story flows, the characters are interesting, there is some humor, and I like her analogies and imagery.", "overall": 4.0, "summary": "two twists", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "A3QYBCR9UO261D", "asin": "0060242647", "reviewerName": "Amelia Airhead", "helpful": [0, 0], "reviewText": "I retired from teaching at the primary level and wish I'd had this book years ago. It's just a perfect segue into the purchase of caterpillars and Butterfly habitat which I also ordered from Amazon.The 2 little boys, ages 3 and 6 were very interested and love the "big words" which they learned quickly. Now that we are watching the book come to life, the whole family is having fun.", "overall": 5.0, "summary": "Best Ever Book on Metamorphasis", "unixReviewTime": 1402963200, "reviewTime": "06 17, 2014"}
{"reviewerID": "A223F9MO3U3TQ2", "asin": "0803737882", "reviewerName": "annieptigger", "helpful": [1, 1], "reviewText": "Grandson Ben loves Judy Schachner Books and this is another one that he loves reading..I highly recommend her books..~!~!~!", "overall": 5.0, "summary": "Love Judy Schachner Books~!", "unixReviewTime": 1389830400, "reviewTime": "01 16, 2014"}
{"reviewerID": "A2I9CBAL7EYQQ2", "asin": "B006HHDYPS", "reviewerName": "T Tribble", "helpful": [0, 0], "reviewText": "but again its is always too short!!If you havent read the Samantha Moon series, you really should!Well Written, entertaining, total laugh out loud moments, with believable characters and concrete story lines, they will quickly become your favorite too.J.R Rain, thank you for being a Author.(I like to believe that he owns a pomeranian, which of course are THE best dogs to have)", "overall": 5.0, "summary": "another brilliant story", "unixReviewTime": 1392595200, "reviewTime": "02 17, 2014"}
{"reviewerID": "A1NS9916NIE6PD", "asin": "0451176464", "reviewerName": "TTDubya", "helpful": [0, 1], "reviewText": "I had to put this book down because it was just too slow. The subject matter and situation was very creepy, the sense of suspense and foreboding was nicely developed, but couldn't hang with all the rambling ruminations of the poor protagonist .", "overall": 3.0, "summary": "The only Stephen King novel I couldn't finish.", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "A2KMKTXSAIM1NF", "asin": "0985420545", "reviewerName": "DJ", "helpful": [0, 0], "reviewText": "From a troubled youth to an adult male, Kit has made his way. He is a man of honor & holds the love for his Ivy in his mind, body, & soul. This couple has traveled a perilous journey, most at the hands of others, they have been torn apart, & found their way back to one another..... their love & their child have cemented their relationship.Recommended reading...waiting for the next story.", "overall": 5.0, "summary": "Redemption", "unixReviewTime": 1405036800, "reviewTime": "07 11, 2014"}
{"reviewerID": "A1R8BQKA41R85I", "asin": "0060920882", "reviewerName": "Pinewood Sage", "helpful": [0, 0], "reviewText": "Well researched and written. Gannon puts you aboard U-123 and keeps you shoulder to shoulder with Hardegen, his officers and men and at the same time keeps you aware of circumstances, decisions and events that shaped the history of boat and it's commander.", "overall": 5.0, "summary": "FOCUS", "unixReviewTime": 1395014400, "reviewTime": "03 17, 2014"}
{"reviewerID": "A3VPVS7TBBOFHY", "asin": "160774466X", "reviewerName": "raven", "helpful": [0, 0], "reviewText": "This is a wonderful cook book.The classic Mac & Cheese recipe is just like my beloved dearly departed Mother used to make it for us. The only extra ingredient she added was her devoted love, and glad you are enjoying it smiles and laughter.I tried that recipe first, and it made me cry. Was just like Mom's. (Oh those memories)....If a recipe could bring me to tears when eating it and stir up these memories, I could only imagine how wonderful the rest of the recipes will be.The reading of all the recipes alone made me wish I had a 5 star kitchen so i could make a huge amount of the basic cheese recipe and try each and every one of the 50 printed recipes.Blessings to the 2 authors Allison and Erin, and I wish them continued success in all their future endeavors......and gals please open an on line service so people from other states can order some of your items through the internet, especially that salsa which is still not available to buy yet but was aged in wheel barrels by the Asian couple you showcase on your homeroom restaurant website. i would love to buy that too from you on the internet.", "overall": 5.0, "summary": "Just like my beloved departed Mom used to make it", "unixReviewTime": 1395187200, "reviewTime": "03 19, 2014"}
{"reviewerID": "A2WZNZSA6ID1AE", "asin": "B00571KM2S", "reviewerName": "Crystal E", "helpful": [0, 0], "reviewText": "The stories are interesting but they simply end....without really having a satisfying ending or a resolution to them. It's like the author could not figure out how to end something, so he simply ended it ...and lets the reader try to figure out which direction it should take. Only the first one had a good ending but the story itself was poor.", "overall": 2.0, "summary": "Only four poorly ended stories per book", "unixReviewTime": 1396742400, "reviewTime": "04 6, 2014"}
{"reviewerID": "AQTLSE2QDCO0M", "asin": "0671718533", "reviewerName": "Melissa A. Bartell \"MissMelysse\"", "helpful": [0, 0], "reviewText": "Thanks to the Amazon class action suit about ebook price fixing, and a lovely $60 payout, I’m catching up on many, many Star Trek novels that I missed during the years when I wasn’t reading them for whatever reason.One such acquisition was the Star Trek: The Next Generation novel Dark Mirror, by Diane Duane. It’s TNG’s chance to experience the “mirror universe” we got to see on-screen in both TOS and DS9, and, as I expected it to be, it was well written, with a few moments that really delighted me.One was the introduction of the dolphin, Hwiii, a hyperstring researcher who ‘swims’ through the ship in a sort of water skin. Another was when Data, meeting Hwiii, tilts his head for a moment and then ‘speaks dolphin,’ because, of course he does.I liked that Geordi and Deanna were the initial away team to the mirror Enterprise, and that they both got to use the knowledge they gleaned both from study and experience. Some of my favorite episodes were when Troi actually got to be a psychologist, and in this novel, she uses that training as much as she uses her innate empathetic abilities.Similarly, Geordi’s incredible depth of knowledge is highlighted in this book, as he works, sometimes with colleagues, and sometimes alone, to figure out a way to save, not just the ship, but the universe itself.I’m not sure when this was originally written but it felt like early TNG-fic. Data is very ‘sciency’ but doesn’t have as much depth as he does in later novels – even in later pre-emotion-chip ones. It’s obviously before the contemporary push for continuity within the novels, but it’s still an entertaining read.Trek fiction is my crack. This was a delightful fix.Goes well with Sashimi and tempura and Kirin beer.", "overall": 3.0, "summary": "Uneven in places, but enjoyable.", "unixReviewTime": 1396915200, "reviewTime": "04 8, 2014"}
{"reviewerID": "A61IBPJC4TOO5", "asin": "B00IB4YV52", "reviewerName": "tracier", "helpful": [1, 1], "reviewText": "Abby had a job she hated. She went to her BBW meeting and there was a flyer to get extra cash as a taste tester. She called the number set up a meeting. It was a whirlwind taste test for the man of her dream. Stephen only loved his work until he meet Abby. He hired her to be a a permanent test taster and there goes the whirlwind from there. It was good to see a big beautiful women end up with the handsome man.", "overall": 5.0, "summary": "So Sweet!!!!", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A295HJCIBQR2LB", "asin": "0425177181", "reviewerName": "JEB", "helpful": [0, 0], "reviewText": "This book was originally published in 1975 and is one of the best I have read, before or since. I read quite a bit, and honestly unless the book is outstanding, I tend to forget titles. I therefore count on the publishing date as a clue if I have read it. This is not the first time I've encontered this, and I feel that printing BOTH original and re-released publishing dates is helpful to your readers.", "overall": 5.0, "summary": "Excellent, but not a new story by this author", "unixReviewTime": 1388880000, "reviewTime": "01 5, 2014"}
{"reviewerID": "A3DZ6F0L8QWK9Y", "asin": "145161778X", "reviewerName": "Lily \"mini avid reader\"", "helpful": [0, 1], "reviewText": "Can any one realistically take as many pills as this woman did and still function? I gave it four stars only because I don't think so. I think her husband was a saint. To get that high and still drive,with kids in the car no less? I got into the characters,I like this authors books and need to investigate more of them. This woman was a hot mess. Enjoyable read if somewhat unrealistic.", "overall": 4.0, "summary": "Talk about snowed", "unixReviewTime": 1403740800, "reviewTime": "06 26, 2014"}
{"reviewerID": "A2U72WDAUX5CD8", "asin": "B00HA5SBC2", "reviewerName": "Marial", "helpful": [0, 0], "reviewText": "New York for Jay and his family has not been a positive.Montana for Nate and his family has been very positive but nit profitable.City answers an ad for marketing help for the dude ranch in Montana and a story unfolds.A story about abuse, depression, scholastic disabilities, and how a change of location, open minds, and love can help so much.I really hope this is just nook #1 and look forward to more!!", "overall": 5.0, "summary": "City meets Cowboy...need more than 5 Stars", "unixReviewTime": 1391385600, "reviewTime": "02 3, 2014"}
{"reviewerID": "A3I20T1U84YPTW", "asin": "0062078178", "reviewerName": "janine m. pezzino", "helpful": [0, 0], "reviewText": "I absolutely loved this book! I don't give many books 5 stars, most that I enjoy get 4 stars, but this one I thought was worth it. I've been waiting for Lynsay to get back to the long running plot line of Leonius Livius II. Within 5 minutes you were rooting for Basha (Devine) and I for one really liked her. Most immortals of her age don't know anything about the mortal world anymore, Basha is the exact opposite. I must admit I was waiting for her confrontation with Lucian for the entire book and that did not disappoint. You feel for everyone in that circumstance. My only suggestion is that I would have added one more chapter to the end of the book after they got home. I guess we'll have to wait til the next book to see them living happily ever after. :)", "overall": 5.0, "summary": "I absolutely loved this book!", "unixReviewTime": 1394841600, "reviewTime": "03 15, 2014"}
{"reviewerID": "AK8AQGDUOD3Z", "asin": "0547773579", "reviewerName": "Wafa", "helpful": [0, 0], "reviewText": "I got this book for my 9 months old son because he likes books and loves me to read to him.This book is so much fun and my LO likes the illustrations. I like that it is short sentences in every page; just enough to get my son's attention until I flip to the next page.My son is now 10.5 months old and he still likes the book as I read it to him every night.I like the size of the book; I find it more interesting to my son than small books.", "overall": 5.0, "summary": "Mustache Baby is GREAT book!", "unixReviewTime": 1389139200, "reviewTime": "01 8, 2014"}
{"reviewerID": "A1KZ3O0ZR6AP9D", "asin": "1250020026", "reviewerName": "Carol 1023", "helpful": [0, 0], "reviewText": "This book was another great read by one of my favorite authors. She keeps you on your toes from beginning to end.", "overall": 5.0, "summary": "Iris Johansen is great!", "unixReviewTime": 1400889600, "reviewTime": "05 24, 2014"}
{"reviewerID": "ABN9NHYEJUN7L", "asin": "B00EHMFCPK", "reviewerName": "booknerd", "helpful": [0, 0], "reviewText": "I’m quickly learning that Jessica Scott doesn’t play-what an intense book! There is so much raw emotion, and battle scars in this book I feel like I need therapy! Sergeant First Class Reza Iaconelli, where to start… My heart broke for him. He was pure male power wrapped up in a lot of personal demons. I seriously had to catch my breath a couple of times with him. He is full of contradictions. Physically he is all male. Big and physically strong. Emotionally he is living one day to the next trying to function as best he can. He tries to be the best Sergeant he can for his soldiers. He is sympathetic to their insecurities yet battles with how to adequately prepare them for the realities of war and military life. Reza is a recovering alcoholic, he struggles everyday with his addiction. He is also surrounded by soldiers that have the same struggles. Aside from struggling with alcoholism he is also dealing with PTSD. Reza came with his own scars before joining the military and we learn about his home life and how it shaped him.Captain Emily Lindbergh is the opposite of Reza, although she struggles with her own personal issues, she comes from a life of privilege. Her father was in the military but she never personally experienced the life of a soldier. She is trying to bring help to soldiers such as Reza and his men, but not everyone thinks this is a good idea or is very welcoming to her. Emily was a fantastic character. She tried to show the soldiers her commitment to their mental health and was often the target of military personnel’s wrath. Emily is alarmed at the high number of suicides and tries to provide the soldiers with some psychological support.As a couple Emily and Reza where exact opposites yet perfectly matched. Where he is physically strong and emotionally weak Emily is physically weak but emotional very strong. They had excellent chemistry and I loved that they formed a strong friendship. I loved that they each met the other where they were at. Emily never tried to “fix” Reza she accepted and gave him the support he needed although at times did not want.These characters were so real, Scott really peels back all their emotions and gives us two very vulnerable people. When I read “Back to You” I felt the same way. The characters were both so imperfect and so real. Ms. Scott really captures the damage that soldiers experience during combat, after, and before.Honestly, this is a tough read. I put the story down a couple of times, not because it was not well written or interesting, because it was all of those; but emotionally very challenging. The characters were worth it. It’s not a light read but it does provide a very “unromantic” look at the hardships of war and military life. Overall, I think I can say that I recommend everything and anything written by Jessica Scott. She really knows how to strip down her characters and show us who they are. After the emotional odyssey it’s beautiful to see Reza and Emily find their way together! Another fantastic journey with Ms. Scott!!", "overall": 5.0, "summary": "A-mazing / heart-ache/ with real people", "unixReviewTime": 1391990400, "reviewTime": "02 10, 2014"}
{"reviewerID": "A1XK7LVRLNIL90", "asin": "B00G98B20Y", "reviewerName": "Robintina", "helpful": [0, 0], "reviewText": "First of all, I love Greg Iles books from first reading Mortal Fear. I also love the characters of Penn Cage and his family and friends. I in no way felt it was an incomplete story. I did not read the excerpt from Natchez Burning because I just purchased the book. I think this was worth 1.99", "overall": 5.0, "summary": "Great Novella", "unixReviewTime": 1405900800, "reviewTime": "07 21, 2014"}
{"reviewerID": "A1NAMDUO3D8CFA", "asin": "1482678225", "reviewerName": "NotYours", "helpful": [2, 2], "reviewText": "This book catches you falling in love with the spunky characters and intriguing plot. The drama will keep you guessing how it may end. I would recommend this book to romantic readers.", "overall": 5.0, "summary": "Great romance book", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A305JZPTYTZX92", "asin": "B005ME39HU", "reviewerName": "Marielena Len \"Marielena\"", "helpful": [0, 0], "reviewText": "Have not read it, so not sure if its good or not. I installed it in my cellphone and tablet, but never read it.", "overall": 2.0, "summary": "looks good, bue have not read it", "unixReviewTime": 1391126400, "reviewTime": "01 31, 2014"}
{"reviewerID": "A1983ES85GQ6LC", "asin": "1495252671", "reviewerName": "mgoeken", "helpful": [0, 0], "reviewText": "So glad this installment finally published. Love me some Melody Anne, I'm sad to think that Joseph Anderson May be out of single men to set up!", "overall": 5.0, "summary": "more!", "unixReviewTime": 1393200000, "reviewTime": "02 24, 2014"}
{"reviewerID": "A3QPEGKLPS4FH", "asin": "0062257390", "reviewerName": "shoe1", "helpful": [1, 1], "reviewText": "Loved the relationship between the sisters and the accurate depiction of living with a depressed parent. Glad he was caught at the end.", "overall": 5.0, "summary": "lovely and suspenseful", "unixReviewTime": 1394150400, "reviewTime": "03 7, 2014"}
{"reviewerID": "AV5CP8CKC3FBU", "asin": "0061795135", "reviewerName": "Sherrie Hansen", "helpful": [0, 0], "reviewText": "By the time I reached the end of the Betsy Tacy series, I was so in love with the characters that I was hanging on every word. I'm so glad Maud Hart Lovelace extended the series into adulthood so that we could share the pleasure of what happened to Betsy and friends when they were all grown up. Betsy's adventures in the Great World initiated my passion for traveling in Europe, and Betsy's Wedding gave shape to my dream of happily ever after wedded bliss while gently warning me that nothing is ever perfect and troubles beset us all so matter how idyllic we may wish our lives to be.", "overall": 5.0, "summary": "Sweet Endings", "unixReviewTime": 1401667200, "reviewTime": "06 2, 2014"}
{"reviewerID": "AAVW30XZB2O8H", "asin": "0385347693", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "This book and the Doctor I found through foreverhealth.com has returned my health and life to me. Wonderful. Thank you Suzanne Somers. You are brilliant and my hero. I was practically bed bound for 8 years and now am reclaiming my life. Fantastic book and woman.", "overall": 5.0, "summary": "Has transformed my life and restoring my health and youth.", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "A2OQ1PNIV4849M", "asin": "1937004295", "reviewerName": "G.G.", "helpful": [0, 0], "reviewText": "Wonderful book I ordered book 2 when I was only a few pages into the book. Awesome story! Really well written! Thanks Aya!", "overall": 5.0, "summary": "Love this", "unixReviewTime": 1394668800, "reviewTime": "03 13, 2014"}
{"reviewerID": "A2GB4KHB64U8R3", "asin": "B00GL3RLXY", "reviewerName": "publish or perish", "helpful": [0, 0], "reviewText": "Mary Ann Rivers is a wonderful writer and the characters in this book, the second in the series, were well-drawn and likable. It's got delicious sexual tension as well. She is very close to being a writer I would automatically buy. There are just a couple things about her writing style that bother me a bit, but it may not be an issue for anyone else. One is that she over-complicates the internal conflicts to the point that it's a bit too much and a little convoluted. I don't think I've ever had this problem with a romance novel, since too much depth is not usually a problem, but I think she could pull back a bit on that and give more plot and external conflicts. There was never much standing in the way of their romance except their own issues, which were real and compelling but got to seem like they were over-done to sustain them through the book. And she piled them on, not so much heaping too many things so much as examining them in-depth and in excruciating detail, in many different ways over and over. This leads to my second issue, which is way too much interior dialogue, characters dissecting everything that happens when we've already get it. Much of this could have been cut out so there was a better balance of action and dialogue and the more interior writing. This might just be the writer's style and I might still read her, but it felt a bit like an overly rich dessert. Both of these issues are even more present in the first book in this series, "Live," which I did not finish. You want to eat it, you do eat it, but you wish it had been just a little lighter.", "overall": 4.0, "summary": "Mary Ann Rivers is a wonderful writer and the characters in this book", "unixReviewTime": 1406073600, "reviewTime": "07 23, 2014"}
{"reviewerID": "A2BR61QIL736F8", "asin": "0465004857", "reviewerName": "John R. Moore", "helpful": [0, 0], "reviewText": "This is the best analysis of the probable fate of the Lost Colony I've ever read. There has long been speculation about what happened to those people, and this book takes into account the likely decisions made by both the English settlers when their relief failed to appear as well as by the local natives, given the evidence in surviving records of their attitude towards the new-comers. Very informative and provocative. A great read for the history buff.", "overall": 5.0, "summary": "Excellent Account", "unixReviewTime": 1401235200, "reviewTime": "05 28, 2014"}
{"reviewerID": "A2TILLJKLQIUP4", "asin": "0316069515", "reviewerName": "Amazon Customer \"Challenging assumptions & pr...", "helpful": [0, 0], "reviewText": "Seems like it's impossible for Mr. Connelly to write a bad book. "The Gods of Guilt" is one of his best. Once again, ethically-suspect Mickey Haller (The Lincoln Lawyer) is back at work with an impossible case, a new love (?) and personal problems up the wazoo ... not to mention someone is trying kill him.One of the joy of Connelly's books are the full fledged secondary characters that pop up and weave in and out his stories. Another part of his brilliance, even though his books have continuing characters, who overlap into different series, you can pick up any one of his books, and feel right at home.Highly recommended!", "overall": 5.0, "summary": "Seems like it's impossible for Mr. Connelly to write a bad book.", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "A3H6ZWR6T4FP4Z", "asin": "0385317093", "reviewerName": "sarah", "helpful": [0, 0], "reviewText": "This is a great book that I have read over and over. I cry every time too. The story never gets old. Another great book from Danielle Steel", "overall": 5.0, "summary": "great book", "unixReviewTime": 1388620800, "reviewTime": "01 2, 2014"}
{"reviewerID": "A3IT5W2UOD3SP4", "asin": "1476763623", "reviewerName": "Jennifer", "helpful": [0, 0], "reviewText": "Drew Evans has a spectacular personality but this is told from Kate's POV. I missed Drew's wry commentary but I laughed and cried and was rewarded with a very happy ending! I wish the next book - Tamed - had more Drew!", "overall": 5.0, "summary": "Fun Read", "unixReviewTime": 1397952000, "reviewTime": "04 20, 2014"}
{"reviewerID": "A2C9KOHMO8UXM0", "asin": "1907565337", "reviewerName": "Dale L. Burney", "helpful": [1, 2], "reviewText": "I liked the details of the investigations and the way the stories are so intricate. Continuing to add new information throughout the story like they do reminds you of how real life can be so convoluted.", "overall": 5.0, "summary": "Great detective work!", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "A1UN53UR8JPVAW", "asin": "B00L4EHNXI", "reviewerName": "Ana Love", "helpful": [2, 2], "reviewText": "This sequel to Felicia Fox's \"Consumed\" series was an amazing read. This is not my normal genre, but I found myself hooked to Alex's and Felicity's story...Although the end is a cliffhanger,I'm not worried one bit,because I already purchased Crave, Her latest addition to this series. I recommend this book for anyone that enjoys a steamy read full of suspense, and even a bit of action. It's intensely addictive and Definitely a page turner! I love Felicia Fox's work,I can't wait to start on Crave and read anything else this author writes in the future.", "overall": 5.0, "summary": "WOW!", "unixReviewTime": 1404518400, "reviewTime": "07 5, 2014"}
{"reviewerID": "A20DJOMXBJJAEJ", "asin": "1616265949", "reviewerName": "jloshsky", "helpful": [0, 0], "reviewText": "This was one of the best books I've read in awhile! More stress than I expected but naive on my part. I would recommend this book to anyone.", "overall": 5.0, "summary": "The best book!", "unixReviewTime": 1391126400, "reviewTime": "01 31, 2014"}
{"reviewerID": "ARNLHIYTB1G28", "asin": "0142410306", "reviewerName": "Roseanne M. Pickering \"creative cook\"", "helpful": [0, 0], "reviewText": "I was absolutely captivated by the entire Sweep series. Once I picked up the first book, I couldn't put them down until I'd read the entire series which details the lives of a group of teenage blood witches. It ranks up there with the Twilight Series. These are great books for teens and young adults.", "overall": 5.0, "summary": "A great end to a series", "unixReviewTime": 1402185600, "reviewTime": "06 8, 2014"}
{"reviewerID": "A2O9V69MXLDBN", "asin": "B00IV0OEI0", "reviewerName": "LonBoy \"Lon Bohannon\"", "helpful": [0, 0], "reviewText": "I was provided a free copy of Creedor (The Reglon Empire Series) along with a request to read and review the book. I would rate the book 2.5 stars with a summary that the author has the beginnings of what could be an interesting series, but would caution that Creedor itself is an average stand alone novel that lacks a cohesive storyline. In the first 20% of the novel we are introduced to characters and a plot that I assumed would be the basis for the rest of the book, but this is not the case. After being introduced to Jarlord (obvious antagonist) and the wizard Vandalen (obvious protagonist), we move on to new characters and plots that end up taking shape and making some sense, but by that time the reader is at the end of the book.....which ends rather abruptly just as I felt like I was beginning to make sense of the story.I will admit that I am not normally an avid reader of fantasy or science fiction, so I was likely not as patient as I might otherwise be with what I considered a disjointed storyline that I had difficulty following at times. Nevertheless, there is enough promise shown by the author of Creedor that I will likely invest the time to read the next book in the series to see the outcome of what happens to Slogar, Camdus and Mara along with whether Vandalen commands a more prominant role in the next book.", "overall": 3.0, "summary": "Promising But Wandering Novel", "unixReviewTime": 1396483200, "reviewTime": "04 3, 2014"}
{"reviewerID": "AY701348ZZUTV", "asin": "061596463X", "reviewerName": "Mockingjay", "helpful": [0, 1], "reviewText": "I think the book could have been great if the author could have decided what kind of book she wanted to write. She has awesome descriptions, too vivid personal parts, great informational parts, poorly organized presentation. I understood what she was aiming for, but the journey was not fun. Will not read her again!", "overall": 2.0, "summary": "Disappointing. Good thoughts but poorly put together.", "unixReviewTime": 1402099200, "reviewTime": "06 7, 2014"}
{"reviewerID": "A18XA3F2L31MSC", "asin": "1595548238", "reviewerName": "m. \"iluv4dogs\"", "helpful": [0, 0], "reviewText": "I didn't think each book could be better than the one before but it is. For some reason, this book made me more emotional than the others. Maybe the message of hope, faith & love resonates more for me right now. Thank you :) this is an amazing book. Don't miss it!", "overall": 5.0, "summary": "breathtaking", "unixReviewTime": 1398556800, "reviewTime": "04 27, 2014"}
{"reviewerID": "A1BEE40YK4VV1X", "asin": "B00I2VUH8Y", "reviewerName": "iforgot2tellya", "helpful": [0, 0], "reviewText": "I liked this. I just have always had an issue with the (view spoiler) thing. I actually went between two and three stars because of this. I also think that the author went a little to far on focusing on the (view spoiler). Okay we get it she is chubby. Describing certain things could have been left unsaid. It is a quick HOT read so if you wanna read it. I am not sure you will feel the same as I did when I was done.", "overall": 2.0, "summary": "Cute and Okay", "unixReviewTime": 1394755200, "reviewTime": "03 14, 2014"}
{"reviewerID": "A3K9U1XHSPED5X", "asin": "0764209167", "reviewerName": "K. Ingerto", "helpful": [0, 0], "reviewText": "I have loved Mary Connealy's Trouble in Texas series and I was so looking forward to "Stuck Together," book 3, but I am now sad to have this series end! I loved getting back to Broken Wheel and spending time with Dare, Glynna, Vince, Jonas and all the others whom have made this town their home. Vince's family arrives unexpectedly in town and he is in for more than one surprise. Tina is trying to reform this town and finds that she may be going about it in the wrong way. As these two are struggling and trying to find their place, they are also struggling with feelings that are arising between them.I loved this story as it shared the love that grows between Vince and Tina, but also continues the story for Jonas and the others. Mary has done a great job with this series as the storylines and characters have been so fun and I felt like the characters all came alive and I loved their adventures and the bond that is so strong between everyone. I am looking forward to the next series that Mary is writing!*Thanks to Bethany House Publishers for the complimentary copy of this book in exchange for a honest review.*", "overall": 5.0, "summary": "Excellent characters and storyline!", "unixReviewTime": 1404432000, "reviewTime": "07 4, 2014"}
{"reviewerID": "A33EZ94CQ9P34Z", "asin": "0440216443", "reviewerName": "gina l schneider", "helpful": [1, 1], "reviewText": "Couldn't put this one down! Fast moving pace, intriguing characters and suspenseful plot kept me up late turning pages! If you like romantic suspense, give this one a try! Enjoy the ride!", "overall": 5.0, "summary": "Most excellent ride of hot romance and suspense!", "unixReviewTime": 1392249600, "reviewTime": "02 13, 2014"}
{"reviewerID": "AFLC7X1GC0FRB", "asin": "0425266060", "reviewerName": "Txgrl", "helpful": [2, 2], "reviewText": "I enjoyed the first two books in this series. Nothing earth shattering, but an enjoyable, casual read.. I also bought the audible versions so I could listen on the go. Got to the 3rd book and ... it isn't complete - I mean, it just ... stops. So basically, you get 2 stories that are pretty decent then a longish series of chapters with an author's note at the end that there is more to come (after you shell out more $$ of course.) If you want resolutions to a number of plot lines, you have buy book 4. There doesn't seem to be an expected date for that installment.I expect, at this price ($23 + audio), to find a beginning, middle and end to EACH book, not a bait and switch for the next installment. This made me so mad that I returned the book to Amazon - which I have never done before. I say steer clear - very poorly done.", "overall": 1.0, "summary": "3rd Book is incomplete", "unixReviewTime": 1401840000, "reviewTime": "06 4, 2014"}
{"reviewerID": "A26QGPTFACCL6Y", "asin": "0547237804", "reviewerName": "barbara badanish", "helpful": [0, 0], "reviewText": "I could not stop reading this book! Even though, at times of her" falling off the wagon", I was so tempted. I had to keep reading because this woman had to get well: SHE WROTE THIS BOOK!What torture mental illness MUST be! This woman was intelligent and articulate enough to allow us to view her inner struggles.", "overall": 5.0, "summary": "Tragedy!", "unixReviewTime": 1401753600, "reviewTime": "06 3, 2014"}
{"reviewerID": "A1NQZWADV62G4V", "asin": "0316206849", "reviewerName": "Wanda Horwege", "helpful": [0, 0], "reviewText": "Good story line and character development but language not as compelling, a bit forced at times. Not as gripping as Harry Potter!", "overall": 4.0, "summary": "Worth a read but not outstanding", "unixReviewTime": 1397692800, "reviewTime": "04 17, 2014"}
{"reviewerID": "A1E8FN80KF7QGF", "asin": "0804139024", "reviewerName": "Sarah A Porter", "helpful": [0, 0], "reviewText": "Great unique plot and 90% realistic ... you do begin to wonder what else can go wrong or alternately, how he stays sane during the ordeal. I very much enjoyed this story. If you like sci-fi, survival, and well developed characters you'll enjoy this story. I'd read another by Andy Weir.l", "overall": 5.0, "summary": "Alternate title - How to survive on Mars with duct tape and a pocket knife! A good read.", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "A2SRQWNCZSSMG", "asin": "1616146486", "reviewerName": "John F. Anderson Jr.", "helpful": [0, 0], "reviewText": "This is an excellent book that does not take sides, but follows the results of numerous cases that appear on the supreme court. The authors summarize their own conclusions from the cases they present. Their main question is whether the legal process for capital murder cases is effective when death has been reached as a verdict.", "overall": 4.0, "summary": "a well written review of capital punishment through cases that appear on the supreme court", "unixReviewTime": 1404000000, "reviewTime": "06 29, 2014"}
{"reviewerID": "A2DSNXBJ9B2HAD", "asin": "1442365528", "reviewerName": "Professor Bob", "helpful": [0, 0], "reviewText": "Red Sparrow is a grim, realistic, violent and suspenseful account of contemporary Russian and American espionage services. Not for the squeamish!", "overall": 4.0, "summary": "Grim, realistic and suspenseful!", "unixReviewTime": 1402876800, "reviewTime": "06 16, 2014"}
{"reviewerID": "A11QQ830LOZPSJ", "asin": "1492225975", "reviewerName": "Reading Deeva", "helpful": [0, 0], "reviewText": "Loved this book! This book speaks life on so many levels! Nivea and Von are a hot mess!!! Glad I got this on a and can't wait for them next part to this series...the things that go on in this circle is unbelievable!!! Excellent read, I suggest thus book to anyone who wants to be pleased! Bravo 10x", "overall": 5.0, "summary": "Love...", "unixReviewTime": 1394755200, "reviewTime": "03 14, 2014"}
{"reviewerID": "ABKZO5HIXF1GR", "asin": "1447259297", "reviewerName": "Deanna Haddrill", "helpful": [1, 1], "reviewText": "David Baldacci has one again written a taut action packed thriller that keeps you engrossed to the very last word. He writes great characters that you care about, and even brings a massive amount of heart to the ones you think are the enemy. I loved seeing the building elation ship between Robie and Reel and look forward to it continuing in future books. Who would have thought a book about assassins could have so much heart. I couldn't put this one down!", "overall": 5.0, "summary": "Couldn't put it down", "unixReviewTime": 1398988800, "reviewTime": "05 2, 2014"}
{"reviewerID": "A2L84JQE0MYZRL", "asin": "1492910589", "reviewerName": "Danielle Renee Glover", "helpful": [0, 0], "reviewText": "Love, love, love Carly Phillips!! She is a wonderful writer and always such good, good books. This one is no exception, such a good little love story makes me wish my high school sweetheart would come back into my life lol", "overall": 5.0, "summary": "Good, Good,Good!!", "unixReviewTime": 1394323200, "reviewTime": "03 9, 2014"}
{"reviewerID": "AU7DON4BH3JA5", "asin": "0800794052", "reviewerName": "stuart", "helpful": [0, 0], "reviewText": "Interesting story of "ordinary" people in extraordinary circumstances. What would we do in similar situations if forced to back up what we believed?", "overall": 5.0, "summary": "thought provoking", "unixReviewTime": 1402704000, "reviewTime": "06 14, 2014"}
{"reviewerID": "A2SI5RQ8IMOB5E", "asin": "1558614761", "reviewerName": "samantha", "helpful": [1, 1], "reviewText": "I love the potrayal of Bette Davis in the movie and book is no different. Its amaxing how a simple show, song, movie, or book can describe how suddenly you realize how much alike you are so much alike the main character,", "overall": 5.0, "summary": "Hello.", "unixReviewTime": 1394150400, "reviewTime": "03 7, 2014"}
{"reviewerID": "A377ALAEK4QJFA", "asin": "0981484336", "reviewerName": "Barrington", "helpful": [0, 0], "reviewText": "This is perhaps the best book I've read that describes successful strategies for a man to date women. It is written by a man for men.Unlike many books which suggest aggressive approaches, misdirection, and head games, this book considers the underlying psychological differences between men and women and suggests reasonable and sensible methods for bridging the gap. It focuses on meeting a woman's needs without compromising a man's dignity.The book touches on personality types, what is acceptable and not acceptable in dating situations. I found the discussion on how to use Neuro Linguistic Programming (NLP) and Transactional Analysis (TA) when interacting on dates extremely valuable. NLP and TA are used to build a sense of compatibility that improves your date's experience - they are classic sales techniques.I've now read the book a couple of times, and I will probably read it again. From discussions on when to walk away, and how to overcome barriers this book has shaped my thinking in a fundamental way and helped me be a better and more thoughtful dater.The author has my thanks for writing this book. Five stars. Highly recommended.", "overall": 5.0, "summary": "Really good book for a man", "unixReviewTime": 1394928000, "reviewTime": "03 16, 2014"}
{"reviewerID": "A3UJJBAD0CGNAC", "asin": "1595549048", "reviewerName": "Cheryl Costella", "helpful": [0, 0], "reviewText": "I like Lis Wiehl's books very much. Just wish there was a little more after the climax of the story.", "overall": 4.0, "summary": "I like Lis Wiehl's books very much", "unixReviewTime": 1404518400, "reviewTime": "07 5, 2014"}
{"reviewerID": "A170XMGSNA96XW", "asin": "031621129X", "reviewerName": "4doggies \"4 doggies\"", "helpful": [0, 0], "reviewText": "I have read this entire series and can't wait until another book comes out! All of the characters in the book have become well known by me and I truly enjoy them. James Patterson is a genius and has such a talent!! I enjoy all of his books and look forward tor reading each and every one. Bring 'em on!!", "overall": 5.0, "summary": "All of the characters in the book have become well known by me and I truly enjoy them. James Patterson is a genius and has ...", "unixReviewTime": 1404518400, "reviewTime": "07 5, 2014"}
{"reviewerID": "ADEXNCG6OZEQ3", "asin": "1442366648", "reviewerName": "Chuck", "helpful": [0, 0], "reviewText": "Theresa's explanation of life on the other side is the best I have ever read. In addition to being entertaining, she is clear and concise and leaves you with no doubt about what awaits us. I did not expect this as I started reading, I was pleasantly surprised and impressed. One of the best books I've read this year.", "overall": 5.0, "summary": "Best discussion yet", "unixReviewTime": 1400803200, "reviewTime": "05 23, 2014"}
{"reviewerID": "A180PD56BPC38", "asin": "1494734222", "reviewerName": "MerleC", "helpful": [0, 0], "reviewText": "This is one of my favorites in this series. The story of the shy young woman marked by hatred and the good guy who falls in love with her is a good read. Sean and Zahra will work on your heart and you'll root for them. Warning: To see the full completion of their story, you'll need to continue with the series. The suspense involved with chasing their long-time nemesis also ratchets up here - it's hard to tell who is in more danger on the team. This series is worth the read, this book especially.", "overall": 4.0, "summary": "Great feeling and emotion", "unixReviewTime": 1403481600, "reviewTime": "06 23, 2014"}
{"reviewerID": "ARXUQ4GC76I9E", "asin": "031621129X", "reviewerName": "Bob", "helpful": [1, 1], "reviewText": "5 stars, hell10 would be justified. The intensity put into the very beginning, the \"belly bomb\" has high tech, science fiction over it. Slam bang, drop the anchor cause. CINDY has pulled the plug and a human side of the murder/mystery goes in a different direction...and I want suspense. Bring on Mackie, slick chick who kills for pleasure. The author spins so many stories into one main line that has you right on the edge of your chair.The Woman's murder club is now an established chapter after chapter of my readings. Mr. Patterson & associates know the secret to keeping you awake !", "overall": 5.0, "summary": "Magnesium Murder", "unixReviewTime": 1400976000, "reviewTime": "05 25, 2014"}
{"reviewerID": "A1NZY6UMCTTHOB", "asin": "0345538552", "reviewerName": "Lizzydoxie", "helpful": [0, 0], "reviewText": "A nice story about relationships, sisters and life in general.", "overall": 5.0, "summary": "A look at life and relationships", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "A1JMXGA0C0LR2C", "asin": "0800734297", "reviewerName": "Ronnilu", "helpful": [0, 0], "reviewText": "As a Christian, I enjoy a well-written, exciting story with faith-based undertones that also puts me in touch with the characters. Unfortunately, this book didn't accomplish that and truthfully, it was rather boring. If you want to read a great series, I highly recommend the Chronicles of the Kings books (1-5), by Lynn Austin. My husband and I both enjoyed them tremendously. They are available on Kindle for a very reasonable price.", "overall": 3.0, "summary": "So-So", "unixReviewTime": 1391385600, "reviewTime": "02 3, 2014"}
{"reviewerID": "A1O5QUPWS6CIF", "asin": "0307273601", "reviewerName": "Atulya Bhimarasetty", "helpful": [0, 0], "reviewText": ""Daily Rituals" is an important book in my collection. It has on many ocassions helped me get out of a slump and helped me work towards my goals. Because if there is one thing that you really learn from this book, it is that most artists or genuies were extremely hardworking and had seldom rested on their laurels.", "overall": 5.0, "summary": "Crafting your Daily Ritual", "unixReviewTime": 1392768000, "reviewTime": "02 19, 2014"}
{"reviewerID": "A3CGHVSBZEPWTC", "asin": "0989946134", "reviewerName": "Kindle Customer", "helpful": [3, 3], "reviewText": "Should you enjoy being engaged in the story right off the bat - this one will do it. Alison Davenport is my hero - she is one tough smart and cunning lady - a true fox! Gunhus will keep you turning pages as fast as you can, and get your heart rate up! . Killer Within is NOT your ho-hum thriller read. There are many surprises, twists and turns that are believable, with a few curve balls thrown in the mix. I am looking for another book that is as fast and sassy as Killer Within.Give it a shot, you won't be disappointed!", "overall": 4.0, "summary": "First Read for me (Jeff Gunhus)", "unixReviewTime": 1401148800, "reviewTime": "05 27, 2014"}
{"reviewerID": "A3NDYKYPAYXBS2", "asin": "1499584288", "reviewerName": "Deb", "helpful": [0, 0], "reviewText": "I really liked this story. It's about family, love, hope. It's about what addiction can do to everyone in a family. The hope here is that everyone forgets their own needs and remembers the child and comes together for her. This story was just what I needed.", "overall": 5.0, "summary": "Lovely story", "unixReviewTime": 1400716800, "reviewTime": "05 22, 2014"}
{"reviewerID": "A1FBG52QNYSIBN", "asin": "0440226627", "reviewerName": "L. J. Gagnon \"Griffon\"", "helpful": [0, 0], "reviewText": "How can one not a guy named Tubby Dubonnet? Appropriately irreverent, funny and smart. Marry me, Tubby...and Tony Dunbar, OK?", "overall": 4.0, "summary": "Tubby Dubonnet - I love you!", "unixReviewTime": 1403481600, "reviewTime": "06 23, 2014"}
{"reviewerID": "A1Q4OL2SF056RI", "asin": "1557509883", "reviewerName": "CT reader", "helpful": [0, 0], "reviewText": "Perfect balance of engineering, geography, history, military strategy and human interest in the life of a MIGHTY battleship. Loved it.", "overall": 5.0, "summary": "Exactly the type of book I like to read about the life of a battleship", "unixReviewTime": 1390003200, "reviewTime": "01 18, 2014"}
{"reviewerID": "A3NQEKZ2TTCTP8", "asin": "1250007151", "reviewerName": "Michael G. Kurilla", "helpful": [0, 0], "reviewText": "The Last Refuge is the 3rd installment in the Ben Coes Dewey Andreas series. The time out, Dewey's most recent friend, Kohl Meir from the previous story has been kidnapped by the Iranians who also happen to be plotting a nuclear armageddon for Israel. Given the delicate geopolitical situation with the US focused on an arms treaty with Iran, Dewey needs to both save Meir and secure the nuke without official sanction. With the assistance of off the books CIA private contractors Dewey organizes a plan for both.The pacing is excellent with nearly nonstop action. Both tradecraft and action scenes are well done and interlaced for page turning effect. With so many entries in this genre always revolving around inside plots with the supposed good guys plotting more mayhem than your typical terrorist, it's refreshing to see action with a classic John Wayne type character going up against true enemies.", "overall": 5.0, "summary": "Dewey being Dewey", "unixReviewTime": 1390089600, "reviewTime": "01 19, 2014"}
{"reviewerID": "A3RNNHT8T1I5ZR", "asin": "0062247751", "reviewerName": "G. M. Arnold \"Geoff, that is\"", "helpful": [2, 3], "reviewText": "In the (exact) words of my 6-year old granddaughter:Good story for 4 and 5 year olds. It's kind of like a lesson. That's why it's good for 4 & 5 year olds cause these are things they have to learn; what you can do and what you can't. It's a really good book, everything. I like the author. Maybe his handwriting was a bit wobbly because he got bit by an otter, but I liked his handwriting.", "overall": 5.0, "summary": "\"It's kind of like a lesson\"", "unixReviewTime": 1398816000, "reviewTime": "04 30, 2014"}
{"reviewerID": "A3JUF3WC3OATZC", "asin": "B005IYY0CM", "reviewerName": "Brittany", "helpful": [0, 0], "reviewText": "I like the sequel but feel that the first book was the bestread so far. I like that they have came with a new character to add to the novel but feel like this novel should have been longer and I felt the first was more graphic and detailed oriented.", "overall": 4.0, "summary": "It wasn't as good as the first one", "unixReviewTime": 1390348800, "reviewTime": "01 22, 2014"}
{"reviewerID": "A2YFPQNVGXSK4P", "asin": "0425259854", "reviewerName": "A. Boyd", "helpful": [1, 1], "reviewText": "This book is wonderfully entertaining. I couldn't wait to finish it and now I can't wait to read the next book in the series! I definitely give this an A+!", "overall": 5.0, "summary": "Entertaining!", "unixReviewTime": 1395100800, "reviewTime": "03 18, 2014"}
{"reviewerID": "A2LP85JQNNLLR7", "asin": "B00GTUAOX8", "reviewerName": "michal", "helpful": [0, 0], "reviewText": "We all find ourselves from time to time lost in a messy room.The author guides us patiently step-by-step, room-by-room, until you see again the floor, the table, the coach and the light at the end of the tunnel….Highly recommended", "overall": 5.0, "summary": "An excellent book", "unixReviewTime": 1390694400, "reviewTime": "01 26, 2014"}
{"reviewerID": "A1BN6ALH0XCV0H", "asin": "1497470161", "reviewerName": "HelenaSmith", "helpful": [0, 0], "reviewText": "Very emotional. Davis is a good writer in that regard. First book I read from this writer. I got a bit frustrated by the tug of war between the two main characters and their inability to commit in anything but themselves. Other than that it as an alright read. Would have been a better movie.", "overall": 3.0, "summary": "Overly emotional", "unixReviewTime": 1402704000, "reviewTime": "06 14, 2014"}
{"reviewerID": "A2WZH547SYMIZ2", "asin": "0316154741", "reviewerName": "Esequiel Contreras Jr", "helpful": [0, 0], "reviewText": "I absolutely loved the movie and the Audio edition of The Lincoln Lawyer. Looking forward to reading the Kindle edition.", "overall": 5.0, "summary": "Loved the movie and audio edition.", "unixReviewTime": 1388880000, "reviewTime": "01 5, 2014"}
{"reviewerID": "A2B4P1E71TDVN7", "asin": "1482314150", "reviewerName": "Amazon Customer", "helpful": [1, 1], "reviewText": "First Sentence:Nicholas Grayson wasn't a nice person.Storyline:I must confess that when I read the blurb I was intrigued and knew I would like it BUT I felt like I already knew how the story would evolve and end. This, since I have read a lot of books with similar story lines. However I was very wrong. Even though the big picture was alike other books it was so unlike anything I have read. I absolutely loved it and was constantly surprised. Never a dull moment and I was instantly caught in the story and did not want to go to work lol!Some parts of the story was making me so sad and where heartbreaking. It almost made me cry! Other parts had me laugh out loud.Charachters:Ellie Holbrook is the heroine in the book and I loved her. She has a very rough past littered with abuse, drugs and so on. When she finds herself pregnant she is forced to grow up and she excels at it. She is so mature for her age and is awesome with her daughter Sophie. She is confident and knows what she want. She does not joke around and when she knows what she wants she goes after it.Nicholas Grayson is the ultimate douchebag! I absolutely hated him in the beginning. His attitude sucked and I could not stand him. He did what he wanted just because he could. No caring at all if his actions harmed others. Bleh! Selfish bastard! That was until he met Ellie. She started out as a bet and eventually became so much more. Nicholas started to realize that the front he had put up was not going to work with Ellie and she made him want to be better.Romance:There was a lot of romance and it was hot and sizzling! A bigger rollercoster I would have to look for. Ellie and Nicholas love story has so many ups and downs that you almost get dizzy. But it totally works and thats what makes their love so awesome. The can be so perfect together and other times they are a total disaster waiting to happen. As the book so adequately is called their love really is a beautiful disaster :)Action:Not much action as in real fighting but there was a lot of other types of action in the story. It felt like it was Ellie and Nicky against everyone else all the time. A lot of other characters had their own agenda as to why they should not be together and had no limits of how far they would go to get it.Cover:Simple and lovely! Don't you think?", "overall": 4.0, "summary": "Perfect!", "unixReviewTime": 1402790400, "reviewTime": "06 15, 2014"}
{"reviewerID": "A34ULTNWH6T8Q2", "asin": "0764208241", "reviewerName": "Melissa Finnegan", "helpful": [0, 0], "reviewText": "Wow. This book is amazing.We are immediately drawn into the life of Bonnie Rose (O’Brian) and the mystery surrounding her and her little sister. Lisa does a great job of feeding the reader bits and pieces of what happened to Bonnie Rose but never giving you the whole bite all at once. This is perfect and kept me fully engaged.In this book we are bouncing back and forth between Bonnie Rose’s story in the past to Allie Kirkland’s story in the present.Again, with Allie you are receiving bits and pieces of this back story, just enough to keep you wanting more. Allie is working on a set that will be reenacting Bonnie Rose’s story. Even Allie doesn’t know the story so nothing is given away.I found the set up that Lisa (the author) did with this book very good. Each story builds into the other. It’s like getting pieces of the puzzle. You know when you are putting together a puzzle and you are search for that one piece and you find it? You have that “Ah-ha” moment. Every chapter is like an ah-ha moment.There’s also some romance too. Bonnie Rose meets a kind captain on the boat that takes her to Wildwood Creek. She leaves him and I am hoping he will come to her rescue at some point in the book.With Allie there is the mysterious cowboy that I want her to get to know better.Yes, this books has all the ingredients of a excellent read.A copy of this book was given to me by the publisher in exchange for an honest review.", "overall": 5.0, "summary": "All the ingerdients for an excellent read", "unixReviewTime": 1393804800, "reviewTime": "03 3, 2014"}
{"reviewerID": "A3MS9STGP5S4IO", "asin": "1480121029", "reviewerName": "John H. Kuhl, CPCM \"John H. Kuhl\"", "helpful": [0, 0], "reviewText": "Epic #1 The Frontiers Saga, is a very interesting and captivating initial segment of Auror:CV-01. A great detailed SCI-fi novel with extremely interesting Story line. I got totally engrossed very early in the plot finding it hard to put down.", "overall": 5.0, "summary": "Very detailed and captivating novel Aurora:CV-01.", "unixReviewTime": 1402531200, "reviewTime": "06 12, 2014"}
{"reviewerID": "APC3GP2A6KTDI", "asin": "0140254587", "reviewerName": "mando_lines", "helpful": [0, 0], "reviewText": "Dennis Covington's book is journalistic memoir at its finest. Covington is honest about himself and his subject matter, but never judgmental about others. The Holiness people Covington encounters are backward and strange, yet Covington likes many of them anyway. Quite a book.", "overall": 4.0, "summary": "Snakes and spirituality in Appalachia", "unixReviewTime": 1402704000, "reviewTime": "06 14, 2014"}
{"reviewerID": "A37OELUUUGMOZF", "asin": "0553381148", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Book started off great. Then turned into more of an reference guide to get the information I thought I would begetting from this book. Would like to see a follow up book with more information coming from this author.Obviously, very knowledgable but left me wanting more information from her not someone else.", "overall": 3.0, "summary": "Good Information but wanted more information.", "unixReviewTime": 1396483200, "reviewTime": "04 3, 2014"}
{"reviewerID": "A7Y9MP7H8LYUE", "asin": "1616952636", "reviewerName": "K. E. Steelman \"mommarock\"", "helpful": [0, 0], "reviewText": "When I first read the description, I was intrigued. From page one, I was pulled into a fast paced, suspenseful ride that elegantly balanced Russian culture, historic tension and turmoil, and the hardships of being young and growing up.Excellent read.", "overall": 4.0, "summary": "Fascinating, Fast Paced, Fun", "unixReviewTime": 1403654400, "reviewTime": "06 25, 2014"}
{"reviewerID": "ALJ7EX7ZRX845", "asin": "B00I52PPT6", "reviewerName": "Queenie Johnson", "helpful": [0, 0], "reviewText": "This is a light hearted story about, a nice unsophisticated no none sense woman who agrees to help her boss, convince his long lost sister that he is engaged and quite happy. This is for one week end but she falls for instead. He also becomes very smitten. And the race is on. Avery read that ends before you realize it . A good read but short but worth your time.", "overall": 3.0, "summary": "The Tycoons Make-Believe Fiance'e", "unixReviewTime": 1394064000, "reviewTime": "03 6, 2014"}
{"reviewerID": "AOP75GMVKQB7R", "asin": "0988178532", "reviewerName": "Jenniifer Battaglia", "helpful": [1, 1], "reviewText": "Very well written!! Kept me interested the whole time...I highly recommend this book to anyone who reads . That's all..", "overall": 5.0, "summary": "loved it", "unixReviewTime": 1399766400, "reviewTime": "05 11, 2014"}
{"reviewerID": "A2APK1MPXGUQPR", "asin": "0316176486", "reviewerName": "Brenda Toan \"college mom\"", "helpful": [0, 0], "reviewText": "It took me awhile to understand the structure of the book. Going back to the beginning was a bit frustrating but then I began to enjoy how Ursula life would end up this time. The sibling dynamics seemed very realistic through out the book though Sylvie didn't follow as well. I liked the details of the blitz scenes. It is a bit like The Time Travelers Wife only better.", "overall": 5.0, "summary": "complex interesting and thought provoking", "unixReviewTime": 1399680000, "reviewTime": "05 10, 2014"}
{"reviewerID": "A3CTHLV2I54WCQ", "asin": "1592407129", "reviewerName": "Anne", "helpful": [1, 1], "reviewText": "Those who work in this industry are brave and to be admired. And even more so that they treat the dead with such tremendous respect. Sheri Booker writes so beautifully and even manages humour. A great story", "overall": 5.0, "summary": "A Bankful of Tears", "unixReviewTime": 1390867200, "reviewTime": "01 28, 2014"}
{"reviewerID": "A2EHU0710X7YD7", "asin": "0062059998", "reviewerName": "bp32", "helpful": [1, 1], "reviewText": "Hadn't been this excited for a book release since Harry Potter so when it came out, I felt like I had gotten the best gift ever. My first read was like awesome. My second read made me feel like there was something missing.******************SPOILERS************************************America!!! How do you fight for something when you are clearly holding on to something else?? Is that really putting your all into something else? i don't think so.My biggest pet peeve was the truth telling aspect. When Maxon found out about Aspen, how he found out didn't portray her in the best light. for me, why did you wait that long? There was a time when they were sharing their stories and it was a perfect opportunity for her to be honest about Aspen but she didn't. I never felt she truly liked one more than the another. I felt she was willing to take whoever was available and feel like *poor me* when the other didn't choose her. You are so much better than that America. If you simply took some time to think about it, you would know your answer in a heart beat.Finally, there were so many glossed over stories that made me so sad. Tell us more about the Northern rebels! How were they funded? How did her dad contribute? Or the caste system solution at least and a lot more other things.", "overall": 3.0, "summary": "I like how it ended but not how she got there", "unixReviewTime": 1399593600, "reviewTime": "05 9, 2014"}
{"reviewerID": "A203VRJSAMZFZN", "asin": "B00JNU0WGA", "reviewerName": "Tippetarius (Tip)", "helpful": [0, 0], "reviewText": "I have read every book in the series, and this is the best one yet! The main characters, Becky and Joe, are maturing in a realistic way, as is their relationship as brother and sister. They are developing skills and using them in a thoughtful way, rather than just stumbling into the right solution. There is a major revelation about mid way that was totally unexpected, that lends new energy to the plot. I didn't want to put it down, because I felt like the major characters were old friends and I wanted to know what would happen to them.", "overall": 5.0, "summary": "Getting Better Every Time", "unixReviewTime": 1400371200, "reviewTime": "05 18, 2014"}
{"reviewerID": "A361T2S89ZXR09", "asin": "0307743659", "reviewerName": "mygirls123", "helpful": [0, 0], "reviewText": "Read this for about the fifth time, still an excellent read. First time readers, you won't be disappointed. Buy now!", "overall": 5.0, "summary": "Always a classic", "unixReviewTime": 1392768000, "reviewTime": "02 19, 2014"}
{"reviewerID": "A3E4H5A1X8NJRR", "asin": "B00FI92IFI", "reviewerName": "L.L.Goss", "helpful": [0, 0], "reviewText": "Clara life was in a rut and all the dreams of making a difference were lost in a going nowhere job and a boring couch potato life. Then she was offered a chance everyone at sometime wishes for, a way to go back to a certain time and start over. Funny, refreshing book about life choices, depression and taking a chance. Started out a little slow but the momentum and fun picked up and it truly was an interesting and intriguing story with some great characters. The author has a way of pulling you into the story and although the premise is fantasy the characters and outcome are definitely real and entertainingly heartwarming.", "overall": 5.0, "summary": "A reset button on life.", "unixReviewTime": 1403827200, "reviewTime": "06 27, 2014"}
{"reviewerID": "A2ALBZAFLT4LN0", "asin": "B00I8BKSRS", "reviewerName": "Bumbhola", "helpful": [0, 1], "reviewText": "Something that we always forget, are SEO pointers and things to do. This book not only accumulates the basic tips, but adds some unique ones too (at least I thought so) which could boost hits for your book. Short and precise, and well made, that you could memorize the pointers like poetry and use it continually for all your releases. A must for new self publishers on Amazon.", "overall": 3.0, "summary": "Keep this in your pocket", "unixReviewTime": 1392768000, "reviewTime": "02 19, 2014"}
{"reviewerID": "A1WZU6M69O5R8V", "asin": "0060774592", "reviewerName": "Zhi \"zhi\"", "helpful": [0, 0], "reviewText": "Oh this is an awful bookA delightful awful bookJust the sort of awful bookYour whole family will adoreMy daughters requested it so often from the library, I finally just bought a copy.", "overall": 5.0, "summary": "This is a terrible book. We love it.", "unixReviewTime": 1393977600, "reviewTime": "03 5, 2014"}
{"reviewerID": "A3HWD4ZX3HP597", "asin": "1482203839", "reviewerName": "Dr. Yuval Lirov \"Medical Billing Networks and...", "helpful": [0, 2], "reviewText": "The review of innovation techniques and examples of their application to healthcare problems is absolutely amazing! The Lean, on the other hand, is sketchy and not convincing. Still, an informative and a well-written book.", "overall": 4.0, "summary": "an informative and a well-written book", "unixReviewTime": 1399507200, "reviewTime": "05 8, 2014"}
{"reviewerID": "A3GBNOO6OAY0B1", "asin": "1628548614", "reviewerName": "Gina M.", "helpful": [1, 1], "reviewText": "Definitely a man’s book. A narrative of one man’s journey into the dating world. Parts were funny but I was shaking my head and rolling my eyes wishing that we could have read the woman’s POV about the same events. It’s a quick read and a battle of the sexes.", "overall": 3.0, "summary": "A quick Read", "unixReviewTime": 1394064000, "reviewTime": "03 6, 2014"}
{"reviewerID": "A3PXB4N78QESUM", "asin": "B00GIV5OLK", "reviewerName": "AnnH \"Random Reader\"", "helpful": [0, 0], "reviewText": "Beautifully written, this story brings hope to everyone struggling with a less than perfect life during the difficult holiday season.", "overall": 5.0, "summary": "To Be Read Every Holiday", "unixReviewTime": 1389052800, "reviewTime": "01 7, 2014"}
{"reviewerID": "AW9KM1WLLZFJN", "asin": "0545028167", "reviewerName": "Sammi", "helpful": [0, 0], "reviewText": "My daughter loves these books, she started reading them in 1st grade and has pretty much everyone in the collection. She loves to read them over and over again. Definitely a good set if your daughter loves to read.", "overall": 5.0, "summary": "Great Series", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "A32R8A64E30ZBO", "asin": "B004AM5EMS", "reviewerName": "Connie Nelsen \"Miss Connie\"", "helpful": [0, 0], "reviewText": "I was pleasantly surprised with this book. Very well written. Fast paced..with more than kne story line yet not too many characters that I couldn't keep up with the plot. I will definitely be reading more of this author. I won't give away the ending...but was surprised..and that was fun. Thank you, Simon Gould.", "overall": 5.0, "summary": "Awesome", "unixReviewTime": 1395619200, "reviewTime": "03 24, 2014"}
{"reviewerID": "A2N9HICW4ZRTTU", "asin": "0060544341", "reviewerName": "katburns", "helpful": [0, 0], "reviewText": "have read - so far - everything he has written excepting the one just publishedd. His books should have warning labels on them. Once you pick it up, you will not put it down until finished. It will have breakfast, lunch and dinner stains on it. Once you have finished it you will put it in a safe place, hoping to re-read it as soon as feasible. I usually give my books away, but I cannot bare to give these away.", "overall": 5.0, "summary": "I love this man's writing and", "unixReviewTime": 1396915200, "reviewTime": "04 8, 2014"}
{"reviewerID": "A21OCFTBHA2760", "asin": "1609451430", "reviewerName": "Mike King", "helpful": [0, 0], "reviewText": "I think I read about these books in the New York Time book review - wherever it was, I am grateful! Such originality, such complexity, yet such accessibility. Love them.", "overall": 5.0, "summary": "What a Find!", "unixReviewTime": 1401148800, "reviewTime": "05 27, 2014"}
{"reviewerID": "A2GV9IP6FNTH4Y", "asin": "0373742886", "reviewerName": "Debra Quiles \"debra wuiles\"", "helpful": [0, 0], "reviewText": "Vincenzo and Abbys story about friendship, and love. I only wished for more to read. A great story. Love story.", "overall": 5.0, "summary": "Expecting the prince's baby", "unixReviewTime": 1405209600, "reviewTime": "07 13, 2014"}
{"reviewerID": "A25AROF3SD7AED", "asin": "B00D1A8R88", "reviewerName": "Amazon Customer \"KDPMI\"", "helpful": [0, 1], "reviewText": "After reading the first one free, I liked it enough to want the boxed set. I got another copy of the one I already had but only 2 others - although there were 5 out at the time. If I had known there were only 3 in the set, I would have bought them individually. I did like the books and have read 4 and 5 and am waiting to get #6.", "overall": 3.0, "summary": "Not what I expected", "unixReviewTime": 1399680000, "reviewTime": "05 10, 2014"}
{"reviewerID": "A2A36MV8EZMI48", "asin": "0312622945", "reviewerName": "tlynfoot", "helpful": [0, 0], "reviewText": "It started kinda slow, but once it got going, you didn't want to put it down. Try it, maybe you'll like it!!", "overall": 4.0, "summary": "good book", "unixReviewTime": 1396051200, "reviewTime": "03 29, 2014"}
{"reviewerID": "A23PGGJ279QD86", "asin": "1499152922", "reviewerName": "Francine", "helpful": [0, 0], "reviewText": "I don't want to give too much away but awesome book!! A quarter of the way through all l kept thinking was \"l really hope there's more books to this series\".. picked it up and literally 2 days later l was done.. l couldn't put it down!! What can l say, another amazing book by Nicky Charles!! (I kind of wished l did put it down though because now I'm going to have to wait until the next one, but it was soooooooooooo good l couldn't resist). If your new to Nicky Charles Lycan series l would start with book one. Although they can be read as stand alones characters from previous books pop in here and there and if you haven't read the previous books you'll be wondering.. There's a couple different reading orders for her books. I would go to her website and check out the series to see which one you want to start with!! I can't wait until her next book.. I'll be Impatiently waiting l might add!! :)", "overall": 5.0, "summary": "YaY for Damien!!", "unixReviewTime": 1404345600, "reviewTime": "07 3, 2014"}
{"reviewerID": "A2THK7G4T4L7TS", "asin": "0393348806", "reviewerName": "Soupie", "helpful": [0, 0], "reviewText": "It is a gripping read. World's better than the movie Monuments Men, this book offers an in-depth perspective of the people who were there. I really had no idea that we had these people on the ground and that time and effort was made to spare this art from the destruction of war. Though I have never had an opportunity to visit Italy, I sleep a bit better knowing that the art was spared destruction so that it could continue to enhance the lives of people for centuries more. Really enjoyable read.", "overall": 5.0, "summary": "Thoroughly engrossing book!", "unixReviewTime": 1398729600, "reviewTime": "04 29, 2014"}
{"reviewerID": "A2UFP28L7V61KX", "asin": "0989715477", "reviewerName": "kos", "helpful": [1, 1], "reviewText": "It was fun fast paced read. Not many detours in the story at all. Got towards the end just had to read to finish it. A good summer read.", "overall": 4.0, "summary": "Insane not to read", "unixReviewTime": 1404432000, "reviewTime": "07 4, 2014"}
{"reviewerID": "AV0WASU4N2PGD", "asin": "1455519510", "reviewerName": "Ronda Tutt", "helpful": [2, 2], "reviewText": "Brilliantly Written! Epic!Awesomeness is not a good enough word to describe this brilliantly written story – No I think Epic would sum it up nicely. This captivating story is filled with a humorous seductive romance that kept me glued to the pages and wanting to live in their world forever. The author’s descriptive details of the Highlander’s country side and their clan’s leaves the reader with a breathtaking vision that will forever be melded into your heart. The character’s chemistry and humorous banter will forever have you longing for more of their story.Edmund MacGregor is a man of his word and beliefs. God-like example of David & Goliath, the metaphor is clearly a Highlander conquering and ending the Giants of Aristocratic Nobility’s political gains. His presence bleeds sexuality with his stance and handsome features, but his voice and actions will melt your heart first with a wanting desire.Dedicated to his cause for love of country and keeping the English from signing a treaty that will unite Scotland under their rule, he can only come up with one solution and puts the plan in motion to keep the treaty from happening and that is to capture the niece of the Duke of Queensberry. However, what he doesn’t anticipate is falling head over heels in love with his charming captive Miss Amelia Bell. No his adventure turns into not only a win for Scotland but a fight for an unconditional sacrifice for love than to ever live without her.Amelia has got to be my favorite character of all time. I absolutely loved her. I never laughed so hard – I literally had tears coming out of my eyes with her accident prone actions. She reminded me of “KANE - the demon of Disaster” from the series Lords of the Underworld where every time she touched something or went somewhere disaster followed her in a humorous way.Amelia truly captured my heart with her tender innocent demeanor. She is one of those females that is not only beautiful on the outside but on the inside as well. Her loyalty and dedication to her family is unconditional but her love for true passion puts a few adventurous curves in her road to happiness especially when she meets her dreamy godlike “David of Goliath” Edmund.Tormented between having a life with a man of her dreams and with honoring her father’s wishes of an arranged marriage to Seafield - the Lord Chancellor of Scotland, a man she doesn’t love. Amelia’s heart breaks knowing the sacrifice she must make in order to not ruin her father’s status among the English aristocrats.The story is full of adventure and lots of Highlander action making it a fast read. The sweet and tender erotic romance had the perfect amount of teasing and playful love making scenes (3 Flames). The happy ever after had me smiling and hugging the book with giddiness.I have to say that this is my first book by Paula Quinn and I am awed in amazement of how addictive her writing is. The plot was perfect, the characters were brilliantly created, and the world building is one I could live in forever. Paula Quinn you have gained a new fan and I look forward to reading more of your awesome work. I highly recommend this read to all Historical Romance lovers.Excellent Read!", "overall": 5.0, "summary": "Brilliantly Written! Epic!", "unixReviewTime": 1396137600, "reviewTime": "03 30, 2014"}
{"reviewerID": "A1ESNLEPZ750Y6", "asin": "0451228731", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "this is without a doubt one of the BEST sci-fi novels I have ever read . As I read and learned I became aware of how real and possible all of the scenarios were . that is the really scary part..........on finishing the book I discovered there was a sequel which I purchased seconds later . " Freedom " was just as action packed and I enjoyed every minute of both books . I will be buying ALL of Daniel Suarez books :)", "overall": 5.0, "summary": "scary awesome books, must buy author", "unixReviewTime": 1399680000, "reviewTime": "05 10, 2014"}
{"reviewerID": "A2HFMWU3UAP16D", "asin": "1493661442", "reviewerName": "Sabrina Frey \"world study\"", "helpful": [1, 1], "reviewText": "the book was well written but the story line is lacking any depth. It was fast and totally predictable and even the sex was very fast and unemotional.", "overall": 2.0, "summary": "too predictable", "unixReviewTime": 1400976000, "reviewTime": "05 25, 2014"}
{"reviewerID": "A2ITQ8BMWXD9FN", "asin": "1492333204", "reviewerName": "Zac", "helpful": [1, 1], "reviewText": "This is by far my favorite author and i am torn between all of her series, i really could not tell you wich i liked best.", "overall": 5.0, "summary": "Leading cause of insomnia among literate peoples.", "unixReviewTime": 1395187200, "reviewTime": "03 19, 2014"}
{"reviewerID": "A1LKP9Q2LDIHZR", "asin": "0345498275", "reviewerName": "Locksley", "helpful": [0, 0], "reviewText": "I've read a lot of military science fiction novels, but for me Death's Head has always been the most fun and the most entertaining.This is a just a rock and roll thrill ride from start to finish and isn't pretending to be anything but a balls to the wall pulp sci-fi actioner.I enjoy the first person, present tense narration, it strikes just the right chord for this kind of story.Death's Head is violent, bloody and in your face, much like the main character himself.I have read this book a number of times in the last few years, which says a lot for its entertainment value. A lot of MilSF I read once and never bother to pick up again.This is just good old fashioned pulp sci-fi action/adventure fun and if that's all you're looking for in a book then I highly recommend it.", "overall": 5.0, "summary": "Maybe the most fun MilSF novel of them all", "unixReviewTime": 1389398400, "reviewTime": "01 11, 2014"}
{"reviewerID": "AALITNH2CJ4W9", "asin": "0615669166", "reviewerName": "Readaholic", "helpful": [0, 0], "reviewText": "Loved book 1, can't wait for book 2 of Emanations to be released. I wish I can read it right now. Thanks for Publishing such a wonderful and imaginative story!", "overall": 5.0, "summary": "Fantastic", "unixReviewTime": 1404777600, "reviewTime": "07 8, 2014"}
{"reviewerID": "ABYOODNVKY9LX", "asin": "0765302632", "reviewerName": "Chris Mathews", "helpful": [0, 0], "reviewText": "I'm on a mission to read all of her books after reading _Among Others_ and _What Makes This Book So Great_. I wasn't impressed by her first book, but this one is truly excellent. I was reminded of _Sailing to Sarantium_ (high praise indeed). The best moment was when she had the characters blithely describe the past two months which were the best times of their(young) lives. Walton unconcernedly skips over this because she has better stuff to tell. Again, worth reading!", "overall": 5.0, "summary": "Excellent fantasy novel", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "A1S7XLO2IVYGJB", "asin": "0671212095", "reviewerName": "Todd", "helpful": [1, 1], "reviewText": "I bought this for myself and passed it along to my children. This is worth owning and spending some time going through. The book is well written and it is not heavy stuff. Anyone can understand the principles.", "overall": 5.0, "summary": "This is a good book outlining how different books require different styles", "unixReviewTime": 1394668800, "reviewTime": "03 13, 2014"}
{"reviewerID": "A261S7QYT78NJL", "asin": "1600430120", "reviewerName": "BGHall", "helpful": [0, 0], "reviewText": "The suspense was good, however the love scenes were not her best. There should have been a lot more love scenes where they reconnected as lovers.", "overall": 3.0, "summary": "Not one of her best", "unixReviewTime": 1388620800, "reviewTime": "01 2, 2014"}
{"reviewerID": "A2PL6SQ56ZQ7CP", "asin": "1495472418", "reviewerName": "Kirt P Buddner", "helpful": [15, 17], "reviewText": "What a way to start 2014 off. For those of us that spend most of out down-time reading; things can get...a little stale.Then along comes a new Author, Jason Luke and Jonah.Interview is unlike any book I've read to date. Yes, its contents are BDSM based but the book itself is unique in many ways. As a Master, Jonah has conducted his fair share of interviews, becoming bored with the same questions.Upon meeting a "green" journalist, Jonah makes the decision to give a real interview; an interview that is his story, from becoming a submissive at the age if eighteen to becoming a Master.Jason Luke takes us into the Lifestyle (authentically) because he was in the Lifestyle. Not only are his words factual but Mr. Luke is well spoken which comes out in his flawless writing style; creates a story and characters that creates a "can't put down" book.I fell so deeply in love with this character that Interview holds only one flaw for me...not knowing if the story will continue.", "overall": 5.0, "summary": "Strong 5 Stars", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "A6CGKE1GVYKU9", "asin": "1481874713", "helpful": [0, 0], "reviewText": "Its a good read. I am going to purchase a few targets that react to the SIRT laser, then set up targets as described. Its like anything else, a bit of reading, putting into practice with a slow progression. I would recommend the book, to help understanding the engagement process.", "overall": 4.0, "summary": "Good read!", "unixReviewTime": 1405468800, "reviewTime": "07 16, 2014"}
{"reviewerID": "A3M8HRUFXJK8SA", "asin": "1940846005", "reviewerName": "Amazon Customer", "helpful": [1, 1], "reviewText": "Kate Douglas could write about mud how is Brown or sometime greenish. I love everything she writes . The passion the details . Bravo", "overall": 5.0, "summary": "BRAVO ONCE AGAIN", "unixReviewTime": 1390435200, "reviewTime": "01 23, 2014"}
{"reviewerID": "A59NNTU8RWV", "asin": "B00IDCQGPA", "reviewerName": "KLEEMEYER", "helpful": [0, 0], "reviewText": "Awesome series!!!!!!!!! Great job by the author of this series. So much suspense and action with so many twist and turns. Loved the characters and the story. Buy the series. It will not disappoint you. Be prepared to lose some sleep cause you will not be able to put the book down.", "overall": 5.0, "summary": "Creatus Rogue (Creatus Series) by CaRmen DeSousa", "unixReviewTime": 1395273600, "reviewTime": "03 20, 2014"}
{"reviewerID": "A36GBBCHDKWK5D", "asin": "1439166641", "reviewerName": "Juatin Yet \"critic of critics\"", "helpful": [0, 0], "reviewText": "Pizzolatto is more than a great story teller. His writing is nuanced, rich, and almost non-verbal in its stirring of feeling. He is particularly clever at what he chooses to tell and not tell. When is the next novel coming? He certainly set a high bar with this one. The appeal of the mini-series at which he is equally adept may keep him occupied for some time yet. Not that I would mind. True Detective was terrific.", "overall": 5.0, "summary": "Best novel in a long time", "unixReviewTime": 1395187200, "reviewTime": "03 19, 2014"}
{"reviewerID": "A1OALQCGSOR4KK", "asin": "1477679995", "reviewerName": "C. Ramos", "helpful": [0, 0], "reviewText": "I'm addicted to vampire stories. No literally. I can't tell you how many. Some are good, some are great. This is great. You really feel for the vampire in the story. I read this in two days, I couldn't put this down. You won't be disappointed. Ready for book two. See you after its finished.", "overall": 5.0, "summary": "Awesome read", "unixReviewTime": 1403568000, "reviewTime": "06 24, 2014"}
{"reviewerID": "A3A47WUL75Y7MN", "asin": "1493756966", "reviewerName": "Ramya Talla", "helpful": [0, 0], "reviewText": "This book is awesome! The best third book I've read! If uhh need a book to read, THIS IS THE BOOK!!!", "overall": 5.0, "summary": "Amazing!!!!! :)", "unixReviewTime": 1390608000, "reviewTime": "01 25, 2014"}
{"reviewerID": "A2PZXK8YDLP4HJ", "asin": "0345542886", "reviewerName": "Barbara J. Sisson \"JEAN SISSON\"", "helpful": [0, 0], "reviewText": "BOUGHT THIS AS GIFT FOR DAUGHTER-IN-LAW AND SHE LOVED IT.THINK IT WAS A KINDLE BOOK BUT ICOULD BE MISTAKEN.", "overall": 5.0, "summary": "TAKEDOWN TWENTY", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "A19DAATJSXHVRX", "asin": "1497572320", "reviewerName": "Ginny Rose \"Ginny Rose\"", "helpful": [1, 1], "reviewText": "After this Night, is an epic conclusion to Clay and Julia's story.Actually, there couldn't have been a better theme for this series than the one the author gave it. Seductive Nights. This duology will seduce your heart as it scorches your sheets. Clay and Julia are a sensually seductive couple that will leave you wishing their story never came to an end.The best part of this conclusion, the author gave them a realistic coming together. Clay and Julia are the definition of "Love will prevail all". Where trust was lost, it found it's way back. Where faith was slanted, it strengthen as the book progressed. This not just between the main characters, it's seen with the supporting ones as well. It's hard not to love this series, the story is just plain hot and deliciously captivating.If you started and fell in love with Clay in Night after Night.. After this book... After this Night without a question you will adore him.", "overall": 5.0, "summary": "Seductive Ending", "unixReviewTime": 1400457600, "reviewTime": "05 19, 2014"}
{"reviewerID": "A3NRUWLC8XHCCR", "asin": "0399150900", "reviewerName": "Mike Chappell \"Mikel\"", "helpful": [0, 0], "reviewText": "I have found myself revisiting novels I read as hard or paperback several years ago, in the kindle format. I think Stuart Woods wrote a little better quality novel when he wrote fewer per year. Like anything else, good fiction upholds the concept of quality not quantity.", "overall": 4.0, "summary": "Looking back", "unixReviewTime": 1391299200, "reviewTime": "02 2, 2014"}
{"reviewerID": "AAP1L4EJITOMS", "asin": "1494807017", "reviewerName": "Adrienne Scales \"Nicely Phrased\"", "helpful": [3, 5], "reviewText": "Never Been Ready is book 2 in the Ready series by J.L. Berg. This is Leah and Declan's story. Both of whom were introduced in When You're Ready. If you recall Leah is Clare's best friend and a nurse at the hospital where Logan, Clare's new husband works. Declan is a famous movie star and one of Logan's college buddies. Leah and Declan have a one night stand in book 1 and book 2 pretty much starts a few months later.I'm not going to rehash the entire book or reword the synopsis. I am going to tell you right off the bat that overall I thought this was a decent story. Was it as good as book 1? In my opinion, no, and I hope to tell you why I did and didn't like it.I thought the characters in Never Been Ready were well developed. We get lots of insight on both Declan and Leah's upbringing as well as who they are as adults. We learn what makes them tick, what makes the love and what makes them laugh. Declan and Leah together on the pages are hot and steamy as well as light and fun. There are even some poignant moments. Those poignant moments are what I think J.L. Berg is really good at writing.I loved all the moments with Clare and Logan. I missed them and I was super happy to have them back. I also appreciated the introduction of Clare's brother, Garrett. There were many obvious moments in the book where Garrett was being set up for book 3 in the series, Ready For You.This is the tricky part for me. How to explain what I didn't like. The only word that keeps coming to mind is lackluster.The premise of the story was good. Leah's childhood plays an important role. Logan's childhood as well is integral. The way their two lives ultimately intersect is also really important and was well thought out. There was even a shocking moment that gave me goosebumps. Goosebumps are always good!! I just felt like the journey to get to the good stuff felt forced and quick. For instance there is a certain scene between an actress and Leah at an awards show. I felt like that particular moment had absolutely no bearing on the story as a whole. The story wasn't really about Declan as an actor and whether or not Leah could handle it. There was also a scene near the end involving Leah's father. It may have been an attempt to tie up loose ends. Maybe even an attempt to open Leah and Declan's eyes. Again, I thought it was unnecessary. The story would have been good without it. I didn't think Leah needed that closure. I didn't think Declan needed that push.I felt this story had a much deeper meaning than a hollywood actor who sweeps a woman from an abusive home, off on a whirlwind relationship. It was about two people broken and bruised by their parents, being able to come together as a couple and finding their way towards a future with each other. It was about embracing the future and accepting what's in front of you. Accepting who you are, what you're capable of and what you can offer someone in return. This was a story about love, forgiveness, and hope.For as many times as I rubbed my eyes and scratched my head in frustration, I was however, also rewarded with those special moments. This is where I love J.L. Berg's writing, there is so much potential here."But that kiss? That kiss left me awe-struck. It was earth-shattering in its simplicity, mind-numbing in its intimacy, and completely raw in its emotional depths." - LeahSigh....see? That's beautiful right there. Give me more of that and less fluff. It's okay to have lots of angst, inter-mingled with funny and lighthearted moments, while still being able to give us beautiful lines. I don't mind the insights into each others worlds. On the contrary those are important for character development. It's the other stuff, like the moment with the actress, or the box that Declan takes from the attic of Leah's childhood home, that doesn't reappear again until nearly the end of the book."Shit. I'm going to cry again. Why do I cry so much around you?""I don't know, but I'll hold you every time you do."I remember when I read that part I had to stop and smile at my husband because that's something he would say to me. Those are the moments I like to look for my stories. The stuff I can relate to or dream about or swoon over. There is a really good story here in Never Been Ready, it just didn't come together for me as a complete package.Should you read this book? Absolutely. It might not be my favorite but it's still a decent read. I'm looking forward to learning more about Garrett in book 3.*A copy of this book was kindly provided by the author in exchange for an honest review*", "overall": 3.0, "summary": "Declan and Leah are made for each other.", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "AAGR3DMGKHF45", "asin": "061563964X", "reviewerName": "Theresa N Bellflower", "helpful": [0, 0], "reviewText": "This was a great book and not overly religious. The intrigue was fast paced.The international theme and the personal them was well written.", "overall": 5.0, "summary": "You don't have to be religious to like this book", "unixReviewTime": 1397347200, "reviewTime": "04 13, 2014"}
{"reviewerID": "A1W4MY0VEUVQF3", "asin": "0781410487", "reviewerName": "Kristan Geissel", "helpful": [0, 0], "reviewText": "I don't make a habit of recommending books on FB because of the variety of my friends. But, this is what I just posted:"Just finished reading a chick-flick worthy book which I recommend to all. "The Language of Sparrows" by Rachel Phifer. Wonderful, sweet read with the added other good stuff which makes you think."This is movie-worthy with enough maleness to interest the guy getting dragged by the girlfriend to the theatre. I hope someone picks up on that. Good luck to the author.", "overall": 5.0, "summary": "Wonderful, thought=provoking book", "unixReviewTime": 1389398400, "reviewTime": "01 11, 2014"}
{"reviewerID": "A257TD5GO1T81W", "asin": "1482516489", "reviewerName": "Mary Lee \"Dinnerandamurder.com\"", "helpful": [0, 0], "reviewText": "I had some issues with the style of writing. Authors had a habit if telling two points of view with different circumstances at same time and jumping back and forth between the two right in the middle of them. It was very disorienting and made it very hard for me to get into the book or invested in the characters. It wasn't until almost the end that I finally cared anything about any characters and then only Snake and Lindsey. I absolutely hate Eric and hate that I bought his novella before reading this as I bought the very inaccurate description, but that guy is nothing but a skanky lowlife. If there 're actually Eric lovers out there, I would worry about their sanity. I was hoping him going off with the douche Major would be the last if him fir this series. In no way does he improve the book at all, except to make the reader cringe and think DIE already!!! I won't be reading the Eric novella I bought, but I will read the sequel only because it has a couple characters I now care about.", "overall": 3.0, "summary": "Issues", "unixReviewTime": 1402963200, "reviewTime": "06 17, 2014"}
{"reviewerID": "A3MOM7DITIVH7W", "asin": "0140481346", "reviewerName": "Nancy Luna", "helpful": [0, 0], "reviewText": "If you like Arthur Miller, read this book! It is short, but that is because it is the screenplay. Can't go wrong!", "overall": 4.0, "summary": "Classic!", "unixReviewTime": 1396396800, "reviewTime": "04 2, 2014"}
{"reviewerID": "A1OLC8Y82XOALR", "asin": "0061995347", "reviewerName": "M. Davidson \"Kitten Grandma\"", "helpful": [0, 0], "reviewText": "I started this book and then thought "what kind of book is this anyway"? Almost put it down but read a little more and now I am hooked - have to read it to the end. Really at this point do not know if I like it or not hence the 3 stars. However, since I am still reading it something is keeping me interested.", "overall": 3.0, "summary": "Bizarre but also and interesting read", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "A3NBYYH85RI20S", "asin": "B00HRIJVFS", "reviewerName": "Amy H", "helpful": [0, 1], "reviewText": "I gave this three stars (not two) because I did finish it even though it was slow going. At times it seemed like I kept reading pages, yet not much was going on. The plot was convoluted and I found it all pretty uninteresting. I liked the main character, but in general found most of the characters flat. It's not that the writing or anything about this book was bad, just not gripping or intriguing. I will not be reading another Habit novel.", "overall": 3.0, "summary": "Not a very rewarding mystery", "unixReviewTime": 1405555200, "reviewTime": "07 17, 2014"}
{"reviewerID": "ABADI6H29R7KI", "asin": "0394856406", "reviewerName": "lauraATarr", "helpful": [0, 0], "reviewText": "It's a way to teach little ones that lying is wrong. You are able to ask question like where did they go wrong and what should they do to fix the problem.", "overall": 5.0, "summary": "Another great book", "unixReviewTime": 1388534400, "reviewTime": "01 1, 2014"}
{"reviewerID": "A2I04CFVF4MJO5", "asin": "B00GMS3J2K", "reviewerName": "Jennifer", "helpful": [1, 2], "reviewText": "I must say this was the first book I read of Carrie's... It was an awesome read. I have reread this book at least once but not last. I can't wait for the next installment of this book is released.", "overall": 5.0, "summary": "halfway hidden", "unixReviewTime": 1393027200, "reviewTime": "02 22, 2014"}
{"reviewerID": "A24DFVHTYSU1AE", "asin": "1496074890", "reviewerName": "Sunnie in Philly", "helpful": [0, 0], "reviewText": "I have to say this first, my time spent reading is valuable because I don't have much free time, so when I read a book it has to be worth my time. This is the first time that I read the works of Ms. Lena Skye. I wanted to read this IR Romance "Billionaire" type book because there are so many available to choose from to read; and in my opinion, if you read 1 or 2 Romance "Billionaire" books then you would have basically read them all. This IR story by Ms. Skye has all you could hope for in a book: Sex, love, suspense, thriller, mystery, betrayal, comedy, romance, redemption, oh and a FINE Billionaire. Yes, it is all in these books. I also appreciate the way Ms. Skye gives us Camille and Kyle's POV. Camille is a Black woman looking for a new job. She has this great "I can do anything" attitude. She applies for a PA position in Kyle's company and get's it the job, even though the position was not what she expected it to be. But Camille "rides" it out and becomes the back bone of Kyle. In my opinion, and to my good surprise, Kyle grows to appreciate and love Camille and her background and turns out to be there for her, and she for him. This story has so much more to it than the great sex scenes. It was a pleasantly great surprise of a great read. Well done Ms. Skye.", "overall": 5.0, "summary": "I PICKED A GREAT BOOK SET TO READ.....YOU HAVE TO READ THIS!", "unixReviewTime": 1400976000, "reviewTime": "05 25, 2014"}
{"reviewerID": "A3CS4U2S7C6XW6", "asin": "0785151664", "reviewerName": "S. Penrose", "helpful": [0, 0], "reviewText": "Roberto Aguirre-Sacasa is always a writer that seems to get overlooked but I usually enjoy his work. Here he presents a very good Loki story that delves into his personality and focuses on more than his jealousy of Thor. I'm glad he didn't try to make him seem like a misunderstood hero but an actual villain with interesting motivations. Seeing Marvel's Norse history, no matter how many times its retold, is always a treat. The art by Sebastian Fiumara was very good, although slighty rushed at times. The darker elements of the story looked appropriately grittier than more joyous scenes. Overall, a very very good Loki tale.", "overall": 5.0, "summary": "A very very good Loki tale!", "unixReviewTime": 1398729600, "reviewTime": "04 29, 2014"}
{"reviewerID": "A1OHITJZJSENCZ", "asin": "0813916984", "reviewerName": "Marvelous Mal \"The Malster\"", "helpful": [2, 2], "reviewText": "After all the evidence is in, it appears that some Hemings' descendants are related to some descendants of the Jefferson family, possibly Thomas Jefferson, or some other Jefferson. That's as far as science can take us. From that, Gordon-Reed takes bits and pieces of folklore to create a glorified and highly exaggerated image of Sally Hemings. Even if Jefferson fathered Hemings' children, one should not make too much of it. When his wife died, Jefferson was still a relatively young man, with powerful needs. It would not be unreasonable for a man to use one of his slaves to relieve himself, any more than it would be unreasonable for him to use a prostitute. By many contemporaneous accounts, Hemings had sexual intercourse with many men on the bustling, but cloistered, Monticello estate. Powerful men have powerful needs and weaknesses. Even so, this does not elevate Hemings to the level of having a serious, significant relationship with Jefferson, any more than Bill Clinton's dalliances are serious relationships. The Thomas Jefferson-Sally Hemings' bastards, if they exist, were nothing more than the product of a sexual relationship of convenience. The book is worth reading, though, because Gordon-Reed does gather together in one place a great deal of Jefferson folklore, even if some of her conclusions are flawed.", "overall": 3.0, "summary": "Interesting, But Biased", "unixReviewTime": 1392595200, "reviewTime": "02 17, 2014"}
{"reviewerID": "A2N8Y7O8904JBQ", "asin": "0739374532", "reviewerName": "R. Grenfell", "helpful": [1, 1], "reviewText": "This is easily one of the best books that I have ever read. It gives a fascinating look into the early Mormon church and it's use of polygamy. The characters are so well drawn, that the reader gets a great picture of life in early Utah. I also loved the style of mixing a story from the past with one from the present. My book club spent more time discussing this book than any that we have ever read. All of us thoroughly enjoyed it.", "overall": 5.0, "summary": "Incredibly great book!", "unixReviewTime": 1391817600, "reviewTime": "02 8, 2014"}
{"reviewerID": "A2IS4MCXAE8E6X", "asin": "0385343175", "reviewerName": "L Barny", "helpful": [0, 0], "reviewText": "Haven't been reading her books for a couple years. Been busy I guess also, my library doesn't carry many of them. Read this on my kindle, which is the only way to read for me!!! These are the only books I can read in 1 or 2 days. That's because they're so wonderful, I can't put them down. I know what I'm talking about , I've read about 60 of her books. If you haven't read Danielle Steel (you must be living in a cave) please run don't walk to your library or tablet to download (much easier) get several. You won't be sorry! She is my favorite author.", "overall": 5.0, "summary": "Great book", "unixReviewTime": 1391040000, "reviewTime": "01 30, 2014"}
{"reviewerID": "AT0E6UBVJMJ6W", "asin": "0307984761", "reviewerName": "Ms Winston", "helpful": [1, 1], "reviewText": "I must confess that I tried twice to read "Middlemarch" and gave up before I even finished the first book or section. There are many possible reasons why the novel never "caught fire" for me, and I think that one may have been my misunderstanding of Dorothea Brooke and her marriage to Casaubon. I would recommend Mead's book if for no other reason than it has inspired me to pick up "Middlemarch" and give it another try. Mead gives a believable interpretation of Dorothea's actions and motivation, as well as an analysis of each of the major characters. Yes, there are many of what we today call "spoilers" included in this examination of Mead's favorite book, so if you have not read "Middlemarch," and wish to, be warned.In addition to discussing the characters and the story of "Middlemarch," Mead looks at George Eliot's life as it mirrors the various aspects of the book -- youth and the desire and need to find one's place in the world; love and courtship; what constitutes a good marriage or a bad one; how to deal with an intimate relationship with another person; growing older, and eventually death. Mead's book has been called a memoir by some critics, because she does mention some pertinent parts of her own life, and some actual physical journeys made back to England to look at many of Eliot's haunts. However, Mead's life is only a very small part of this book -- most of it has to do with the life of the author of Mead's favorite book, the lovely and haunting writing style, the sly humor, and the pointed observations on the nature of mankind that came to fullest fruition in "Middlemarch."I do understand an obsession with a particular book -- mine being "The Forsyte Saga" by John Galsworthy. I have read Galsworthy's masterpiece at least one in every decade since the 1960s (and sometimes more than once). As "Middlemarch" calls to Mead, "The Forsyte Saga" calls to me, and I find something new in it every time. Just as Eliot knew the heart of her characters, even the more unpleasant or unsympathetic ones, I found myself identifying with the same character ("Soames Forsyte") as I became older. While Galsworthy was not happy that so many readers identified with Soames, Eliot seemed to understand and forgive the characters, such as Casaubon, who were less than perfect and who presented barriers to loving and being loved over and over.I think this book will appeal to many different sorts of readers -- those who share the author's love of Eliot and "Middlemarch," those who appreciate a well-written book that examines an author's life and work, and those who want to pick up Eliot's masterpiece but have been afraid to do so for any one of a number of reasons. Good show, Ms Mead, good show.", "overall": 4.0, "summary": "A Homage to a Favorite Book", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "A1P98DMX8YUSNW", "asin": "0142180319", "reviewerName": "Brad Smith", "helpful": [0, 0], "reviewText": "There's much dross in these pages, but there is also much to learn and relate to in Neil's self-penned epic memoir. Each chapter reads like that day's ramblings, not related to anything that's come before. Maybe he wrote this as therapy. Maybe he was bored by taking time off to rediscover his muse. (Btw, he found it. He recently played Carnegie Hall to some of his best reviews). Either way, this is Neil's mind, seemingly fully exposed. It's quirky, to say the least. And repetitious. This could have been cut in half. Still, you won't really mind because Neil really does have a lot to say, and much to recall of his storied career, which peaked by the early 70s. Yet, he's still creating great music, and his voice is still one of the wonders of rock. He is completely right in his crusade to upgrade the recorded music listening experience. Music did sound better before digital, and we have gone seriously backwards. He wants us to be able to feel music again. I hope the industry listens. Lossless digital tracks are coming for the masses. This is a worthwhile read for Neil fans.", "overall": 5.0, "summary": "Rambles, yes, but it's full of insightful nuggets", "unixReviewTime": 1390608000, "reviewTime": "01 25, 2014"}
{"reviewerID": "A22DXDIYXPBVSP", "asin": "B00HISCQ68", "reviewerName": "M. Heck", "helpful": [0, 0], "reviewText": "Cute little book for kids. Little/young children love "potty" humor and this fits the bill. The wording is not extreme and it's a short story so kids stay interested.", "overall": 5.0, "summary": "Fun for kids", "unixReviewTime": 1403654400, "reviewTime": "06 25, 2014"}
{"reviewerID": "AIEZJVJ7R47GD", "asin": "B00HRHUSN8", "reviewerName": "Missmdh", "helpful": [0, 0], "reviewText": "A great story that kept me up until 5 am to finish because I couldn't put it down. I can't wait for the next book. Hopefully it comes out before the summer (hint, hint).", "overall": 5.0, "summary": "Loved it!", "unixReviewTime": 1392508800, "reviewTime": "02 16, 2014"}
{"reviewerID": "A3HZ0SW4GV74C6", "asin": "B00GJQEGO0", "reviewerName": "R. Burton \"Roberta Burton, devourer of books\"", "helpful": [0, 0], "reviewText": "Ruth Parks has created a believable female private detective placed in the depression era where she could not have existed. Her characters are interesting and either tug at your heartstrings or tug at that violent place hidden within the depths of the subconscious—and sometimes both. The plot is face-paced and complicated enough to keep you guessing.Yes, I found a place or two that looked like author errors, but my experience has been that it sometimes occurs when my download is slow, so I’m giving DON’T DARE A DAME five stars because it kept me entertained and laughing. Can’t beat that for a good read.", "overall": 5.0, "summary": "A Good Read", "unixReviewTime": 1390262400, "reviewTime": "01 21, 2014"}
{"reviewerID": "A1FZ3E9XZR8XE9", "asin": "0385336667", "reviewerName": "Donna Theiss", "helpful": [0, 0], "reviewText": "Lee Child's Jack Reacher is dynamic and forceful. Reading his books are like being on a rollercoaster ride. At the end I am breathless and dazed. Wish Reacher was real.", "overall": 5.0, "summary": "I love Jack Reacher!", "unixReviewTime": 1395878400, "reviewTime": "03 27, 2014"}
{"reviewerID": "ASNZFAC43H3J5", "asin": "0778326128", "reviewerName": "Dawn McKenna \"Freelance Writer\"", "helpful": [0, 0], "reviewText": "This was a fun read and obviously well-researched. I enjoyed it. I'll be reading more from this author in the future.", "overall": 4.0, "summary": "Enjoyable Read", "unixReviewTime": 1396137600, "reviewTime": "03 30, 2014"}
{"reviewerID": "A1OPYGDMADQDNI", "asin": "044658410X", "reviewerName": "Staci", "helpful": [0, 0], "reviewText": "If you plan on making your own baby food, I HIGHLY recommend this book. This is our second child, but our first time making homemade. This book has made it so simple and now I couldn't imagine it any other way!", "overall": 5.0, "summary": "LOVE LOVE LOVE", "unixReviewTime": 1391644800, "reviewTime": "02 6, 2014"}
{"reviewerID": "A2OPTZWRS2IXLU", "asin": "0399161309", "reviewerName": "E. Purdy \"lover of books\"", "helpful": [0, 0], "reviewText": "Excellent Book. Really gives you the flavor of Washington, D.C. just the way it is.A lot of it not too flattering.", "overall": 5.0, "summary": "All about the players and doers in Washington D.C..", "unixReviewTime": 1391212800, "reviewTime": "02 1, 2014"}
{"reviewerID": "A2LYCRJHFMXOW3", "asin": "1626390428", "reviewerName": "RLynne \"RLynne\"", "helpful": [4, 4], "reviewText": "Lisa Girolanmi has written a great love story set in a city she knows well, Los Angeles. Her wonderful characters, K9 Police Officer, Chris Bergstrom, and \"trust baby\" Sarah Pullman are well drawn. Both women have troubled backgrounds, Chris from her \"life is black or white\" military family, and Sarah from her pretentious social climbing family. Their touching meeting over the blackberries at a Whole Foods Market, was beautifully and tenderly written. What follows is one of California's horrific fire seasons, with great descriptions, as well as a threat to the wild life shelter where Sarah volunteers. This emergency causes heroic acts by the volunteers at the shelter and police officers to get the animals to safety. The scene with the baboons in the back of the squad cars was priceless! \"They could s***, you know\". Chris responding, \"so do the criminals.\"There are dark moments for both of these characters, but that is balanced by lightness from the great sense of humor each woman has. Readers also get a great inside look at some of the 'hidden' spots in L.A. This is another good story by a fine writer.", "overall": 5.0, "summary": "A wonderful love story with great characters!", "unixReviewTime": 1395273600, "reviewTime": "03 20, 2014"}
{"reviewerID": "A2ENL2FL9103BP", "asin": "0307731499", "reviewerName": "Rebekah Gyger \"firequeen\"", "helpful": [0, 0], "reviewText": "4.5 starsThis is the second book of Lori's that I have read and I have to say that I have just fallen in love with her writing style. The amount of historical detail that she works seamlessly into the plot is beautiful. And she treats all of her Indian characters as people, rather than stereotypes. (I want a book about Catches Bears!).There was never a moment that I felt jerked from the story, instead it seemed like I was there with the characters. I could perfectly see the forest with all of the animals and the people. The story of Franklin was one that I had heard of before, but she brought to life.My one complaint was that the story seemed to a little too perfectly, with every single thread tide up, even those that I had not realized were loose. While I like happy endings, it was somewhat too perfect. Not that it will stop anyone from loving this story.I received this book from the publisher in exchange for an honest review.", "overall": 5.0, "summary": "Amazing Research", "unixReviewTime": 1398902400, "reviewTime": "05 1, 2014"}
{"reviewerID": "A3KNN4S7VZ9LK3", "asin": "1478355395", "reviewerName": "Nancy C. Lepri \"Author/illustrator/editor/rev...", "helpful": [0, 0], "reviewText": "This delightful novel proves that opposites do attract. When Kate learns her younger sister is headed for marriage, she feels her biological clock tick. She's been dating James for 8 years, but it seems he's afraid to commit. Meanwhile, her best friend Judith is dating James' brother, Paul. It's clear Paul is totally besotted by Judith, but when Kate and Paul get stranded at his family's ski lodge during a blizzard--a storm so severe that James and Judith cannot make it there as planned, Kate and Paul see each other in a new light. But...Paul is tied to Judith and Kate is tied to James. How can they find happiness together with their best friend/brother in the place they want to be. A totally predictable, but delightful tale.", "overall": 4.0, "summary": "Opposites Attract", "unixReviewTime": 1393372800, "reviewTime": "02 26, 2014"}
{"reviewerID": "AB0YA9ZGRERO4", "asin": "B00JFASGY8", "reviewerName": "Frank R. Errington \"Heavy reader\"", "helpful": [1, 1], "reviewText": "Relic Of Death is a brilliantly conceived and executed horror novella. Many times a novella will leave me wanting more on some level. More story, more character development, more of something. Relic Of Death is perfect, just where it is.It's difficult to give a story synopsis without revealing too much. As you can tell from the beautiful cover (Darfuse always has exceptional covers), it has something to do with a mystical suitcase.The story is told through a series of vignettes as the object changes hands violently over time. Before it all becomes too repetitious, Bernstein reveals the truth about the Relic Of Death and gives the tale some closure, for now.This is my first time reading David Bernstein, it certainly won't be my last. With clear, crisp prose, he delivers page after page just what the story calls for. No fluff, no wasted words.Relic Of Death is another winning entry in the Darkfuse novella series. My bookclub membership is the best money I've ever spent with a small press.Official release date is June 24, 2014. Relic Of Death will be available in a variety of formats and if you have an Amazon Prime membership you can read it for FREE through the Kindle Owners Lending Library.Highly recommended!", "overall": 5.0, "summary": "Brilliantly conceived and executed horror novella", "unixReviewTime": 1403568000, "reviewTime": "06 24, 2014"}
{"reviewerID": "A315BIINTEVDFL", "asin": "0758273053", "reviewerName": "angela e kelley", "helpful": [0, 0], "reviewText": "I love me some Mary B, excellent read with suspense throughout. Keep up the great work, waiting for next book.", "overall": 5.0, "summary": "way to go", "unixReviewTime": 1401667200, "reviewTime": "06 2, 2014"}
{"reviewerID": "AAAQVOH4NL9UR", "asin": "061564564X", "reviewerName": "C. Osburn", "helpful": [0, 0], "reviewText": "I've read volumes 1 and 2, they're a great read- there's a mystery element involved with the typical post apocalypse standard fare that makes the story work for me. Waiting for another sir- chop! chop!", "overall": 5.0, "summary": "Great Books", "unixReviewTime": 1400976000, "reviewTime": "05 25, 2014"}
{"reviewerID": "A2SS439VH7N39D", "asin": "0140374396", "reviewerName": "Aemyris", "helpful": [0, 0], "reviewText": "A retelling of the fairy tale, Hansel and Gretel, but this time from the witch's point of view. Great book, came in as described.", "overall": 5.0, "summary": "Hansel and Gretel", "unixReviewTime": 1400889600, "reviewTime": "05 24, 2014"}
{"reviewerID": "A8YXCAV8NQ5PP", "asin": "0312382278", "reviewerName": "Judith D. Collins \"Judith D Collins Must Read...", "helpful": [0, 0], "reviewText": "A special thank you, to St. Martin's Press and NetGalley for an ARC in exchange for an unbiased and honest review.Loved everything about THE GLASS KITCHEN – think sassy southern Texas, meets sophisticated demanding Upper West Side, filled with love of family and sisters, epicurean delights, life’s lessons of forgiveness, and second chances. Delicious. . . absolutely delectable!As a child, Portia had a dream to run her grandmother’s restaurant (The Glass Kitchen) in Texas; however, after settling for a different life (married to a senator which betrayed her with her best friend, and did not allow her to use her cooking talents); a life derailed, she finds herself divorced, and moving to Manhattan to join her two sisters, Olivia and Cordelia.Portia is sure she was responsible for her grandmother’s untimely death and gives up her passion of cooking, due to this misconception. She inherited the ancestral gift (a knowing about events thru food), and her Gram instructed her how to use her abilities, leaving some helpful cookbooks and tips (how to heal certain illnesses with specific foods, among other things).Portia escapes Texas, and moves to the Upper West Side in a rundown brownstone townhome (garden lower level apartment), she inherits from her Great Aunt Evie, filled with fond childhood memories. However, she has no job skills and no divorce settlement (her first job was a hoot)! Her two sisters have sold their share of the townhome, to the handsome investment banker man who lives upstairs on the upper two floors (Gabriel Kane). The other two sisters are not without problems either.Gabriel lost his wife a year earlier, and is raising two daughters, Miranda (16) and Ariel (12, almost 13), and things are not going well in this household--total dysfunction and lack of communication. He wants to buy Portia’s garden apartment; however, she does not want to sell as this is the only thing she owns.The last thing Portia wants is to get involved with a man and his daughters. She has problems of her own – like how to survive in NYC! However, the minute she meets this man – her food thoughts come back strong, and no matter how much she tries to escape, the more she is pulled into this world of food, cooking, and lust.However, fate steps in and forces Portia to do what she loves best in life – COOKING, as a means to support herself – working for handsome and complex Gabriel, while planning her test kitchen with the two sisters, sending aromas to the streets of NYC, while seeking investors for their desired new restaurant (The Glass Kitchen)--if they can find the capital. Some good comfort Texas food, gourmet style in for fast pace NYC—putting her cooking skills to work to bring in the customers (and investors).Of course, to really make it yummy, nightly midnight visits (down the fire escape)to the garden level, from the complicated, hard nose, but sexy Gabriel, with some irresistible delights and surprises.All is not rosy and uncomplicated in this Upper West Side neighborhood. There are many twists, and obstacles along the way in this messy family of Kanes –from Gabriel’s mother, his brother Anthony, Gabriel’s former wife, and mother of the girls, with a secret past and events leading to her death, which shake Ariel’s world, as well as Portia.With quirky neighbors (Stanley and Marcus), supportive sisters, hot sex, some strong women, yummy gourmet recipes, love of food and recipes for life, with a young girl’s determination to put her family back together, to one’s woman’s courage and journey to fulfillment and passion – a meal you will want to savor!Linda Francis Lee created an irresistible banter and chemistry between Gabriel and Portia, which will keep you smiling and rooting for this sizzling, yet odd couple. And oh, Aerial will melt your heart, with her intelligence and winning personality, as she finds her way.There are many parallels here, and would be ideal for book clubs or discussions. Portia and Ariel, are very similar—both are youngest of sisters, guilt ridden, undervalued by others for their intelligence, keen sense of humor, talent, style, and passion –both courageous and determined to make things better, as they discover their true self.From the inviting front cover to the delectable and mouth-watering recipes – a captivating novel of love, forgiveness, family, courage, and the determination to follow your heart and dreams.I was traveling while reading this book, and had to get up extra early, in order to finish THE GLASS KITCHEN, this morning before getting back on the road. Could not wait to see what would happen to these unforgettable and lovable characters. A five star winner! Looking forward to reading more from this insightful and talented author.If you are a fan of contemporary fiction, chick lit, romance, humor, southern women’s fiction, love of gourmet food, and family dynamics, you will be assured to enjoy this magical novel, where life is not always perfect – as the fun is in the “messiness”, with some courses and recipes to sweeten the deal.Fans of authors Sarah Pekkanen, Emily Giffin, Mary Kay Andrews, Sarah Rayner, Jane Green, Sarah Addison Allen, Susan Rebecca White, Mary Ellen Taylor, Joanne Demaio, Beth Hoffman, Nancy Thayer, Wendy Wax, Mary Simes, or Dorothea Benton Frank will find THE GLASS KITCHEN, fresh, irresistible, funny, and quite satisfying.", "overall": 5.0, "summary": "Loved everything about THE GLASS KITCHEN!", "unixReviewTime": 1403740800, "reviewTime": "06 26, 2014"}
{"reviewerID": "AQHS6XFXKZLPQ", "asin": "0452295297", "reviewerName": "Marzie", "helpful": [0, 1], "reviewText": "I don't like books about violence and bad things happening to good people, particularly about the Nazi's and their victims.The only thing i knew about Leningrad and the WWII battle of was that it was very cold and snows a lot and often.The two main characters (particularly the narrator) however grabbed me immediately and I wound up wanting to stop reading because of some of the ugliness but could not.Here were two good young men both able to see the humor in life coping with awful circumstances.I do recommend it to people who are up for a an adventure and are not too weak-hearted about the inhumanity of man.", "overall": 4.0, "summary": "Unexpectedly Engaging", "unixReviewTime": 1396656000, "reviewTime": "04 5, 2014"}
{"reviewerID": "A8PSMI8O1B7IM", "asin": "0316091014", "reviewerName": "Staroffspring", "helpful": [0, 0], "reviewText": "This is a great book if you are a lover of astronomy and a lover of books on astronomy and especially the sun. This book is full of fascinating facts we currently have about the sun and its effects on the earth, including some very fascinating facts about total solar eclipses that most people,including myself, do not know about, so definitely a strong recommendation for this book.", "overall": 4.0, "summary": "The Sun's heartbeat", "unixReviewTime": 1402704000, "reviewTime": "06 14, 2014"}
{"reviewerID": "AAHH55JAUT2M8", "asin": "B00GVLVQAK", "reviewerName": "minde1397", "helpful": [0, 0], "reviewText": "This book is a fantastic continuation of The Alaskan Heart Saga. Tiffany Carmouche has outdone herself with this story. I cannot begin to describe the range of emotions I experienced as I read this book. I can not go into too much detail for fear of spoilers! This is a must read!!", "overall": 5.0, "summary": "Fantabulous", "unixReviewTime": 1399507200, "reviewTime": "05 8, 2014"}
{"reviewerID": "AVO7BODO8D51G", "asin": "0451214994", "reviewerName": "Rw \"rw\"", "helpful": [1, 1], "reviewText": "Wonderful use of British period language and customs. May(flower) is a well developed heroine and exhibits the best of the more modern woman. The men are more or less louts but that is to be expected in English culture at the time. The editing is typical for the kindle books I read with irritating errors and misuse of words.", "overall": 4.0, "summary": "Sweet story poor editing", "unixReviewTime": 1395446400, "reviewTime": "03 22, 2014"}
{"reviewerID": "A3NUMRC41CR0UU", "asin": "0785161759", "reviewerName": "Matt Anderson", "helpful": [0, 0], "reviewText": "There is so much good about this volume. It is essentially split up into two parts, so I’ll take it one at a time.Part 1: The continuing battle with Uncle Aaron:While Miles and Aaron team up together at the beginning of the volume, they inevitably battle, as Aaron’s blackmailing of Miles is finally resolved. Frankly, I was shocked by how it was resolved.I haven’t mentioned this in previous reviews, so I wanted to take this opportunity to say that I really like the fact that Miles’ power set is different than Peter’s old power set. Sure, there are some similarities, but then there are also some drastic differences. The camouflage and venom blast are especially awesome.From here on out, there will be spoilers until I get to Part 2. The death of Aaron was tragic and necessary. As the Prowler, Aaron is a villain, and an enemy to Spider-Man. The fact that he knows Miles’ secret identity means that he couldn’t have stayed in the story unless he turned good. Aaron wasn’t on that trajectory, so he had to die, for the sake of the story and the character. But how he died, accidentally being killed by his nephew, is so tragic for Miles, who now has to live with this as a 13 year old. In an interest parallel, the death of Uncle Ben influenced the way Peter Parker would live as Spider-Man, and I’m certain that the death of Uncle Aaron will impact the hero that Miles becomes. Aaron’s dying words, “How about that? You are just like me,” will surely haunt Miles for years. He will now have to look his father in the eyes knowing that he is responsible for the death of his father’s brother.Part 2: Working for Captain America:Although I’m not reading any other Ultimate Marvel books, it is clear that there is a storyline going on in which some sort of war has started. Captain America is leading the good guys, and Miles joins by their side. This section, called “Divided We Fall,” opens with the words, “Washington is decimated. The government is a mess. The Southwest is in chaos. States are seceding from the union. America is falling apart.” This sets the stage for Miles going to war, but not before an opening scene where Miles’ father tells him (Spoilers) the bad news that Spider-Man killed his uncle!Spoilers from here on out. As with previous volumes, Peter’s cast appears in Miles’ story. In this volume, we get a crucial interaction as Aunt May and Gwen Stacy decide that it is time for Miles to have something that Peter built. Web-shooters and the web formula! I have to be honest, with all the other awesome powers that Miles had, I failed to realize that he didn’t have the ability to go web-swinging. This will be even better now! Since Miles’ best friend, Ganke, is really smart, and knows his secret identity, he is tasked with the mission of creating the web fluid using Peter’s formula.Ultimate Maria Hill makes an appearance in this volume, and quickly realizes a connection between Spider-Man and Miles’ family.Back in the war, chaos ensues, and Spider-Man is a big hero. I really like it when Miles can work with Spider Woman (Peter’s clone, but in female form), this volume had a lot of that. Plus, there was further character development with Miles’ parents. Another great Spider-Man book.I read this volume right after reading volumes 1 and 2, and it was a good experience to read the whole story (so far) straight through.", "overall": 5.0, "summary": "Spider-Man teams with the Ultimates as the United States are torn apart", "unixReviewTime": 1389830400, "reviewTime": "01 16, 2014"}
{"reviewerID": "A2RYT2UPEQXUAV", "asin": "1494443252", "reviewerName": "Amazon Customer", "helpful": [5, 5], "reviewText": "So not what I expected and could not have been happier about it. Knox at the start comes off as an arrogant party animal, but as the story continues, the innocent McKenna finds he is so much more. Sweet story.", "overall": 5.0, "summary": "4.5 stars", "unixReviewTime": 1395878400, "reviewTime": "03 27, 2014"}
{"reviewerID": "A2I0DIZU1PFJ8N", "asin": "0307395057", "reviewerName": "Doris Boyle", "helpful": [0, 0], "reviewText": "An interesting metaphorical tale. I enjoyed it, but it is not one of those books I would say, "You just gotta read this."", "overall": 3.0, "summary": "A metaphorical tale", "unixReviewTime": 1403827200, "reviewTime": "06 27, 2014"}
{"reviewerID": "A26RARXNJJT9DV", "asin": "0425154556", "reviewerName": "R. Jackson", "helpful": [0, 0], "reviewText": "I really enjoy the idea of hiking across America and admire the author's adventurous spirit. However, I lost interest about midway as the writing style was not appealing.", "overall": 3.0, "summary": "Became tedious", "unixReviewTime": 1403222400, "reviewTime": "06 20, 2014"}
{"reviewerID": "A1YNMBVZ8P38LN", "asin": "B00IDGU05S", "reviewerName": "Letisha Luecking", "helpful": [1, 1], "reviewText": "Cute comedy/romance novel. This was a quick and easy read that didn't require a lot of thought. Sometimes you need a break and you need an easy book like this. I enjoyed it.", "overall": 4.0, "summary": "nice book.", "unixReviewTime": 1395878400, "reviewTime": "03 27, 2014"}
{"reviewerID": "A2LS291AOHFMM4", "asin": "0736430903", "reviewerName": "Peru29", "helpful": [0, 1], "reviewText": "This was a popular book for both my son and daughter....we all love the movie and getting reading time is always a bonus!", "overall": 5.0, "summary": "Great find", "unixReviewTime": 1396310400, "reviewTime": "04 1, 2014"}
{"reviewerID": "A31LI5YNWP7YH4", "asin": "1623152429", "reviewerName": "Cindy Schlegel", "helpful": [0, 0], "reviewText": "I always thought of vegetarian food as bland and boring but after reading this cook book I have found it to be anything but ordinary. The author gives a delicious description of fried eggplant with mozzarella and herbed tomatoes to show how good vegetarian cooking can be. The book outlines a 14 day plan where you can follow along with the different types of recipes. There is even a specific section on raw vegetable recipes which I found interesting. This book makes you think outside of the box and I recommend it for anybody who wants to eat a healthier diet.", "overall": 5.0, "summary": "Delicious Vegetarian Recipes!", "unixReviewTime": 1391299200, "reviewTime": "02 2, 2014"}
{"reviewerID": "A2G7I3KKKHNOUM", "asin": "0553584529", "reviewerName": "Rosemary R. Cameron \"Rosemary\"", "helpful": [0, 0], "reviewText": "Good read.7th book I have read of this author. She has such a way of telling a story that truly keeps my interest. Looking forward to reading her next novel.", "overall": 4.0, "summary": "The Killing hour", "unixReviewTime": 1391212800, "reviewTime": "02 1, 2014"}
{"reviewerID": "A3Q7NGN14THEQN", "asin": "1442366087", "reviewerName": "C.B.", "helpful": [1, 1], "reviewText": "What can I say? This is one of the best books I've had the pleasure of reading, and I've read thousands. There's not a lot I can say. These are the men and women who willingly offer to make the ultimate sacrifice every step of the way; patriotism at its finest. They live for the moment, protecting our freedom and security, sacrificing time with their families so that we may spend time with our families. I'll read anything from Scott McEwen if it's as good as this. I've long been a Richard Marcinko fan and I'll now have to add Scott McEwen to my list of favorite authors. I would recommend this book to anyone who wants a dose of reality, to understand the threats we face as a nation and what our best of the best are doing about it.", "overall": 5.0, "summary": "One Of The Best", "unixReviewTime": 1390694400, "reviewTime": "01 26, 2014"}
{"reviewerID": "A294DMZSKJF83Q", "asin": "0804119627", "reviewerName": "Dmitrifan", "helpful": [0, 1], "reviewText": "This is a first read of Ms Adrian work. I chose it based on the ratings and cost. It was OK but nothing special. I lost interest half way through and just skimmed to the end. It just did not hold my interest.", "overall": 3.0, "summary": "Just OK Nothing Special", "unixReviewTime": 1392422400, "reviewTime": "02 15, 2014"}
{"reviewerID": "A3OBWASU30AKDG", "asin": "194027012X", "reviewerName": "Diane L. Bixler", "helpful": [0, 0], "reviewText": "Not as funny as the others in this series, but still good. I'll read the next one, but the author is going to have to kick start the characters in the next one as this was too ho hum.", "overall": 3.0, "summary": "Not as funny", "unixReviewTime": 1397088000, "reviewTime": "04 10, 2014"}
{"reviewerID": "A2KBU4MUO7VJ9R", "asin": "1479171859", "reviewerName": "Amy Tate", "helpful": [0, 0], "reviewText": "This story just keeps getting better with more twists and turns than should be a good idea. Keep it coming!", "overall": 5.0, "summary": "More! More!", "unixReviewTime": 1399507200, "reviewTime": "05 8, 2014"}
{"reviewerID": "AESUXU5AHWEFP", "asin": "B00EQ6IPBA", "reviewerName": "Frieda \"Frieda\"", "helpful": [1, 2], "reviewText": "Reactionary, nothing of substance.", "overall": 1.0, "summary": "Reactionary", "unixReviewTime": 1404604800, "reviewTime": "07 6, 2014"}
{"reviewerID": "AI9J1RE62QAC7", "asin": "1423131754", "reviewerName": "School of Groove", "helpful": [0, 0], "reviewText": "As the target here seems to be pre-teens, the effort to introduce this type of content is a novelty itself. The tale spins quick, but the story seems quite stale, with plot twists apparent long in advance.", "overall": 3.0, "summary": "mediocre foray into zombie tale", "unixReviewTime": 1404000000, "reviewTime": "06 29, 2014"}
{"reviewerID": "A3KRIS4C66TT0J", "asin": "0300169787", "reviewerName": "redsoxfan", "helpful": [0, 1], "reviewText": "Gave it as a gift, big hit! Great seller.", "overall": 5.0, "summary": "Great seller.", "unixReviewTime": 1404432000, "reviewTime": "07 4, 2014"}
{"reviewerID": "A17YYGOALTA45A", "asin": "B00630MUZ4", "reviewerName": "ktscoup", "helpful": [0, 0], "reviewText": "Attitudes of main characters change very quickly. Cute short story. I read this in about an hour. Not a re-read book but enjoyable.", "overall": 3.0, "summary": "Cute short story.", "unixReviewTime": 1391990400, "reviewTime": "02 10, 2014"}
{"reviewerID": "A1RWMG7GUAOOSO", "asin": "B00DAK728A", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "short story", "overall": 2.0, "summary": "Two Stars", "unixReviewTime": 1405555200, "reviewTime": "07 17, 2014"}
{"reviewerID": "A16FALMV31OCX3", "asin": "034581360X", "reviewerName": "Coni Patrick", "helpful": [0, 0], "reviewText": "Enjoyed the characters & the tale. Seems to be an accurate depiction of the hard lives led by servants back in the day.", "overall": 5.0, "summary": "Compelling story", "unixReviewTime": 1396137600, "reviewTime": "03 30, 2014"}
{"reviewerID": "A3FN5IS7TZVP1O", "asin": "141656103X", "reviewerName": "Joy E. Loth \"Joy Eaton Loth\"", "helpful": [0, 0], "reviewText": "I found this book seen through the eyes of two children was fascinating. The author's knowledge of Cuba made me wonder if she'd lived there during this period. The details are amazing so I see the author as a very intelligent person.", "overall": 5.0, "summary": "Telex from Cuba:A Novel", "unixReviewTime": 1393891200, "reviewTime": "03 4, 2014"}
{"reviewerID": "AK9A9B2DQ0LLK", "asin": "B00GNFM83S", "reviewerName": "Elm", "helpful": [0, 1], "reviewText": "Great read and enjoyable. Fast pace with good characters. The book was hard to put down a d if time would have permitted could have read it cover to cover.", "overall": 4.0, "summary": "Great", "unixReviewTime": 1396310400, "reviewTime": "04 1, 2014"}
{"reviewerID": "A2P8NDUXS2ZHLT", "asin": "1442359919", "reviewerName": "Kathy", "helpful": [0, 0], "reviewText": "The characters are interesting and well-drawn like all of King's stories. It is a murder mystery that allows you to follow along with questions and ideas of who did what. It has a great ending that swirls you along like a fast running river. I like the hard case crime series; it has echoes of Chandler, Hammett, Ross and those kind of characters.", "overall": 5.0, "summary": "Hard case crime through Stephen King's eyes.", "unixReviewTime": 1391644800, "reviewTime": "02 6, 2014"}
{"reviewerID": "A212Z6AAWBAGEG", "asin": "B00KYBE5O2", "reviewerName": "rc18", "helpful": [3, 4], "reviewText": "I have read a number of Breanna Hayse's books and always loved them which is why I was surprised that I had such a hard time getting into this story. It was well written I just think that the hero didn't act much like one in the beginning. Griffon does grow on you as time goes on and I began to like Jade more too as the story progressed. As I got to the end of the book I realized what bothered me so much was the element of humiliation in it. I love books with spanking and different kinds if discipline but humiliation is a turn off. Too, there is a secondary story that has Griffon spanking Tasha and other employees. I prefer my stories to have a one man one woman spanking relationship. For me it was a good story, just not a great story.", "overall": 4.0, "summary": "For Me it was a good story, just not great story.", "unixReviewTime": 1402531200, "reviewTime": "06 12, 2014"}
{"reviewerID": "A2DVCI7Y89YE3W", "asin": "1623153867", "reviewerName": "Juliette Bilodeau", "helpful": [2, 2], "reviewText": "Being in a single-person household, I love the concept of this cookbook. It’s great to have slow cooker options that are already adapted for a smaller number of eaters. The first part of the cookbook is really geared more toward novice slow cooker users. It is full of ideas and helpful hints on getting started with slow cooking. Those more experienced with slow cooking may not need this section, but it’s nice to have it just in case. The recipes are great. There are so many options that there is surely something to appeal to every palate.", "overall": 5.0, "summary": "Love this Cookbook!!!", "unixReviewTime": 1394928000, "reviewTime": "03 16, 2014"}
{"reviewerID": "AUZ96COITGKE3", "asin": "0991401115", "reviewerName": "Shayna Renee's Spicy Reads", "helpful": [1, 1], "reviewText": "Time and time again, Aleatha Romig delivers superb stories full of emotion and suspense. Behind His Eyes - Truth is just another example of how Ms. Romig is at the top of her game and shows no signs of slowing down. Giving us Tony's POV is a huge treat, and helps us dive into the mind of this disturbingly, sexy, possessive man.In BHE - Truth, we are reminded, yet again, how powerful Anthony Rawlings really is. He is a man on a mission. He wants something he takes it. All throughout this story it's like you can hear him in your head, the anger, the desperation, everything this man feels, you are right there with him. Some might say we get so invested in this character, and we are so conflicted on how we feel about him, it can take a toll on us. I can certainly say, for a fact, that this series has taken a toll on me, in a bone-chilling, heart-racing, mind-****ing way, but I wouldn't have it any other way. These are the stories that stick with you long after you finish reading. It's what you start comparing all other books to. Nothing beats the raw emotion and intense feelings this series pulls out of you.Anthony Rawlings, Tony, Anton, Mr. Rawlings....no matter what you call this man, he will wreck you. He will make you hate him. He will make you feel sorry for him, and he will make you love him. This will go on and on, until you don't know what to think. No matter what you feel for him, the point is...you will FEEL.❝She was his drug. Claire Nichols ran through his system like ecstasy, sending him on otherwise unobtainable highs.❞In Behind His Eyes - Truth, Tony finally has to deal with circumstances beyond his control. That's not to say he won't try, but it's out of his reach. Conflicting feelings turn into clarity, and then to opportunity. Every little detail has it's reasoning. There are scenes that you appreciate getting a second look at. Maybe you will get some answers to some questions that have been on your mind. Maybe it will make you even more confused. No matter what, we get to see the two characters that we have fallen for happy again, even if for a moment in time. I'm pretty sure I said this in my last review of BHE - Consequences, but if you are an avid reader of this series, even though you know what's going to happen, it is still so **** intense!I could seriously go on and on about Tony. He is so incredibly fascinating. Some of you while reading this will have little smirks on your face at times. We get to witness Tony without control. He always has such an internal conflict when it comes to his Claire. The depth of his feelings for Claire is beautiful, yet a little scary, but it's nice to bare witness to such a gruff man come to terms with his love for another human being. For such a powerful man he has so many regrets. It's a little sick that I find some comfort in his suffering, but it reminds us that he is just a man.❝He didn't want to be disappointed; however, more than that, he didn't want to disappoint.❞So make sure you pour yourself a glass of wine, shot of tequila, or a whiskey sour, because this will take a lot out of you. Nobody can write intensity like Aleatha Romig. She is so high at the top of her game right now, I can't wait to get the final chapter in this saga. Here is to another fantastic addition to the Consequences Series, and here is to the man we all love to hate, Mr. Anthony Rawlings.*Gifted Copy provided by the author in exchange for an honest review*", "overall": 5.0, "summary": "Powerful, sexy, and thrilling!", "unixReviewTime": 1395100800, "reviewTime": "03 18, 2014"}
{"reviewerID": "A1PFU51WAEWGHA", "asin": "B00HX1BD7I", "reviewerName": "Starflook \"trem\"", "helpful": [1, 1], "reviewText": "The unrealized young love that gets a second chance makes this story not only endearing, but incredibly hot! The author does a superior job of using first person to make the emotional value reach a higher pitch. I definitely recommend this book!", "overall": 5.0, "summary": "Swagger has a lot to Swagger about!", "unixReviewTime": 1390608000, "reviewTime": "01 25, 2014"}
{"reviewerID": "A1F65FET9BWQB1", "asin": "1416588698", "reviewerName": "Dean F. Blair", "helpful": [0, 0], "reviewText": "Bought this for myself after seeing an interview on Charlie Rose. It's a good book, but sometimes hard to decipher if you don't really get into all the nuances of politics - I try, but it escapes me sometimes and I end up thinking that they are all bums anyway so what.", "overall": 4.0, "summary": "Good book.", "unixReviewTime": 1390780800, "reviewTime": "01 27, 2014"}
{"reviewerID": "A26UABXFW9QWNC", "asin": "B00HYOTZD8", "reviewerName": "Connie Thompson", "helpful": [0, 1], "reviewText": "Jack & Jenn. Women you'll love Jack and his caveman ways, and you will love Jenn even more for her smart mouth, I won't be told what to do, yet still so sweet nature.", "overall": 5.0, "summary": "wonderful", "unixReviewTime": 1392508800, "reviewTime": "02 16, 2014"}
{"reviewerID": "AXPHUMD19MO2T", "asin": "0800734300", "reviewerName": "Claire Blackburn", "helpful": [0, 0], "reviewText": "It was easy to fall in love with Rebekah from the beginning of her story. It was amazing to see how easily I understood her thoughts and actions....I could see myself in many of them. Jill Eileen Smith has a wonderful knack of making her stories come alive around you and making you apart of it all!", "overall": 5.0, "summary": "fantastic!", "unixReviewTime": 1392508800, "reviewTime": "02 16, 2014"}
{"reviewerID": "A3AA3SSR1XBAR7", "asin": "1607965321", "reviewerName": "El's Mom", "helpful": [1, 1], "reviewText": "We are enjoying this book as a supplement to our History lesson. I'm using the Charlotte Mason method of instruction and find that this corresponds nicely with our other curriculum. Nice short chapters with information that keeps my 8 year old interested.", "overall": 5.0, "summary": "Homeschool History", "unixReviewTime": 1389052800, "reviewTime": "01 7, 2014"}
{"reviewerID": "A143P1XKYWH4Q0", "asin": "1455517135", "reviewerName": "Charles M. Davis", "helpful": [0, 0], "reviewText": "We love all the Lincoln Rhyme series and this was certainly not disappointing. He always leaves room for another book.", "overall": 5.0, "summary": "review", "unixReviewTime": 1403136000, "reviewTime": "06 19, 2014"}
{"reviewerID": "A2ZMIVS6AW4B2V", "asin": "1599901412", "reviewerName": "Tracy L Karol \"Tracy L. Karol (visit me on th...", "helpful": [0, 0], "reviewText": "I remember this story from years ago - I must've read an account of it somewhere because when I read the blurb I thought I had read this book. But I just knew the story. As someone who formerly worked in law enforcement and is involved with victim rights, it really caught my eye. This is something everyone should read. The bravery of Officer Busby in the moments and then years after the crime is amazing. His daughter, Cylin, is a wonderful writer of her own accord and she recounts these events that had such an impact on their lives very well. Buy this book and read it. You won't be disappointed.", "overall": 5.0, "summary": "Haunting memoir", "unixReviewTime": 1394409600, "reviewTime": "03 10, 2014"}
{"reviewerID": "A6ZI6KFAUYFGX", "asin": "B00FIL6SRA", "reviewerName": "Terri W", "helpful": [0, 0], "reviewText": "You had me at Marine, and then kept me with the amazingly sexy story that followed. Short, sweet, and just right.", "overall": 5.0, "summary": "Falling...", "unixReviewTime": 1394409600, "reviewTime": "03 10, 2014"}
{"reviewerID": "A30BMMPIAUJZT4", "asin": "0373778287", "reviewerName": "Cheri MorningStar", "helpful": [0, 0], "reviewText": "Nothing Innocent about this story. This sets the stage for the next two books which are 5* all the way. This series is one of the best I've read, and I've read many. I accidentally read book 2 first and quickly realized the mistake but it was so good I couldn't stop. This series is a great balance of erotica, action, drama, murder and heart_stopping kidnapping.I've found a new favorite author and want to read everything she has written.", "overall": 4.0, "summary": "Great series.", "unixReviewTime": 1403136000, "reviewTime": "06 19, 2014"}
{"reviewerID": "ARONJFBFHBH8N", "asin": "0307943232", "reviewerName": "Tara L. Duncan", "helpful": [0, 0], "reviewText": "Awesome!", "overall": 5.0, "summary": "I love it", "unixReviewTime": 1399248000, "reviewTime": "05 5, 2014"}
{"reviewerID": "A16X6BGUSQ0JI5", "asin": "B00FI23NDG", "reviewerName": "Paul Mills", "helpful": [0, 0], "reviewText": "good characterization, interesting situations, conflict and dramatic tension. Didn't like lots of text repeated as a character development or flashback trick.", "overall": 4.0, "summary": "Far from Home review", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "ADJDLDM5Y69VJ", "asin": "0425264017", "reviewerName": "Vegasmom", "helpful": [0, 0], "reviewText": "Should have been 6 stars", "overall": 5.0, "summary": "This series just keeps getting better and better. This book cannot be compared to any of the others in the series so don’t try.", "unixReviewTime": 1404777600, "reviewTime": "07 8, 2014"}
{"reviewerID": "ANJXYGLLNNDLV", "asin": "0143036564", "reviewerName": "NY reader \"Jane E Waldron\"", "helpful": [0, 0], "reviewText": "If you love Mitford books you will enjoy this one. It is a wonderful read. I have all Jans books.", "overall": 5.0, "summary": "A Mitford must have", "unixReviewTime": 1393027200, "reviewTime": "02 22, 2014"}
{"reviewerID": "A2FHV45IN3WN3I", "asin": "0062024027", "reviewerName": "Rochelle Roth", "helpful": [0, 0], "reviewText": "This is by far my most favorite genre of book to read, Dystopian, I do not really know why but it just fascinates me. I wish that there were more adult dystopian books but again this one is a Young Adult read. Not that I have anything against it but really someone needs to write an awesome Adult Dystopian novel!Divergent has been on my TBR (To be read) list for a long time and I was able to borrow this book from my friend finally and read it and I am so glad I finally was able to read this book! I am giving it 5 stars! Veronica Roth writes so well, there is no draggy parts at all, it has everything I could ask for. First of all, I think something that all dystopian books must have to be a good read is good action, during Tris’s Initation in Dauntless she does a lot of gutsy things, she jumps on to and off of trains, jumps off buildings, and climbs the ferris wheel at the old Navy Pier and that is just naming a few, I won’t tell you everything because I do not want to tell any spoilers. Roth also describes the landscape of Dystopian Chicago amazingly. I am obsessed with Chicago and have been there 3 times in the last 6 years to visit and the way she describes the places in Chicago and where Tris and her family and friends are at I can envision so clearly. There is also romance but not so much that it ruins the book and the meaning behind the book. Tris and Four are such a different couple then in most books I read and at the same time I can identify with them a little bit. I do not really have one bad thing to say about this book. If you like dystopian novels go out and try this one. I am looking forward to going with my co-blogger Colleen to see the movie so we can disect it and write a review of the book vs. the movie for everyone!Thanks always for reading!RochelleP.S. Please remember to check out our facebook page!!! I will be posting more giveaways![...]", "overall": 5.0, "summary": "Amazing dystopian novel!", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A3L1Z0R3ZB2OFU", "asin": "1607744864", "reviewerName": "Janet", "helpful": [0, 2], "reviewText": "I thought that this book was more focused on carbohydrate restriction than on breaking sugar addictions. I got the message that quitting sugar is hard, but I wanted more solutions to breaking the cycle. Perhaps I was again looking for the easy solution. In fact there is no easy way to lose weight. Other diets have proven that carb restriction usually suppresses cravings and the weight loss and health benefits have been widely publicized. I just didn't see much new in this approach. It wasn't badly written, didn't talk down to the reader, but just go in aware that carb restriction is the end goal.*I received my copy from NetGalley.com in exchange for an honest review.", "overall": 3.0, "summary": "Not My Favorite", "unixReviewTime": 1391040000, "reviewTime": "01 30, 2014"}
{"reviewerID": "A3QXHDSFCHJNYN", "asin": "0375850864", "reviewerName": "Vedran Lelas", "helpful": [0, 0], "reviewText": "This book has a lot of puzzle pieces that just fit in the end it is a great book filled with great detail", "overall": 5.0, "summary": "Great Read", "unixReviewTime": 1398643200, "reviewTime": "04 28, 2014"}
{"reviewerID": "A34DYRZBLSI8R5", "asin": "B00ISJO1D2", "reviewerName": "The Book Quarry", "helpful": [10, 10], "reviewText": "This book is an excellent read! It is a first of its kind book and one you don’t want to miss out on!We have Emily Monroe who is a psychic, though she does not let anyone know other than her best friend Cassie. Emily and Cassie own a Private Investigation firm together and have known each other since high school. They never kept secrets from each other until Emily heard a voice screaming her name in terror… and a darkness began invading her mind.David is like the fox hiding sly. He is psychic also but uses his to prey on women. He believes Emily is his love and they are meant for each other. He is using his abilities to create a psychic link with Emily causing her to feel his evilness.How DO you hide from a killer who’s in your mind?Emily must find out what the darkness is before it is too late. Conduit is the perfect read to get you completely enthralled. It is so hard to stop once started, it is always moving forward and drawing you into this dark world of David’s. The amount of details given by the author and the wonderful way it was written causes heart pounding moments, fear of the dark and the need to check behind every closed door. Well done!!-- Mellena @ The Book Quarry**I was given a copy of CONDUIT in exchange for my honest opinion***", "overall": 5.0, "summary": "Conduit is a unique masterpiece!!!", "unixReviewTime": 1394323200, "reviewTime": "03 9, 2014"}
{"reviewerID": "APZ15I39E3A2W", "asin": "0385537859", "reviewerName": "E. Blackwell", "helpful": [0, 0], "reviewText": "I loved every moment! Now inspired to travel to Venice and Turkey. Still stressed by the possibility of the science in the book. A rather terrifying answer to a legitimate problem plaguing our world. Oh and couldn't help seeing Tom Hanks on every page!!", "overall": 5.0, "summary": "Twists and turns right up until the end!", "unixReviewTime": 1400025600, "reviewTime": "05 14, 2014"}
{"reviewerID": "A2QCH4LVJY6B6P", "asin": "1622665996", "reviewerName": "Kathy @ My Nook, Books & More", "helpful": [1, 1], "reviewText": "My Not So Super Sweet Life (MYNSSSL) is the final book of the My Super Sweet Sixteenth Century and I am so sad to see this end. MYNSSSL is a perfect ending for this series!This review will be short because I don’t want to mention any spoilers! But I loved that MNSSSL was written in two point-of-views – Cat and Lucas. This was a great way to learn more about Lucas, who is a sweet and romantic guy! Lucas is also struggling with his relationship with his parents, so it is made clear the connection he has with Cat. It is truly fate that brings them together and they heal each other. MYNSSSL also focuses on Cat’s insecurities because of her mom, which at times I did sympathize but also felt like throttling her. Rather than focusing on all the negative emotions as a result of her mom, Cat really needs to look around and see all the good she has. I loved seeing Alessandra (Less) and Austin make small appearances in the story, but I wish there was more of them. Less and Austin are comedic and I miss them! I also loved getting to know Jenna. Maybe it’s because I am a mother of a teenager, but just seeing the bond Jenna and Cat have made was priceless.Overall I really enjoyed this book. This gives us closure for Cat’s story but also left it wide open for a future spin-off (which I hope the author will do soon!!). The author’s writing was perfect and I love the humor she adds to her story. This series is a fun and emotional ride, and I highly suggest this to everyone!!", "overall": 5.0, "summary": "Loved it!", "unixReviewTime": 1403395200, "reviewTime": "06 22, 2014"}
{"reviewerID": "A34P0LU7HW1MG1", "asin": "B00JAZDCA6", "reviewerName": "Emily McGee", "helpful": [2, 2], "reviewText": "Unfortunately, Fix You was not for me. I have been known to enjoy the serial books that are becoming a "thing" but, I think this book would have been better off sitting a little bit longer and coming out as a full story and not pieced out. I feel that the serials are meant for very emotional, and raw stories. Fix You didn't accomplish that with me. It felt disjointed and very rushed. I could not bring myself to like the heroine, Olivia, she seemed childish, and naive. Whereas, Bash has so much riding on his job, and seemed to be a stand up guy for his family until Olivia makes him lose his head. It just didn't click with me. The story, the characters, their circumstances and their chemistry. Something just seemed off.That being said, Fix You does have the potential to grow into a book I would like to read. It did end on a mild cliffhanger which will probably intrigue me enough to move on to the second book. But the second serial is going to have to possess major growth where Olivia is concerned, and more explanation where her family is concerned, and build more on Bash and Olivia's relationship. The way part one ended, it just felt like a physical connection with no deeper meaning between the two.Again, I don't mind serials but they have to be done fantastically. This one was just so-so, and the fact that it was a serial on top of that just made it more frustrating than anything. I want to be left needing and wanting more. Fix You just left me perplexed and wanting it to have gone the extra mile and reach its potential. I sincerely hope this was just a slow start and then next parts in the book will rise to the occasion.Happy Reading!*ARC provided by the author/publisher via NetGalley in exchange for an honest review*", "overall": 2.0, "summary": "I really wanted to like it...", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A2HOLM5I1ARX9J", "asin": "1118679997", "reviewerName": "Carol C. \"ccjello\"", "helpful": [0, 0], "reviewText": "I didn't know much about the first World War -- other than something about Archduke Ferdinand being shot on a bridge in Sarajevo and the little bit I learned from watching Downton Abbey. This book gives you plenty of background to learn as much or little as you would like. I like the presentation -- you can basically pick up the book and read a few pages and find something of interest. There is no need to read it through like some history books. My father really enjoyed looked through the book -- and he has a pretty short attention span as far as books are concerned.", "overall": 5.0, "summary": "excellent overview of first world war", "unixReviewTime": 1403740800, "reviewTime": "06 26, 2014"}
{"reviewerID": "A36BINW931YYZR", "asin": "1492326577", "reviewerName": "LMU's Mommy", "helpful": [0, 0], "reviewText": "I rely on reviews to purchase a book. And I was sorely misled from previous five star reviews.Spoiler alert:I'd like to punch Sophia and throw my reader at wall to hopefully re-arrange the 'story'. I can identify with Sophia because work comes first.She doesn't seem like a nice person. Conflict is needed for drama but she must be the most gorgeous person ever. She's catty and judgmental. I don't know where to start.I keep hoping the story gets better but she just gets crazy gf syndrome as I turn the page. And it's not good gf drama, nothing like Tarryn Fisher's 'The Opportunist' nor are there FSOG aspects. Just some good looking rich guy.", "overall": 2.0, "summary": "I paid for this?!!!!", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A30BNFJP24PKBH", "asin": "0451235134", "reviewerName": "Pam Heitzrater", "helpful": [0, 0], "reviewText": "Julie Garwood is the best author I know. This is from her FBI stories and it is fun to touch base with other characters she introduced her readers to in previous books. Her characters are strong and honest. Women are not wimps in her stories. There is always humor and decent characters with strong morals. I own all her books and read each several times. I also appreciate the fact that Julie Garwood has never bashed my beliefs as a conservative or incorporates slurs in her writing. I wish other authors would take the high road like she does! Thank You!", "overall": 5.0, "summary": "Great Book", "unixReviewTime": 1395100800, "reviewTime": "03 18, 2014"}
{"reviewerID": "AZDZCRF08KMPI", "asin": "0965601986", "reviewerName": "Jeanne Silver", "helpful": [1, 1], "reviewText": "I gave this book 5 stars because it was simply broken down into questions and answers. It was very easy to understand what Mr. Olson was saying. His expertise and investigative process convince me that he has truly had the gift of enlightenment granted him. He has interviewed hundreds of psychic-mediums, psychics and mediums. He clearly explains the difference. His explanation of what to expect in the spirit world is one of the best I have read. Given that he was a lawyer and not the least interested in answers that couldn't be proven, then turned to this field and find it believable lend credibility to his beliefs. It isn't easy to turn a non-beiever into a true spiritualist, but that he has done. I respect his writing and intelligence. I would recommend this to anyone who has lost a loved one. Even if you haven yet had a major loss, this book will bring you great comfort. I highly recommend reading this book.", "overall": 5.0, "summary": "Read this book immediately if you have spiritual questions", "unixReviewTime": 1401148800, "reviewTime": "05 27, 2014"}
{"reviewerID": "A2PDUL3G0ZFQOR", "asin": "0345503414", "reviewerName": "M. sanders", "helpful": [0, 1], "reviewText": "Well thought out, thought provoking. Helps explain changes some people experience when they come to an active faith in a higher power. A bit "intellectual" but not too stuffy.", "overall": 4.0, "summary": "Enlightening", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "AT2LHFVE169HH", "asin": "0399157212", "reviewerName": "Sonya Combs", "helpful": [0, 0], "reviewText": "I won't post spoilers in my book or movie reviews, but as usual Patricia Cornwell delivers!!!! Love the Kay Scarpetta series she's one of my favorite characters and this book was no different than any other in so much as it was a another great storyline with this one involving her second in command Fielding....all the usual twists and turns and a very climactic ending!!!!", "overall": 5.0, "summary": "Great story!!!!", "unixReviewTime": 1400112000, "reviewTime": "05 15, 2014"}
{"reviewerID": "A2DFRTY5HJEEHL", "asin": "0544264975", "reviewerName": "Lesli Marshall", "helpful": [0, 1], "reviewText": "I hated the storyline. It was a free book, and I did complete it,but I would not reread again. Stories that romanticize cheating on your spouse are not enjoyable to me.", "overall": 1.0, "summary": "Hidden", "unixReviewTime": 1403481600, "reviewTime": "06 23, 2014"}
{"reviewerID": "A1BN8YDWB5LNEK", "asin": "0439439744", "reviewerName": "Jp", "helpful": [1, 1], "reviewText": "This book is very cute. I bought it for my 5 year old and he enjoyed it very much. We have read it more than once!", "overall": 5.0, "summary": "Cute book", "unixReviewTime": 1388966400, "reviewTime": "01 6, 2014"}
{"reviewerID": "A1MG5JKYM449TQ", "asin": "1476754144", "reviewerName": "Smarcantel", "helpful": [0, 0], "reviewText": "Not what I expected after Beautiful Bastard. Most of the storyline was confusing. Thought it would pick up where BB left off, but it didn't. Kinda jumped back & forth. Glad to have been able to read more Bennett & Chloe, though. I loved them :)", "overall": 3.0, "summary": "Not what I expected", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "A32BPJ5EINNZL", "asin": "B00LKQNFVE", "reviewerName": "Laura Ferdinand", "helpful": [1, 1], "reviewText": "Double Trouble by Erosa Knowles is a book that has brought all of the characters from MEN of 3X CONStruction series together as a 'family reunion.' We get to revisit and read with a smile on our faces as we fall in love all over again. The O'Conner family are back at it again, with Blaine and Donald, the twin brothers of Red, being the main focus. We travel this journey with them as they deal with betrayal, deceit, new revelations and love, that are sure to have you rooting for all those in question. Erosa Knowles is the consummate writer extraordinaire. Her books always leaves you thirsting for more. Scandalous Heroes is like Christmas comes early. I am so over the moon with these collaborations. These brilliant authors came together and 'did the darn thing.' If there was a way to give more than 5 stars, this book would definitely have it. You have an awesome authors smorgasbord: Erosa Knowles, Latrivia Nelson, Aliyah Burke, Pepper Pace, Tianna Laveen, Sienna Mynx, Serenity King, Yvette Hines and Bridget Midway. Please do not miss out on this awesome 1-click event. I promise after reading the last word of the entire book, you will need a hefty glass of cold water and a steady chair, bed or whatever it is that will support you ...... because that is how good these books are. So ... . here's to enjoying a wonderful read, as I tip my glass of wine .... wink wink.", "overall": 5.0, "summary": "' We get to revisit and read with a smile on our faces as we fall in love all over again", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "ANOSVLTGRKABQ", "asin": "B00ITTURI4", "reviewerName": "Ben Larry", "helpful": [0, 0], "reviewText": "Video Game Addiction: How to End Your Video Game Addiction Once and For All is a very good book. I felt is was a great help to my son who has had an addiction to video games for awhile. I bought him this book and he sat down and read it and started implementing the steps. It seems to have really helped him. Good book", "overall": 4.0, "summary": "It helps", "unixReviewTime": 1404432000, "reviewTime": "07 4, 2014"}
{"reviewerID": "A3NP9H53JZ4DR0", "asin": "0992106834", "reviewerName": "Jessica Leigh (Lovin' Los Libros)", "helpful": [0, 0], "reviewText": "I really liked this second novel in the Limelight series by Elisabeth Grace! I enjoyed the characters, their romance, and the storyline that Grace provided for us.Pacing: I felt this one was really well paced. Landon and Skye's relationship progressed quite well given their situation and Grace did a good job of keeping the story going without too many lulls or too much filler.Storyline: I really enjoyed this one. I do love the whole forbidden office romance going on and I liked that this storyline seemed to fall into place a bit more naturally than the first book in the series did. The story begins with Skye getting out of a messy potentially abusive relationship and starting a new job. She meets Landon Steele at a club one night and while she's not looking for anything more right now, she can't help the physical response he elicits from her. And then runs away. It made me chuckle because it sounds like something I would do! Unbeknownst to her, Landon is actually her new boss, which brings things to a whole new level of awkward and tense. Both know it would not be professional to have any kind of relationship, but staying away from one another is going to prove to be quite the task. Having to work closely together, it's only a matter of time before Landon and Skye give in. There was one obstacle thrown in I could have done without, as I felt it was added in to create more drama, which was unnecessary. There was already a more concrete storyline in place to add tension, and I felt that was good enough.Characters: I liked Skye and Landon. Skye is sweet and a bit of a seductress! She isn't actively looking to start anything else after getting out of her previous relationship, but things with Landon just happen and that kind of chemistry is just hard to ignore. She is close to her father and she doesn't want to do anything that will jeopardize his career, which is why she shoulders some things later in the novel on her own, instead of seeking help. She cares for Landon and doesn't want her mess disrupting his business, as he's worked hard to get where he is today.Landon is a great male lead. He's sexy, sweet, and dominant all in one. And man, do I love my dirty-talking boys! Landon could be a bit hard to read at times, but he is really a good guy who cares for Skye. He knows they should keep it professional, but working so closely with her does nothing to help his libido. Landon is very protective of Skye and he can't stand that her ex, Vic, hurt her. He refuses to watch another woman get crushed under the weight of a man, after seeing what his father did to his mother. He was the one to pick up the pieces and therefore, cannot let himself forgive his dad, despite his pleadings to see him and make things right.We also get to see Ellie, Mason, and Katie from Rumor Has It show up. Ellie and Katie are those girlfriends every girl needs in their life and I like that Grace included their friendship.Final Thoughts: Overall, I thought Picture Perfect was a great read. I liked seeing Skye and Landon's relationship develop slowly, as well as watch them fight the attraction they feel towards one another. Their scenes together were sexy and I didn't feel they were too over the top at all. There were a couple of things I could have done without, because I didn't feel they were necessary to fueling the plot. The storyline really did stand on its own, with their relationship, Skye's ex, and the matter of how important public appearance is to both of them.", "overall": 4.0, "summary": "Enjoyed the characters, their romance, and the storyline Grace provided for us.", "unixReviewTime": 1401753600, "reviewTime": "06 3, 2014"}
{"reviewerID": "A11ZIYONP0ENPG", "asin": "1939416019", "reviewerName": "Francois Naude", "helpful": [1, 2], "reviewText": "A fast flowing story of heroes and villains. I only found the action scenes somewhat unrealistic and the authors overuse of the word "scream" was a bit irritating.", "overall": 3.0, "summary": "A quest of heroes", "unixReviewTime": 1391299200, "reviewTime": "02 2, 2014"}
{"reviewerID": "A3FYLTA65R3QW7", "asin": "0764229575", "reviewerName": "Mary E. Tabor", "helpful": [0, 0], "reviewText": "I would like anyone that loves to read know this series is wonderful. I have enjoyed everyone so far and looking forward to the rest.", "overall": 5.0, "summary": "Great book", "unixReviewTime": 1401148800, "reviewTime": "05 27, 2014"}
{"reviewerID": "A19GP20DYUOKVW", "asin": "141437934X", "reviewerName": "Regina Niesen \"Gina\"", "helpful": [0, 0], "reviewText": "Goodreads Description- Raised in an Old Order Mennonite community, Rachel Stoltzfus is a strong-willed single woman, content living apart from mainstream society until whispers stir the moment her belly swells with new life. Refusing to repent and name the partner in her sin, Rachel feels the wrath of the religious sect as she is shunned by those she loves most. She is eventually coerced into leaving by her brother-in-law, the bishop.But secrets run deep in this cloistered community, and the bishop is hiding some of his own, threatening his conscience and his very soul. When the life of Rachel’s baby is at stake, however, choices must be made that will bring the darkness to light, forever changing the lives of those who call Copper Creek home.I was first drawn to this book by the cover. I like reading novels about the Amish, as long as they aren't preachy, and from my experience they usually aren't. However, this book was about Old Order Mennonites, which is a religion that I know very little about other then that they are similar to the Amish in their Plain ways.The Outcast is one of those rare novels that shines in many ways. I was immediately drawn in because “The Scarlet Letter” is such a favorite, and I was not disappointed. Every character, every sub-story, every generation, every relationship in the book, is layered and intricate and nuanced. The story seemed to start a little slow for me but once I was a few chapters in, I couldn't stop reading. Everything about the book took hold and wouldn’t let go—until I finished. Even though the Mennonite community is completely foreign to me, Petersheim made it both fascinating but wholly accessible and familiar. In every scene I felt I was right there with her and every character. Each word written had true meaning to the story. There was very little that felt like filler.The story was written in two voices. One was Amos who was Rachel’s sister's recently deceased father-in-law and the other was Rachel's voice herself. Amos's voice served as an omniscient voice for both of his son's, Tobias and Judah, as well as the moral compass for the story. His words were used as a commentary on the happenings of the book. At first I was worried that using a "ghost's voice" was going to be distracting to the story, it turned out that his voice was truly the perfect compliment to Rachel's and a unique way to give voice to the brother's without devoting more chapters to each brother. Petersheim's use of this device shows that she is going to continue to be a fantastic writer. For an author to write in such a unique and difficult manner shows her writing maturity which will only grow the more that she writes. One other complaint is that the book ended a little too quickly and I wish there was more information on how the book ending came to be and what happened to the family after everything finally settled down. I would love to see a sequel to this novel because I was so wrapped up in the characters that I feel like they are real people to me.I highly recommend this book to others. Give the book a chance and keep reading if you feel like the beginning is slow or confusing. The author does a good job of sorting things out for the reader as the story goes on. This would be a 5 stars book for me but I want to hold back a little because of the confusing beginning and the abrupt ending. This is a solid 4.5 stars! Enjoy the read!", "overall": 4.0, "summary": "A wonderful debut! This author is going somewhere!", "unixReviewTime": 1390176000, "reviewTime": "01 20, 2014"}
{"reviewerID": "AR3ODBWQWLC7J", "asin": "0425257355", "reviewerName": "Janet Pollock", "helpful": [2, 2], "reviewText": "I've really enjoyed reading the other books in Pamela Clare's I-Team Novels, but for some reason I did not "click" with this book. The story was alright, but I was glad when I finally finished.", "overall": 3.0, "summary": "I like this author.", "unixReviewTime": 1388707200, "reviewTime": "01 3, 2014"}
{"reviewerID": "A3GTGX2S2JJRH4", "asin": "1477574573", "reviewerName": "Aret", "helpful": [0, 0], "reviewText": "An amazing continuation to the star crossed series! Rachel is a fantastic writer who keeps you engrossed in the story, giving you the ability to play it out like your watching a movie...she grips you with emotions for the characters that keep you wanting more! Can't wait to continue reading about Eden and Avalon!", "overall": 5.0, "summary": "another winner", "unixReviewTime": 1396224000, "reviewTime": "03 31, 2014"}
{"reviewerID": "A6JSYAE9Y36X0", "asin": "B00F64JFXS", "reviewerName": "Annette I. Mordec", "helpful": [1, 1], "reviewText": "I found this book very interesting, despite the way the story unfolds. It is hard to believe that at this day and age this kind of prostitution is still going on, but I guess this is another way for the rich to get richer.Please read for yourself and let me know what you think. My biggest no no with this book is the child exploitation, which unfortunately still happens and I believe It will happen for a long time to come.Sad story for the girls, but overall a great read. Highly recommended.", "overall": 4.0, "summary": "A different twist on poker games", "unixReviewTime": 1396742400, "reviewTime": "04 6, 2014"}
{"reviewerID": "AEIIO2RWP40X7", "asin": "0007442920", "reviewerName": "Naespecial Johnson \"naegurl\"", "helpful": [0, 0], "reviewText": "I am so glad I made the decision to give this series a chance. I honestly like it more than the Hunger Games which is saying alot. In this installment, you really get to see the anatomy of the relationship between Tris and Four, while also being privy to a wonderful story with twists and turns that you really don't see coming. I would HIGHLY recommend reading Divergent first, as is mostly the case you can't really appreciate the second if you haven't read the first.", "overall": 4.0, "summary": "Whoa", "unixReviewTime": 1402012800, "reviewTime": "06 6, 2014"}
{"reviewerID": "A2DESEF345X572", "asin": "0399160752", "reviewerName": "Gerry", "helpful": [0, 0], "reviewText": "This is another good Pickett story and certainly makes the point (again as in the past) that individuals can play nasty roles in governmental activities. But Box refers here to the Sackett case as similar to the one he portrays. It turns out that the Sackett case is very different. Yes, the Supreme Court in a limited decision came down on the side of the Sacketts that they should receive a formal review, but there was much more to the story. Readers should check the Harvard Law review of this case before accepting Box's view. Note that the Sacketts own investigator told them they were breaking the rules and they refused an initial informal review of their case.", "overall": 4.0, "summary": "A Good Story Marred by Its Sackett Reference", "unixReviewTime": 1390262400, "reviewTime": "01 21, 2014"}
{"reviewerID": "A14TJ8MKU5V2MN", "asin": "1630350168", "reviewerName": "Amazon Customer \"Misty Mitchell\"", "helpful": [6, 6], "reviewText": "OK HM Ward has out done herself! Sean's perspective in the first part of the book makes you fall in love with him all over again. Then the story takes a twist that I don't believe any fan could have seen coming. Biggest cliff hanger that she has ever written. Book 14 needs to happen like NOW! Lol you will not regret getting this book. If I could give it ten stars I would have.", "overall": 5.0, "summary": "JAW DROPPING!!!!", "unixReviewTime": 1391299200, "reviewTime": "02 2, 2014"}
{"reviewerID": "A2S5RFGV8P2R0L", "asin": "0991379659", "reviewerName": "DMoore", "helpful": [0, 0], "reviewText": "I just spent a day and a half with Hudson and Alayna. I have a sick headache from so much reading, but I cried at the end of the last book, just because my time with them was over. I can't see the comparison with FSoG, and didn't read Crossfire. I will say if you liked Fifty, you will probably like this series as well , but it's not fair to the author to say that it's "just like" that other,I certainly didn't think so! Better to come into this series with an open mind and just let it happen.Of course, Hudson is a rich, demanding a$$ who doesn't believe in love. Of course, Alayna is a smart, beautiful woman with issues of her own. This is a romance novel, and the majority of romance novels I have read are based on this premise, it is the skill of the author that makes each story special and engaging, and why I keep reading them. I DO like stories with broken, flawed, beautiful protagonists, with plenty of chemistry and steamy sex, and this series has that-in spades! What a steal for .99!", "overall": 5.0, "summary": "Very Good", "unixReviewTime": 1396396800, "reviewTime": "04 2, 2014"}
{"reviewerID": "A3CMQYU4YPSAFM", "asin": "0718178122", "reviewerName": "Kathy", "helpful": [0, 0], "reviewText": "In this book Don is a geneticist who becomes involved with a woman trying to find her father. He is an unusual person who has quite a few unique habits. There are many interesting twists and turns to the plot which lead to a happy ending.", "overall": 4.0, "summary": "The Rosie Project: A Novel", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "A2ZL7Q9AN4WOCC", "asin": "0764205722", "reviewerName": "Kent C. Matthews", "helpful": [0, 0], "reviewText": "This book takes me back to my growing up years in Michigan. The writer touches the heart. I read the first book and bought this book and the last book the same day. Tonight I START the final. These are not easy to put down.", "overall": 5.0, "summary": "Appreciation for Painting a Masterpiece", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "AAAJF2F8ICGHR", "asin": "1442362383", "reviewerName": "LESLYE NELSON", "helpful": [0, 0], "reviewText": "Usually sequels are not close to being as good as the originals. Doctor Sleep is the exception. It flows well from The Shining and Dan has become an interesting ,caringadult and mentor.I highly recommend it.", "overall": 5.0, "summary": "Great Sequel", "unixReviewTime": 1395792000, "reviewTime": "03 26, 2014"}
{"reviewerID": "A2PASDJQR83CTV", "asin": "0199535663", "reviewerName": "Vimala Nowlis", "helpful": [2, 2], "reviewText": "Herodotus' status as the father of history is not an exaggeration. His panoramic and in-depth view of the people and the events made his Histories a comprehensive study that is rare in history. And he was a master storyteller too. The story he was telling here was the complex political disputes and long standing social feuds between Greek cities and Asian peoples that culminated in the Greco-Persian Wars.Of course any translated book is only as good as the translator and the editor. This happens to be an excellent one because neither the translator nor the editor tried to show off their classical Greek training or their convoluted scholarly skills. They simply presented this book in smooth and clear English which made the reading easy without the undue burden of constantly referring to the notes. In addition, the series of maps at the end of the book was immensely helpful.Traditional historians tend to take a serious and rigid position on their view of history as if it's the only perspective. Recently, some historians have tried to open up this narrow scope and try to interpret history from different points of view and have proclaimed their approach \"new history\". But Herodotus had beaten them to it because that's exactly what his Histories did.Even though he was writing for the Greeks, he showed great appreciation and understanding of Egyptian history and culture and often gave Egypt credit for many ideas and inventions later given to the Greeks. He also showed remarkable respect for their archenemy the Persians. In fact, a lot of our information of the early Achaemenids came from his writings. His open-mindedness and international outlook is astonishing. However, he couldn't resist giving Greek ancestors to the non-Greeks. Thus the Persians were descended from Perseus, the Medians from Medea, and the Egyptians from Io.Even though Herodotus lived in a city sponsored by Athens during the Peloponnesian Wars, he didn't seem to like the Athenians very much and praised the Spartans very generously. He tried to give dues and disclose warts when he talked about the conflicts between Greek city-states, personal vendettas among the leaders, reasons for frequent defections, and the wide spread collaborations between the Greeks and the Persians throughout this period. Not surprisingly, even though the Spartans helped the Athenians defeat the Persians in this round, two generations later, the Persians helped the Spartans defeat the Athenians.As this was a time before the fanatical intolerant monotheism took over the region and religious tolerance was the norm, Herodotus told the readers \"their Zeus is called XXX \" or \"their religious rite is similar to our XXX\" to relate foreign practices to Greek understanding. However, he wisely and steadfastly refused to engage in religious discussions beyond the necessary mentions of it as part of the cultural and political practice because he deemed it outside his chosen topics of history, geography, and culture.Some scholars complained that his writing was rambling but I find it very natural. He introduced each player when it was appropriate in the story and not before. He revealed each people, their history, their location, their customs, and their achievements as the flow of storytelling required. By disclosing their origins and struggles, he gave roots to their unique culture and made their way of life reasonable and understandable. He was a master storyteller who knew when and how to take excursions and when and how to get back on track. With imperceptible forward momentum, he unrolled the story slowly and even-handedly towards its dramatic climax.Herodotus sprinkled a lot of traditional oriental wisdom, as dispensed by various wise men from different race, throughout the book. But it's often the small anecdotes which are most intriguing and lighten the reading. And some of the passing remarks are more than first meets the eyes. For example, his observation that the Egyptians had thick skulls because they shaved their heads and the Persians had thin skulls because they had long hair and wore felt hats is unexpectedly modern understanding of vitamin D from the sun thickens bones. And the bit about Xerxes' uncle explaining that dreams are not messages from gods but things we have been concerned about during the day is also surprisingly modern Jungian.Most impressively, he did not insist on his point of view. He shared other perspectives and other interpretations equally, even those information and stories he did not find credible. As he said \"I am obliged to record the things I am told but I am not required to believe them.\" He trusted the readers to make their own choice among various versions. Some scholarly historians called this gossiping, but I thought it was respect for the readers. After all, there are many sides to every person, many facets to every event, and many explanations to every outcome.Even though the West has taken the position that the Greeks had won because of the naval victory at Salamis, it was not so simple. Considering that the Persians had demolished Attica and burned Athens, and considering that Xerxes returned home when winter was coming, one could conclude that the Persian's expedition to punish Athens for helping the Ionians and for burning Sardis was mission accomplished. Besides, Persia was never a sea power like the Greeks were anyway. So, win or lose, it all depends on the spin!On the other hand, Herodotus did have the advantage of living in a highly cultured and civilized world of Eastern Mediterranean and was writing for a sophisticated and educated readership. Later scholarly historians didn't have his advantage because they were living in the Western Mediterranean world after the onset of the devastating Dark Age and after it was under the intolerant grip of Christianity. Besides, his gift for storytelling is unique even among fiction writers much less among historians.", "overall": 5.0, "summary": "Far Away and Long Ago Came Alive!", "unixReviewTime": 1388793600, "reviewTime": "01 4, 2014"}
{"reviewerID": "A17U831MEGDTGO", "asin": "0451403657", "reviewerName": "Gail", "helpful": [0, 0], "reviewText": "A five star storytelling. Sometimes difficult to read due to the twisting plot, it does pay to to push through. This story takes you from the English ton to Russia's post Napoleon society to Warsaw. There are threads that run teasing throughout that may shock you, but eventually an amazing tapestry works it way to completion.", "overall": 5.0, "summary": "A Haunting Regency Romance", "unixReviewTime": 1399507200, "reviewTime": "05 8, 2014"}
{"reviewerID": "A386NPEVF1T5NL", "asin": "1499794711", "reviewerName": "Brittany", "helpful": [2, 2], "reviewText": "First, can I just take a second to fan-girl over this cover?It's. Just. So. Beautiful.Okay, now that I got that out of my system, let me just say that this was not what I was expecting AT ALL. The writing was beautiful. Lauren's inner monologues were beautifully written, although this girl annoyed me to no end. But I love characters who frustrate me. Isn't that the point? As the reader, I have the foresight/foreknowledge that Lauren doesn't so my frustrations with her weren't because she wasn't likable. I was frustrated because I was able to see the disaster coming (although, I COMPLETELY wasn't expecting it to be what it was) and she couldn't.I tried, but I just couldn't get myself to like Cal. Even after his whole secret was revealed, it didn't change how utterly repulsed I was by the way he treated Lauren. And then Lauren frustrated me further by defending him. By waiting for him. By putting her life on hold for him.She and Caylen deserve so much better. In the sequel, I really hope she and Chris get to know each other and fall for one another somehow, some way. I don't know why I feel that way since we didn't get to read much about Chris. I just do. Hopefully we'll have more insight into who he is in the next book.The suspense element of this story had me flipping pages and reading until the wee hours of the morning. I'm completely dragging my ass at work right now because of it. (Thanks a lot, Portia.) This book was suspenseful right down to the last page, and did I mention how beautiful Portia's writing is? Oh, I did? Well, that's okay because it was worth a second mention.I gave this book five stars because it was beautifully written. It sucked me in from the first page and held me all the way to the last, and after reading so many different books, I hardly ever read books straight thru anymore without getting bored. I don't remember the last time I devoured a book in just one sitting, but I did with this one. I couldn't put it down! This book was nothing I was expecting, but everything I needed. It was different, a breath of fresh air, although it was extremely, frustratingly moving at times.On the fence about one-clicking? Just do it. You won't be disappointed.", "overall": 5.0, "summary": "Excellent Debut! One-Click NOW!!!!", "unixReviewTime": 1402876800, "reviewTime": "06 16, 2014"}
{"reviewerID": "A3AC0UZKUV8SZV", "asin": "B00JU28GDW", "reviewerName": "Lola", "helpful": [0, 0], "reviewText": "The excitement of a female main character as a breakup artist pulled me to this read. I have a few thoughts I'd like to share in my review.Characters: Demi was a strong, ballsy woman who wouldn't back down from the truth, no matter how much easier it would make her life. Jack was a mysterious, sexy guy but his role was not in enough focus for me. I think the balance of their fling/affair/whatever it was was pretty unrealistic and too... quick.I was disappointed with how quickly the story ended and feel like there needed to be more. By that point, I was rooting for more, more, more. I'd love to read more by this author, maybe even a follow up on Demi and Jack's story.", "overall": 3.0, "summary": "Great read, too short!", "unixReviewTime": 1399161600, "reviewTime": "05 4, 2014"}
{"reviewerID": "A21HD9GWN5OHDZ", "asin": "B00LKRDIUG", "reviewerName": "psee", "helpful": [0, 0], "reviewText": "So after reading the teaser novella The Trap I couldn't wait to get to this book. I had to see what would happen and what it would take for Mitch to come around and do right by Paige and his daughter.This book takes place approximately 7 months from the conclusion of the first novella. Believe it or not Mitch has not been home since he left and it takes a threatening document to stir him in to action.When back in town he wastes no time trying to establish a relationship with his daughter. Paige initially is shocked, then angered, then finds herself melting under the charms of Mitch. It is obvious the two still have feelings for each other.Both families have been very supportive of Paige and Bree. Everyone except Diane is leery of Mitch's actions regarding Paige. As one would guess the two find their way back to each other.I want to state that I love Kendall's writing and I was anxiously awaiting this book. Mitch does truly seem remorseful but I can't say I am happy with the ending. He screwed up in a major way, HUGE. I am ok with him trying to establish a relationship with Bree, but I cannot see how Paige gets past the abysmal way he treated her. Even when trying to work hard to get her back, the only thing that is conveyed crystal clear is his attraction and desire for Paige. Everything is very physical. His actions with Bree obviously are great but I don't see how he made any amends to Paige. Humbling himself with her family and Erin seemed inadequate and I really wish Paige sought something better.Then the crazy twist at the end, I knew something was fishy but I didn't have any clue it was gonna go down like it did. Not sure how I feel about that as it was thrown in last minute and not really dealt with. I am curious to read the next book however to see what happens between Josh and Erin.So overall, great writing, good story and characters which are believable. I just couldn't make peace with the whole situation though which is probably a personal issue. Plus what is up with Trent. I wonder if we will ever get his whole story.", "overall": 4.0, "summary": "Loved the writing!!!", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "A2WWLU2R30IL8C", "asin": "B00GEEB24O", "reviewerName": "Holly \"Holly's Red Hot Reviews\"", "helpful": [0, 0], "reviewText": "Craving Him proved once again why I look forward to Kendall’s releases. I loved the continuation and conclusion of Ben & Emmy’s story picking right up where Working It left off. At the end of Working It I was DYING, I needed to know if my Ben and Emmy were going to make it. Could they work through their issues? Could they accept the paternity results of Fiona’s pregnancy? These were the questions I needed answers to…desperately! And thank goodness all of my questions were answered but not without a few bumps along the way. Kendall upped the angst here which I loved and she also upped Ben’s sweet romantic side which had me swooning with a capital S. I’m telling you, he went over and above to not only tell Emmy how he felt about her, he showed her as well. I loved him! I also liked seeing how Emmy lost a bit of her naiveté, she was still our sweet caring girl, BUT she no longer let Fiona push her around. She stood her ground when it came to her and her underhanded comments & usual Fiona nastiness. She put her in her place. If I could, I’d high five Emmy.All in all I think Craving Him was a sweet, sexy (this is Kendall after all, she’s a master of sexy) conclusion for Ben & Emmy and I can’t wait for All or Nothing, Ellie and Braydon’s story, due out in September <3", "overall": 5.0, "summary": "Sweet, Sexy Conclusion to Ben & Emmy's Story!", "unixReviewTime": 1402963200, "reviewTime": "06 17, 2014"}
{"reviewerID": "A2U5ZC4AM7OKXO", "asin": "B00CLRRAE4", "reviewerName": "bigfoot", "helpful": [0, 0], "reviewText": "Make that Nancy Drew on some sort of halucinagrnic It has all the Nancy Drew trimmings. Hidden passages, secret codes, even an old clock. If you were a fan of ND on your younger days this will bring back memories", "overall": 4.0, "summary": "Think Nancy Drew on steroids", "unixReviewTime": 1395705600, "reviewTime": "03 25, 2014"}
{"reviewerID": "A12F1OPZ17YHBS", "asin": "1476744130", "reviewerName": "Sara Hutchinson", "helpful": [1, 1], "reviewText": "I waited forever for this to come out. It was sooo good. I was so excited to read. The story is excellent again. It only took me like 3 days to read it cause I couldn't stop.", "overall": 5.0, "summary": "Loved it", "unixReviewTime": 1395273600, "reviewTime": "03 20, 2014"}
{"reviewerID": "A2EVTUXXJ3VHPM", "asin": "1499764529", "reviewerName": "DeeDra Keller", "helpful": [0, 2], "reviewText": "This is one of the best books I have read in a very long time. I highly recommend this book. It was great from beginning to end. One of the most heart wrenching stories. I wish it could keep going. There were a few "loose ends" so it might. I just haven't ckd to see if there is anything further with this great story.", "overall": 5.0, "summary": "ONE OF THE BEST BOOKS!!!!", "unixReviewTime": 1403827200, "reviewTime": "06 27, 2014"}
{"reviewerID": "A2POR0X5UA4EQK", "asin": "B00FOW07V6", "reviewerName": "Annie", "helpful": [0, 0], "reviewText": "Sorry to say I have not read this book yet. Life has gotten in the way of my reading and I have not had much time to read. I will review all the books and other products I have purchased when I have the time. Until then- thanks for all the wonderful books you offer to us Bookworms!Sincerely Yours,Anniej", "overall": 5.0, "summary": "Goodbye Lonely", "unixReviewTime": 1400976000, "reviewTime": "05 25, 2014"}
{"reviewerID": "A821SZEIA10CR", "asin": "1482383349", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Great book. Easy to get caught up in it. Loved the banter between characters. Well written. Would read it again.", "overall": 5.0, "summary": "Loved it.", "unixReviewTime": 1395964800, "reviewTime": "03 28, 2014"}
{"reviewerID": "A3QJM84HTB7KC6", "asin": "B00IE0T608", "helpful": [5, 5], "reviewText": "It’s not always easy for creative writers to develop believable characters for their short stories or novels. BUT This Novel Succeeds Brilliantly! It is Superlative and the Author here is a Master Artist at the Top of both his game and his Genre. Most of us don’t have close relationships with dashing heroes named or brilliant, beautiful female femme fatales who light up the Kindle or paper page in front of us. This makes it tempting to take inspiration from people we actually know. But this Fantastic book does everything for you! The resulting characters are Magnificent Creations here and not the thinly veiled versions of ourselves, our friends, and relatives. The Author is asking readers to visualize the characters and relate to them. They want the characters to be realistic so that the audience can connect to them. This Superlative Novel makes the reader want to cheer them on as they surmount obstacles and shed a tear when they fall. Gustav Freytag considered plot a narrative structure that divides a story into five parts, like the five acts of a play. These parts are the exposition (of the situation), rising action (through conflict), climax (or turning point), falling action and resolution. This book which grabbed my attention from the very first page to the very last is a masterful example of a perfectly created plot. I read the novel in one sitting! It was that good! Highly recommended! Great Buy! You will thoroughly enjoy it! Beautiful Post APOCALYPTIC SAGA That will Enthral you.", "overall": 5.0, "summary": "Fantastic and Engrossing Post Apocalyptic Saga.", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "A2K7T5HUV2KCCP", "asin": "0688173853", "reviewerName": "Roso", "helpful": [0, 0], "reviewText": "Phone calls in the middle of the night are almost never good news, but Isa isn’t to worried after she discovers the caller is her cousin and good friend Alette. She does worry, however, when she discovers her cousin dies two days before ever making the call. When she receives three envelopes from her deceased cousin, Isa has no idea that delivering them will unleash a torrent of evil and malevolence.Mostert does not disappoint readers who have come to know her novels as smart, scary and addictive.", "overall": 5.0, "summary": "Shivers galore", "unixReviewTime": 1389744000, "reviewTime": "01 15, 2014"}
{"reviewerID": "A24BB7ZQSVFD92", "asin": "0764201085", "reviewerName": "Sandi Carter", "helpful": [0, 0], "reviewText": "Most of the books I read have characters who are beautiful to look at, so I found it refreshing to read about one who was not! The marriage of Katherine and Larson was a troubled one when Larson left on a trip on Christmas day. When he failed to return, he was presumed dead, although Katherine always felt inside that he was alive. Unknown to her, Larson is rescued from a fire, scarred and barely alive. This is a must read!", "overall": 5.0, "summary": "Different in a good way", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "A35EH6VHW336ML", "asin": "149600938X", "reviewerName": "christie72", "helpful": [1, 1], "reviewText": "~4 Stars~***I received a complimentary copy provided by the author/publisher in exchange for an honest review.***The Pairing is a companion novel to The Proposition and The Proposal. I would recommend reading the other two books first since Pesh Nadeem appears in The Proposal, so the story makes more sense if you know his background. Megan McKenzie is a single mom who is in the final stages of becoming a registered nurse. She hasn't dated since her son's father left her when she found out she was pregnant. Pesh is an ER doctor who hasn't dated seriously since the death of his wife years ago. You would think they would want the same thing in a relationship...love and commitment, but you would be very wrong. Megan wants a hot fling, and Pesh wants to settle down and give love another try. They are both chosen as godparents to Aidan and Emma's son, Noah. Pesh is a great friend to them, and Megan is Aidan's niece. When they meet at the baptism, there is an immediate attraction between the two, but it's going to be a battle of the wills to see which one gets their way, a relationship or just hot, smoldering sex! Megan leaves the reception with Pesh after she has too much to drink, and she thinks she will be having a night of hot sex with the sexy doctor, but things don't turn out quite like she had hoped. The two go their separate ways the next morning, but fate isn't through with these two, Megan is assigned to Pesh's ER to finish her final clinicals several months later. Let the games begin again...you'll have to read on to see if Megan or Pesh win.I have read the other two books in the series and loved them. I know reading reviews from other readers that many of them didn't like Pesh in The Proposal because they thought he was trying to take Emma away from Aidan. However, I have always been a fan of Pesh's. Who wouldn't be! He's sexy as hell, a successful doctor, a truly honorable soul, and again did I mention sexy as hell? He falls for Megan hard the first time he sees her and cannot forget about her. Megan is a firecracker. If you read any of the other books, you know she takes after her Uncle Aidan. She and Pesh are truly opposites who complement each other nicely. Megan brings out the spontaneous side of Pesh, and he brings out the softer side of her. There are many scenes that include Megan's toddler son, Mason. Those were some of the most heart-warming scenes to me, especially the one near the end of the book when they are eating dinner with Megan's family. Much of the story is about Pesh's pursuit of Megan and trying to get her to give him a chance at a real relationship. The sexy stuff doesn't happen until at least mid-way through the book, but it was well worth the wait. Katie knows how to write a sexy love scene!One of my favorite things about this book is that I got to see how Aidan, Emma, and many of the other characters are doing. I love Aidan and Megan's big Irish family! The epilogue was sweet and tied up things very nicely. I have read almost everything by Katie Ashley, and she has yet to disappoint me!", "overall": 4.0, "summary": "Sweet, Sexy Love Story", "unixReviewTime": 1393200000, "reviewTime": "02 24, 2014"}
{"reviewerID": "A1NC6MJWL8FTZD", "asin": "B00HA1E7OM", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "I like this author she has a good a imagination but this story was little hard to believe. If a woman is hiding the fact that she had children by a certain man, she would not want to date the man, sorry but not believable. Too many problems in the storyline. I like the man characters story and romance but everything else I could not get onboard. Sorry.", "overall": 2.0, "summary": "Unrealistic story", "unixReviewTime": 1399075200, "reviewTime": "05 3, 2014"}
{"reviewerID": "A1K0558YJNJSRA", "asin": "1594746125", "reviewerName": "S. L. Patterson \"Early Adopter\"", "helpful": [0, 0], "reviewText": "It started a bit slow, but by the time I finished it, I was ready for that 3rd volume in the trilogy. Hard to wait another year or two!", "overall": 5.0, "summary": "A worthy Sequel", "unixReviewTime": 1391817600, "reviewTime": "02 8, 2014"}
{"reviewerID": "A22SSWHQ12D9TC", "asin": "0060922532", "reviewerName": "Alyssa S.", "helpful": [0, 0], "reviewText": "I loved the bean trees- I loved this sequel just as much! I have read several of Barbara kingsolver's books and they are well written with good plots.", "overall": 4.0, "summary": "Will read again!", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "APR384TC3Z35Y", "asin": "0143124544", "reviewerName": "Chris Roth", "helpful": [1, 1], "reviewText": "I'd never read a book by JoJo Moyes before, but have decided after reading this one that I'd definitely like to read more. I enjoyed her writing style, how she developed her characters, and created a story line that was believable. This was a great story that I didn't want to see end.", "overall": 5.0, "summary": "Well written and entertaining", "unixReviewTime": 1393027200, "reviewTime": "02 22, 2014"}
{"reviewerID": "A1AU9U3UHD6K1B", "asin": "1491291796", "reviewerName": "Suprstar311 \"Bethany\"", "helpful": [0, 0], "reviewText": "Okay... Here's where I get into how the whole series was for me.Book 1: Really good, I definitely liked it!Book 2: GREAT - I LOOOOOVED William's POV and all of the crazy, totally unexpected revelations!!Book 3: Meh, it's had it's good moments, but overall didn't excite me a whole lot.This Book: Okay, even though I didn't LOVE the third book, I had REALLY high hopes for this one, considering how much I loved William's POV in book 2! Unfortunately, I spent the whole book waiting (again) for something dramatic to happen, and it never did. Once again, everything seemed almost sugar coated and sort glossed over.******** SPOILER ALERT ********DO NOT CONTINUE IF YOU HAVEN'T ALREADY READ THIS BOOK!Okay, so here are some of the specific issues that I had with the plot in Honor & Obey / Honor & Betray:1) What the hell ever actually happened to Abby? She was just one of many things that got brushed aside and never revisited.2) I can't possibly be the only one to think that the amnesia was a complete writing cop out (sorry Teresa, I love your work and really do think you're a fantastic author)!! I mean, COME ON! I was so damn intrigued to see how they would work through all of the craziness that, surely Emma was bound to find out about William. But I knew that somehow William would find a way to convince her that he really loves her, and win her back over, and their relationship would prove to be better and stronger in the end... Unfortunately, Emma STILL DOESNT KNOW THE TRUTH!3) William's parents. They rushed to his beside when they found out he was in a coma, brought in some phenomenal specialist doctor to work with him, then just peaced out and were never heard from again. Emma didn't bother to inform him that they had been there, nor did he bother to ask, and also, nobody bothered to even freakin' tell them that he was awake and at home, and his parents didn't even bother to so much as call to check on him either!!4) Emma was harboring so much hurt & resentment towards William through most of the book, and then *BAM* like the flip of a switch she's.over.it.and.they're.getting.married.THE.END there was no actual working through her hurt, no communication, openness, honesty. So now they got their "HEA" that seems doomed because their whole relationship is based on lies & deceit between 2 people who are trying too hard to be what they think that the other wants, rather than being who they really are.With all that being said, the series was good, and had TONS of potential for greatness, but the last 2 books were just too rushed and had too many holes in the plot.Also, I would have very much preferred to read the 2 books together, just written as 1 book, done in alternating POV's.Wow, that was really long winded, if you've stuck it out and are still reading this, thank you!", "overall": 3.0, "summary": "SO.MUCH.POTENTIAL!", "unixReviewTime": 1402099200, "reviewTime": "06 7, 2014"}
{"reviewerID": "A1WVO00PIPF8RA", "asin": "0385536518", "reviewerName": "Maggot Lady", "helpful": [1, 2], "reviewText": "Seriously... I do not know why I even read it. This book was downhill from the others (which is saying something because book 6 was downhill too....)I don't know... can I say Dexter seemed out of character? True, he's Jeff Lindsay's character, he should know how to write it...but it really seemed wrong. Like someone else wrote it. Or he wrote it to make someone else happy. I don't know. Blarg.", "overall": 2.0, "summary": "Dexter Downhill", "unixReviewTime": 1388966400, "reviewTime": "01 6, 2014"}
{"reviewerID": "A2UEBW0WJ0KU0Z", "asin": "1482385635", "reviewerName": "Happy Cat", "helpful": [0, 0], "reviewText": "I enjoyed "The Tour" very much. It was interesting to see how everyone's life was different from the others on the tour and how they all meshed together at the end.Connor was a tour director that everyone would like to have on thier tours and he had such a happy spirit about him.", "overall": 4.0, "summary": "The Tour", "unixReviewTime": 1388880000, "reviewTime": "01 5, 2014"}
{"reviewerID": "ATH2IP3OUVMY6", "asin": "1493679864", "reviewerName": "Dena \"Batch of Books\"", "helpful": [0, 0], "reviewText": "I liked this book more than the first one. I really enjoyed the premise of arranged marriage and the two warring countries trying to establish peace and unity. I liked the different customs of the two countries and how both Gabrielle and Alec had to overcome their dislike for each other. I liked their relationship and the way things turned out in the end.The things I didn't like were pretty much the same as the first book. I felt like an observer of the story, as the characters go about their lives without much detail. While it had a nice, sweet feel to it, I felt like I was constantly being told, rather than shown, the characters' emotions.That being said, the book is very clean, enjoyable, and quick to read. It is suitable for teen and adult readers.Content: Clean", "overall": 4.0, "summary": "Clean fantasy romance", "unixReviewTime": 1399593600, "reviewTime": "05 9, 2014"}
{"reviewerID": "A3N9LU1Y0FWOGU", "asin": "B00IYYK2JS", "reviewerName": "Read4ever \"G\"", "helpful": [0, 0], "reviewText": "I've only read a few pages so far, so I can't say much about the story line or the characters. What I decided to tell you about is the formatting. I'm reading on an I-pad, and the text size keeps changing. On any given page, there will be paragraphs on 3-4 different sized fonts. Makes the book hard to read.", "overall": 2.0, "summary": "Truthfully", "unixReviewTime": 1395100800, "reviewTime": "03 18, 2014"}
{"reviewerID": "A1QNQC2ML0WPSJ", "asin": "1569715157", "reviewerName": "Tony T", "helpful": [0, 0], "reviewText": "If I had know that this was in comic book form I would not have wasted my time or money. Funny what some think is literary art!", "overall": 1.0, "summary": "Comic Book", "unixReviewTime": 1400284800, "reviewTime": "05 17, 2014"}
{"reviewerID": "A22YRTRCFM48OG", "asin": "B00G12XU1M", "reviewerName": "BookCrazed2013", "helpful": [0, 0], "reviewText": "If you haven't read Mirage yet, then you need to stop right now and and go read it. Inception is written based on Mirage but in Danny's POV."...Mira. Such a fitting name, Miracle. She's about to be my miracle, my angel..."Danny Thomas and Skylar McBride have been best friends since childhood. They are so close, they are like brothers. Danny is use to taking a back seat to Skylar. The girls have always been drawn to Sky. Danny is also still dealing with the loss of his dad. But everything is about to change for both Danny and Skylar as they go off to start college together."...When I kiss you for the first time, it's going to be one of those kisses that you're going to try to top for the rest of your life, but nothing will come close. I will give you that kind of kiss..."Danny and Skylar meet Mira and Kylee at orientation. There is an instant attraction between Mira and Danny. Danny has finally won the girl, and she just so happens to be the girl who completely steals his heart. Through out the four years of college, Danny and Mira build a beautiful relationship together. Skylar and Mira become extremely close friends and Kylee is the little sister type friend who helps keep them all together. That is until all their love and friendships get tested on one very devastating night."...I think to myself everyday that I'm so lucky to have you and to have met you so early in my life..."Even though this book is written in Danny's POV and you get to see Danny and Mira's relationship develop in his eyes, you also get to see more of the interactions of Skylar and Mira and you watch their friendship really blossom. What will come of all the friendships? What will happen to Mira and Danny's relationship? Will these four people find their happiness?"...You have no idea how much I love you. You're my moon, my stars, and my universe..."Ashley Suzanne had me with Mirage. I fell in love with a story and a group of incredible characters. I was left on the edge of my seat wanting to know what will happen next. And as much as I want to know , I'm happy she took the time to give us Danny's POV. You learn a lot more about Danny and Mira's relationship in this novella. But you also get an understanding of how close Mira and Skylar become as well. I can not wait to read Awakening and see what happens next with these four amazing characters. I absolutely adore this series and give Inception a Nerd Alert A+ or 5 stars!", "overall": 5.0, "summary": "Fall in love. ...again", "unixReviewTime": 1395360000, "reviewTime": "03 21, 2014"}
{"reviewerID": "A38OW9F2VFZ5XL", "asin": "1612184138", "reviewerName": "Robert", "helpful": [0, 0], "reviewText": "Looks great and it is put together well. I look forward to getting it signed one day by the cast.", "overall": 5.0, "summary": "Great", "unixReviewTime": 1396828800, "reviewTime": "04 7, 2014"}
{"reviewerID": "A2GS6YPFR9XDHN", "asin": "0061895075", "reviewerName": "nikita", "helpful": [0, 0], "reviewText": "I have read all three books in this series and enjoyed them all. However, you could read any one of them and not be lost, as the writer skillfully ties all characters together in each book. Scared to Death is truly a scary novel and very satisfying read. I love her books and style of writing.", "overall": 5.0, "summary": "Another Corsi Staub winner!!", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "ARN5H240112QU", "asin": "0061941026", "reviewerName": "For the Love of Books & Alcohol", "helpful": [0, 0], "reviewText": "“We are like water, aren’t we? We can be fluid, flexible when we have to be. But strong and destructive too. And something else, I think to myself. Like water, we mostly follow the path of least resistance.”Seeing as Wally Lamb is my favorite author I was extra excited to read this book. It definitely did not disappoint. On the surface, this is a story of a broken marriage. Of a wife and mother of three who leaves her husband for another woman. If you have read some of his previous works, you already know that there is going to be so much more to the story. Pour yourself a large glass of red wine and keep the bottle nearbyThere are so many heavy issues that are dealt with in this story, divorce, sexual abuse, loss of a parent, alcoholism, the list goes on. I know this makes it sound like a depressing story but it’s not all bad. The real heart of the story is learning to cope with what life has given you and making the most of it. Buy another bottle of wine.The thing I love the most about his novels is the way everything is so layered. You have to pay attention to things that may seem insignificant at the time as it will certainly come full circle in the end. There is always some intertwined story that seems to not have anything to do with the rest until the end. This is not to say that everything gets tied up and placed in a nice package with a bow on it. Many things are just inferred and if you haven’t been paying attention you will miss out on these gifts.Annie Oh is an artist, a mother, and an ex wife and is about to be remarried. To a woman. Her husband Orion is left to deal with not only being left but being left for another woman. Their children are also forced to deal with aftermath of her decisions. Annie also has secrets from her childhood that have shaped everything she has ever done in her adult life. Things she has never shared with anyone. Not even her husband or her soon to be wife. Of course this only begins to scratch the surface of the entire plot of the story.This novel reminds me of the concept of the butterfly effect. One small action effects so many things. It is not until the end that we learn what started everything. I can honestly say there is not one thing I disliked about this story. I laughed, I cried, I had a book hangover when I finished.5 stars and at least 2 bottles of Merlot! Enjoy.To see more of our reviews, visit us at [...]", "overall": 5.0, "summary": "Pure Gold!", "unixReviewTime": 1393804800, "reviewTime": "03 3, 2014"}
{"reviewerID": "A1G57EH7F4TB1", "asin": "B00IBI2AA6", "reviewerName": "RomanticaLuver \"DS\"", "helpful": [2, 2], "reviewText": "I've read most of the other books in the Coffee Shop series, and I was thrilled to see this new full length arrival. Beth and Gabriel's story continues in this action packed erotic romance, with all the emotional twists and outside surprises Towers is known for.The book opens with Beth trying to adjust to her new life as the billionaire's girl. It's a strange, wonderful world filled with incredible luxuries that would make any waitress' eyes pop. The lavish socials and high powered business dealings that are normal for Gabriel are a complete shock to Beth, and she struggles to integrate into his world. Of course, it helps to have tall, dark, and handsome making things a little easier for her, with plenty of moments to blow off steam.As in most Towers romances, outside forces try to come in and disrupt the happy couple. This book has plenty of wild intrusions, schemes, and deadly misunderstandings that left me guessing until the joyous end!The little things in this novel brought a smile to my face as well. A couple characters from her other books make cameos in this novel. Then there are the genuinely heartfelt moments between Beth and the billionaire where it seems nothing could ever tear them apart, even when it feels like the whole world is aligned against them.If you like your romances HOT with a little mystery and a strong Coming of Age element, then this book is for you!", "overall": 5.0, "summary": "Another Cup of Romance Win From Towers!", "unixReviewTime": 1391817600, "reviewTime": "02 8, 2014"}
{"reviewerID": "AKSKQT67EYNAR", "asin": "B00JBCHGNM", "reviewerName": "Froth", "helpful": [4, 4], "reviewText": "You had me at "Chocolate" and closed the deal with "Quick and Simple". The selection of wonderful chocolate sweets in this cook book is excellent with a full selection of breakfast items (e.g., Chocolate Breakfast Muffins), cakes (e.g., Chestnut and Chocolate Truffle Cake), cookies (e.g., Flourless Chocolate Cookies), puddings (e.g., Chocolate-Cinnamon Pudding), pies (e.g., Gluten-Free Creamy Chocolate Pie), ice creams (Espresso-Drizzled Ice Cream) and meringues (e.g., Mocha Meringues). The savory dishes with Chocolate (Chocolate-Rubbed Baby Back Ribs, Beef & Been Chili with Three Chocolates, etc.) were a nice surprise. And the meal plans (complete with shopping list) were a nice bonus). The only thing holding me back from giving this book 5 stars (I wish I could give it 4.75) is that I would have liked photos of the dishes to accompany the recipes.", "overall": 4.0, "summary": "a chocolate lovers dream (with some nice surprises)", "unixReviewTime": 1396742400, "reviewTime": "04 6, 2014"}
{"reviewerID": "AQYFIEV9OOLBA", "asin": "B003L78146", "reviewerName": "Summer Rain", "helpful": [0, 0], "reviewText": "I loved this book. I loved the humor, and the cheeriness of the illustrations.", "overall": 4.0, "summary": "Four Stars", "unixReviewTime": 1404950400, "reviewTime": "07 10, 2014"}
{"reviewerID": "A1BXSKD3ZX21K1", "asin": "0763635316", "reviewerName": "Ginnie Wolf", "helpful": [0, 0], "reviewText": "Witty, well-written, fresh take on ye olde 'mistreated orphan is actually super-special magical creature who saves the kingdom'. Appropriate for ages 5 and up. Currently re-reading this one with my 6 year old and 9 year old; they both love it. The drawings (about 10 per book) are funny and add to the overall entertaining tone of the books. Highly recommended.", "overall": 5.0, "summary": "Fantastic YA fantasy series", "unixReviewTime": 1400025600, "reviewTime": "05 14, 2014"}
{"reviewerID": "A2PFCU5WLS5UIX", "asin": "B00F64JFXS", "reviewerName": "Monica", "helpful": [3, 3], "reviewText": "Interesting characters and back storylines. Horrible childhood filled a teen into adulthood and servitude. Romance blooms under definitely strained circumstances.", "overall": 4.0, "summary": "Intriguing story", "unixReviewTime": 1399334400, "reviewTime": "05 6, 2014"}
{"reviewerID": "A2KMKTXSAIM1NF", "asin": "1484090306", "reviewerName": "DJ", "helpful": [3, 4], "reviewText": "The story of Savannah is like reality....your expectations are all being fulfilled, then LIFE throws a curve ball you do not see coming. As with all of the trials you find, there is sometimes an unexpected surprise that changes your direction. Kayden & Savannah have both been hurt in a relationship, but he & Savannah take a chance on each other.Recommended reading...await the next part of this story.", "overall": 5.0, "summary": "Unexpected Desire", "unixReviewTime": 1403136000, "reviewTime": "06 19, 2014"}
{"reviewerID": "A1WMJHAXRZYYNK", "asin": "0299287300", "reviewerName": "Jacqui DeLorenzo", "helpful": [0, 0], "reviewText": "A great read. A heartfelt true story of a trans gender woman and her courageous journey finding her true self.", "overall": 5.0, "summary": "Through the Door of Life: A Jewish Journey between Genders", "unixReviewTime": 1393200000, "reviewTime": "02 24, 2014"}
{"reviewerID": "A2N1S8ZXS93B33", "asin": "B00KYIMNRQ", "reviewerName": "Jus", "helpful": [1, 1], "reviewText": "Lily white writes beautifully. Having said that, this book didn't have the impact on me that HMC did. The first half of the book dragged for me. I'm also a little miffed that half the reviews here didn't get all of the twists and turns in the book. I can't say what I loved about the book without giving spoilers - so I'll end this by saying:Going to give it 4 stars for Sarah. Sarah rocks.", "overall": 4.0, "summary": "Good", "unixReviewTime": 1403308800, "reviewTime": "06 21, 2014"}
{"reviewerID": "A1GTAR18856L2L", "asin": "B00HTC6HAE", "reviewerName": "SamLong", "helpful": [2, 2], "reviewText": "I loved this book! The author wrote with such a flow that it was easy to read. She described the setting in a way that I could easily see it. The plot was full of tension and mystery, and Emily (the main character) was so brave. She has a love interest in Chris, who is a mysterious hot mechanic, who you can't tell is good or not. I would recommend this book to everyone!!", "overall": 5.0, "summary": "Amazing!!!", "unixReviewTime": 1390435200, "reviewTime": "01 23, 2014"}
{"reviewerID": "A36LJA470RU4SG", "asin": "B003JAH9QQ", "reviewerName": "Brenda Gaston", "helpful": [0, 0], "reviewText": "This Bible cover is just what I wanted, listing some of the Names for Jesus listed in the Bible. Color is great too.", "overall": 5.0, "summary": "Name Above All Names", "unixReviewTime": 1398470400, "reviewTime": "04 26, 2014"}
{"reviewerID": "A2J071XJA992MF", "asin": "1479147109", "reviewerName": "Jean Levinson", "helpful": [0, 0], "reviewText": "I bought this as a gift for a five-year-old. Simple rhyming poetry, delightful graphics. There is though a sense of overkill in the number of toys in the room, which a lot of children do not have and probably shouldn't have. I think it sends a dubious message of excess. I don't think I would buy anymore of this series.", "overall": 4.0, "summary": "Lily Lemon Blossom Welcome to Lily's Room", "unixReviewTime": 1401062400, "reviewTime": "05 26, 2014"}
{"reviewerID": "A2CJ7GNB92Z7OI", "asin": "B009284PFW", "reviewerName": "Kindle Customer", "helpful": [0, 0], "reviewText": "Sperm Donor was a good read. I read this book in about an hour. Loved how Sean finally stepped up to the plate to be in his kids life", "overall": 5.0, "summary": "Great read", "unixReviewTime": 1402272000, "reviewTime": "06 9, 2014"}
{"reviewerID": "ADA5G20YCJF4C", "asin": "1449450334", "reviewerName": "Romeo Foxtrot", "helpful": [65, 86], "reviewText": "I stumbled on this book in Whole Foods and was impressed with the quality in terms of pictures, humorous cartoons, thickness of the paper, things like that. I also read the beginning, how the author was a busy mom who worked a night shift, trained Crossfit, and cooked for her family of four so I thought there would be a lot of easy practical recipes.I was disappointed to find that most of the recipes had a lot of ingredients, something the author complained about in other books. Many of the ingredients in recipes were also other recipes from the book, so for instance a chicken recipe may have 12 ingredients, one of which is bacon aioli which is 8 ingredients and another is cauliflower rice which is time consuming as well.I also wasn't crazy about the type of recipes. I'm looking for practical everyday meals, and I keep finding paleo books that try to recreate gourmet restaurant quality meals. The author is an admitted "foodie" and it shows. She lives in San Francisco and is a part of that restaurant scene, and she flies to cities or other countries just to try a restaurant. I don't do any of that. I'm just looking for stuff I can make for my family that's easy and good. I feel as though she wrote this book for people like her and not people like me, but I guess I should have been more careful when buying.", "overall": 2.0, "summary": "Very pretty but not practical for a busy person", "unixReviewTime": 1390348800, "reviewTime": "01 22, 2014"}
{"reviewerID": "A24KMNM73SOONZ", "asin": "B00K5V449C", "reviewerName": "Toni Sue", "helpful": [0, 0], "reviewText": "I just moved out of a town very similar to Millsbrook. Everyone knows everything about everyone else. Loved this book and can't wait for the next.", "overall": 5.0, "summary": "Fab!", "unixReviewTime": 1403827200, "reviewTime": "06 27, 2014"}
{"reviewerID": "A3U23W50GPHSUR", "asin": "1592403921", "reviewerName": "Patricia Ann Saporito-Murdock", "helpful": [0, 0], "reviewText": "Thank You Amazon for having everything , this book ,I couldn't pass it up as I think Isaac Mizrahi is a beautiful person for giving his life to help women dress.", "overall": 5.0, "summary": "DID KNOW ISAAC HAD A BOOK OUT", "unixReviewTime": 1402531200, "reviewTime": "06 12, 2014"}
{"reviewerID": "A7C77J4MH94B6", "asin": "1477818162", "reviewerName": "Cowboy Bill \"cowboybill\"", "helpful": [0, 0], "reviewText": "This is the first John Rain novel I've read. I know folks who think highly of the series, so maybe my impression of this book -- a prequel to that series -- would've been more favorable if I had more familiarity with the other Rain books.It's not that I think this is a bad book; I just don't know if I see anything here that I can't get elsewhere -- except for the throwback Japanese setting, which was pretty well drawn.Another reviewer said that Rain is kind of like an Asian Reacher, and I think that's probably true (although with this book, Rain is a young man and not as experienced as Reacher is or as Rain himself is in the other novels).If you like Reacher-style narratives but would fancy a change of setting, give this series a try. I probably will. I'm just not sure this particular book is where to start.", "overall": 3.0, "summary": "Nice atmosphere", "unixReviewTime": 1395187200, "reviewTime": "03 19, 2014"}
{"reviewerID": "A16Q2VXT0WWWV8", "asin": "1460974425", "reviewerName": "Mrs. Linda Demarco", "helpful": [0, 0], "reviewText": "The book is a good thriller. It reminded me of a Steven King book. Although some parts were predictable, I had a hard time putting it down. I couldn't wait to find out what happened next.", "overall": 4.0, "summary": "Good read", "unixReviewTime": 1403827200, "reviewTime": "06 27, 2014"}
{"reviewerID": "A1X2URS71RRMMF", "asin": "B0032C9946", "reviewerName": "Jeannie Zelos \"jeanie zelos book reviews\"", "helpful": [0, 0], "reviewText": "Playing to Win. Shelley MunroReview from Jeannie Zelos Book reviews.So, in the mood for a straight romance I chose this. Its a romance, and also a puzzle with danger coming to Kate along with the solution.I liked Kate, she's mum to her dead sister's child, and she and Jamie have carved out a contented life for themselves. Then their world is turned upside down when tabloid papers print a story over Jamie being local hero and rugby player Lane's son. Of course as always they're not interested in the truth – just want scandal for the ratings. Kate is bombarded with Press at her home, Lane completely blind sided by the fact he may have a ten year old child, and Jamie struggling with insecurity wondering if he'll be taken from Kate...Kate's firm and insistent, nothing will take him away from her, though she's willing to let Lane build a relationship with him.Along the journey to the truth there's a potential kidnapping, danger and attacks on Kate’s home and business, and threats to her safety. Lane steps up his protection of her and gradually falls in love. He just needs to persuade Jamie and Kate that they should be a family.Its a fun romance with a snippet of danger, not heart stopping but a more subtle kind that creeps up quietly and lands with a bang. The police were great characters too, becoming regular visitors. The protagonist didn't really come as a shock to me, but it was well done, and everything added up – I hate when we find out who the “baddie” is and it doesn’t fit the clues we've had, none of that here though. Looking back we can see how things build up to that dramatic climax and reveal.Priced at 0.99 for 228 pages its long enough to let the reader get into the plot. Its a bargain for lovers of gentle contemporary romance.Stars: Four, fun read but a one off for me.ARC supplied by Netgalley", "overall": 4.0, "summary": "sweet HEA romance", "unixReviewTime": 1395964800, "reviewTime": "03 28, 2014"}
{"reviewerID": "A12IY8DJL98P0I", "asin": "1497559618", "reviewerName": "Filerimos \"Filerimos\"", "helpful": [0, 0], "reviewText": "Solomon Reynard is the man behind the magic at the Myths and Legends Casino Resort and a womenizer with a long list of sexual escapades. When Solomon realise that Renee Jacobs, his assistant and probably the only woman who refuses to give in into his charm, is his mate he is willing to do everything to show her how much she means to him.If you like a good fantasy the Myths and Legends series are exactly what you are looking for.You will get a well written stroy, adorable characters, many paranormal creatures and a goodlove story.", "overall": 5.0, "summary": "book 3 Renee and Solomon", "unixReviewTime": 1398988800, "reviewTime": "05 2, 2014"}
{"reviewerID": "A35NIFZNAGTI6R", "asin": "149594123X", "reviewerName": "Marina Linck", "helpful": [1, 1], "reviewText": "The second book in Jack and Leila's road to HEA is AH-MAZING!!It's an emotional rollercoaster, a LOT of stuff happens and I don't want to give too much away.Leila and Jack are experiencing being on tour together and everyone's opinion on their relationship. They go through some rough patches but it's so worth it by the end!I loved how we got to know a little bit more of side characters...and I'm super intrigued by Trey!!Looking forward to the final book, I bet it's gonna be awesome just like the previous ones :)Kudos to Miss Madden!", "overall": 5.0, "summary": "Just...Wow!!", "unixReviewTime": 1404432000, "reviewTime": "07 4, 2014"}
{"reviewerID": "A19BU31Q72NC6L", "asin": "1477848126", "reviewerName": "diana", "helpful": [0, 0], "reviewText": "i ordered all three books in this series for my kindle. it downloaded with no issues.. i enjoyed all three book by this author", "overall": 4.0, "summary": "last in the series", "unixReviewTime": 1395619200, "reviewTime": "03 24, 2014"}
{"reviewerID": "ASD2IK6HPO6EW", "asin": "0316211230", "reviewerName": "Patty Jones", "helpful": [0, 0], "reviewText": "I liked it followed the first NYPD 1, but then went to this story in the 2nd book.I will be watching to see if there will be a 3rd and read it also. THANKS PJ", "overall": 5.0, "summary": "I enjoyed the book very much.", "unixReviewTime": 1400198400, "reviewTime": "05 16, 2014"}
{"reviewerID": "AHNHLGKIZ2N3B", "asin": "1450434045", "reviewerName": "D. R. Jeanclerc \"Reader, Listener & Obsessive...", "helpful": [1, 1], "reviewText": "There are umpteen-million minute details that you're supposed to consider every time you swing a club. Stance, grip, plane, tempo, follow-through. . . whew. It's a wonder that anyone even enjoys the game enough to bother trying to track everything. "Golf Flow" offers a truly unique perspective on improving your game and your enjoyment of the game by focusing on the mental aspects of the game. As others have also mentioned, these competitive principles also could be applied to broader applications such as other sports, your work, etc. Will it shave strokes off of your score? Honestly, probably not (only practice makes possible in my opinion), but it definitely will enable you to receive greater enjoyment out of your time spent on the course.", "overall": 4.0, "summary": "Simplifies Your Game - Leads to More Enjoyment", "unixReviewTime": 1395273600, "reviewTime": "03 20, 2014"}
{"reviewerID": "A11ESW62XMUL6H", "asin": "B0043GX2FW", "reviewerName": "Helen Michael", "helpful": [0, 0], "reviewText": "I would recommend this book to my best friends. The story didn't drag on and on. Kept you in suspense most of the time. I'm anxious to see how it ends.", "overall": 5.0, "summary": "Wild Irish Ride: A Southern Steamy story", "unixReviewTime": 1397088000, "reviewTime": "04 10, 2014"}
{"reviewerID": "A1ZKGY7XFSIILM", "asin": "B007YRWGXG", "reviewerName": "kris Patterson", "helpful": [0, 0], "reviewText": "This book offers very specific strategies which if applied will change your life. By controlling time we can control our lives. This book will definitely give you the necessary tools to do that.", "overall": 5.0, "summary": "life changing information", "unixReviewTime": 1389225600, "reviewTime": "01 9, 2014"}
{"reviewerID": "A3RZ7BYFXZ2LCL", "asin": "1451649916", "reviewerName": "Meliora", "helpful": [2, 5], "reviewText": "So, I loved the early IAD books. Kresley Cole is capable of telling a great story filled with humor, action, and romance. That said...1. I had put off reading this book due to the book price coinciding with hardcover price. If I had paid HC price for this, it would have been a 1.2. I know the hero was tortured and all but he heaped abuse on the heroine. Paranormal elements aside, if she were a friend, I'd subtly be showing her how unhealthy the relationship is and trying to convince her to end it.3. This book doesn't the have the laugh-out-loud moments and one-liners that previous ones did.4. I'm afraid this series is in decline. We're moving the grand plot along by pushing out meh stories. This happens I guess--I've actually thought the same about another paranormal series I follow. I wish the authors would quit while ahead and leave us with good memories of good books with good characters.I do hope KC keeps writing. Maybe she can recreate her special brand of magic in a new project. I haven't read her YA series yet. Now, I have mixed feelings about starting on that.", "overall": 2.0, "summary": "Abuse outweighs romance in relationship", "unixReviewTime": 1388966400, "reviewTime": "01 6, 2014"}
{"reviewerID": "A19O53R0L0W4O7", "asin": "1616953241", "reviewerName": "Ray J. Palen Jr. \"Ray\"", "helpful": [1, 1], "reviewText": "This novel was initially released in 1996 and has been re-released now for two reasons. The first of which is the fact that the author, Magdalen Nabb, passed away in 2007 and it is an opportunity to continue having her work presented to a new legion of readers.The second reason is the recent revival in this true crime cold case that has brought about a non-fiction novel (with the same title) that was co-written by Douglas Preston and Mario Spezi. That book has garnered interest from Hollywood and a film is speculated to be made starring George Clooney in the role of Doug Preston!The Monster Of Florence was the Jack the Ripper of Italy having been charged with seven double homicides between 1968 and 1985. There were many other murders that could have possibly been committed by this individual but local law enforcement has been unable to prove any of that. Actually, they have not been able to prove anything and this remains the most infamous cold case in Italian history.Along comes Magdalen Nabb attempting to put a fictional spin on this case. Her recurring crime series that featured Marshal Guarnaccia is the perfect outlet for a speculative novel about the famed Monster of Florence. Like the actual officials following this case, Guarnaccia seems to be foiled at every turn and is surprised when his Director assigns him the task of reopening an old cold case such as this one.The novel contains many court transcripts and internal communications that reviewed the various suspects in this case --- and there are a lot of them. Nabb blends both fictional and non-fictional suspects to present a case for Guarnaccia that appears overwhelming for anyone to solve.If readers have read the non-fiction novel by Preston & Spezi they will realize how inept, corrupt and misguided the Italian law enforcement and legal communities were in regards to this case. Preston and Spezi themselves were even detained and briefly accused of being the Monster themselves! A frustrating endeavor for anyone seeking to bring clarity and understanding to this case.THE MONSTER OF FLORENCE provides a lot of technical detail that at times bogs down the action and pace of the novel. The main enjoyment in reading a novel like this rests in having an understanding of the actual case it was based on and appreciating the attempt to shine some light on a dark chapter in Italian history.Reviewed by Ray Palen for New Mystery Reader", "overall": 3.0, "summary": "Fictional take on an infamous Italian cold case.", "unixReviewTime": 1389225600, "reviewTime": "01 9, 2014"}
{"reviewerID": "A1D2S70Q0VPXAD", "asin": "0812983823", "reviewerName": "Linda C. Wisniewski", "helpful": [3, 3], "reviewText": "It's been a long time since I could call myself a girl, but most of my family came from Poland. I am a second generation American who enjoyed reading Lullaby for all the touches of authenticity the author has included. She knows what she's writing about, and the cursing and f-bombs people are complaining about here did not bother me. It's not a nice little fairy tale, it's a modern novel about being young, female and Polish or Polish-American or both. it's not always pretty, but love and friendship hold life together, if you're smart enough to know it.I'd like to read another novel by this author.", "overall": 4.0, "summary": "Polish girls prevail", "unixReviewTime": 1391817600, "reviewTime": "02 8, 2014"}
{"reviewerID": "A23G74TV2M5YXA", "asin": "B00HSSBKD8", "reviewerName": "Jennifer M. Irvin", "helpful": [1, 1], "reviewText": "I loved it. Like the two before, very well written, creative, and full of humor. The author made his world even bigger with the introduction of a new foe within a new land. So much adventure! I do not feel sad that it ended as it was just done so well. This was a series that I will revisit again. Highly, highly reccomend.", "overall": 5.0, "summary": "Outstanding and very satisfying conclusion", "unixReviewTime": 1390780800, "reviewTime": "01 27, 2014"}
{"reviewerID": "A36A9JCR7YT8C8", "asin": "0890425558", "reviewerName": "postie \"postie\"", "helpful": [2, 2], "reviewText": "The product itself is affordable and quality. I will not dispute whether the DSM 5 is an effective or ineffective book. However, quality product at an affordable price.", "overall": 5.0, "summary": "Great price", "unixReviewTime": 1396483200, "reviewTime": "04 3, 2014"}
{"reviewerID": "A1E6PSWBRG2O3J", "asin": "1491246979", "reviewerName": "Amazon Customer \"nefar\"", "helpful": [2, 3], "reviewText": "The book talks a lot about getting ready for projection. A certain mindset. It talks about being fearful of sleep paralysis and how meditation plus lucid dreaming helps to archive astral travel.The reason I'm giving it a 1 star is because the most critical element, according to the book, to actually being able to project, requires "sleep paralysis", and the book spends almost no time at all on how to achieve it.Here's a section on sleep paralysis:"Is there a way to activate or consciously create sleep paralysis? I haven’t found a way to consciously induce it, however, there are several conditions which almost always lead to sleep paralysis. One is being on your back. Another is coming out of a lucid dream. And the third is taking a nap or going back to sleep in the middle of the night after you’ve been up for a short while."Here's the passage indicating that sleep paralysis is critical to the process of astral projection:"The big moment has arrived. You’ve achieved sleep paralysis, your body is tingling, you hear the buzzing high-pitched sound of acceleration. You can see even though your eyes are closed, you’re sensing, seeing, and hearing other beings around you. Your astral body is activated"In other words, without sleep paralysis I cannot astral project, and the book really doesn't spend any time on how to get me there. This was not helpful for me. Am I missing something? The book got good reviews so please comment if I'm overlooking something.", "overall": 1.0, "summary": "a lot of information but next to zero help on actually achieving projection", "unixReviewTime": 1400889600, "reviewTime": "05 24, 2014"}
{"reviewerID": "A200YSAZ6AC5OU", "asin": "B00GWTYDQK", "reviewerName": "Tim", "helpful": [0, 0], "reviewText": "here is another great book from a Bill Craig series. I cant wait until more books are out for this series. Thanks Bill and we need more!!", "overall": 5.0, "summary": "Great Book", "unixReviewTime": 1395100800, "reviewTime": "03 18, 2014"}
{"reviewerID": "AK3BOJU1OHV0H", "asin": "0007311672", "reviewerName": "M. Gulyassy \"Mugsy\"", "helpful": [1, 1], "reviewText": "Just when it was getting excited when a book has 20-40 pages left this book sank. It was like she ran out of paper and had 3 pages to finish everything up. 80 % of the book was generally interesting but the last 20% was just lazy and amateurish writing. I don't want to give anything away to future readers but basically I want 20% of my money back!", "overall": 2.0, "summary": "The ending stinks", "unixReviewTime": 1402963200, "reviewTime": "06 17, 2014"}
{"reviewerID": "A2XQ2113INZTD4", "asin": "1250041821", "reviewerName": "Vadee2", "helpful": [1, 1], "reviewText": "If you are interested in or curious about these incredible canine special operation forces warriors I definitely recommend this story this book to you. I truly enjoy well-written stories about dogs but when that is an outstanding story that is also well-written then I enjoy it so much more. I recommend this book.", "overall": 5.0, "summary": "A well told story about human and canine warriors", "unixReviewTime": 1395964800, "reviewTime": "03 28, 2014"}
{"reviewerID": "A3S41JXII8VLNK", "asin": "0778314332", "reviewerName": "Bebe Starr \"pbgirl\"", "helpful": [0, 0], "reviewText": "Love Ms. Jackson's Westmorelands Series and this one the first in what's shaping up to be a riveting trilogy.", "overall": 4.0, "summary": "Four Stars", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "A28U3QWQSEUAI7", "asin": "1401310915", "reviewerName": "Anne Marie \"Voracious Reader\"", "helpful": [0, 0], "reviewText": "I had read good things about this series, and was hoping it would be as good as the All Souls Trilogy by Debra Harkness. But not even close. I don't plan to read the 2nd book in the series.The main characters are a mom and her two daughters- Joanna, Ingrid and Freya. They live in mythical North Hampton LI, near Gardiners Island. They have been forbidden to use their powers since the Salem Witch trials, but they find themselves tempted when things in their town start getting strange. Freya is struggling to decide between two men, librarian Ingrid is too staid, and Joanna just wants to mother the housekeeper's son. I found the characters interesting, but the plot line got a bit random and overdone (for me) with the mythology, underworld, vampire and zombie popping up. I would have liked this better with just the lighthearted white magic (like the Accidental Witch series).", "overall": 3.0, "summary": "Not a big fan of \"witch books\" and this didn't change my mind", "unixReviewTime": 1404172800, "reviewTime": "07 1, 2014"}
{"reviewerID": "AWKAF62J27C3Q", "asin": "0062065246", "reviewerName": "Annie G", "helpful": [0, 0], "reviewText": "I enjoyed this book. The writer's style was easy to read and kept me interested. I liked learning about life on a reservation from someone who actually knows. The story was good and the characters were believable and had depth. This sparked some good discussion in my book club.", "overall": 5.0, "summary": "Good read", "unixReviewTime": 1393027200, "reviewTime": "02 22, 2014"}
{"reviewerID": "A62GY7GHMXZZK", "asin": "0385523386", "reviewerName": "gmchicago", "helpful": [0, 0], "reviewText": "I do not watch the TV show, but this book was recommended to me as a great read and I was not disappointed!", "overall": 5.0, "summary": "surprising, distressing, and enjoyable read", "unixReviewTime": 1401148800, "reviewTime": "05 27, 2014"}
{"reviewerID": "A1NR5JW6G89P0X", "asin": "0671042955", "reviewerName": "Baby boomer", "helpful": [0, 0], "reviewText": "The Equinox Voyager episode is a bit problematic because there are issues about Janeway's actions that are not completely explained or understood (her use of "torture" to try to get information from an Equinox crewman is a bit upsetting to many). This book does a great job of delving more deeply into the betrayal that Voyager suffers from the hands of a Starfleet ship and crew--which can only be called treason and attempted murder. Getting a better understanding of this betrayal and the deep pain Janeway feels for having trusted Ransom and (in the process) having put Voyager in danger helped me be a bit more forgiving for her over-the-top reaction. I am not a fan of all episode rewrites, but this is one of the best I've read. If you like Voyager or if you are upset by Janeway's treatment of Noah Lessing in the episode, this book is a great study of the plot's main conflict. I highly recommend it and have read it multiple times!", "overall": 5.0, "summary": "Great episode rewrite", "unixReviewTime": 1393804800, "reviewTime": "03 3, 2014"}
{"reviewerID": "A1VNW847XJ1T6D", "asin": "1601627696", "reviewerName": "D. Davis", "helpful": [0, 0], "reviewText": "WOW.....Helen is one bold diva to roll up on the New Day ladies talking about her! That's how she starts her story! She shares some things that will having you shaking your head! Just when she thought she was at her lowest point God stepped in a got her attention. I have read a few of books featuring the New Day ladies and I have to say that this one will have book groups discussing it long after the meeting is over! The title is perfect! Pick up your copy and meet the latest diva! This is some good reading HERE! Awesome work E.N.Joy!!!", "overall": 5.0, "summary": "New Diva in the Circle", "unixReviewTime": 1402617600, "reviewTime": "06 13, 2014"}
{"reviewerID": "ABHCWJZ9HACS9", "asin": "0310727464", "reviewerName": "Sweet_Pea_3", "helpful": [0, 0], "reviewText": "I am really impressed with the overall quality and visual appeal of this Bible! It's wonderfully illustrated, there's enough colour and pictures interspersed throughout to appeal to younger ages, but not to the point of being extremely juvenile so it can grow with them. This is a full version of the Bible, in the New International Readers Version (NIrV) which is a translation that uses contemporary english. I find it similar to the NIV.This Bible is hardcover, which is a big plus for durability. We have had one or two other Junior Bibles around here and the soft cover ones do not stand up well to regular use and going back and forth to church. The pages aren't super thin, I don't think they'll be likely to rip and the print doesn't leak right through making it hard to read. That seems to be a problem with some other children's Bibles because they are trying to do things cheap. Not a problem here. The only negative I have about this particular Bible is the lenticular picture on the front of the bible, the ribbed 3D kind of thing. I think it makes it look younger than it's really geared for and the age that would be ready for a full Bible. Besides that, young boys love scratching their nails across it!Overall, this is a great Bible choice for a boy or girl who is ready for a full Bible instead of a Bible story book. It's already got my 7 year old reading bits and pieces in his new Bible instead of feeling like it's way out of his league. It'll be a while before he's reading whole chapters but he feels grown up having this Bible.This Bible was provided to me by Zondervan and BookLook for the purpose of an honest review. My opinion is my own.", "overall": 5.0, "summary": "Pleasantly surprised by the quality of this Bible!", "unixReviewTime": 1404086400, "reviewTime": "06 30, 2014"}
{"reviewerID": "A2GYX7MZ67T0C7", "asin": "B00CLYRTS4", "reviewerName": "jbshorses", "helpful": [0, 1], "reviewText": "Nice photos and simple text though it's difficult to determine what age group is being targeted. The text is too advanced for young children and to simple for older ones.", "overall": 3.0, "summary": "Amazon Rainforest Review", "unixReviewTime": 1389139200, "reviewTime": "01 8, 2014"}
{"reviewerID": "AOGPEIIRSPYDW", "asin": "1455517135", "reviewerName": "roxanne johnston", "helpful": [0, 0], "reviewText": "This is one of the best books that Jeffrey Deaver has ever written. It has twist and turns all though out the book. Just when you think you have it figured out something else happens. Lincoln and Amelia make a great team and this book showcases how well they work together . It is a must read !!!!", "overall": 5.0, "summary": "A must read book .", "unixReviewTime": 1402444800, "reviewTime": "06 11, 2014"}
{"reviewerID": "A3994ICPL83R77", "asin": "B00GOKNP6G", "reviewerName": "suzee \"suzee\"", "helpful": [1, 1], "reviewText": "This is the third book in the series and my favorite so far. Love to hear from Jed and Redford and now their new wolf pack. I didn't want this book to end it was that good, looking forward to the next.", "overall": 5.0, "summary": "Just keeps getting better", "unixReviewTime": 1390003200, "reviewTime": "01 18, 2014"}
{"reviewerID": "A1WF78DYLDROCF", "asin": "0425256375", "reviewerName": "Brandon Stenger", "helpful": [0, 0], "reviewText": "Every new Myke Cole book is better than the last, and this is no exception. If you haven't read the Shadow Ops series before start with Control Point, but go ahead and order Fortress Frontier and Breach Zone as well - you're going to want them.", "overall": 5.0, "summary": "Fantastic close to the trilogy", "unixReviewTime": 1393113600, "reviewTime": "02 23, 2014"}
{"reviewerID": "A1X1DPDDD0RNCC", "asin": "0316405345", "reviewerName": "joewalk181", "helpful": [0, 0], "reviewText": "OMG an unbelievable story line. Patterson has to be one of the best authors around.The masterful plot of twists and turns keeps the reader on a non-stop fast moving pace with the most surprising un-expected endings.", "overall": 5.0, "summary": "PATTERSON has done it again", "unixReviewTime": 1404345600, "reviewTime": "07 3, 2014"}
{"reviewerID": "A2VTAR3P8C0LBD", "asin": "061593370X", "reviewerName": "John R. Lindermuth \"J. R. Lindermuth, author ...", "helpful": [0, 0], "reviewText": "Emeline Margulies is a young woman whose ear is attuned to the voice of God. Sometimes she isn’t sure she’s heard right, but she continues to have faith.Set in the 1950s in rural western Pennsylvania, the plot pits Emeline against arrogant tormentors who view her as only a commodity. Even Deet, the sole member of the Hardgrave family to show her kindness and help, has his own agenda.Shortly after heeding the voice and marrying Angus Hardgrave to escape a stalking rapist her faith is tested as never before. Angus is brutal and demanding. He seizes her bank account and property and conspires to engage in dog-fighting and moon-shining with her stalker.Angus, a man more than twice her age and with an evil reputation, is also moving to the direction of a voice—one definitely not divine. The voice he obeys spews hatred, selfishness and prescriptions for violence.Emeline proves a brave woman, capable of enduring more than expected in this gritty novel with characters reminiscent of Faulkner. This is not a work for those offended by violence and harsh language. But if you’re willing to look beyond those obstacles you’ll find it an engrossing and memorable story.The conflict between good and evil is never clear-cut, but in this novel it is absolute.", "overall": 5.0, "summary": "Rural Noir", "unixReviewTime": 1390780800, "reviewTime": "01 27, 2014"}
{"reviewerID": "AY6I0Z1NRF15H", "asin": "B004GXAXM2", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "You don't have enough starts to rate the King James Bible. You need to watch what you are having rated. This is ridiculous. The greatest book ever written.", "overall": 5.0, "summary": "Stars for Holy Bible.", "unixReviewTime": 1400803200, "reviewTime": "05 23, 2014"}
{"reviewerID": "A2WQ44UKFNAIM", "asin": "B006MWTSP8", "reviewerName": "Linda Gadbury", "helpful": [0, 0], "reviewText": "I have really enjoyed the Beauvisage novels and the Ravenaue' s stories. I love how the characters entwined each other. It's hard to think of Philadelphia as a small town, but during v that time period if was.", "overall": 5.0, "summary": "Fantastic story!", "unixReviewTime": 1389571200, "reviewTime": "01 13, 2014"}
{"reviewerID": "AECSP64LX662Z", "asin": "B00JRBOFX6", "reviewerName": "Beverly Clark", "helpful": [0, 0], "reviewText": "The author sums it up perfectly with this sentence- Emotions are backdrops conflicting or opposing of the mind (psyche).As a former school teacher, I learned long ago the importance of keeping emotion in check. More and more (in stores, on TV, at restaurants, etc.) I see people who act reactively (and often instantly regret it).Children learn by example and they most of all, need to see the adults around them acting in a correct manner.The author has created an excellent book that walks one through the process of controlling emotions. Perhaps more important, the author first walks the reader through what causes emotions so they can learn to squelch the mindset that may cause an emotional outburst.I definitely liked this book.", "overall": 5.0, "summary": "Excellent resource for learning to control emotions", "unixReviewTime": 1398384000, "reviewTime": "04 25, 2014"}
{"reviewerID": "A1IQXER8BYVCPR", "asin": "B0081NXWTO", "reviewerName": "Link", "helpful": [0, 0], "reviewText": "This book is very good and sweet. I recommend it highly. :)The relationship between Casey and his Vampire feels very real and heartfelt. :) <3", "overall": 5.0, "summary": "Cute Bunnie Shifter!", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A1RMS2HHSYPH3", "asin": "147670600X", "reviewerName": "Kate", "helpful": [0, 0], "reviewText": "**Review courtesy of All Things Urban Fantasy**Take a standard romance novel trope, add a ghost story and some humor, and you get a romance novel only Molly Harper could write. BETTER HOMES & HAUNTINGS is a departure from Harper’s normal vampires, werewolves, and witches, but it doesn’t suffer for it. In fact, this standalone was a treat, and definitely worth the read despite my complaints about tropes.There were some truly creepy moments in BETTER HOMES & HAUNTINGS. Between the ghostly experiences, plus the “trapped on an island” plotline, there’s almost a horror movie feel in the background. I appreciated that the ghosts were scary, because the last paranormal romance with ghosts I read, the ghost was the heroine, and it just doesn’t seem right. Creepy ghosts are much more like it.My one complaint was the real-life bad guy. I think the book could have done without that addition, since there was already enough tension with the ghost story and trying to figure that out. Plus, the story was unique, and the addition of the stalker ex-boyfriend made it feel, at times, a little formulaic. I could easily see this novel without the ghosts being a standalone contemporary romance novel, so anything that made it feel more that way was a downside, in my opinion.All in all, BETTER HOMES & HAUNTINGS was classic Molly Harper, with laughs and romance and just enough paranormal to round it out. While it isn’t my favorite Harper, it definitely stands on its own merit, and since it isn’t a series, there really isn’t much investment required (though I wouldn’t mind a book about some of the other characters…).I would recommend it to anybody looking for a fun, creative romance read.", "overall": 3.0, "summary": "Standard romance tropes make this not the best Harper, but fun nonetheless", "unixReviewTime": 1404691200, "reviewTime": "07 7, 2014"}
{"reviewerID": "AL6XJLM76V2VZ", "asin": "0857051733", "reviewerName": "Autumn Nauling \"Fallen Over Book Reviews\"", "helpful": [1, 1], "reviewText": "I received this book via NetGalley to give an honest review.This is A Scandinavian Crime Thriller.I enjoy a good mystery book and this was decent for me. I did keep wondering okay who did this. Why did they do this. That is the mystery of it all. The book starts off really strong, you have a bear attack and once the bear is hunted down there is something mysterious in its belly. After that the story takes you onto a murder that has happened in the nearest town. Prosecutor Rebecka Martinsson has her work made out for her. She has a murder to solve and somehow the past all comes together. The answer to the present is in the past.Now at times I got confused because the author would use the last names of the officers and prosecutor. I don't like being confused in a story hence the 4 star rating.Rebecka has to deal with a young and upcoming prosecutor who wants to push her off the case. But Rebecka takes it all into her own hands but what price does she pay?With this murder happening, Rebecka takes a look back at the family's past and notices more "accidents" have happened.Along with this book taking place in the present we are also taken back into the 1900's where all this pretty much started. I liked the going back and forth between the past and present but at times I felt it was abrupt. As I would get into reading what the dogs found and Marcus the little boy who acts like a wild dog and then bam! In your face you in the past with the school teacher Elina Pettersson. Which when you read her past you get a bit sad. I know there was one part with Elina that I read and I felt so bad for what happened to her.If you like mysteries then I would give this book a read. I think I will be reading more from this author in the future.", "overall": 4.0, "summary": "Pretty interesting read.", "unixReviewTime": 1402963200, "reviewTime": "06 17, 2014"}
{"reviewerID": "A28MPK002D2WJ1", "asin": "B00F6YOOZW", "reviewerName": "AA", "helpful": [1, 1], "reviewText": "Again, I thought for sure this was written by a woman (indeed, the original cover named Rebecca Steinbeck as the author). Mr Mason has shown with a deft touch not only his ability to cross genres but to also cross genders. A superb addition to a series that has the hallmarks of being a great trilogy (Mr Mason, I have seen on Goodreads a cover for a story called 69 INCHES OF LIGHT?)....", "overall": 5.0, "summary": "Darrin Mason has returned in fine form, this time with 69 INCHES AND RISING.", "unixReviewTime": 1398729600, "reviewTime": "04 29, 2014"}
{"reviewerID": "A1F3M1SKLQYY6Y", "asin": "1419711326", "reviewerName": "L. B. Smith", "helpful": [0, 0], "reviewText": "It has a break up just like reality I mean it happens to everyone. I luv u guys and gals and the other ones who have been able to read this. I hope you get this book and the other onesSincerely Dddpeaches@aol.com", "overall": 5.0, "summary": "I luv it", "unixReviewTime": 1393113600, "reviewTime": "02 23, 2014"}
{"reviewerID": "A2KINEFSAEOM8S", "asin": "B00J2CJNK0", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Each time I read one of her books I think this one is my favorite. But so far this one is it I love the different world of the fae realm I can't wait to read more from R.E I'm always in love with her stories.", "overall": 5.0, "summary": "Love it", "unixReviewTime": 1400716800, "reviewTime": "05 22, 2014"}
{"reviewerID": "A1P6GB064WSTL4", "asin": "1495472418", "reviewerName": "Lisa", "helpful": [1, 2], "reviewText": "I don't know why I've not read this book sooner - it got lost in my to be read list - but I'm so glad that I have finally read it. This is one of my books of the year.An incredibly well written book that draws you in to Jonah's story of being a Master. He is dominant, confident and articulate without being arrogant. He is thoughtful but speaks his mind and has an understanding of women that just screams wow off the page at you.In telling his story in this way, we get to see his very thoughtful insights into how he views his role as a Master. He is a Master that thrives on deriving pleasure from the women who submit to him.Leticia's character grows in confidence as his story unfolds and she becomes bolder with him in a subtle way. The way that their relationship grows and develops is not in your face but done with subtle nuances.And wow!! The ending was not what I expected - it was so much better than the very predictable endings that we see in pretty much every other book in this genre. I like the unpredictability of it and together two very well developed and likeable characters in Jonah and Leticia. Amazing read!", "overall": 5.0, "summary": "Wow, just wow!", "unixReviewTime": 1398643200, "reviewTime": "04 28, 2014"}
{"reviewerID": "A2LH0OB8DAS3RD", "asin": "0373294212", "reviewerName": "colette reviews", "helpful": [1, 1], "reviewText": "I really enjoyed this! I'm all about historical romances, and this was a cute little story. Little bit of drama, at times, a bit boring, but it's still a good read! I really liked it.", "overall": 4.0, "summary": "enjoyable", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "AJDTXLQ3HPY69", "asin": "0141345659", "reviewerName": "Evan", "helpful": [1, 1], "reviewText": "While many works of teen fiction are intolerable attempts at literature that annoy avid readers, this book can be appreciated by lovers of any genre. This book is truly a work of art.", "overall": 5.0, "summary": "Art", "unixReviewTime": 1398124800, "reviewTime": "04 22, 2014"}
{"reviewerID": "A289ZX3ZD2S93Z", "asin": "0890516413", "reviewerName": "JulieBeth", "helpful": [0, 0], "reviewText": "Great book that is interesting, fun, but educational too. Lovely look and heavy pages with sturdy binding. Points to the Creator of the heavens. Highly recommended!", "overall": 5.0, "summary": "Beautiful book", "unixReviewTime": 1400284800, "reviewTime": "05 17, 2014"}
{"reviewerID": "A3CI5SU74J8LTS", "asin": "1451645821", "reviewerName": "C. Bellis", "helpful": [0, 0], "reviewText": "A wonderful description of life in the 1960s for a young teen and his family. The tragic events covered are told without unnecessary descriptions of violence but in such a way that you understand what had taken place.I love the descriptions of the town, the community and felt very much as though I could see it.Characters were woven well and interacted with one another in a believable manner.I really recommend this book.", "overall": 4.0, "summary": "very enjoyable", "unixReviewTime": 1400889600, "reviewTime": "05 24, 2014"}
{"reviewerID": "A1CV9CA6B8P1YL", "asin": "B00EMG3A00", "reviewerName": "redfeather", "helpful": [0, 0], "reviewText": "This is a fun collection of steamy romance with a special slant toward full-size women. I just love the way JS Scott makes plus size women just as desirable to handsome men as anyone else. These stories illustrate full-size women in a much kinder light than most novels, yet touches on the insecurity that these women deal with. The only thing I would change about these stories would be to flesh out the ending of the first two, however it's a good read.", "overall": 4.0, "summary": "Fun, Steamy Romance", "unixReviewTime": 1398297600, "reviewTime": "04 24, 2014"}
{"reviewerID": "A1FWMW42ZN7TX", "asin": "0976778858", "reviewerName": "Lori", "helpful": [0, 0], "reviewText": "The plot had a foolish premise that actually does not get resolved satisfactorily. I found the plot development heavy. The writing seemed over burdened by trying to cover too much of the backstory of the main character.", "overall": 2.0, "summary": "Did not enjoy", "unixReviewTime": 1393977600, "reviewTime": "03 5, 2014"}
{"reviewerID": "A1O8I9Y67IQ5RC", "asin": "B00K8D3524", "reviewerName": "Kassandra", "helpful": [0, 0], "reviewText": "I absolutely love the passion series. This 2 high school boys are the definition of a man. The know the true meaning of the word love. This 2 love the word commitment and defending the wick and vulnerable. Alpha male that only ones to find love and buiild a future with her.", "overall": 5.0, "summary": "Must read", "unixReviewTime": 1404432000, "reviewTime": "07 4, 2014"}
{"reviewerID": "A3PTWPKPXOG8Y5", "asin": "B00HZCGL9K", "reviewerName": "Alexis", "helpful": [3, 5], "reviewText": "As we rush through our daily lives, we tend to forget how important it is to take care of our body. To take care of our heart. The things we eat and the things we do end up shaping our overall health. This book is a great resource, containing proven, solid, down to earth strategies to prevent, treat, and ultimately overcome heart disease. Moreover, the information is presented in a clear, understandable way, and therefore you can't get lost. If you are looking for a proper medical guide on the subject, get a copy of this book. It's totally worth it.", "overall": 5.0, "summary": "The best medical resource online on heart disease!", "unixReviewTime": 1390694400, "reviewTime": "01 26, 2014"}
{"reviewerID": "AAT3EEOS2Y5ZK", "asin": "1481879162", "reviewerName": "Book Readers", "helpful": [0, 0], "reviewText": "Marcel Proust in Taos is a novel that will excite and intrigue the reader. Jon Foyt is a talented author. He has a way with words that are both literary and a joy to read. Foyt builds on the character development as the story progress. You cannot help but fall in love with Christopher and his cat Marcel Proust. And forgive the final outcome at the end. The plot is interesting with a parallel story occurring throughout the book. There are twists and turns that keep you guessing to the dramatic ending at the last page. Highly recommended and certainly look forward to more of Foyt's work.[...]", "overall": 5.0, "summary": "Superb, literary, enjoyable, and exciting", "unixReviewTime": 1398211200, "reviewTime": "04 23, 2014"}
{"reviewerID": "A15BJNVZNHMOLO", "asin": "1630350184", "reviewerName": "Rachel559", "helpful": [2, 3], "reviewText": "This was a beautiful story. Nick is a Ferro for sure and as we read about more of the Ferro men we can see that they are ruthless but also amazingly caring to the women they love. Its refreshing to read about men who can be sensitive and artistic. The connections and confrontations between these two are explosive.I still felt a cliffhanger there but can't wait for more.", "overall": 5.0, "summary": "Thank you H M Ward!", "unixReviewTime": 1400112000, "reviewTime": "05 15, 2014"}
{"reviewerID": "A2EWKUPO4Z2BB1", "asin": "B00IYKBJCG", "reviewerName": "Kelly", "helpful": [4, 4], "reviewText": "The Trust Me? Trilogy is a must read! Aiden and Jeni make you want them to work out. Aiden is strong and confident. Jeni has major trust issues. Can she get past them? Check this series out. You'll be glad you did!!", "overall": 5.0, "summary": "Amazing!", "unixReviewTime": 1395532800, "reviewTime": "03 23, 2014"}
{"reviewerID": "A3SC6U2C1UA1DC", "asin": "B005ZI1OWA", "reviewerName": "CherylMcGirr", "helpful": [1, 13], "reviewText": "I was pretty disappointed in the writing - I could do better. The pictures were okay but I think this was free - wouldn't pay money for it!", "overall": 2.0, "summary": "ugh", "unixReviewTime": 1389052800, "reviewTime": "01 7, 2014"}
{"reviewerID": "ANIHO9UHJ5DI3", "asin": "0062292889", "reviewerName": "Mike Shaw", "helpful": [6, 16], "reviewText": "She says this is Palin's best book. She took a long time reading it because of health problems but recommends it highly.", "overall": 5.0, "summary": "Christmas Gift (early) for my wife", "unixReviewTime": 1391904000, "reviewTime": "02 9, 2014"}
{"reviewerID": "A1PT5A2DX1IY9", "asin": "B00E3JWR82", "reviewerName": "Jennifer R.", "helpful": [0, 2], "reviewText": "This book was nothing but predictable. It stopped at a very awkward spot and did not have a conclusion. It looks like the author is trying to take one story and turn it into four.", "overall": 2.0, "summary": "Boeing", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "A1WBGIL46NUFFU", "asin": "B00KZ6DHZO", "reviewerName": "LMM", "helpful": [0, 0], "reviewText": "Loved this second book as much as the first.Taz wow.Some MC books are so repetitious of others,but this one had everything.Like a series that has the same characters coming back in all the books.Wonder about Elle though,she does not seem like the typical MC presidents ole lady.Don't think I like her character.But not much about her in this one.Who's next in the series?Will definitely read it.", "overall": 5.0, "summary": "Great", "unixReviewTime": 1403395200, "reviewTime": "06 22, 2014"}
{"reviewerID": "A24Z79OS5VQA7Y", "asin": "0615932916", "reviewerName": "T. Tracy", "helpful": [0, 0], "reviewText": "Good read,not a lot of passion, heat or steam but I enjoyed the story. It is amazing how many books out there are around Montana cowboys and ranches. I do enjoy a cowboy but I didn't totally fall in love with Christian he didn't really let us in...", "overall": 4.0, "summary": "Six Months in Montana", "unixReviewTime": 1398297600, "reviewTime": "04 24, 2014"}
{"reviewerID": "A2RIGL5E0GGQ8W", "asin": "0345511425", "reviewerName": "Patty F Kinnett", "helpful": [1, 1], "reviewText": "A very good Star Wards story. One that I will listen to many times. Not good to demand a set number of words.", "overall": 5.0, "summary": "Review", "unixReviewTime": 1394841600, "reviewTime": "03 15, 2014"}
{"reviewerID": "A2F8OBFE4RTGTT", "asin": "1492848468", "reviewerName": "Drea", "helpful": [0, 0], "reviewText": "I really enjoyed this book. I feel sorry for Cesear because Mink is no good for him I hope he leave her alone for good and get out of the game for good. I love Flava she got her head on straight. I already have part 2. Thank you for this book love you your fan Drea.", "overall": 5.0, "summary": "YES,,,,", "unixReviewTime": 1393286400, "reviewTime": "02 25, 2014"}
{"reviewerID": "AIHEMBMETF74K", "asin": "1490968970", "reviewerName": "Happy \"Fan\"", "helpful": [0, 0], "reviewText": "An excellent book with lots of practical advice for the hobbyist. The book is a bargain with many good resources.", "overall": 5.0, "summary": "Excellent", "unixReviewTime": 1399939200, "reviewTime": "05 13, 2014"}
{"reviewerID": "A2G3GU11G0QUI6", "asin": "1494762099", "reviewerName": "Kathy latham", "helpful": [0, 0], "reviewText": "Omg, I love this book. I can't believe how it turns out !!!!! George, I love you myself, Amy, don't let him go again, & last but not least, Gracie, I'm happy your back home safe from the kidnapping.", "overall": 5.0, "summary": "True blend by Joanne DeMaio", "unixReviewTime": 1399507200, "reviewTime": "05 8, 2014"}
{"reviewerID": "A14VXMJZK16UJR", "asin": "0345807154", "reviewerName": "D. Chaudoir", "helpful": [1, 1], "reviewText": "Nesb has written a decent crime novel here, but it’s not the best story I’ve read out of the Scandinavian bleak crime genre. Available in English translation for the first time (indeed, the last of Nesb’s novels to be translated into English), this is Det. Harry Hole’s second dark adventure, one that sends him away from Norway yet again, this time to the seedy underworlds of Bangkok, Thailand in pursuit of the killer of the Norwegian ambassador there.Readers of “The Bat” will recall that Nesb is a master of evoking atmosphere and place. But unlike that superior first novel in the Harry Hole series, “The Cockroaches” never seems to rise to the occasion. Sure, it’s entertaining, but the Thai setting he evokes is so squalid, and the characters so dejected, that you might want to consciously do something intermittently cheerful as you read.Despite its shortcomings, this is a must-read for all Nesb fans.", "overall": 4.0, "summary": "Some very unseemly scenarios, but a must for Nesb fans", "unixReviewTime": 1392163200, "reviewTime": "02 12, 2014"}
{"reviewerID": "ANJ8YJQP5GRRF", "asin": "0528853392", "reviewerName": "Lisa H.", "helpful": [0, 1], "reviewText": "Got rid of this obsolete crap as soon as the college course was over. Textbooks aren't very necessary anymore with iPads and kindles so what's the point? Just to make money for the publisher off of poor college students. How Dickish.", "overall": 1.0, "summary": "Who knows?", "unixReviewTime": 1398470400, "reviewTime": "04 26, 2014"}
{"reviewerID": "A1PBPAJIEQ0VP1", "asin": "B00EYMXM2I", "reviewerName": "Mike speakman", "helpful": [1, 2], "reviewText": "I hate when I waste my time reading books that end the way this one did. I needed 4 more words to leave this review.", "overall": 3.0, "summary": "book was ok ending wasn't very good", "unixReviewTime": 1390262400, "reviewTime": "01 21, 2014"}
{"reviewerID": "A2DDLPSWVDN1NM", "asin": "1451555652", "reviewerName": "Charlene M. Hermann", "helpful": [0, 0], "reviewText": "The basic plot is great, with lots of twists and just enough info to keep you wondering "who done it". This book is the first of a series and I haven't read any in the rest of the series but, boy, I hope the heroine gets smarter. For an ex-cop, she is the dumbest broad I have ever read of. Things just happen to her as she blunders her way around the book. I well definitely read more in the series because I like the writing style but, boy, I hope she gets smarter and more proactive.", "overall": 3.0, "summary": "Meh....", "unixReviewTime": 1391385600, "reviewTime": "02 3, 2014"}
{"reviewerID": "A25KKXUQQ0OLWB", "asin": "1594486034", "reviewerName": "Lynn Ellingwood \"The ESOL Teacher\"", "helpful": [0, 0], "reviewText": "Well written novel of a brother and sister who have been raised by unconventional parents and taught in a free school based on Rousseau's principles of education. The brother has some kind of disability but is only referred to as slow but the parents refuse to have him diagnosed by a doctor or evaluated by professionals. As an adult, the brother is accused of a crime and it appears his upbringing and free education didn't help him very well. I don't agree with many of the ideas of education here but the author portrays a really well thought out story of family dysfunction.", "overall": 4.0, "summary": "Freedom Failure", "unixReviewTime": 1396310400, "reviewTime": "04 1, 2014"}
{"reviewerID": "A2YQ03V4D76KUU", "asin": "1477818359", "reviewerName": "Reb", "helpful": [1, 1], "reviewText": "I laughed out loud reading this one. I didn't realize that this was the 2nd book in the Bell Harbor series but was easy to jump in. I read the Book one after. Such a nice series, I fell in love with the characters and hope another Bell Harbor is coming.", "overall": 5.0, "summary": "I loved this one!", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "A2JX7CH0QD3RUF", "asin": "1442367318", "reviewerName": "patriot", "helpful": [0, 0], "reviewText": "As always Mary delivers! I think I've read every book she ever wrote and I have enjoyed every one! Keep them coming Mary?", "overall": 5.0, "summary": "Mary delivers", "unixReviewTime": 1399161600, "reviewTime": "05 4, 2014"}
{"reviewerID": "A1GUMWHGSEBDS5", "asin": "0671732471", "reviewerName": "InSourcepiration \"midnite_sister\"", "helpful": [0, 0], "reviewText": "Carlos is not for everyone. You cannot simply skim the surface with his books, you must get into the depths.", "overall": 3.0, "summary": "Carlos is not for everyone...", "unixReviewTime": 1391126400, "reviewTime": "01 31, 2014"}
{"reviewerID": "AQEY9OGKERWLQ", "asin": "B00HS5DYDA", "reviewerName": "ElizabethN \"one reader's perspective\"", "helpful": [1, 1], "reviewText": "First thoughts - loved it, another fascinating universe with more great characters.Hunter’s Claim, a post-apocalyptic (zombie free) romance with sexy aliens, grabs your attention from page one and doesn’t let go.The heroine Jesse and her sisters are smart, resourceful and loyal. Once they decide you’re family, watch out. Jesse’s determination to do the right thing is admirable and brings her the trouble and reward that she deserves.The hero Hunter and his friends are the sexy alpha men that are just a bit clueless with regard to interacting with strong, independent Earth women.The story moves along quickly and is over before you’re ready, forcing a re-read if you don’t want to let the characters go yet.No cliffhanger but, as with most SE Smith stories, several characters now need their stories told.Disclaimer – definitely a SE Smith fan girl, haven’t read a story of hers that I didn’t like.Cross-posted amazon, goodreads, shelfari…", "overall": 5.0, "summary": "A great start for a new SE Smith Universe", "unixReviewTime": 1390435200, "reviewTime": "01 23, 2014"}
{"reviewerID": "A2MIJ2WKTR5AGF", "asin": "1931296219", "reviewerName": "Patricia D Dunbar", "helpful": [0, 0], "reviewText": "The location was a big part of the enjoyment of the book. Characters were pretty predictable. Story-line pretty predictable, also.", "overall": 3.0, "summary": "Nothing outstanding, but enjoyabe", "unixReviewTime": 1396742400, "reviewTime": "04 6, 2014"}
{"reviewerID": "A1EMX7V51NJWB6", "asin": "1608618943", "reviewerName": "Char in Boise", "helpful": [0, 0], "reviewText": "Kate Sinclair has to go back to Rose Creek for her aunt’s funeral. She hasn’t been back in years, knowing she disappointed her family when they really needed her years ago. When the will is read and Kate learns that the old house that has been in her family for over a century has been given to her instead of her estranged cousin, she decides to stay for a few weeks before heading back to Atlanta to work. When she discovers an old journal and letters in the attic, her desires start changing. And when she meets a handsome local, Andrew, the changes start escalating even further. I didn’t know if I would like this book at first, but once Kate found the old journal and connected with her 5th great-grandfather, I was hooked.", "overall": 5.0, "summary": "Hooked by an old journal", "unixReviewTime": 1399852800, "reviewTime": "05 12, 2014"}
{"reviewerID": "A15Q5MVRVBMKW7", "asin": "B00DXKHIJU", "reviewerName": "Lucky mama", "helpful": [0, 0], "reviewText": "I dont even know how to write a review for this amazing book!!!!!! Arc was provided by net galleyLet me start by dying that I really need the second book like now!!!! This book had it all, the drama, the romance, the using your brain, it was just amazing! I spent the whole boom on the edge of my seat not wanting it to end, but sadly all great things must end.We have Sophia, she was stubborn and nosey, wanted answers when she wanted them, her heart was literarily beating for Michael, he pushed her away because she thought she wa a test, but little does he know she's not. Dante wAs sad, my heart broke for him when he searched and searched for his love and finds her and she loves another, the three POVs didn't bother me at all I love more then one POV in romance books. Sophia's dad had me freaking out the whole book because I didn't understand what was happening, it threw me for a loop when the answers came out! I was dumbfounded and had to stop reading and think, Sophia's love for her dad went beyond anything on what she went tru to try to save him. At the end I was confused but hope the next book is quick!!!This is a paranormal romance at it's finest!!!!! The angels and demons made this book! The plot was amazing and the H/h were lovable. I'm not the best at reviews but it rocked my socks off and I'm glad I got a chance to read this!!!!!!!! 5 amazing stars!", "overall": 5.0, "summary": "I want more!!!!!", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A2ESKW2RO8BOPU", "asin": "0989450236", "reviewerName": "Wallace0221", "helpful": [0, 0], "reviewText": "Devoured this book in one day. I could not wait to for those three words come out of Colton's mouth to Rylee (read the book....you'll know what I mean!). But the ending...oh dear Lord...gutted me. CAN NOT WAIT for Crashed to be released!", "overall": 5.0, "summary": "Goodness...the ENDING!", "unixReviewTime": 1393027200, "reviewTime": "02 22, 2014"}
{"reviewerID": "A3P5IV1Z7K1Z3P", "asin": "1477808736", "reviewerName": "Elizabeth T. Reed", "helpful": [0, 0], "reviewText": "Not at all what I expected. By the time I figured it out I was hooked. Think I enjoyed it", "overall": 3.0, "summary": "Summary", "unixReviewTime": 1391040000, "reviewTime": "01 30, 2014"}
{"reviewerID": "ABZC3CVT6MZZA", "asin": "0800733428", "reviewerName": "Healthy Me", "helpful": [0, 0], "reviewText": "Janice Thompson has delighted me with her lyrical turn of a phrase. Her word pictures transport me right to where she wants me to be, like a fly on the wall, privy to everyone's thoughts & feelings. This storyline, and her familiar cast of characters runs through at least two of her series. That's reassuring because I'm always left with wanting to know more. Now I just get the next book & I'm part of the neighborhood again!I would recommend this book to anyone who enjoys romance, including teenagers. You can be sure this book is full of, dare I say it?, old fashioned family values liberally sprinkled with God's involvement in our daily lives. It is strictly PG, a joy all the way through to the end. Can't wait to start Book 2 in this series.", "overall": 5.0, "summary": "Believably romantic", "unixReviewTime": 1388707200, "reviewTime": "01 3, 2014"}
{"reviewerID": "A32VCGCYYRP8M4", "asin": "1475051417", "reviewerName": "P. Skinner \"Patchance\"", "helpful": [1, 1], "reviewText": "You will never be sorry you picked this book.. What a delight from the World today. I enjoyed the adventure and the story line.. Look for her other books too.. You can also follow her on Facebook.. pat s", "overall": 5.0, "summary": "Great Reading", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A18NZFQ268AW0Z", "asin": "B00JAOKSBI", "reviewerName": "Heather Cav", "helpful": [1, 1], "reviewText": "Loved loved loved this book. Can not wait till the number 2 comes out. wonderful love story. Grab some tissue you will need it.", "overall": 5.0, "summary": "loved this book", "unixReviewTime": 1397692800, "reviewTime": "04 17, 2014"}
{"reviewerID": "A1UKSR0NE9B0KX", "asin": "0983706352", "reviewerName": "Reiki Wonders", "helpful": [0, 0], "reviewText": "I'm pretty new to erotica usually favoring paranormal romance such as Larissa Ione's Demonica series or Nalini Singh's books to name a few. I found this series on the Herding Cats and Burning Soup blog. It appealed to me and as the first book was free I downloaded it. I'm not into the Lifestyle so I cannot comment on how realistic it is but it is well written and puts books like Fifty Shades of Grey in the shade so to speak!I like the way the author introduces the completely innocent heroine to this \"forbidden world\". She has a car wreck, its pouring rain and goes for help to the nearest place she can find. An imposing mansion which turns out to be a BDSM club. The characters are very believable. I could really feel for the heroine Jessica experiencing this life for the first time. Of course she had a choice to walk away but she endures. There is tension, passion and a whole lot of raunchy sex.Master Z, a Dom and owner of the club is very intimidating but sexy as hell. The sex scenes are graphic so may not appeal to everyone! I loved it and have since bought the rest of the series! I congratulate the author on writing about a subject in such detail that is usually considered taboo!", "overall": 5.0, "summary": "New to Erotica, Smokin' Hot!", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "AUE3JO6NVO291", "asin": "1491023163", "reviewerName": "Fawnzy \"fawnzy\"", "helpful": [0, 0], "reviewText": "Warning, make sure you have Spelled before starting this book. Casted starts out at a smooth pace then builds momentum up to the end when you are left with a cliffhanger that has you fumbling around to get started on Spelled. Adventure, with a little romance mixed in. Nothing to make you blush but just enough that you get the idea. Great start to what looks to be a great series.", "overall": 5.0, "summary": "Casted", "unixReviewTime": 1398297600, "reviewTime": "04 24, 2014"}
{"reviewerID": "AA00IWMZB41EQ", "asin": "B007R5T3SQ", "reviewerName": "anne", "helpful": [0, 0], "reviewText": "good story line. albeit predictable. Will read another by this author. looking forward to reading another. enjoyed the development of characters.", "overall": 4.0, "summary": "Great read! Enjoyed it very much.", "unixReviewTime": 1389139200, "reviewTime": "01 8, 2014"}
{"reviewerID": "A9PS4BDXT9HTS", "asin": "1481217747", "reviewerName": "Carson", "helpful": [0, 0], "reviewText": "I enjoyed reading this book however,I was a little disappointed the reason Ruth seemed whimsy washy in deciding whether to leave the Amish Life. But I must say I loved the way she nervier once strayed away from her faith. I enjoyed it but I must say it was not my favorite however, I still love my Amish books and will read Book 2 of this series.", "overall": 4.0, "summary": "Good Read", "unixReviewTime": 1400457600, "reviewTime": "05 19, 2014"}
{"reviewerID": "A3VV8DL8WJN135", "asin": "B00DQQWAGM", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Great read. A great mystery. If you love mysteries this is one to get. You never ready for the ending in Brian's books.", "overall": 5.0, "summary": "A great read. Very well written!!!", "unixReviewTime": 1393545600, "reviewTime": "02 28, 2014"}
{"reviewerID": "A2AJRFHBECZJG0", "asin": "1617952168", "reviewerName": "Savurbks", "helpful": [0, 0], "reviewText": "SUMMARY:As a wife, mom, blogger and former youth minister, Micha Boyett shares a deeply personal account of learning to truly pray from the heart, accepting that her place in life at the present moment is genuinely important, and realizing she is not alone in the spiritual chaos she has experienced since the birth of her children.A PENNY FOR MY THOUGHTS:Written through beautiful prose, the author takes us on a journey through Benedictine spirituality to discover prayer in everyday situations of life. Part journal, part memoir, and part story, Micha Boyett pens an alluring yet delicate rendering of coming to terms with her own importance as a person, though her course in life may have changed. Very knowledgeable of the Benedictine prayer life, the author causes us to stop and ponder our own true worth, as well as the sincerity and purity behind prayer. Appropriate for any age, either gender, this book would be a most-welcomed gift by a new mom. I look forward to searching out her blog having read her book.RATING:4 (out of 5) pennies*I received a complimentary copy of Found: A Story of Questions, Grace and Everyday Prayer from Worthy Publishing for my honest review*", "overall": 4.0, "summary": "Beautifully written...", "unixReviewTime": 1396396800, "reviewTime": "04 2, 2014"}
{"reviewerID": "A36T5VDRP7B7F", "asin": "1565125215", "reviewerName": "Wynona Burgstiner", "helpful": [0, 0], "reviewText": "This book was definitely not a book I enjoyed. I read it all even though I was not impressed because sometimes first impressions are not indicative of the contents later. War is horrible no matter what century or what country. This books title and excerpt lead the reader to believe it was about a horse and young man and their relationship while searching for the boys father. In actuality it was only about a young man's observations of other people and their cruelty. No where in this book did he find anyone kind and this is not how human nature is. While many men and women are reduced to the lowest levels of human behavior most are not and somehow rise above the horrors of war. I was very disappointed in how the story unfolded. The ending was typical of a cynical look at human nature.", "overall": 2.0, "summary": "Not what I expected", "unixReviewTime": 1395014400, "reviewTime": "03 17, 2014"}
{"reviewerID": "A2NV8ECUE5QPAW", "asin": "B007OMTFAI", "reviewerName": "Chris Cennedy", "helpful": [0, 0], "reviewText": "This is an authentic, well-written memoir by a man who lost his young wife. She suddenly and inexplicably died at the age of 39, leaving two young children. For an American such as me, it provides an interesting glimpse into the British social services. One can only hope he will find love and companionship again. He sounds like a terrific man and an excellent father.", "overall": 5.0, "summary": "Good Read", "unixReviewTime": 1404172800, "reviewTime": "07 1, 2014"}
{"reviewerID": "A2T7JK9FLC8V0N", "asin": "0739403133", "reviewerName": "S Riaz \"S Riaz\"", "helpful": [0, 0], "reviewText": "This is the fourteenth novel in the Albert Campion series and was published in 1952. The book begins with Meg Elginbrodde and Geoffrey Levett in a taxi. Levett is a wealthy businessman, used to getting what he wants and he is desperately in love with Meg and intends to marry her. The problem is that since their engagement was announced, Meg has been receiving photographs from her husband - who she believed had died in the war. She has turned to Campion and Detective Chief Inspector Charles Luke for advice, when a meeting is proposed between her and her former husband. The man she glimpses across the fog bound platform of a station is certainly not her husband, but the mystery deepens after he is questioned and released.What follows is an extremely atmospheric mystery; set in a post-war, weary London in a middle of a pea souper fog. As events escalate, Levett goes missing and witnesses are killed. A convict called Jack Havoc has escaped from prison – he is hunting a “treasure”, while Luke and Campion search for him in the “Smoke,” which is the fog bound city of London. There are some wonderful characters, such as the saintly Canon Avril, the brilliantly named Tiddy Doll and the elusive Havoc himself – the Tiger of the story.I had only read one Campion novel before and I found myself a little lost so far into the series, as obviously you were meant to know some familiar characters. However, Campion himself did not feature strongly in the book, meaning that it worked quite well as a stand-alone story. London itself – battered, weary, down at heel – is almost a character in itself. Everyone stumbles around, unable to see and events are revealed slowly, almost as glimpses through the fog. If you are interested in London shortly after the war, then this novel gives you a great view of the City at that time and is worth reading just for the historical aspect of the book.", "overall": 4.0, "summary": "The Tiger in the Smoke", "unixReviewTime": 1399766400, "reviewTime": "05 11, 2014"}
{"reviewerID": "A2LAO2UWPY9PMQ", "asin": "1494841223", "reviewerName": "A.M Madden", "helpful": [1, 1], "reviewText": "L.L. Collins captured my attention with her first book Living Again. I was captivated with the story of Kayley and Ben. I love her style of writing and fell in love with her characters. As much as I loved her first book, I think I loved Reaching Rachel even more. Rachel and Devin's story was real, and heartbreaking, and passionate, and I couldn't put it down once I started it. I will basically read anything L.L. Collins writes from here on in.", "overall": 5.0, "summary": "Absolutely loved it!", "unixReviewTime": 1397952000, "reviewTime": "04 20, 2014"}
{"reviewerID": "A3I3WFIS8DUHLH", "asin": "B00JTK3IHO", "reviewerName": "Amazon Customer", "helpful": [2, 2], "reviewText": "I enjoy and love reading Scott's book I recommend them to anyone. Anomaly was great I started reading it and couldn't put it down until I finished it and then I wanted to read more of it when I came to the end of the book. You didn't know what would come next with each turn of the page it was full of a lot of things this book is a must read you will not be disappointed. I can't wait to read more.", "overall": 5.0, "summary": "this book was great and awesome", "unixReviewTime": 1402185600, "reviewTime": "06 8, 2014"}
{"reviewerID": "APFHNZ5XXQ87R", "asin": "B00DJK31TK", "reviewerName": "Blanka H", "helpful": [0, 0], "reviewText": "I love lynda chance and even though this was a short story the sex itself made it so worth it.. Need me a Logan!", "overall": 4.0, "summary": "yum", "unixReviewTime": 1394150400, "reviewTime": "03 7, 2014"}
{"reviewerID": "A3LZA698SQPCXE", "asin": "0763662585", "reviewerName": "Trevor L \"God is on the side of the army with...", "helpful": [1, 2], "reviewText": "Seth dies and wakes wakes up naked laying on the ground like the opening scene from 28 days later. Instead of being dead he has been transported to England where he grew up. But everything is desolate and deserted. A very engaging read, perfect for a weekend at the beach.", "overall": 5.0, "summary": "I Am Legend Meets The Matrix", "unixReviewTime": 1392768000, "reviewTime": "02 19, 2014"}
{"reviewerID": "A2WXVAY473ST5N", "asin": "1476726507", "reviewerName": "Linda Burton \"Gabbie\"", "helpful": [0, 0], "reviewText": "This is a great read. Both my husband and I loved it and laughed our way through it. Tim is a wonderful man. The book is almost free of offensive words which makes even better. I strongly recommend it.", "overall": 5.0, "summary": "Tim", "unixReviewTime": 1389916800, "reviewTime": "01 17, 2014"}
{"reviewerID": "A34ORA68UOVDL3", "asin": "0739480766", "reviewerName": "doctorjack", "helpful": [0, 0], "reviewText": "was very pleased with the story -you get so involved you think it"s real. can hardly wait to read the next series that continues with the same characters in the sunrise edition", "overall": 5.0, "summary": "fantastic story", "unixReviewTime": 1402444800, "reviewTime": "06 11, 2014"}
{"reviewerID": "A23AL8WF0PJSTS", "asin": "1494205823", "reviewerName": "Patti J Lanfair \"pjl\"", "helpful": [0, 0], "reviewText": "How can you believe believe someone you just met over someone who has been a part of yourlife for the longest. Find out more as you continue to enjoy this good story", "overall": 5.0, "summary": "The truth will open your eyes", "unixReviewTime": 1404000000, "reviewTime": "06 29, 2014"}
{"reviewerID": "AC1NUNBGFRL7X", "asin": "B00J2E2R9C", "reviewerName": "Robin Surface", "helpful": [0, 0], "reviewText": "The only reason I didn't give this one 5 stars is that I thought maybe things could have been a little more interesting. I was hoping that the authors would make Ana queen of the zombies because she was able to communicate with them and find out why they were doing what they were doing. Maybe that's too weird. I just thought that whole scene with her screaming at the zombies and then being able to walk away unmolested was more pivotal than it apparently was. Maybe it was just one of the fabled Hurley birds. lolThis was a compelling story and kept me invested to the end. Well worth reading.", "overall": 4.0, "summary": "Final installment wraps things nicely", "unixReviewTime": 1403568000, "reviewTime": "06 24, 2014"}
{"reviewerID": "A7Q4OHCC8DSFV", "asin": "0764206370", "reviewerName": "KAT192837465", "helpful": [0, 0], "reviewText": "This book had too many plots with sub-plots........that had sub-plots....that had sub-plots........I could read 2 chapters and then that was usually enough to put me to sleep. Too many words needed to tie all of the plots together. Concentrate on two or three plots and expand those stories, don't jump around. This author needs to learn to concentrate on one theme (not eight)", "overall": 2.0, "summary": "Rather boring", "unixReviewTime": 1399680000, "reviewTime": "05 10, 2014"}
{"reviewerID": "A6WVCLM2UDM6D", "asin": "0718178122", "reviewerName": "BJR", "helpful": [0, 0], "reviewText": "This novel will definitely brighten your summer, so get it and have fun. The quirky characters and situations have me waiting for the sequel which will be available in Dec 2014.", "overall": 5.0, "summary": "A hilarious debut novel", "unixReviewTime": 1403222400, "reviewTime": "06 20, 2014"}
{"reviewerID": "A2T7HKQH5GTZBH", "asin": "1423216679", "reviewerName": "Regena Carney", "helpful": [2, 2], "reviewText": "As dry as this information can be, this quick study makes for a nice, quick reference to keep handy for regular use.", "overall": 5.0, "summary": "Robert's Rules of Order Quick Study", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "A2514EM4H99ZK4", "asin": "0802424619", "reviewerName": "J. Aaron lindsey", "helpful": [0, 0], "reviewText": "This is the first book I've read in the Jonathan Edwards series, but it won't be the last. Strachan and Sweeny do a wonderful job explaining Edwards teachings on the afterlife. I recommend highly.", "overall": 5.0, "summary": "The afterlife is real", "unixReviewTime": 1391385600, "reviewTime": "02 3, 2014"}
{"reviewerID": "A2R55EE2HMCSBD", "asin": "0486297136", "reviewerName": "kent skalland", "helpful": [0, 0], "reviewText": "This book provides several paths the story could have taken. A good book to sit and read at a pace that details can be used later.", "overall": 3.0, "summary": "The circular staircase", "unixReviewTime": 1390867200, "reviewTime": "01 28, 2014"}
{"reviewerID": "A2WRLYVFFMHKZE", "asin": "1620612917", "reviewerName": "Diane Granzow", "helpful": [0, 0], "reviewText": "The story line was very good. Loved the characters and how their relationship evolved, The erotic sex scenes were great. The story was short and sweet and had a happy ending, What more could I want.", "overall": 5.0, "summary": "Loved It !", "unixReviewTime": 1396483200, "reviewTime": "04 3, 2014"}
{"reviewerID": "A2HPTKF4GBDHEA", "asin": "0989740633", "reviewerName": "Amazon Customer", "helpful": [1, 1], "reviewText": "There is honestly nothing better than a book that brings you in and makes you forget all of life, but one that does that AND makes the character feel like friends and real life people is so much more fun to read. My love for Alexander and Olivia began with Beautiful Mess and has continued to grow. My bloodshot eyes from lack of sleep is more confirmation of that love (and the 2 re-reads since the initial). Can not wait for this story to continue. I both anticipate and dread the moment Olivia discovers her past and the secrets that have been kept from her and fear the heart break I will experience with Alexander if she chooses to run to deal with the emotions. I hope that the growth Olivia experienced emotionally in Tragic Wreck help her to deal with the pain of the truth. Another bonus to a great book, is the friends in the book. I believe our friends are an extension of us as people who help us grow and loved the relationship not only Olivia had with Mo/Kiera, but the bond that Alexander formed with them too.Side note: love an author that includes playlist and incorporates music into books. It adds another life to the story.", "overall": 5.0, "summary": "Obsession Continues", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "ADQZ0QQLVN0MN", "asin": "1477823131", "reviewerName": "Diane Meier", "helpful": [0, 0], "reviewText": "Truly enjoyed reading Dragon's Triangle. Just enough suspense and romance to entertain. Even through predictable plot twists I didn't want to put the book down.", "overall": 4.0, "summary": "Beach reads", "unixReviewTime": 1400371200, "reviewTime": "05 18, 2014"}
{"reviewerID": "AUOE80JEJFX49", "asin": "1477599177", "reviewerName": "happy reader", "helpful": [0, 0], "reviewText": "This book has a flavor of muffins for any taste. Not a lot of fancy ingredients, simple to make, tasty to eat. The different butter spreads are a bonus. Mix and match flavors to the muffins. Tasty!", "overall": 4.0, "summary": "Muffins for any taste", "unixReviewTime": 1391990400, "reviewTime": "02 10, 2014"}
{"reviewerID": "A3SZP36YSIG3G2", "asin": "B007144QCG", "reviewerName": "KM", "helpful": [0, 0], "reviewText": "Aside from mild inaccuracies concerning the time period (women didn't wear crinolines in the 1890s) I found this story to be pretty nice.", "overall": 4.0, "summary": "Didn't seem realistic.", "unixReviewTime": 1393891200, "reviewTime": "03 4, 2014"}
{"reviewerID": "A2Z2PUSK7CV01L", "asin": "0786271019", "reviewerName": "Texas Daughter \"Texas Daughter\"", "helpful": [0, 0], "reviewText": "of the series. The story was good, however, the font and spacing in the book changed and made it difficult to read.", "overall": 3.0, "summary": "Good continuation", "unixReviewTime": 1404086400, "reviewTime": "06 30, 2014"}
{"reviewerID": "A3JBKFAFTIICJF", "asin": "0425259919", "reviewerName": "Lady Hecate \"Lady Hecate\"", "helpful": [0, 0], "reviewText": "There is not much to not like in this book. The Heroine, Charli, is likeable, feisty and challenging. Thed Hero, Grant.....well....what can I say......a great Dom. I could not wait to read Grant's story. His appearances in the other two books had me wanting to read about THE man....the owner of the club. Owners of a BDSM club is always my favorite Doms. Once again, this book actually had an interesting storyline that went with the book well and not page after page of BDSM sex. Don't get me wrong, I like erotic books but some books like Fifty Shades was way over the top in sex scenes which became page turners. It is a very romantic book and when you finally hear all of Grant's story, you are pulled into his sadness because his love, his wife, his mate, was so great. You also felt sorry for Charli because she loved him so much but would not settle for nothing less than a true relationship. Now....what I did not like in this book is that the BDSM scenes seemed a little bit more darker than what I am use to. Usually, it is someone else in the club who is receiving the beatings and the two main characters observe. Not this book and she gets beaten hard.....not spanked with the hand (but that happens too by someone else because Grant is sharing????) I do not care for where the Sub gets beaten so hard that she cannot lie on her back because it is so sore. I guess I am old school and I am not into being shared. If I am a Sub, I sub for only one person and that would go on the List. Of course, in this book, that is somehow forgotten. I also do not care for two guys on one girl at the same time and it seems to happen in the "A Loving on the Edge Novels." I am just not into that and I cannot see a person who is new at this sort of life would like it either. My feathers get sort of ruffled when the beatings over something so minor occurs. This feminist does not care for that, and I cringe when the scene is played out. Of course, the writer happens to write that the Sub is a feminist but somehow she puts her feelings aside when being dealt with when she has done something wrong, which to me, is such a small thing. I have no problems with bondage, the scenes, the displaying of the Sub in a scene for all to see, but it is really hard to get past the beatings. That is something too dark for me. I prefer Doms who are not into that sort of thing as well. But all in all, I did give this book five stars because I love how Mrs. Loren writes, and I did not want to give it four stars simply because I shy away from beatings and it seems that others like it. She makes her Doms very appealing and one cannot help but like her Subs. As I stated earlier, I love owners of BDSM clubs. They are the most interesting and the erotic scenes are fantastic. Do I recommend this book, you bet. Just be prepared for the more darker side of BDSM.", "overall": 5.0, "summary": "There is not much to not like in this book", "unixReviewTime": 1401408000, "reviewTime": "05 30, 2014"}
{"reviewerID": "A2XJ32ASDVTGIV", "asin": "1623153794", "reviewerName": "A. Halferty", "helpful": [0, 0], "reviewText": "I thought this book delivered sound advice for anyone who is considering or going through a divorce. It offers a common sense approach in preparation and research, and help in dealing with emotions, family, friends, finances, attorneys and much more. Lots of up-to-date online resources are listed so you can educate yourself. The book states that the better prepared you are, the better you will be to overcome this process and get through it. Several sound strategies are laid out for gaining information, knowledge and knowing what your rights are. Easy to read and covers what I think are critical areas.", "overall": 5.0, "summary": "Practical advice and lots of resources", "unixReviewTime": 1395705600, "reviewTime": "03 25, 2014"}
{"reviewerID": "A1IGVCKFDJA58C", "asin": "1466231971", "reviewerName": "penny", "helpful": [0, 0], "reviewText": "Love this guys stuff. Can't wait to read more of his books. This was number two and I am getting close to starting number three", "overall": 4.0, "summary": "Love it", "unixReviewTime": 1395705600, "reviewTime": "03 25, 2014"}
{"reviewerID": "A2G1MCHJV8XRPL", "asin": "0615676863", "reviewerName": "Whitney Catchings", "helpful": [0, 0], "reviewText": "This is a wonderful continuation to the billionaire bachelor series. I really enjoyed the twist and turns add to this addition of the series.", "overall": 5.0, "summary": "Runaway heiress", "unixReviewTime": 1394150400, "reviewTime": "03 7, 2014"}
{"reviewerID": "A3CWLUQRIXN0CO", "asin": "0321934962", "reviewerName": "khowt418", "helpful": [2, 2], "reviewText": "I recently purchased a Nikon D7100. It has every button/setting you can think of and then some. This book really helped me understand the camera and how to use all of its functions to help me take better shots.If you are going to shoot with a D7100, this book should be in your library.", "overall": 5.0, "summary": "Great book.", "unixReviewTime": 1394236800, "reviewTime": "03 8, 2014"}
{"reviewerID": "A3OAYEQBLHVE09", "asin": "B006WEE1DK", "reviewerName": "Courtney Washington", "helpful": [0, 0], "reviewText": "This story was so much better than the first. It was well written and sweet. I could not put it down. Ms. Sinclair, nice job.", "overall": 5.0, "summary": "Winner!", "unixReviewTime": 1388966400, "reviewTime": "01 6, 2014"}
{"reviewerID": "A1IEV8OIW2281N", "asin": "0330412701", "reviewerName": "Mrs. Sandi C.", "helpful": [0, 0], "reviewText": "Liked the book a lot. Not your typical Baldacci book, but this one stood out a lot also. Glad to have tried it", "overall": 5.0, "summary": "Great Book", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "AK6QV6O8CR00X", "asin": "0991888146", "reviewerName": "Cycist \"SciFi fan\"", "helpful": [3, 8], "reviewText": "Another EMP story where the hero is of course ex-military, already ready, a leader of men and whatever cliches you can think of. Straightforward one dimensional plot. A book for teenage boys.", "overall": 2.0, "summary": "Predictable and simplistic", "unixReviewTime": 1401062400, "reviewTime": "05 26, 2014"}
{"reviewerID": "A3IWM2EU4BUMSD", "asin": "B00DY8HASU", "reviewerName": "tka3nme", "helpful": [0, 0], "reviewText": "Such an emotional book. I have been waiting for this book since I finished with the first one and it did not disappoint. I love Nova and Quinton. And can't wAit till the next one comes out.", "overall": 5.0, "summary": "five plus stars", "unixReviewTime": 1391472000, "reviewTime": "02 4, 2014"}
{"reviewerID": "A1WV2NIS0X5DU7", "asin": "0307576531", "reviewerName": "Grace M. Zanatta \"zquilter\"", "helpful": [0, 0], "reviewText": "It is interesting how those folks in the 19th century travelled the world. A really gripping read about a great author", "overall": 5.0, "summary": "really interesting story about Robert Louis Stevenson.", "unixReviewTime": 1401667200, "reviewTime": "06 2, 2014"}
{"reviewerID": "AH8JV14H7EXZ3", "asin": "1499535392", "reviewerName": "NMG", "helpful": [1, 1], "reviewText": "Often felt frustrated (especially with the Media), wanting to throw my kindle accross the room type of book. That is how I know it's good. Amy Harman captured my heart with Running Barefoot, I then read everything she wrote and watch and anticipate the next release. Not only do you fall in love with the characters, she has a way of making you feel like you need to be a better person. In a society quick to judge based on the info fed to us by the internet, tv, and radio this book reminds us that not everything is real. We hear what they want us to hear. Everytime I read a book by Amy Harmon I feel like I have been given a gift. A gift of entertainment, a gift of knowledge, a gift of real emotions for imaginary characters who represent so much in the real world.", "overall": 5.0, "summary": "I believe in Bonnie and Clyde", "unixReviewTime": 1402963200, "reviewTime": "06 17, 2014"}
{"reviewerID": "A2J5WSHCQB67H7", "asin": "0143057588", "reviewerName": "Dennis E Teel", "helpful": [0, 0], "reviewText": "This book kept me going and I didn't want to put it down. One of the best ones yet. It was a great reading experience.", "overall": 5.0, "summary": "One of the best ones yet", "unixReviewTime": 1398297600, "reviewTime": "04 24, 2014"}
{"reviewerID": "A3D10HMUIQUNVQ", "asin": "B00JMQQCLY", "reviewerName": "ellenmarique", "helpful": [1, 1], "reviewText": "Can't wait to try some of the recipes. They sound good. only problem is I would have liked it to go to my Regular Kindle. It went to my phone :(.", "overall": 5.0, "summary": "cookbook", "unixReviewTime": 1402099200, "reviewTime": "06 7, 2014"}
{"reviewerID": "A21Z3DTCOFTU41", "asin": "0316210919", "reviewerName": "Debra Brown", "helpful": [0, 0], "reviewText": "I interestingly predictable. While the storyline contained fresh ideas, the plot was shallow. Having multiple crimes going simultaneously was somewhat wearisome for the reader. Patterson's need to muddy the pages of a pleasing mystery with multiple sub plots was somewhat disappointing; However, a good Alex Cross story is still worth reading g.", "overall": 4.0, "summary": "Review of Cross My Heart", "unixReviewTime": 1389398400, "reviewTime": "01 11, 2014"}
{"reviewerID": "A3VZ9V7T1TESLE", "asin": "1496129628", "reviewerName": "HNS", "helpful": [0, 0], "reviewText": "So many words to explain this book but amazing is what comes to mind first!! Ms. Harlow could write five more books about these two and I'd enjoy them just the same!!!!", "overall": 5.0, "summary": "loved!", "unixReviewTime": 1396224000, "reviewTime": "03 31, 2014"}
{"reviewerID": "A2BC7EJ5G94GEQ", "asin": "B00IKUQPVU", "reviewerName": "Amy Taylor", "helpful": [1, 1], "reviewText": "7 Principles of Inspiring Kids to Be Leaders is a parenting kids guide with leadership tips and education for children in all ages. It teaches parenting with love and logic, leadership vision, leadership theory and practice, leadership rules, skills for new managers, and child development and education.Out of all the leadership books for children this one stands out. Author Hannah Raybans has delivered, in a clear and concise manner, an excellent guide providing everything you need to get your child on the path to becoming a great communicator, a leader and a responsible adult.I highly recommend it! It will help you to nurture your child and provide them the best chance at a successful future.", "overall": 5.0, "summary": "Excellent Guide to Leadership Theory and Practice!", "unixReviewTime": 1393891200, "reviewTime": "03 4, 2014"}
{"reviewerID": "A2PW3LUBBOEG05", "asin": "1940014018", "reviewerName": "MoonlightReader", "helpful": [0, 0], "reviewText": "Princess Ashling is excited to see her father, thinking he is going to brand her to make her officially part of the pack. But when Ashling and her mother get there they learn that he intends to marry her off, even though she is only 14. Ashling and her mother protest, but it is Ashling's brother who persuades their father to let Ashling wait a few more years before she is to be married to her intended. A few years pass and Ashling and her mother are found by their pack's enemy. They run back to her father for protection and it's decided that Ashling should go into hiding with Baran, a sort of lone wolf. While living with him she meets Grey. He's not a werewolf but there is something about him that she can't put her finger on, plus she is very interested in him. Grey reciprocates the attraction, but many obstacles stand in the way of their happy ever after.This story started out great and kept me interested. It's definitely unique compared to other werewolf stories I've read. I was a little turned off that Ashling was only 14 at first; I thought I was going to have to read about a 14 year old, but then in the next chapter, a few years pass, so that was good news for me.Ashling is a headstrong female. She doesn't let anyone, including her father tie her down. Basically, she does what she wants. She had great character traits, but I still had a little trouble feeling connected to her.Let's talk about chemistry between Ashling and Grey. I could tell the attraction was immediate; but for the rest of their relationship I just felt like something was missing. I can't put my finger on it though. I honestly didn't care if they were together or not. I didn't feel the love as much as they were saying it to each other.The story kept me very interested in the beginning, then I did get a little bored towards the middle, but the ending picked up again and I really couldn't put it down. All in all, Bloodmark was a good book. And the bonus is that it's the first book of a series. The ending got a lot more interesting to me, and I think the second book is going to be even better.My Rating: 3 1/2 out of 5 stars~Pam*****I received this book free from the author, in exchange for an honest review.*****", "overall": 3.0, "summary": "It's definitely unique compared to other werewolf stories I've read.", "unixReviewTime": 1389744000, "reviewTime": "01 15, 2014"}
{"reviewerID": "A1X77KUMBENQY7", "asin": "1484843207", "reviewerName": "Julianna Petrassi", "helpful": [0, 0], "reviewText": "Yeah a happy ending! Lovely written and very funny. Victor and Sarah are just so perfect together! Read this book!", "overall": 5.0, "summary": "Awww", "unixReviewTime": 1394755200, "reviewTime": "03 14, 2014"}
{"reviewerID": "AZA0ZZ1S590QU", "asin": "0991213106", "reviewerName": "upontheroof", "helpful": [1, 1], "reviewText": "I for one am someone who appreciates when an author can tell a great story and not have it drag on. Sitnalta is a one sitting read but I broke it up over three evening reading sessions. I agree with another reviewer that the names are a little crazy and I did struggle with those at first, but then again Chewbacca was a strange name too and we now all know that. Princess Sitnalta is a very sweet and noble character and the story has many classic fairytale/fantasy situations but the ending is unique and the story was just fun and refreshing.", "overall": 4.0, "summary": "Sitnalta is a fun read", "unixReviewTime": 1390780800, "reviewTime": "01 27, 2014"}
{"reviewerID": "A2KWBVYNSY915A", "asin": "B00DL5T200", "reviewerName": "Carol S.", "helpful": [0, 0], "reviewText": "The story plot was figured out by the 3rd chapter. The chances of a PI getting into a murder & not having the case taken over by the police & the PI stonewalled is a million to one. It just does not happen. With that in mind, it made a great read for a lazy afternoon.", "overall": 3.0, "summary": "Nice storyline but a bit of a stretch from reality", "unixReviewTime": 1401062400, "reviewTime": "05 26, 2014"}
{"reviewerID": "AA0B3WJZDG6GR", "asin": "1492976423", "reviewerName": "Michelle", "helpful": [1, 1], "reviewText": "I read all the time. I am a fangirl of so many authors. I stalk their facebook pages and so when all of my favorite authors start gushing about a book...you listen. So I listened and got this book and don't regret it. It is a beautiful story that draws you in and doesn't let you go.", "overall": 5.0, "summary": "Buy this book.", "unixReviewTime": 1392940800, "reviewTime": "02 21, 2014"}
{"reviewerID": "A3JR6D5B9WF5J8", "asin": "0345533666", "reviewerName": "Danielle", "helpful": [0, 0], "reviewText": "Extremely well written, told in the 1st person of Andy Barber - Assistant DA who finds himself unexpectedly on the defense team in a case he started off prosecuting.Very suspenseful, as it tells his story and that of Jacob; leaving you formulating theories and ideas, on one hand sympathizing with Andy's dilemma, on the other hand questioning is thought process and objectivity.Really one to keep you up reading past bedtime!", "overall": 5.0, "summary": "Excellent writing", "unixReviewTime": 1395187200, "reviewTime": "03 19, 2014"}
{"reviewerID": "A1X0GH0K2QN4LO", "asin": "0099453452", "reviewerName": "William B. Scott \"Bill Scott\"", "helpful": [0, 0], "reviewText": "A gripping, clever plot with intriguing detail about firearms a professional sniper would use. Maybe the author was abused by government "officialdumb" and is expressing his anger and a penchant for getting even via this terrific story. Having lost a wonderful son to a low-IQ Las Vegas cop's fear and abject stupidity, I fully understand Hunter's use of fiction as an asymmetric warfare strategy. - William B. Scott, author, "The Permit."", "overall": 5.0, "summary": "Terrific \"Accountability\" Novel", "unixReviewTime": 1393459200, "reviewTime": "02 27, 2014"}
{"reviewerID": "A15B8D8TBOHLO1", "asin": "B00HJ64CUM", "reviewerName": "Heidi Lis", "helpful": [2, 2], "reviewText": "This book was simply amazing. Once I started it, I could not put down until I finished it. Stayed up til 3 A.M.- had to know who did it...Did not see that coming, must say a pleasant surprise. Great read, worth every penny.", "overall": 5.0, "summary": "I never stopped laughing!", "unixReviewTime": 1402704000, "reviewTime": "06 14, 2014"}
{"reviewerID": "A18WP5PU1HFNCX", "asin": "0373207271", "reviewerName": "Kktexas", "helpful": [1, 1], "reviewText": "I read the first one in this series and really regretted purchasing the 2nd one. I was pleasantly surprised with the pace and storyline. It was better but not great.", "overall": 3.0, "summary": "2nd story is better", "unixReviewTime": 1389830400, "reviewTime": "01 16, 2014"}
{"reviewerID": "A2A37CA2585XG7", "asin": "0988262592", "reviewerName": "Ruslan Moskalenko \"Ruslan Moskalenko\"", "helpful": [0, 0], "reviewText": "I think the authors had a very clear plan in mind. They probably got together and said something like: "Hey, let's write a business novel about Theory of Constraints applied to IT Ops" - that sums up what they were trying to achieve.If you have some knowledge about IT Ops, business novels and TCO, this books sounds as straightforward and predictable as a rail. So it's not the greatest fiction (the plot is fairy tale simple, the characters are over simplified), not the greatest IT Ops case study (while the technical language is perfectly real, the idea of, let's say, offloading "brute force" processing to an external cloud provider or reducing the release cycle within days or fighting off the auditors - all those examples look turning the company around seem hard to believe) and not the greatest book on TCO (for example the book doesn't tell about TCO limitations and side effects stressing out only the positives).However, having said all of that, the book creates an instantly recognized mix of a typical IT Ops management problems and it touches the nerve of hundreds of thousands people in IT Ops or working closely with IT Ops, so it gotta become a big hit. It gives a very accurate snapshot of what problems IT Ops are facing now and what the mainstream approaches to solve those problems are at them moment. So definitely worth reading if you want to get familiar with the current state of IT Ops.", "overall": 5.0, "summary": "An attempt to present a study book on it ops management in a fiction format - worth reading", "unixReviewTime": 1391299200, "reviewTime": "02 2, 2014"}
{"reviewerID": "A2C65Q43TMDAAX", "asin": "1935797050", "reviewerName": "Jack M.", "helpful": [0, 0], "reviewText": "An excellent entry in the Quarry series that deviates from the formula and advances the character to a new level of tragedy and revenge. Immensely enjoyed!", "overall": 5.0, "summary": "Immensely enjoyed!", "unixReviewTime": 1389571200, "reviewTime": "01 13, 2014"}
{"reviewerID": "A3H6D63ET8ORVL", "asin": "075536189X", "reviewerName": "Debrahow", "helpful": [1, 1], "reviewText": "I loved this book. It was very interesting to hear the background involved in training a helper dog and Luis's background in the service. I learned a lot, but was entertained at the same time. Of course, I have a a Golden Retriever myself, so I may be biased, but mine is as dumb as a brick! Great book.", "overall": 5.0, "summary": "wonderful book!", "unixReviewTime": 1396569600, "reviewTime": "04 4, 2014"}
{"reviewerID": "A372W7XI70338O", "asin": "B005COO1X6", "reviewerName": "Gma315", "helpful": [0, 0], "reviewText": "Not one of my favorite Stephen King novels but it was an interesting read. I was expecting a more exciting ending but it seems he got bored and just threw together an ending.", "overall": 2.0, "summary": "Mile 81 Stephen King", "unixReviewTime": 1389225600, "reviewTime": "01 9, 2014"}
{"reviewerID": "A287TSG45VZ280", "asin": "0399143793", "reviewerName": "Michael Smith", "helpful": [0, 0], "reviewText": "I enjoyed reading this book as I did the first book in the series. The story was fast paced and easy to digest. I'm planning to read many more "Reacher" novels in the future. Great book!!", "overall": 5.0, "summary": "Never a dull moment!", "unixReviewTime": 1396656000, "reviewTime": "04 5, 2014"}
{"reviewerID": "A127GQTJI4FP6Q", "asin": "0671207148", "reviewerName": "alwayslearning", "helpful": [0, 0], "reviewText": "Felt like I was floating down the river...Solid explaination of cause and effect, with first person follow-up to keep it real.", "overall": 4.0, "summary": "Wow", "unixReviewTime": 1388707200, "reviewTime": "01 3, 2014"}
{"reviewerID": "A2PTT46J9K2PEW", "asin": "B00FEI40A4", "reviewerName": "J. Glass \"drocket@drocket.net\"", "helpful": [1, 1], "reviewText": "While the zombie genre is rather absurdly overcrowded with knock-offs, I found this one to be pretty enjoyable. It felt a lot like a well-written novelization of a sci-fi zombie video game, which is to say that while its not terribly deep, it was a fun adventure that kept me reading.Overall, I found this book pretty enjoyable.", "overall": 4.0, "summary": "Pretty good", "unixReviewTime": 1393545600, "reviewTime": "02 28, 2014"}
{"reviewerID": "A3ARRP9DTXEUTE", "asin": "0849922070", "reviewerName": "Sue Ellison", "helpful": [3, 4], "reviewText": "This was an excellent book. It evokes emotions ranging from joy to sorrow. I found myself in tears at times and laughing out loud at others. Oh if we could all have the simple way of thinking and ability to believe that children are given.", "overall": 5.0, "summary": "Heaven", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A1GJO2KPDTHD6T", "asin": "1470115921", "reviewerName": "Zelda Allard", "helpful": [0, 0], "reviewText": "As a mother myself, the great loss of a small son must have been so unbarable. all through the book I was on edge as to would he ever be reunited with his family.", "overall": 4.0, "summary": "Great true story", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "A1C1SB2OQ1VK33", "asin": "0395988144", "reviewerName": "islandgrl", "helpful": [0, 0], "reviewText": "Tons of useful information and great pictures packed into this small book, great size for a field guide considering all of the information they were able to cram in there! Recommend to anyone interested in knowing more about plants, there medicinal uses, or even just wanting to identify things growing around them.", "overall": 5.0, "summary": "great big little book", "unixReviewTime": 1402704000, "reviewTime": "06 14, 2014"}
{"reviewerID": "ASQJ99LLRFH69", "asin": "0425257207", "reviewerName": "Mom of a Teen", "helpful": [0, 0], "reviewText": "Even though the premise of this series is so unrealistic, you get so caught up in the story that you really want to believe that there is someone who can talk to the animals.A great read and I look forward to the next book in this series.", "overall": 5.0, "summary": "If u are an animal lover this is a must read", "unixReviewTime": 1400371200, "reviewTime": "05 18, 2014"}
{"reviewerID": "A2F09EWKV3MTO2", "asin": "1605295566", "reviewerName": "StillWaters", "helpful": [0, 0], "reviewText": "She explains a lot of the benefits of yoga and how you only need to do a 15 minute routine to see benefits. I am disappointed that she only includes routines for specific needs, like if you have headaches or low energy. She does not explain how to put together your own routine or have just basic routines.", "overall": 3.0, "summary": "Overall disappointing", "unixReviewTime": 1403308800, "reviewTime": "06 21, 2014"}
{"reviewerID": "A2YFVBH39EPU58", "asin": "1623955432", "reviewerName": "MJT \"mje_1964\"", "helpful": [1, 1], "reviewText": "My girls and I liked the book. Very nice that it was dedicated to the children from Sandy Hook. Didn't realize that when I purchased it.Cute story and cute pictures. Liked the illustrations from San Francisco area. Very nice!", "overall": 5.0, "summary": "we liked this short sweet book!", "unixReviewTime": 1394841600, "reviewTime": "03 15, 2014"}
{"reviewerID": "A35HZ08YJDET76", "asin": "0312601433", "reviewerName": "Mosaicdog", "helpful": [0, 0], "reviewText": "A good all round reference manual. I needed this for college english but found that I have used it in other classes to check apa vs. mla styles. In addition, it has good vocabulary review as well as tips for good writing style.", "overall": 5.0, "summary": "A good all round reference manual", "unixReviewTime": 1404604800, "reviewTime": "07 6, 2014"}
{"reviewerID": "A21UQZ6QFWLWNK", "asin": "0345472322", "reviewerName": "Fotini Vourlekis", "helpful": [0, 0], "reviewText": "Loved it !Very common sense,in essence insist on what you need to do,just do it,and your brain eventually will get itand will support your mind.Your brain has to recognize it first,and that happens when you insist on doing,what you know you have to do.", "overall": 5.0, "summary": "Loved it! Very common sense", "unixReviewTime": 1404691200, "reviewTime": "07 7, 2014"}
{"reviewerID": "AXKW44JCG3ZMH", "asin": "B00GYG3QQO", "reviewerName": "EricJT", "helpful": [0, 0], "reviewText": "I got a lot out of this book. Some of what he says is just logical, but there is a lot more here, and he provides a good share of real life experience-based wisdom. I recommend taking notes in the form of an outline as you go along so you can retain more of his recommendations, steps and insights. This book is very useful, insightful and empowering.", "overall": 5.0, "summary": "Really quite good", "unixReviewTime": 1402876800, "reviewTime": "06 16, 2014"}
{"reviewerID": "AF03MRRM6C5QC", "asin": "0975949039", "reviewerName": "Jreviewit", "helpful": [1, 1], "reviewText": "I have many good things to say about the book, “12 Titanic Lessons for Christians” written by Charles C. Hagan, Jr. I’m a fan of the 1997 movie about the ill-fated ship and I’ve seen the movie many times. Because of that, I was immediately drawn to the book’s title. After I finished reading Hagan’s book, I can easily say that the author delivers on his promise to motivate, challenge, and empower his readers. He made an excellent choice for a topic. The book’s cover art alone is intriguing. Even though I’ve read some other books about the Titanic, I learned some new information here that I didn’t know. The author has obviously done his homework.I LOVED the poem from Dr. Benjamin Mayes that is on the back cover. I’d never read that before. There’s an important lesson in those rhymes that all of us can benefit from. I think it was very appropriate to feature it in this book.The author poses many thought-provoking questions. For instance, if you were among the over fifteen-hundred passengers on that ocean liner and you knew the end of your life was at hand, would you have lived your life differently? Whoa, reality check! Our lives can be over in the blink of an eye. We get so tied up and self-absorbed at times that we can miss some of the warning signs of danger ahead. Sometimes it takes a Titanic-sized event in our own lives for us to pay attention to what’s really going on around us. Perfect peace can only be found through God alone and His gift is there for all of us. That some choose to reject or ignore the gift is one of the consequences of sin in a fallen world.The writing is good and the book is easy to read. I liked the format a lot – references at the bottom, fascinating trivia, historical facts, effective use of bold type, historical drawings and photos. Most importantly, the scriptures the author chose to accompany his work are right on point in my opinion. The lesson titles are aptly named and I appreciated his modern-day parallels. There were a few minor grammar issues, but I didn’t see anything huge. There was also one confusing sentence for me with some awkward wording. Other than that, I was engaged and eager to read the whole book.There are so many takeaways. One of my favorite lines: “That we need to be grateful for every moment that we spend on earth.” Amen to that! I think this book would appeal to a vast audience, Christians and also Non-Christians looking for perspective on the trials of life.", "overall": 5.0, "summary": "Well Done", "unixReviewTime": 1401667200, "reviewTime": "06 2, 2014"}
{"reviewerID": "A3GB4WEW3WWEAR", "asin": "0151329168", "reviewerName": "W. Cheung \"FRACP\"", "helpful": [0, 0], "reviewText": "Essentially Lewis explains why certain experience we call "love" can be perverted. For example, affection can be contaminated by self-centeredness, friendship by exclusivity, romantic love by idolatry. The solution, as expected, is agape - the unconditional love, but only in the context of a deep understanding of the love of God, and our ultimate dependence on Him. Lewis' comment on bereavement towards the very end of the book indeed sounds a bit harsh, but it by no means detracts from the overall soundness of the book. Overall a very good read.", "overall": 4.0, "summary": "Concise and clear", "unixReviewTime": 1388534400, "reviewTime": "01 1, 2014"}
{"reviewerID": "A9Q1KQ2EJNGHJ", "asin": "0310421314", "reviewerName": "Kathie Howard", "helpful": [0, 0], "reviewText": "Easy to read but not so easy to navigate. A quick & easy tutorial at the beginning thst can be referenced easily when needed would be nice. I always have difficulty finding commentary, etc. on the passage I'm reading.", "overall": 3.0, "summary": "Review", "unixReviewTime": 1397174400, "reviewTime": "04 11, 2014"}
{"reviewerID": "A3DF8VG62J5SAC", "asin": "1494762404", "reviewerName": "Lectora", "helpful": [0, 0], "reviewText": "Buenísimo. Buena representante de la escritura ríoplatense , se lee de un tirón muy divertido y los personajes masculinos bien porteños.", "overall": 5.0, "summary": "Lectora", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A27KCUMF7FKF75", "asin": "1439136807", "reviewerName": "Tylen Brown", "helpful": [0, 0], "reviewText": "This was probably my favorite of the IAD series. I have been waiting for a book on Regin while reading through them all was glad to finally hear her story. Declan was the biggest villian in the other books I'm suprised Cole was able to change my mind about him. Great writing!", "overall": 5.0, "summary": "Wow", "unixReviewTime": 1389916800, "reviewTime": "01 17, 2014"}
{"reviewerID": "A2D4ZC7CRROR44", "asin": "0316080705", "reviewerName": "Wendy A. Augustine", "helpful": [0, 0], "reviewText": "Wonderfully different world! Less swords and sorcery and more intrigue and personality. Loving the complex characters and their relationships. More!", "overall": 4.0, "summary": "great series", "unixReviewTime": 1388534400, "reviewTime": "01 1, 2014"}
{"reviewerID": "A1Z6HBI0PSWNGQ", "asin": "B00H5HYUS4", "reviewerName": "Donna Caubarreaux", "helpful": [0, 1], "reviewText": "I enjoyed reading this. It is for young girls, but loved, loved, loved the author's way of presenting it.", "overall": 5.0, "summary": "Short and sassy!", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "A18GU873E36379", "asin": "006210229X", "reviewerName": "gbare", "helpful": [0, 0], "reviewText": "l liked all the Valentine Valley series. Hope there are more to come. Emma is an excellent story writer. hope to read more of her books", "overall": 5.0, "summary": "a valentine novel", "unixReviewTime": 1396569600, "reviewTime": "04 4, 2014"}
{"reviewerID": "A1NMUPG3KMWRZM", "asin": "B00HGFG4ZW", "reviewerName": "Meek \"JerseyGirl\"", "helpful": [1, 1], "reviewText": "First book I have read like this but it was well written the characters are lovable especially Dean, I really like that kid...some parts of the book I felt really bad for Jason. Wow I was really proud of how Damon dad react and not judge or disown his son. This was a really ute short story.", "overall": 4.0, "summary": "cute short story", "unixReviewTime": 1391904000, "reviewTime": "02 9, 2014"}
{"reviewerID": "ATR04H7BHCK0Q", "asin": "0671778633", "reviewerName": "Janet Russell", "helpful": [0, 0], "reviewText": "A pleasant quick read. Period love story. Great for light reading. Characters well defined but no real mystery. good beach weather rread", "overall": 4.0, "summary": "fun light hearted reading", "unixReviewTime": 1395878400, "reviewTime": "03 27, 2014"}
{"reviewerID": "A9ND166CX91HI", "asin": "1494415488", "reviewerName": "Jada Ryker \"Author of the 'Takes a Dare' Series\"", "helpful": [1, 1], "reviewText": "Sizzling Adult RomanceIn Cruel Intentions, by Riiva Williams, beautiful Brie O'Hara is making her mark during her first year at Yale. Classes, dorms, sororities...and hot young college men are a whirl of fun and excitement.Rich Barns' dark skin and hazel eyes are an explosive combination. When Brie (literally) knocks him flat, the lovely Brie stars in his heated fantasies.Ms. Williams spices the story with contemporary vernacular, and expertly tells the story from multiple points of view. The characters are realistic, with Brie an independent woman who knows what she wants. Rich's friends Nick, Peanut, and Jay-P are richly portrayed, with Jay-P harboring a dangerous secret.", "overall": 4.0, "summary": "Sizzling Adult Romance", "unixReviewTime": 1390262400, "reviewTime": "01 21, 2014"}
{"reviewerID": "A16DCMKK61FIL2", "asin": "1484131738", "reviewerName": "P. Creasy \"Picky ol' woman\"", "helpful": [0, 0], "reviewText": "This is really not a novel for adults. It would be better for a tween/teen/adolescent audience. For a youngster, I think it might be quite enjoyable (if they're into the zombies thing).", "overall": 3.0, "summary": "A bit young", "unixReviewTime": 1396396800, "reviewTime": "04 2, 2014"}
{"reviewerID": "AJM3OPFSGXPGU", "asin": "1940699037", "reviewerName": "Inishowen Cailn", "helpful": [2, 3], "reviewText": "This story hooked me from the beginning and the further I got the more I couldn't put it down. All the twists and turns in the plot were well written and unpredictable.It didn't end for Persephone in the way that I was anticipating so I will be reading the next in the series in hopes that all is not lost.One or two things that I didn't like was how young Persephone was. I didn't like the big age gap between herself and the two male characters.I also would have liked more interaction between the ordinary Regency world and the magic world; maybe see more manipulation of the ordinary world by the magi.All in all an enjoyable read and I look forward to the rest of the series.", "overall": 5.0, "summary": "well worth reading", "unixReviewTime": 1400371200, "reviewTime": "05 18, 2014"}
{"reviewerID": "ANB0FENLKZ7VI", "asin": "0399160477", "reviewerName": "bno", "helpful": [0, 0], "reviewText": "I enjoyed it, but was put off by the number of characters, and how bogged down it got with whodunit. The warfare was interesting, and am wondering if it is the state of the art now?the flashbacks were a good thing, and were easy to understand. since I'm one of your older readers, I like trying to understand the younger J Ryan, etc.", "overall": 3.0, "summary": "Another J Ryan book...", "unixReviewTime": 1391472000, "reviewTime": "02 4, 2014"}
{"reviewerID": "A1OF8VLGFF2P1W", "asin": "0307956393", "reviewerName": "V. Lease", "helpful": [0, 0], "reviewText": "While I found some of the examples interesting, this book read a bit like listening to a motivational seminar. Not that its a bad thing but it flowed more like powerpoint bullet points then a book. I took away some good thinking points but had a bit of a hard time finishing it.", "overall": 3.0, "summary": "A bit like a seminar", "unixReviewTime": 1394409600, "reviewTime": "03 10, 2014"}
{"reviewerID": "A14TF696TL5YL4", "asin": "0615511600", "reviewerName": "SRWest", "helpful": [1, 1], "reviewText": "This book is pretty heavy and dark...Trevor's journey as he steps out of rehab is a sad, dark lonely path. I connected right away to the main character and from the moment you are introduced to him you are routing for him. I really enjoyed the author's writing style, I really felt like I was inside Trevor's head the whole book, I know it threw some readers off the lack of quotations and such, but I thought it was unique and refreshing...and isn't that the point of reading...being taken to places you haven't been? Give this book a read, you will feel it.", "overall": 4.0, "summary": "Good breakout book from this first time author", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "A3VJ5PHMG2AI72", "asin": "1620291401", "reviewerName": "J. Augustine", "helpful": [0, 0], "reviewText": "All God's Children was a bit of a different take on WWII historical fiction. Instead of the usual ultra-brave heroine and hero fighting against the evil Nazis in any way they can; we have Beth, a Quaker pacifist, and Josef, a doctor in the German army who happens to believe in the Germany he remembers from childhood.After reading several WWII fiction books that mostly center in the U.S., England, or France, it was nice to read a slightly different view of things in Germany and of the many German's that fought against Hitler's regime in a myriad of ways.One of the fascinating things about the book is all of the Quaker beliefs and methods that are key to the story and how certain characters act. I knew almost nothing about the Society Of Friends, they are a little-written-about group, and so the fact that this story centers around a Quaker girl and some of her family and friends made this story even more interesting for me.The author does an excellent job of immersing the reader in WWII era Munich. I could see everything so clearly in my mind's eye. I felt like I was walking the streets of the city with Beth and Josef, stepping inside the apartment with Uncle Franz and Aunt Ilse, hiding in the basement from falling bombs with Liesl.The last third of the book did seem a bit hurried to me, causing the historical detail and character emotions to take a little dip.That aside, All God's Children was very enjoyable and I will definitely be looking forward to the release of the next book in this series, Simple Faith.The combination of setting the story in a little used WWII location, the Quaker pacifism, (old) German patriotism, detail in locations, interesting characters, and just the history, make this a great book for lovers of Historical fiction.(I received a copy of this book from the publisher through The Book Club Network in exchange for my honest review. All opinions are my own)", "overall": 4.0, "summary": "Experience Munich and its dangers in World War 2!", "unixReviewTime": 1388966400, "reviewTime": "01 6, 2014"}
{"reviewerID": "A1ATRRNN1VDZ7C", "asin": "1452664862", "reviewerName": "Victor Thomas", "helpful": [1, 1], "reviewText": "Shirley Jones is a lovely woman who in some ways had a charmed career, working with the likes of Cagney, Lancaster and Brando, starring in some films that have withstood the test of time, pulling off a coup a la Donna Reed with an Oscar-winning against-the-grain turn, and cementing her fame with an iconic TV show at just the right moment. She's a pro. This autobiography is revealing as she shows her ribald side, and addresses her fatal attraction to her famous husband Jack Cassidy and her unlikely but successful marriage to Marty Engels.When you think Shirley Jones, you think pretty, pleasant, warm, calm, talented. She wants to add another dimension to that image, and makes some odd choices in what she writes about, the most talked-about being her obsession with sex, and that mars the book. Is it autobiography or confessional or how-to- manual or what?But it's her book, her way, and that's what you get.", "overall": 3.0, "summary": "Interesting take on image versus reality", "unixReviewTime": 1402272000, "reviewTime": "06 9, 2014"}
{"reviewerID": "A3GLCV22X9S34N", "asin": "0446618861", "reviewerName": "Denise Smith", "helpful": [0, 0], "reviewText": "This is book 3 of the Warrior Maids of Rivenloch and the last book in this series and what a series this was.THANKS for such an awesome read.", "overall": 5.0, "summary": "A Must Read", "unixReviewTime": 1390521600, "reviewTime": "01 24, 2014"}
{"reviewerID": "A3TFKKJHIV2B5A", "asin": "1477822577", "reviewerName": "Amazon Customer", "helpful": [3, 4], "reviewText": "This is one hot action packed book that will take you through every emotion known to mankind! I laughed cried got mad and happy a very great escape! Very well written glad to see the direction it went!! Keep writing!", "overall": 5.0, "summary": "Kept me on my toes with every word!!", "unixReviewTime": 1401235200, "reviewTime": "05 28, 2014"}
{"reviewerID": "A1GLQIJXVVZOOQ", "asin": "B00JH4J9HU", "reviewerName": "Joel Mann", "helpful": [0, 0], "reviewText": "After all of William Lane Craig's book on philosophy and apologetics, I expected more depth. The book is short and has some very interesting points but left me saying there has to be more.", "overall": 3.0, "summary": "Sort of disappointing", "unixReviewTime": 1402704000, "reviewTime": "06 14, 2014"}
{"reviewerID": "A2SUDR7YAI2ZQA", "asin": "1613420129", "reviewerName": "Edward Bosnar", "helpful": [0, 0], "reviewText": "Can't add much to all of the positive reviews above. It's really that good, a thoroughly enjoyable read, and you don't necessarily have to be a fan of pulp fiction to appreciate it.Otherwise, I've been a fan of Saunders' books since I first read his sword & sorcery (or more correctly sword & soul) adventure Imaro way back in the early 1980s. I hope there are more Damballa novels in the pipeline...", "overall": 5.0, "summary": "Damballa", "unixReviewTime": 1394323200, "reviewTime": "03 9, 2014"}
{"reviewerID": "A1WTSLDMU0VA8O", "asin": "1497415543", "reviewerName": "Jacks", "helpful": [0, 0], "reviewText": "I have been blogging away for 2 years now and only making little bits of money here and there - pennies for all my hard work. I didn't know what to do next or how to get to the next level with my site. Frustrated, I sought out help from Kindle books. This one is truly a gem. If you're looking for ways to monetize your blog and don't know how to achieve the next steps, now's the time - pick this book up for specific, helpful, necessary advice and a complete overview of the ways to monetize a blog *or* many other kinds of websites.", "overall": 5.0, "summary": "My Blog Needed This Book", "unixReviewTime": 1396310400, "reviewTime": "04 1, 2014"}
{"reviewerID": "A19UT0OPQCDR8", "asin": "0425274462", "reviewerName": "Andrea Thompson", "helpful": [0, 0], "reviewText": "Because I'm literally the last of my close friends to read True, I'm going to be brief.Now that I've read two books in the True Believers series, I will say that it is a fantastic series. No hesitation. I love that True was more than it seems from the description, that it wasn't simply the story of the bad boy and the virgin. It wasn't a sexual awakening or frivolous at all. True is a love story, pure and simple, of a two people who are near opposites, but fit together so very perfectly.Tyler and Rory were not one-dimensional characters, defined by the sexuality or social standing. They both held many layers, and that complexity really bonded me to both. Tyler grew up in such turmoil, and works so hard to keep his brothers together. He wants more out of life, but doesn't know that he'll ever get it. Tyler has a tough exterior, but is vulnerable with Rory. He's cocky, yet not really conceited. He was brave, yet scared to give his heart to a woman whom he deems too good for him. I loved that he loved Rory exactly as she was.Though I couldn't find any of myself in Rory, I connected with her deeply. I would say that is testament to McCarthy's ability to bring these characters off the page, make me love them. Rory was...she was just Rory. Logical to a fault, quiet and unassuming, always withholding herself and her emotions. I loved who Rory became with Tyler. That she wasn't afraid to push him, question him, and love him. Once Rory decided to open up to Tyler, it was like she became a better version of herself. She was still way literal, but she also joked more. Hugged more, allowed people to truly know her.Oh gosh, I sound like a sap. And I am one when it comes to books such as this. I think what I love about this series is that it is just so real. The characters don't come packaged with the right words or decisions, they mess up and they grovel and they learn and grow. That sort of experience is what I love so much about reading.There was a moment in True that struck me hard, and I haven't stopped thinking about it since. It's when Tyler and Rory are discussing Streetcar Named Desire, and Rory just can't understand why these characters are behaving so illogically..."If they would just communicate with each other, they could resolve all their issues in ten minutes.""That's what makes the book so realistic," he told me dryly. "Real people don't discuss this shit with each other."He had a point. I didn't really discuss my emotions with anyone either. I had spent most of my life being a silent observer. "Oh."In one fell swoop, I got it. Literature wasn't intended to be about perfect people, it was about flaws, very real and very deep human flaws.That is an excellent reminder, I think.If you're looking for a deep, intense, sexy and fun New Adult series, True Believers is, without a doubt, one of my favorites.", "overall": 5.0, "summary": "I'm a Believer", "unixReviewTime": 1404086400, "reviewTime": "06 30, 2014"}
{"reviewerID": "A1I15JQZJ5U0X7", "asin": "B007UVWFI2", "reviewerName": "sonia troy", "helpful": [0, 0], "reviewText": "The best book ever.Interracial romance at its best. Shara Azod is the best writer ever . There is no doubt the women in her books feel loved.", "overall": 5.0, "summary": "perfect", "unixReviewTime": 1399939200, "reviewTime": "05 13, 2014"}
{"reviewerID": "A21WBL8GK987GN", "asin": "0399164162", "reviewerName": "S. G. PERRY", "helpful": [0, 0], "reviewText": "I enjoy the Stone Barrington books, but they are becoming more like a Saturday afternoon serial with thin short plots. I feel like the last two books and the next one could be combined into one novel. I look forward to each new book, but I feel like the should be more substantial for the money.", "overall": 3.0, "summary": "Stone needs to require background checks on women he sleeps with ...", "unixReviewTime": 1397001600, "reviewTime": "04 9, 2014"}
{"reviewerID": "A1J8KE8HL0NFQM", "asin": "1461154472", "reviewerName": "Tara Zollman", "helpful": [0, 0], "reviewText": "Easy, entertaining read. Kept my interest and I loved all the characters!!! Makes me want to go make myself a drink!!", "overall": 4.0, "summary": "Vegas!", "unixReviewTime": 1404777600, "reviewTime": "07 8, 2014"}
{"reviewerID": "A9HOPKDBRDL5P", "asin": "0982556403", "reviewerName": "Crissy Williams", "helpful": [0, 0], "reviewText": "Very boring, couldn't finish it.", "overall": 1.0, "summary": "One Star", "unixReviewTime": 1404691200, "reviewTime": "07 7, 2014"}
{"reviewerID": "A1UB8NW5VQZLAI", "asin": "0062279874", "reviewerName": "Married my dream guy", "helpful": [0, 0], "reviewText": "This book will take you back to those moments your belly did a flip flop every time you got a call or text from that special someone,. And you'll feel the sensation all over again. Oh, and the steamy scenes were hot!", "overall": 5.0, "summary": "DEVOURED IT!!!", "unixReviewTime": 1393459200, "reviewTime": "02 27, 2014"}
{"reviewerID": "A26C0XTUTLFL8V", "asin": "1401938906", "reviewerName": "Tom Sjoberg", "helpful": [0, 0], "reviewText": "To help in a more positive attitude, this is a good book to read. I'm still working on these experiments, so this is a work in progress.", "overall": 5.0, "summary": "Good book", "unixReviewTime": 1394841600, "reviewTime": "03 15, 2014"}
{"reviewerID": "A1YVAPR9JE0LA0", "asin": "1623151538", "reviewerName": "defrost", "helpful": [0, 0], "reviewText": "This GF diet book has great recipes and explains that the pre-packaged junk at the store has tons of sugar in it. Therecipes are great and the information is helpful, especially since I've only been Gluten Free for 9 weeks.", "overall": 5.0, "summary": "GF Diet book is Great", "unixReviewTime": 1394150400, "reviewTime": "03 7, 2014"}
{"reviewerID": "A1TCR6P857HIP2", "asin": "B00K9ZLUB4", "reviewerName": "c indy", "helpful": [0, 0], "reviewText": "This was an easy read and it was fun to read. Kept me wanting to keep reading it not put it down.", "overall": 4.0, "summary": "Refreshing", "unixReviewTime": 1401580800, "reviewTime": "06 1, 2014"}
{"reviewerID": "A3UNA0ZFXL2Y0T", "asin": "061834697X", "reviewerName": "Patricia Lock", "helpful": [0, 0], "reviewText": "Very interesting and I was born in 1937 in Nebraska. We lived in the back of a grocery store and I remember the heat and wet sheets; cannot stand heat to this day. It was all true, but rather drawn out and tediously redundant. A great lesson for the later generations to preserve our resources; both land AND water.", "overall": 3.0, "summary": "but rather drawn out and tediously redundant. A great lesson for the later generations ...", "unixReviewTime": 1404950400, "reviewTime": "07 10, 2014"}
{"reviewerID": "A3HGH9PINDWNS0", "asin": "0800733207", "reviewerName": "LaJoyce", "helpful": [0, 0], "reviewText": "Jill Smith has made 1 and 2 and Samuel come alive. She dressed it so well that each page was an appetizer for the next page! I could not put Michal down until I've devoured it all! The characters are defined so well that the concious relishes the richness of the time. Its a book desiring for more!", "overall": 5.0, "summary": "A true beauty", "unixReviewTime": 1404000000, "reviewTime": "06 29, 2014"}
{"reviewerID": "A3R5MZN69VFVHX", "asin": "1627620516", "reviewerName": "Kathy K", "helpful": [0, 0], "reviewText": "Great job! Loved this book, it had the right touch of everything in a m/m book I look for. I would recommend this story to anyone who loves to laugh, cry and root on the sexy guys. It had just enough sex heartbreak and love for me. I'm not going to do spoilers bc that's what the blurb is about. Sit back and enjoy.", "overall": 5.0, "summary": "You Can See Me", "unixReviewTime": 1395964800, "reviewTime": "03 28, 2014"}
{"reviewerID": "A20MYFNLY6TGNL", "asin": "1497414865", "reviewerName": "The Book Fairy \"The Book Fairy\"", "helpful": [2, 2], "reviewText": "Abandonment can affect us in many ways. In this story we deal with how Colton "Bull" dealt with it. Having his father leave him as a child and a former lover cheat on him has taught Bull to close his heart out. He lives by a strict code of Honor and Trust. Cross or lie to him and you little chance of having him in you corner again. There has been 1 exception but it was a long road. But when Bull meets Chaise he learns that there may be another exception to his rule.Chaise has come to Steel Security for help, but when she attempts to approach Mr Steel she is stopped by Bull and his team members. Finding herself attracted to Bull she realizes that she has more than one secret that will affect her relationship that she feels quickly growing. Can they overcome the secrets she hides. Can he protect her and give her hie heart? It is a Wicked twist of fate when all is revealed.This book was exciting to read. First you are trying to figure out the secret that she is hiding( which is a big one) Then you have the danger factor for which Bull need to protect her from. Twists and unexpected surprises keep you on your toes. Now lets get to the HOTNESS FACTOR... All I can say is that we would all want to have Bull as your protector. Hot does not even begin to describe the level of steaminess this book contains. Get ready to be hot all over as you read this exciting book. Chaise is one lucky lady!This book keeps your attention and holds it. I loved the journey it took me on, one of forgiveness and acceptance. I loved it and I LOVED BULL!", "overall": 5.0, "summary": "You will want Bull guarding your body!", "unixReviewTime": 1398124800, "reviewTime": "04 22, 2014"}
{"reviewerID": "A1BL65AEJKTY9A", "asin": "B00DK8AQ8K", "reviewerName": "jencaer", "helpful": [1, 1], "reviewText": "This is a well written story that takes place in London in 1819. It is the story of Elizabeth Enderby and Sir Hilary St. John. Elizabeth had escaped from her husband who mistreated her and had fled to London to her sister home. The story tells about how Elizabeth and Hilary met, their lives. Also about how Mr. Enderby finds her and how he ends up murdered. This story gives insight as to how men could and did mistreat their wives. Also about the criminal justice system worked then. It was an very enjoyable read.", "overall": 4.0, "summary": "Devil in my Arms", "unixReviewTime": 1393545600, "reviewTime": "02 28, 2014"}
{"reviewerID": "ALH0GAL4ODB7A", "asin": "1477808612", "reviewerName": "Dennis", "helpful": [1, 1], "reviewText": "The Widow File is a fast paced mystery unfolding bit by bit as the characters are in a desperate run to keep from being killed.", "overall": 4.0, "summary": "Non-Stop thriller", "unixReviewTime": 1394323200, "reviewTime": "03 9, 2014"}
{"reviewerID": "A13IHVRR4JXACC", "asin": "0385015364", "reviewerName": "Gerald Dwyer", "helpful": [0, 0], "reviewText": "An intriguing book, but I am ashamed to admit I sometimes did not fully comprehend what was said, particularly when Chesterton referred to other people (writers) that I am not knowledgeable of. At any rate a good read.", "overall": 5.0, "summary": "Interesting but Complicated", "unixReviewTime": 1392163200, "reviewTime": "02 12, 2014"}
{"reviewerID": "A1LU48RPJMVZE4", "asin": "0470465468", "reviewerName": "DoraeMonty", "helpful": [0, 1], "reviewText": "The content is great, but the printing of the book is terrible. The book looks like a photocopied version of the real book. For this price, I was hoping for a better print quality.", "overall": 2.0, "summary": "Great content. Poor printing.", "unixReviewTime": 1395878400, "reviewTime": "03 27, 2014"}
{"reviewerID": "A1VL7DVSISLBCH", "asin": "B00DV2QBV6", "reviewerName": "PRflowerKTB", "helpful": [1, 1], "reviewText": "What a sweet and very sexy story. I absolutely loved it. Especially the epilogue. Jonah totally cracked me up. #MustRead", "overall": 4.0, "summary": "Short but so damn sweet!!", "unixReviewTime": 1394668800, "reviewTime": "03 13, 2014"}
{"reviewerID": "A1LHSUQ40KB29A", "asin": "0606238409", "reviewerName": "Stacey Turner", "helpful": [0, 0], "reviewText": "This was an exciting story. If you are a Hunger Games fan you will enjoy this book. The main characters are very likeable and even though the story is not realistic, they are. I got into the storyline so much I could not put the book down. Now I have to read the second book. I can't wait for the movie to come out.", "overall": 5.0, "summary": "Exciting story", "unixReviewTime": 1390435200, "reviewTime": "01 23, 2014"}
{"reviewerID": "A1CCQ4QOXVHHQI", "asin": "1477823069", "reviewerName": "J. Templeton \"Lazerguppie\"", "helpful": [1, 2], "reviewText": "This is a great addition to the urban fantasy/para realms. The story is original, well written with likable and well developed characters. There is a bit of mystery, macabre happenings, romance, action. This series has it all. There are 3 books in the serial series. The first two are complete and the 3rd has just started. Worth the time.The story is written as such you don't know who you want to win. It's a lesser of two evils situation and you really want the herione to triumph.", "overall": 4.0, "summary": "Great story", "unixReviewTime": 1390003200, "reviewTime": "01 18, 2014"}
{"reviewerID": "A15N0JTFGTCWP0", "asin": "067943335X", "reviewerName": "Norma", "helpful": [0, 1], "reviewText": "this book is strange i wouldnt recommend this book to kids under the age of 11 too much of reality", "overall": 4.0, "summary": "Too far", "unixReviewTime": 1390694400, "reviewTime": "01 26, 2014"}
{"reviewerID": "A2IEEN02KO9ISO", "asin": "140168761X", "reviewerName": "lighthouse88", "helpful": [0, 0], "reviewText": "Returning to the plantation after the war and after waiting for her father’s lawyer to read his will, Charlotte is now on her way back to her home in the Deep South to see what remains, if anything, of the home in which she once lived. While she knows there has been destruction of personal items or the items have been stolen, Charlotte has promised her father she will again try to raise the rice crop and live on the land.The paragraph above states the setting of the fictional tale that is actually based on a real historical figure named Elizabeth Waties Allston Pringle. Can you imagine what this woman witnessed in her lifetime? How about thinking of what her life was like before and after the Civil War? Charlotte is based loosely on the real life experiences of Elizabeth, and the author, with some minor adaptations, places her novel near where the real plantation where Elizabeth lived. After you read the fictional tale, the author shares how she came to learn about this unique woman and her life.There are characters that portray what southern people must have felt during Reconstruction along with what many veterans suffered during a horrific war. They had to learn to live in a new society that was still forming. With so few eligible men to marry, we see a jealous female antagonist see that she indeed ends up with the one man she sets her eyes on no matter who gets hurt in reaching her goal. Yellow fever is an epidemic that costs many lives in New Orleans in 1868. With the destruction so complete, few can prove they own the land on which they return to.Dorothy Love writes a moving masterpiece that keeps the reader reading until they see how the unknown ending is revealed. I simply cannot express how much the real woman Elizabeth, along with others who lived in the south before, during and after the war, had to learn how to start all over. Readers see how a woman who has her faith shredded by heartbreak learns to trust God again in a time when each day brings new trials, triumphs or tragedy. What a tenacity people displayed to endure and then to thrive each day. Perhaps like our female lead character they did so by looking to God and putting one foot in front of the other time and time again. A historical novel rich with history, faith, perseverance and romance! Don’t pass up reading this book!", "overall": 5.0, "summary": "Carolina Gold", "unixReviewTime": 1389312000, "reviewTime": "01 10, 2014"}
{"reviewerID": "A1JMOJ0PB15MFN", "asin": "0989293505", "reviewerName": "Barb Nielsen", "helpful": [0, 0], "reviewText": "The book was able to grab my attention from the very beginning and kept my attention throughout the entire book. While this book was fictional, it's very sad to know that this kind of thing is actually happening right under our noses to our children in the United States of America. My heart breaks for these young girls who have their childhoods stripped away. That made it hard to read the book, but at the same time, I had to know how the story ended for Brianna and her family. The book is well written and informative at the same time.", "overall": 5.0, "summary": "Page Turner", "unixReviewTime": 1394755200, "reviewTime": "03 14, 2014"}
{"reviewerID": "A2P4KN4A41G4A3", "asin": "B00J6GU2AC", "reviewerName": "reader", "helpful": [1, 1], "reviewText": "Though the storytelling parts of Seals actions and their consequences, the ability in characterization and plot all rate high, this is really half the pages filled with soft-porn. I enjoy romance and sensuous scenes - which are emotional. This is very graphic, so the skipped pages, because of the distasteful extraneous descriptions -- of body parts in activity-- would make me skip buying her again unless many pages of story were not very inexpensive. Also, the people are not the kind I would like as friends, because it is their character I object to. I would pay for half the reading, for half the cost - on sale. Otherwise, there are other good authors around that I do not skip their word-craft, though Sharon is good at that, if she would be more mature in her tastes.", "overall": 4.0, "summary": "Good writing sinks to depths of smut", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "A6KL75SSQCIK7", "asin": "0060779632", "reviewerName": "Intlskygirl", "helpful": [0, 0], "reviewText": "The story is good, but can be hard to follow. She jumps back and forth without much explanation. The story really took shape about three quarters thru. I can't say I liked or disliked, but I am glad to have finished.", "overall": 3.0, "summary": "slow and steady", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "A3368J3TM3VWXI", "asin": "0684846659", "reviewerName": "natvisu", "helpful": [0, 0], "reviewText": "He begins with a brilliant point, the fact that life is navigated by choices you've made between what actually happen and how you 'choose' to response to it and you can improve and make that gap seems longer by what he teach.Follow by another brilliant point that most organizations still haven't unleashed the potential of human by using carrot-and-stick, not the whole person model, which people will be driven by the deeper purposes.There are also many good points from lifetime experience of man who has been through a lot, meeting and teaching many people and organizations. He seems to anticipate most of the responses audience have with his teaching. I wish I could one day join some of his workshops.But at times, he tries to connect the dot that doesn't seem to exist. Most of the points he made are brilliant, but the way he consolidate it into the model is not.At times, he tries to force the idea to fit into the fact and introduce some diagrams that doesn't make sense.At times, he tries to make it more philosophical than necessary.These weak links reduce his credibility as I go through the pages.Together, it seems he aim at the 'theory of everything' about leadership, which I think he did well in covering all important points. It is good and useful if you screen out some ideas that doesn't make sense, and be not too rigid in application of what he teach in real life.", "overall": 3.0, "summary": "Good book, could be shorter", "unixReviewTime": 1400976000, "reviewTime": "05 25, 2014"}
{"reviewerID": "A3BP86ZB4ME309", "asin": "0854351647", "reviewerName": "Bookworm1808 \"bookworm\"", "helpful": [1, 1], "reviewText": "Testimony of Light by Helen Greaves is a book about communication she received from her good friend, Francis Banks, formerly known as Sister Frances Mary of the Community of the Resurrection. When Frances died, she promised to communicate, telepathically, from the other side of the "veil." In Helen's book, she describes a message from Frances that death is not to be feared, for it is not the end. "Death of the body is but a gentle passing to a much freer life." Our soul is then gently, "cleansed, healed and released," as we continue through various stages of transition toward "The Light." She explains that our earthly bodies and personality continue to transform thru many levels or planes of light, which she describes as having different vibrational frequencies, until we are eventually one with "The Light." She then goes on to use this reasoning for such statements as Christ's words, 'I am the Light of the World," for he projects pure light and as people transform, they "Let their light shine."These words are very comforting for people who continue to ask if there is an afterlife. However, her description of the afterlife broken up into various groups who are set to perform various jobs, etc are a bit difficult to conceptualize. Certainly, this view of the afterlife differs from what we are taught and led to believe in various churches or religions. Testimony of Light is an interesting concept of the afterlife and touches on the possibility of reincarnation and the reasons why some may have that experience.The book and the message it puts forth will certainly test your faith and ideas of the afterlife. Some parts of her theory are difficult to understand. The book should be read slowly and perhaps a second time before forming an opinion.", "overall": 4.0, "summary": "Death is not to be feared", "unixReviewTime": 1398816000, "reviewTime": "04 30, 2014"}
{"reviewerID": "AESRC0HKL4I21", "asin": "B00IVPOBT2", "reviewerName": "TrinityJo", "helpful": [0, 0], "reviewText": "The Starborn Ascension is set a few years after the greyskin virus is set loose. While this one was good, it didn't grab and hold me like the other trilogy did. Could be because I had just finished the Starborn Uprising trilogy when I started this, not sure. It was kind of cool seeing the world a couple of years after the virus happened but I found that I didn't feel attached to any of the characters like I did with most of the characters in the other trilogy. Perhaps the next one will give me that connection as I believe this one was meant to just give us a feel for the world. This is a good post-apocalyptic read for ages 13+ (or if younger kiddos watch any zombie tv shows/movies or play zombie games, this probably won't be a problem).", "overall": 3.0, "summary": "Anywhere But Here", "unixReviewTime": 1405728000, "reviewTime": "07 19, 2014"}
{"reviewerID": "ABAZWQ2BERIOT", "asin": "0515131679", "reviewerName": "Avid Reader", "helpful": [0, 0], "reviewText": "This is my first murder mystery in all my years of avid reading. I seldom read fiction but this one caught my eye. I found it very entertaining except for the smoldering sex scene (spoiler?) that I felt unnecessary to the story especially to be included in such detail. The author already had me hooked, no need for fantasy sex. This is why I steer away from romantic fiction also. Implausible sex is just that. I am more interested in the story and where the author is taking me. But I will overlook that and remove a star because of it. Otherwise for me, it would have been 5 stars.", "overall": 4.0, "summary": "New experience", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "A13V28UUIX6SVH", "asin": "0988695138", "reviewerName": "Maggie 79", "helpful": [0, 0], "reviewText": "Jillian Dodd, IFLY. Hate Me is definitely the best book of the series so far!!!! I don't know what the neck I'm going to do until August!", "overall": 5.0, "summary": "BEST book of the series so far!!!", "unixReviewTime": 1397260800, "reviewTime": "04 12, 2014"}
{"reviewerID": "AYEURIPPPM0A6", "asin": "0451236661", "reviewerName": "Chanda G. Mckee \"brooks\"", "helpful": [0, 0], "reviewText": "Cute read, no brainer. As a dog lover it's easy to see why humans pick the dogs they do.... Good beach read.", "overall": 2.0, "summary": "The Lucky Dog Matchmaking Service", "unixReviewTime": 1389571200, "reviewTime": "01 13, 2014"}
{"reviewerID": "AW3T1QT4V4J9P", "asin": "1937715108", "reviewerName": "Fireform \"Reader\"", "helpful": [0, 0], "reviewText": "Very informative read, even for a seasoned cyclist.", "overall": 4.0, "summary": "Well worth the time and $", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "A1NC665PP23A5U", "asin": "0143113496", "reviewerName": "Allison Burke", "helpful": [0, 0], "reviewText": "This is another one of those books that I would have absolutely adored if it wasn't for the ending. Within the banality that is sometimes in the suspense/thriller genre, it read like a literary piece with deep relationships tied into murder and disappearance, whilst being suspenseful yet not rushed. I was completely enamored with its ambition in this genre until I got to the end.I don't do spoilers, so you'll have to see for yourself, but I felt that it sort of ended in the middle of a sentence (as cool as that is in TFIOS, not my thing). I got no satisfaction from it and I felt like all the time I had invested in this novel and its characters was for naught. It soiled my experience with it in a really negative way. At the time, it annoyed me to the point that I refused to read the sequel, but I might check it out; I haven't decided yet.", "overall": 3.0, "summary": "Ending ruined it", "unixReviewTime": 1402099200, "reviewTime": "06 7, 2014"}
{"reviewerID": "A3B07KAS0C0Q2R", "asin": "1602601496", "reviewerName": "Kindle Customer", "helpful": [0, 0], "reviewText": "A lot of humor intended or not. The bad guys were like the three stories. Colorful characters and a good book.", "overall": 5.0, "summary": "Western or comedy?", "unixReviewTime": 1404777600, "reviewTime": "07 8, 2014"}
{"reviewerID": "AHYQOSMW79IWT", "asin": "0061057940", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "I loved this for the pure "anything goes" nature of the disaster. Williams lets people die, let's places collapse, let's weird things happen, just like the probably would if it really happened this way.", "overall": 5.0, "summary": "A ton of fun", "unixReviewTime": 1396137600, "reviewTime": "03 30, 2014"}
{"reviewerID": "A1ICTBVZZ523H0", "asin": "1423168461", "reviewerName": "DeKraut", "helpful": [0, 0], "reviewText": "Let's face it. Daddy cannot always be available to read books to his little princesses. When I am, I do. However, when I am not around to do so, these books are a great way for my kids to read about their own princesses, monsters, etc.A cheapy boom box also purchased on amazon and they are good to go. It also helps to teach my daughter to read, as she is looking for the words she hears even when I cant be there to read to her. We read the books together when we can, but in the meantime, these books are fun for her. Sometimes when I am feeling lazy, we listen to them together instead of me reading!", "overall": 5.0, "summary": "How to be a princess! Do it like Sofia!", "unixReviewTime": 1400889600, "reviewTime": "05 24, 2014"}
{"reviewerID": "A24J7OA7E2C7X", "asin": "061591070X", "reviewerName": "Caroline Clemmons \"Romance Author\"", "helpful": [3, 3], "reviewText": "This collection of western historical romance stories was very enjoyable. In fact, it's hard to choose a favorite from such a wonderful assortment, but I have to admit Jacquie Rogers' story was my favorite. That does not mean I didn't enjoy the other stories. Each one is different from the others. This is a keeper!", "overall": 5.0, "summary": "Wonderful collection", "unixReviewTime": 1388620800, "reviewTime": "01 2, 2014"}
{"reviewerID": "A116NINE21FUNZ", "asin": "B00KPIDRW0", "reviewerName": "cathy", "helpful": [0, 0], "reviewText": "I really loved the first book of this series and was looking forward to follow up. I just couldn't get into this one.", "overall": 3.0, "summary": "I really loved the first book of this series and was looking ...", "unixReviewTime": 1405382400, "reviewTime": "07 15, 2014"}
{"reviewerID": "A2Z2NZ0TL7ZKF6", "asin": "0399256512", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Good book, lots of turns and interesting subject Harlan coben recreates new characters to his stories which blend into his subjects", "overall": 4.0, "summary": "good", "unixReviewTime": 1388793600, "reviewTime": "01 4, 2014"}
{"reviewerID": "A1WVTWOOTP4CZN", "asin": "0985607165", "reviewerName": "Estrella", "helpful": [1, 1], "reviewText": "This book disappointed me so much. Jayne was very annoying in so many ways. Every chapter was a repeat of what happen in the last book, a waste of my time. I constantly found myself skipping paragraphs because it was repeating the same thing. This writer needs to get it together.", "overall": 2.0, "summary": "Disappointed", "unixReviewTime": 1389398400, "reviewTime": "01 11, 2014"}
{"reviewerID": "A28VCFPVVSFEYB", "asin": "1463561520", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Vivid characters and descriptions. The author has created a tale that grabs your attention and I couldn't put it down.", "overall": 5.0, "summary": "Great Read", "unixReviewTime": 1393372800, "reviewTime": "02 26, 2014"}
{"reviewerID": "A1TLFHON514PSD", "asin": "0312674619", "reviewerName": "SV", "helpful": [0, 0], "reviewText": "WOW! Extremely over the top! Sure, I bought the book, read the book and I enjoyed reading the book. The word \"extreme\" doesn't start to cover the plot.... was there a plot? There was a planned wedding, a bride left at the altar, a bride and best man at a honeymoon, 2 erotically uninhibited neighbors and an ex-groom showing up to claim his bride.... And lots of sexcapades that included all. So no- no real plot but you will learn quite a bit reading this one!", "overall": 3.0, "summary": "Extreme...", "unixReviewTime": 1394668800, "reviewTime": "03 13, 2014"}
{"reviewerID": "A2XQMGE2YY88DC", "asin": "0316204366", "reviewerName": "Jiang Xueqin", "helpful": [0, 0], "reviewText": "In "David and Goliath," best-selling author and pop sociologist Malcolm Gladwell examines why underdogs routinely triumph over authority. His answer is that we often misinterpret underdogs, and that because of their experience and circumstances underdogs tend to be tenacious, play by their own rules, and are cunning. Then there's the problem of authority, which in its often expression and extension of its strength over-estimates the enemy and degrades its own authority.For loyal readers of Malcolm Gladwell, and I certainly count myself as one of them, "David and Goliath" is a sure letdown from Gladwell at his peak ("Outliers"). The beauty and facility of his prose are still there, but his thinking -- never his strength -- has become muddied and muddled. He has a habit of making points that are entirely obvious, and sometimes even making points that have no basis in reality. For example, in one chapter on academic achievement, Gladwell assumes that every student at Harvard wants to study STEM, and if they switch from STEM to arts it's become they couldn't hack it. And what is his advice to make sure that America produces enough STEM talent? Encourage top-performing high school students to apply to less prestigious institutions, where they will become a big fish in a small pond and not become lost and insecure as a small fish in a big pond.That argument is intuitive, but Gladwell has a bad habit of trying to wrap his intuitive arguments under the cloak of scientific rigor, and so what often happens is that when you pull the cloak away there's really nothing there at all.", "overall": 3.0, "summary": "The Advantages of Disadvantages, and the Disadvantages of Advantages", "unixReviewTime": 1390348800, "reviewTime": "01 22, 2014"}
{"reviewerID": "A1H26WSWJCBM73", "asin": "B00LF9I7CI", "reviewerName": "Andrew Young", "helpful": [0, 0], "reviewText": "The book that I needed! This book has everything that I needed to get motivation for my workouts as exercising is one of the most important aspect of your health. Becoming disciplined in exercising means that you will be able to control yourself, and who doesn't want to be able to control themselves?! Highly recommend this book!", "overall": 5.0, "summary": "Get determined!", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "A20MODV2C14A8Q", "asin": "0310718376", "reviewerName": "Piety Kirby", "helpful": [0, 0], "reviewText": "Very wonderful book! I recommend this to any person who loves fantasy!", "overall": 5.0, "summary": "Five Stars", "unixReviewTime": 1405036800, "reviewTime": "07 11, 2014"}
{"reviewerID": "AQ6AGWKWMTY8H", "asin": "0385742576", "reviewerName": "PeaTee", "helpful": [0, 0], "reviewText": "WE ARE THE GOLDENS was an amazing read and I enjoyed it thoroughly. It's in a genre I don't normally choose, but good writing will suck me in every time and I thought Dana Reinhardt did a fabulous job giving life and voice to the Golden sisters.We didn't need anybody else. But more than that,we were better without anybody else.The story is about Nell and Layla, their family and friends. They are sisters who are very, very close. Layla's the older sister. She's one of those girls whose life seems charmed. She's smart, talented, loving and athletic. A sensible teen who has her act together. Nell is her little sister. Nell appears to be every bit as gifted and smart as her sister, but she's at an age and a place in her life where she can't see that yet. And for the time being she's in Layla's shadow. But she's okay with that. She loves Layla fiercely.I'll probably always remember where I was andwhat I wore and all that, it was that kind of moment.I could no longer pretend.Something was happening.Something that shouldn't be.And I had absolutely no idea what to do.WE ARE THE GOLDENS is about love and betrayal and the basic human condition. Our inability, on the one hand, to see our own doom racing towards us. And our total freaking cluelessness as to what to do when we see disaster poised to strike someone we love.~This book worked for me on so many levels. The writing was excellent. Nell's voice was a perfect blend of intelligence and innocence. It made her dilemmas believable. I also loved Nell's relationship with Felix, her BFF. Adorable isn't strong enough a word.What I don't understand was Dana Reinhardt's having Nell converse with the dead boys. They were probably there to underscore some subtle point, but I wasn't smart enough to figure it out.I don't have a lot of books in my repertoire to compare this to. But if you enjoyed Swati Avasthi's SPLIT, or Francisco Stork's LAST SUMMER OF THE DEATH WARRIORS, or even Green's FAULT IN OUR STARS, you might want to pick this up.I think the 'undetermined' ending is going to throw some readers. (Lady or the Tiger?) But I also think it's part and parcel of what is going to make WE ARE THE GOLDENS a fabulous book club read. There is just going to be so much to discuss.4.5 Stars for me", "overall": 5.0, "summary": "Couldn't Put It Down", "unixReviewTime": 1401667200, "reviewTime": "06 2, 2014"}
{"reviewerID": "A1JXV4SWMTR3XF", "asin": "0615778844", "reviewerName": "D&D", "helpful": [0, 0], "reviewText": "What kind of medical system tells you that you're doomed to a life of pain and suffering? To me, it's shocking that almost no mainstream doctors and so few \"experts\", much less writers of books like this, are aware that fibromyalgia is a symptom of low thyroid (hypothyroid). Shocking.There are no lab tests for many causes of low thyroid, so at least 80% of us are mis-diagnosed, because your doctor will only treat lab tests, not you. The FREE basal (at rest) temperature self-test is THE gold standard for low thyroid problems and - with your symptoms - means more than any lab test (although most conventional doctors, including endos, won't agree but then they're not trained to understand thyroid problems - go to the Broda Barnes foundation website and click on the \"Educational Info\" button on the left for how to get a list of thyroid-sympathetic doctors in your state.(I'd always suspected a thyroid problem but it was not until, after 20 years of being told all my lab tests were \"normal\", that a Broda Barnes trained doctor finally put me on the road to recovery. A year after I insisted my cousin also see this doctor, she said I'd saved her life.)The basal temperature home self-test will pick up conditions that current lab tests don't, such as thyroid resistance. Most digital thermometers are not accurate so find a good basal digital thermometer, the kind used by women to identify their fertile days.The stopthethyroidmadness website has excellent instructions for this self-test, as well as several for adrenal fatigue, which often goes hand-in-hand with low thyroid. The two most common health problems worldwide, they're rarely diagnosed or treated.I also suggest:- \"The Metabolic Treatment of Fibromyalgia\" by Lowe, a very expensive medical book of more than 1,000 pages, essentially explaining how fibromyalgia is successfully treated with thyroid supplements;- `Hypothyroidism Type 2' by Mark Starr (\"type 2\" meaning the thyroid problems for which there are no lab tests and therefore they don't get diagnosed) explains how all chronic pain is linked to low thyroid, including those involved with fibromyalgia, diabetes, heart problems, both bleeding & blood clots (including strokes) and some cancers. If you have any kind of chronic pain, you need to know that some are calling low thyroid the silent epidemic (silent because officially denied);- \"Hypothyroidism, Health & Happiness: The Riddle of Illness Revealed\" by Steven F. Hotze a good introduction;- As there is rarely more than a brief mention of the benefits of iodine in thyroid books, I also suggest \"Iodine, Why You Need It and Why You Can't Live Without It\" by David Brownstein MD. The latest edition is available as an ebook from drbrownstein[dot]directfrompublisher[dot]comAlso, those with fibromyalgia experience a significant reduction in their symptoms when taking a melatonin supplement and melatonin can reduce some symptoms of IBS, such as abdominal pain. Melatonin increases the conversion of precursor thyroid hormone T4 to the active T3 form. It can reactivate the important but much-ignored thymus gland, which degenerates almost completely over the years. It also improves zinc absorption, which in turn boosts several immune functions. Melatonin therapy also helps spleen recovery, another immune-system component which declines with age. Its ability to improve sleep and dreaming is a tremendous boon to memory. It is one of the most powerful antioxidants made by the body.", "overall": 2.0, "summary": "nothing works long-term, until you address the real cause", "unixReviewTime": 1403049600, "reviewTime": "06 18, 2014"}
{"reviewerID": "A1R0798K5DDQZP", "asin": "B00AMA6OLW", "reviewerName": "Liz \"Andrex\"", "helpful": [3, 3], "reviewText": "Although targeted at children ages 3-8, the author includes ideas at the beginning on how to adapt the plans for younger or older children. The book goes month by month with 4 weeks in each. (4 free weeks over the year.) Each week is a different theme. Some examples are:Calendar * Black History * US Presidents * The Color Green * Rain * Kites * Raised Garden (BTW the word "garden" is missed off the title.) * ABC's which includes both braille and sign language * Snow * MannersNeed inspiration for a particular week? Pick up the book, go to the index and see all the topics.Excellent reading hints are given at the end of the book along with alphabet flash cards. What a nice surprise! HIGHLY RECOMMEND this. No reason to ever be lost for inspiration again!", "overall": 5.0, "summary": "EXTRA reading bonus at end :)", "unixReviewTime": 1401494400, "reviewTime": "05 31, 2014"}
{"reviewerID": "AKWLR0ZIR7AQW", "asin": "1603134336", "reviewerName": "Erika Brown", "helpful": [0, 0], "reviewText": "I will have to grab more stories by Mooney. This was a good quick read with just the right amount of romance and plot. She did a good job shaping the characters and building their romance in a short period of time. Worth the read", "overall": 5.0, "summary": "just the right amount", "unixReviewTime": 1391817600, "reviewTime": "02 8, 2014"}
{"reviewerID": "A1YF9IKTBS468D", "asin": "0307594882", "reviewerName": "LDU-NYC", "helpful": [1, 3], "reviewText": "I'm two-thirds done with this memoir, and I find that it lacks emotion. Lawyers and judges need to be emotionally unattached to their cases, and this book definitely reads like it was written by a lawyer. I find myself asking "how did she feel?" during many of the pages. She talks nothing about her feelings for her boyfriend/husband. Was he her first love? He would visit her every weekend during college -- how did she feel about the long-distance relationship? Did she have any doubts? As for her accomplishments, I still find myself wondering how she felt about herself. I'm sure this book is inspiring to many people, but I was hoping to learn more about the woman behind the robe, not the making of a judge. I'll finish the book because my book club is reading it, but I'm disappointed.", "overall": 2.0, "summary": "lacks emotion", "unixReviewTime": 1388880000, "reviewTime": "01 5, 2014"}
{"reviewerID": "A3N1T46BDWLG7O", "asin": "B00FHQI2KM", "reviewerName": "Pam", "helpful": [0, 0], "reviewText": "This 5th book was as good as the first 4. I hope she continues the series. I would recommend this to any mystery lover.", "overall": 5.0, "summary": "Loved It!", "unixReviewTime": 1396742400, "reviewTime": "04 6, 2014"}
{"reviewerID": "AR0P0DJGD9LZ2", "asin": "1477578749", "reviewerName": "Iam Notgivinganame", "helpful": [0, 0], "reviewText": "Great finish to the first series. Just kept turning pages and could not stop reading. Nice end to a good yarn.", "overall": 4.0, "summary": "Wow", "unixReviewTime": 1398556800, "reviewTime": "04 27, 2014"}
{"reviewerID": "A17BXEYO3C9K68", "asin": "0062110837", "reviewerName": "Chaos Reid \"Freein08\"", "helpful": [0, 0], "reviewText": "Many nights gone, enjoying this very different book. Loved the characters, variety of settings and cultures. Simply amazing, and I want more from this author.", "overall": 5.0, "summary": "Fabulous read", "unixReviewTime": 1392076800, "reviewTime": "02 11, 2014"}
{"reviewerID": "A1K8PBQFFZ4GK5", "asin": "0307917371", "reviewerName": "boysnonna", "helpful": [0, 0], "reviewText": "One of the best books I've ever read. The research for the history was spot on. Plus the love story held lots of surprises. Love learning about history with this quality of a book.", "overall": 5.0, "summary": "Unbelievable book!", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "A2A97QYVK2GFHZ", "asin": "B0084XJP2O", "reviewerName": "L. Conrad", "helpful": [0, 0], "reviewText": "I couldn't wait to start this book. I quickly got wrapped up in the Kindred series a few chapters into book one. I believe anyone who likes paranormal romance books will easily become captivated by this series and Nicola Claire's books. They're great!", "overall": 5.0, "summary": "I AM HOOKED!", "unixReviewTime": 1394582400, "reviewTime": "03 12, 2014"}
{"reviewerID": "AZHE78ABY0CLN", "asin": "B00LWBR25M", "reviewerName": "MissT", "helpful": [0, 0], "reviewText": "Wow! First off, just so you are aware Fall (Cold Mark #1) is a serial novel. In my excitement to read another book by my new favorite author, I didn't see how short this novella is... However, don't let that stop you from diving into this amazing new series.This is a (very) adult sci-fi romance that is exceptionally original. The main character Braita is brave young woman thrust into a terrifying new world. Everything she's ever known is now different. This first novella gets you through the beginnings of how she ends up on the foreign world of Mian, and how she begins living with Malik and Leo. You'll be amazed at the journey you go through in just 8 short chapters, and I guarantee you'll be left wanting more. I absolutely can't wait for the next novella in this series.", "overall": 5.0, "summary": "More praise for Scarlett Dawn!!!", "unixReviewTime": 1405641600, "reviewTime": "07 18, 2014"}
{"reviewerID": "A2W2MAU6KLHHKI", "asin": "B008HYPD58", "reviewerName": "Ally Cat", "helpful": [0, 0], "reviewText": "I love Greek Mythology and this is a really great way to help get younger people interested in it. I loved this book and the sequels are brilliant. The characters are likable, there are a few unexpected twists and a nice romance story. In short there is nothing not to like about this series of novels. I would recommend these books to anyone interested in paranormal romance.", "overall": 5.0, "summary": "Great modern twist on greek Mythology", "unixReviewTime": 1397520000, "reviewTime": "04 15, 2014"}
{"reviewerID": "A1W1X6B0IZ67WN", "asin": "1450803652", "reviewerName": "new mom", "helpful": [0, 0], "reviewText": "I like that there is a song for being too late and washing hands too- definitely makes my little one want to sit on the potty more", "overall": 5.0, "summary": "helps with potty time!", "unixReviewTime": 1402790400, "reviewTime": "06 15, 2014"}
{"reviewerID": "A109FV61O2Y83G", "asin": "B00H8SHNGQ", "reviewerName": "Jeff Soyer", "helpful": [0, 0], "reviewText": "You're just a teenage boy, doing the things boys love to do. Then, someone tries to poison you. You're framed for a fire that injures your friend, and further attempts are made on your life. The killer? It's you! Copied, by S.M. Anderson, from Curiosity Quills Press is a first-rate thriller with science fiction overtones that explores several ethical questions including the issue of genetic engineering, human cloning, and the prospect that a corporation can \"own\" a clone because they own the DNA of that person.More importantly, Copied also examines the theory of nature vs. nurture regarding two identical clones. The protagonists of the story -- very likable ones -- Alexander Mitchell (\"Xan\") and his friend Lacey (a remarkably bright, teen girl) are determined to figure out just who and why someone would want Xan dead.I don't give spoilers, and there are plenty of clever plot twists and action that keep the story moving at a fast pace. Incidentally, while there is certainly room for a sequel, the story is self-contained and a very good read for all ages. I recommend it.", "overall": 4.0, "summary": "(No spoiler review) Copied is a thought provoking sci-fi thriller for all ages", "unixReviewTime": 1390262400, "reviewTime": "01 21, 2014"}
{"reviewerID": "A3MISPG4YIPYU1", "asin": "1848191162", "reviewerName": "Matthew Russell \"Matthew Russell\"", "helpful": [4, 4], "reviewText": "Mitchell has really gifted us with a gem. He provides a clear and concise methodology for connecting the mind into the meridian channels and acupuncture points. His techniques for dredging the channels, although simple, are remarkably wonderful. I couldn't be happier to have picked this one up. Thanks!", "overall": 5.0, "summary": "A wonderful collection of equally accessible and powerful teaching", "unixReviewTime": 1393113600, "reviewTime": "02 23, 2014"}
{"reviewerID": "A1N4Z7QGSV5SDO", "asin": "1478250097", "reviewerName": "KATHLEEN IRENE PATERKA", "helpful": [1, 1], "reviewText": "Tracie Banister's wickedly delicious chick-lit novel offers readers a superb behind-the-scenes-look into the lives of five high profile actresses vying to be the winner of this year's Oscar in the Best Actress category. This high intensity emotional read is delivered with a brilliantly executed cast and craft 10,000 x as powerful than any paparazzi's flashing strobe light. Fabulous and funny, Banister's novel is sure to grab its own place in the spotlight on your 'Keeper Shelf'. Which woman will fulfill her destiny and walk the red carpet to take home the ultimate prize? Don't wait for Oscar night! Grab your copy of BLAME IT ON THE FAME and start reading today.", "overall": 5.0, "summary": "THIS BOOK DESERVES ITS OWN ACADEMY AWARD!", "unixReviewTime": 1392508800, "reviewTime": "02 16, 2014"}
{"reviewerID": "A32VVWGZWOCSN2", "asin": "0989790185", "reviewerName": "LaTonja D Martin", "helpful": [0, 0], "reviewText": "This book was great from beginning to end. You never know what to expect. The twists in the book are off the chain. I recommend everyone add this book to their list of best sellers", "overall": 5.0, "summary": "total page turner", "unixReviewTime": 1396310400, "reviewTime": "04 1, 2014"}
{"reviewerID": "A2XI3T45CFF13E", "asin": "0615764037", "reviewerName": "ALM", "helpful": [0, 0], "reviewText": "This is a typical Kristen Ashley book so if you enjoy her stories then you'll like this. Funny, sexy, and moves pretty fast. A good summer read.", "overall": 4.0, "summary": "good book", "unixReviewTime": 1404000000, "reviewTime": "06 29, 2014"}
{"reviewerID": "AAIDLB38IY7R6", "asin": "0736927611", "reviewerName": "J. Hopkins", "helpful": [0, 0], "reviewText": "Walker McKay’s fiancée had left him hours before their wedding to run off with a hat salesman, and he wants nothing to do with marriage. He’s an only child, however, and his foreman is always harping that Walker needs an heir. He’s young and healthy, though, so he’s in no hurry, until a bull almost kills him. Since he can’t bring himself to court again, he makes arrangements for a mail order bride.Sarah Livingston’s father just doesn’t understand how much she wants a husband and children of her own, and he doesn’t think anyone is good enough, unless it’s a man who doesn’t want to marry her. When her father decides to send her to Uncle Brice’s in Georgia after her last escapade, she knows she’ll have to do something desperate. She decides to run to her friend in New York, but, on the way, she meets a young woman crying because she has to become a mail order bride. Sarah switches places with her, and when she meets Walker, she knows she did the right thing. Can she put off telling him the truth long enough to make him fall in love with her? As she tries, things become more and more complicated and messy.For the most part, I thoroughly enjoyed this book. Sarah is stubborn but lovable, because she has a big heart and wants to do the right thing, even when she makes bad choices. Walker is just as stubborn in his own way, and I could understand why he was leery of being deceived. Some of the things that happened with Caleb wasn’t rational, and I was surprised Sarah ran away when she had promised Walker she wouldn’t. The cover of the book is also wrong, because Sarah was a redhead. Overall, however, the story was riveting and a page-turner, and I had no problems giving it five stars.", "overall": 5.0, "summary": "I Found It a Page-turner", "unixReviewTime": 1393891200, "reviewTime": "03 4, 2014"}
{"reviewerID": "A2ENB9407VGDR1", "asin": "B00AO2SP5G", "reviewerName": "E. McPiggy", "helpful": [0, 0], "reviewText": "I enjoyed the writing style and am looking forward to reading my next Matthew Williams book. It is easy enough to follow the plot, but with just the right amount of twists and turns to keep me ready for more. Definitely worth the money, which was extremely reasonable anyway.", "overall": 4.0, "summary": "Good Read", "unixReviewTime": 1398211200, "reviewTime": "04 23, 2014"}
{"reviewerID": "A2503LT8PZIHAD", "asin": "0345527046", "reviewerName": "Gertrude, the Innocent \"Live well, laugh loud...", "helpful": [1, 1], "reviewText": "I don't know the last time I read a book so completely compelling. It just came out of the blue. It's like those potato chips that once you start eating them you can't stop. The first thing I did was to go look for more of Julia Heaberlin's books. I was all, \"How did I not know about you?\" This is a brilliant storyteller who is just getting warmed up. This is only her second novel? She writes a story as complex with intrigue and mystery as any of the greats. The last time I remember finding a writer who was so compelling was Jodi Picoult (and I am still not reading her because of what she did at the end of My Sister's Keeper).This story is mystery over mystery with many fabulous layers. The characters are rich and brilliantly drawn. There was depth to the characters that just kept getting better.Knowing the storyline is only a part of it, but nowhere near the entire story. This is a book that caused me to reread the ending and then the beginning. Then the ending. And I skimmed a few chapters. It was all there.-Gertrude", "overall": 5.0, "summary": "Stunning", "unixReviewTime": 1397088000, "reviewTime": "04 10, 2014"}
{"reviewerID": "A2WCPMK9NHHQH6", "asin": "1463762070", "reviewerName": "Reading to child", "helpful": [1, 1], "reviewText": "Beautifully written. If ever I wished I had the talent of writing, this would be the skill I would like to have. A glimpse of history brought to life with character in an era so different from our own.", "overall": 5.0, "summary": "Poetic", "unixReviewTime": 1395792000, "reviewTime": "03 26, 2014"}
{"reviewerID": "A2GK4GTF23NEF0", "asin": "0062302426", "reviewerName": "Amazon Customer", "helpful": [1, 1], "reviewText": "For me this was a 2.5/3 it was just so boring and I just didn't enjoy it like I thought that I was. Which is sad because I was really looking forward to Rome/Cora's book I just knew that I was going to get all kinds of fire but know is what I got was a whole bunch of inner dialogue and people pushing each other away and then an unexpected pregnancy. Don't get me wrong I still love both of the characters I just wasn't a fan of the book. So far the only book in the series that I have loved is Rule. I hope with Nash we get something different I have my fingers crossed.", "overall": 3.0, "summary": "Just okay", "unixReviewTime": 1389916800, "reviewTime": "01 17, 2014"}
{"reviewerID": "ASW9NL0GHXFWW", "asin": "0615579930", "reviewerName": "Kasey Sterling", "helpful": [0, 0], "reviewText": "Repetitive. The entire 2nd book is basically the exact same thing as the 1st book. Someone is taken and they have to get them back... blah blah blah. Not worth your time. Please god, don't waste time on this mess like I did.", "overall": 1.0, "summary": "AGAIN AND AGAIN AND AGAIN AND AGAIN...", "unixReviewTime": 1404604800, "reviewTime": "07 6, 2014"}
{"reviewerID": "A24J97BN1RW91Q", "asin": "0988115131", "reviewerName": "Peggy Kuntz", "helpful": [3, 3], "reviewText": "what a great book! the storyline was different than anything else I've read. a little romance, a little mystery and the love of family makes this a great read. I highly recommend this book.", "overall": 5.0, "summary": "Loved!!", "unixReviewTime": 1398556800, "reviewTime": "04 27, 2014"}
{"reviewerID": "A2RRBJ10B0AXPB", "asin": "B00I7VVZAI", "reviewerName": "Patricia Blair \"Voracious Reader\"", "helpful": [0, 0], "reviewText": "Very complex story. Kept my interest. Could hardly put the book down. Intoxicated trying to put every thing together. Very good mystery writer. Even to the very end. Looking forward to reading more of her books. Thanks.", "overall": 4.0, "summary": "Intriguing", "unixReviewTime": 1401148800, "reviewTime": "05 27, 2014"}
{"reviewerID": "ADZWEQP05MI05", "asin": "1250029880", "reviewerName": "Julia Marton", "helpful": [0, 1], "reviewText": "Wow, loved it. If you've read Acheron then you must read this, the other side of the story. It's a huge book and I finished it in no time because I was addicted, as I usually am to Sherrilyn Kenyon's books.", "overall": 5.0, "summary": "Fantastic Story", "unixReviewTime": 1402876800, "reviewTime": "06 16, 2014"}
{"reviewerID": "ASWOTI4BLT9JZ", "asin": "1466367741", "reviewerName": "Verlin E. Sandlin", "helpful": [0, 0], "reviewText": "Well written tale of intrigue and murders. Keeps you in suspense with surprises on every turn. A who-done-it aet in the early 13th century.", "overall": 4.0, "summary": "A Gripping Tale of Suspense", "unixReviewTime": 1391472000, "reviewTime": "02 4, 2014"}
{"reviewerID": "A2UPVVZY4FNCOT", "asin": "0062281747", "reviewerName": "Saltaway", "helpful": [1, 1], "reviewText": "Don't rush through this book. Each chapter is deceptively easy to read, but to get the true value of the book, you must go over it in your mind before continuing.", "overall": 5.0, "summary": "Wonderful book.", "unixReviewTime": 1398729600, "reviewTime": "04 29, 2014"}
{"reviewerID": "A2UTDFU9OW4SA6", "asin": "B00C2L7N4G", "reviewerName": "Marquia Long \"Marquia\"", "helpful": [0, 0], "reviewText": "This book was a great version of Cinderella, it's better than the original version, I like how the \"ugly step-sister's\" were actually nice and caring, the people of the kingdom only judged a book by the cover, and the mother just wanted her daughters to have a happy life, and the coachman had been in love with Anna all this time! This is a great version of Cinderella, this should become a movie and a real novel not an novelette", "overall": 5.0, "summary": "Amazing Retold from the point of view of Anna, the helpful step-sister", "unixReviewTime": 1395532800, "reviewTime": "03 23, 2014"}
{"reviewerID": "AEAF4MRYHJZI", "asin": "B00HMF55I8", "reviewerName": "Angelia Menchan \"acvermen.blogspot.com\"", "helpful": [0, 0], "reviewText": "... so you must read for yourself. You Don't Even Know My Name by Barbara Joe Williams is a novelette but it does not leave the reader wanting. It's a fully developed short story with a dash of spice filled with interesting twists to keep the reader engaged. There are a range of conflicts that leaves a range of emotions. So if you want to know, one click and read for yourself.Angelia Vernon MenchanAuthor of The Zen Cooper Books!", "overall": 5.0, "summary": "You don't Know...", "unixReviewTime": 1391385600, "reviewTime": "02 3, 2014"}
{"reviewerID": "A1T94UU301WVV9", "asin": "B00JDWV8J8", "reviewerName": "Christine \"Save A Stray\"", "helpful": [1, 1], "reviewText": "This book explains range trading, how to put a range trading strategy into action, the tools you can use (stochastic oscillator and MACD indicator are two) and has a few charts for those of us that are more visual. All in all I found it an informative read for the price!", "overall": 5.0, "summary": "Explains range trading in a nutshell", "unixReviewTime": 1397952000, "reviewTime": "04 20, 2014"}
{"reviewerID": "AVB0J0WN3FUFO", "asin": "0374266328", "reviewerName": "oceans eleven", "helpful": [0, 0], "reviewText": "Michael Cunningham mesmerizes with the thoughtful, elegant prose that is this book. The reader becomes so close to its characters...the reader feels what these brothers feel. Beautiful and tragic...a book that will stay with me for a long, long time. Thank you again, Mr. Cunningham. The Hours remains at the top of my list and The Snow Queen is another gift to your readers.", "overall": 4.0, "summary": "I loved The Snow Queen", "unixReviewTime": 1403136000, "reviewTime": "06 19, 2014"}
{"reviewerID": "A25IEV1N0EEENA", "asin": "1493632876", "reviewerName": "rory", "helpful": [0, 0], "reviewText": "This series so far rocked.The storyline was so good. I cannot wait for the next book to come out. I could not but the book down till I finished.", "overall": 5.0, "summary": "Awesome", "unixReviewTime": 1396742400, "reviewTime": "04 6, 2014"}
{"reviewerID": "A1FYGMRKYQWZRI", "asin": "1616203218", "reviewerName": "V.L. Mason", "helpful": [1, 1], "reviewText": "It's been a long time since a book has literally swept me off me feet. This one did. Won't get into the story line, suffice it to say, this is a love letter to readers and books done with incredible warmth,wit,purpose and intellect. It's the writing that's what makes this book so very, very special, this lovely girl is so gifted she could have probably have written about grass growing and made it not only interesting but a joy, a full on joy, to read.Brava Ms. Zevin! I shall raise a glass to you, here then is a writer.", "overall": 5.0, "summary": "This one is a gem.", "unixReviewTime": 1401494400, "reviewTime": "05 31, 2014"}
{"reviewerID": "A8C6DZFGLGGQI", "asin": "0991245504", "reviewerName": "Caryn S. Wesner-Early \"Liberry Lady\"", "helpful": [0, 0], "reviewText": "I love mysteries set at Christmas, although if I'd known this was one, I would've saved it for December. I may read it again then anyway, because I really liked it. I didn't have any idea who dunnit, and it kept me guessing all the way to the end. I'll look for other books by this author.", "overall": 4.0, "summary": "Christmas mystery", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "A3RG8I1040U1MO", "asin": "0062204440", "reviewerName": "JRR \"J RR\"", "helpful": [0, 0], "reviewText": "This book is third of 3part series. I recommend u read them in order as they continue the storyline throughout all 3books. It had good parts and lulls in the story. Overall it was ok but not my favorite. I found some of the characters incredibly self centered and thoughtless toward others (don't want to give story away) but very "different" kind of plots.", "overall": 3.0, "summary": "Ebbs and tides in storyline", "unixReviewTime": 1397088000, "reviewTime": "04 10, 2014"}
{"reviewerID": "A1E5ZR1Z4OQJG", "asin": "0984869034", "reviewerName": "Pure Jonel \"Pure Jonel\"", "helpful": [0, 0], "reviewText": "What a captivating novella. Walker had me laughing, cringing, and even in shock throughout. I couldn`t help but get wrapped up in the tale. Walker has also given me a new appreciation for zombies. In general, they tend to be my least favourite of the supernatural creatures but with this twist I found myself enjoying them immensely.I really appreciated the way that you get to know the characters from the Salt Lake After Dark series better in this little sidebar. Although it isn`t strictly essential to the series as a whole, it definitely helps you get to know everyone in a much less serious manner.Overall, this was a catching tale that has me even more stoked to get back to the series proper.", "overall": 4.0, "summary": "a captivating interlude", "unixReviewTime": 1398124800, "reviewTime": "04 22, 2014"}
{"reviewerID": "A5FDYZB6MG2TT", "asin": "1476751404", "reviewerName": "Jacqueline's Reads", "helpful": [0, 0], "reviewText": "4.5 Playful StarsI want to jump for joy on this adorable and pleasurable readThis series has been an up and down roller coaster for me and I’m so HAPPY it gets better with each book.Hannah is a twenty-four year old science geek who doesn’t have the best experience with sex. Will is Hannah’s brother’s best friend from childhood. They haven’t seen each other in years, but Hannah decides to catch up with Will again for old time sake. Hannah is no longer the young, little sister Will is use to seeing and when Hannah asks Will for sex advice, he can’t deny her.I liked Will in Beautiful Stranger and he is even better in Beautiful Player. I also like how nerdy Hannah is. They become friends and bond over jogging in the mornings. It’s really cute seeing Will train Hannah and help her with her love life. Hannah isn’t a virgin, but she is differently not experienced. Chole and Sara from Beautiful Bastard and Beautiful Stranger, give Hannah a little make-over to get her up to par with the dating world.Hannah goes on a few dates and Will coaches her on how to act and what is appropriate and not appropriate behavior. Hannah has no filter and is really easy going with Will. I love this! She asks him random things, like if girls really do make the sounds she hears from watching porn. It’s just too funny and too cute!Yes, Will is a crazy player, he has two hook-buddies, he meets weekly. Who does that?! BUT he’ also a really sweet guy and great friend. It’s very rare to see a sweet friendship form out of thin air. Yes, Hannah and Will have a history, but I really enjoyed reading the little moments they share and seeing their fast friendship form.I really enjoyed reading Beautiful Player and it was nice to see the old gang too. We see some progression with Chole, Bennett and Sarah and Max, which is always nice. I am sure there are extra details in the mini-novellas in-between.I recommend this light-hearted, no fuss-no muss, adorable read. You will be smiling and laughing your socks off!This review was written by Jacqueline's Reads - > jacquelinesreads.blogspot.com", "overall": 4.0, "summary": "I recommend this light-hearted, no fuss-no muss, adorable read. You will be smiling and laughing your socks off!", "unixReviewTime": 1391558400, "reviewTime": "02 5, 2014"}
{"reviewerID": "ATF0AXQRMC2CF", "asin": "0373778937", "reviewerName": "J. M. Moore \"jen\"", "helpful": [0, 1], "reviewText": "I've enjoyed Mallery's Fool's Gold Books - they're sweet and warm stories that bring a host of characters together in a charming series. I've begun to notice a pattern, however, which doesn't always work. Towards the end of the story, the guy has some sort of crisis, breaks off the blossoming romance in a particularly hurtful way; she gets surrounded by her friends usually bearing margaritas; and then he comes back with his tail between his legs and humbly asks her back in a way that will be public or involve multiple other people. She immediately jumps into his arms and the book ends. Its a formula that is started to make me roll my eyes, especially in this story due to the fact that Jack is extremely cruel to those around him there at the end. His redemption within the eyes of his friends and Larissa happens so fast, one starts to think the author ran up against a page length issue. In Fool's Gold, men get to be jerks - publically - and women love them unconditionally. Redemption and forgiveness happens to two pages or less.And so these stories become fairy tales as opposed to a warm window into the heart of how complicated love and relationships are. I'd love to see Mallery give as much time to the character development that happens when people have been pulled apart and hurt by love as she does to why they are so afraid of it in the first place.", "overall": 3.0, "summary": "Getting tired of the formulaic endings...", "unixReviewTime": 1405036800, "reviewTime": "07 11, 2014"}
{"reviewerID": "A2Y25AGE464UX9", "asin": "1493649779", "reviewerName": "Christina", "helpful": [0, 0], "reviewText": "What a nice, sweet book! I needed something light and easy with just enough angst but not too much and this book was the perfect fit. Brody and the Twinkies stole my heart from the very beginning. Kacie was wonderful. She fought Brody and her feelings at first, but he was just too much and I was so happy to see her give in to her feelings. The end was a cliffhanger but nothing too surprising and not too dramatic. I'm just glad the 2nd book is already published because I don't want to wait to see what happens next.", "overall": 5.0, "summary": "Sweet read", "unixReviewTime": 1399593600, "reviewTime": "05 9, 2014"}
{"reviewerID": "A1YZ08VDKBZUIV", "asin": "0323025927", "reviewerName": "Moneal204199", "helpful": [1, 1], "reviewText": "Information on the CCRN dose not change that much, so using an outdated book will not effect you too much. I used this and looked up the blue print from AACN. This book is a bit winded, and goes into a lot of detail about anatomy and such that you might not really need to know it pass. If you want to be know all that information, then you are a far more studious nurse then I. The book is broken up well so you can easily skip this part, and just study the patho. The CD is great! I fell like that helped me a ton!", "overall": 4.0, "summary": "Not too bad, for the money", "unixReviewTime": 1398556800, "reviewTime": "04 27, 2014"}
{"reviewerID": "A1PFGMWMU4BDM2", "asin": "B00BEYWBNU", "reviewerName": "Linda Leon \"book marketing professional/consu...", "helpful": [1, 1], "reviewText": "Solid information. Easy to follow and apply.", "overall": 5.0, "summary": "Great Details No Fluff Very Useable Information", "unixReviewTime": 1405641600, "reviewTime": "07 18, 2014"}
{"reviewerID": "A260UBM8LU863K", "asin": "0982556403", "reviewerName": "sasha Fi", "helpful": [0, 0], "reviewText": "I have no heart for men who wanna run the streets and they have a family at home it's unfair for the family not knowing what the man is doing. The grass isn't greener on the other side, truss and believe that.", "overall": 2.0, "summary": "What you do will come to light", "unixReviewTime": 1396569600, "reviewTime": "04 4, 2014"}
{"reviewerID": "AW6LFD2DHBF4L", "asin": "0743477707", "reviewerName": "Donna F", "helpful": [0, 0], "reviewText": "This trilogy is my favorite of Sabrina's series. Alex and Katherine's story is a great start! All of Sabrina's books are wonderful but this trilogy was special.", "overall": 5.0, "summary": "First in a great series", "unixReviewTime": 1391040000, "reviewTime": "01 30, 2014"}
{"reviewerID": "A157SKP0HWWAMC", "asin": "0778315991", "reviewerName": "R. Barber", "helpful": [0, 0], "reviewText": "Have not been disappointed with a robin Carr book yet and I love the series books. Such great story lines.", "overall": 4.0, "summary": "Great book", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "A2YR3EAM2UCAPG", "asin": "145385794X", "reviewerName": "Kathleen Gilliland", "helpful": [0, 0], "reviewText": "I am an avid History Buff, I have been to the Battlefield at Shiloh. I saw this book, and thought it might be a good read. I was wrong, it was a great read. I now MUST go back and see Shiloh again, because I can now REALLY appreciate the loss of life, the sacrifices made, and the actually friendships among the injured of both the Federal and Union Armies. This book puts very vivid imagines into your brain. If you are a Civil War Buff you will never regret taking the time out to read this amazing and factual rendition of this battle.", "overall": 5.0, "summary": "5 stars for They Met At Shiloh", "unixReviewTime": 1399161600, "reviewTime": "05 4, 2014"}
{"reviewerID": "AEJ7GU73LSMF0", "asin": "B00IAFNJVY", "reviewerName": "Danielle Eisner", "helpful": [0, 0], "reviewText": "I received this for an honest review. I have reviewed multiple books by this author and have liked every one.This book spans over 14 years. Lola is a young head strong math geek who believes that she is meant to change the world. She is giving it her best shot, but along the way she finds herself in a bit of trouble. And somehow she always manages to be wearing the wrong underwear every time it happens…Wearing a red lace thong while getting arrested isn't really the best option. She meets and falls for a sexy Australian named Wayne but she doesn't feel like he's the boy she should love. But over the course of the 14 years they somehow keep winding up finding each other again, even while she fights it all the way. Lola doesn't really know what she wants for the future or how to get it, but along the way she finds that maybe the wrong guy could end up being the right one after all.The name alone should have you intrigued. It did me. It's a cute and funny title to go with a cute and funny book. It hooks you and you can't wait to see how it all ends up. It wasn't really what I expected. I don't think the description does this book justice. I was expecting a light hearted romantic comedy and got so much more. While the book is cute and funny it is also real and has some serious moments.Lola is a great character. She is witty and funny and she makes these hilarious random lists. She is real and flawed beyond belief but you can't help but laugh and cry and prey that she can get it together. And maybe even find her happy ending.There is a bunch of humorous surrounding characters that make you laugh and really feel for all Lola has to put up with. With a bossy, slightly self obsessed; over involved mom and a sister very similar to their mom it makes for a laugh fest. And that is just the beginning of her crazy family and friends. Wayne is a total boy crush and I kept begging for him to finally get the girl. He is rugged and sexy and oo la la. I wish there had been more of him in the story though, he was that good.It jumps around a bit throughout the 14 years to explain everything, but it's worth it. I was hooked quickly and couldn't put it down. I recommend this book completely.", "overall": 5.0, "summary": "I was expecting a light hearted romantic comedy and got so much more.", "unixReviewTime": 1393804800, "reviewTime": "03 3, 2014"}
{"reviewerID": "A2BRV822DZXG6P", "asin": "B00EQMK918", "reviewerName": "Cheryl", "helpful": [1, 1], "reviewText": "As women we think we know what we want in a partner, but maybe it's not what society says we should want in a relationship. Then you keep trying to find what you're looking for only to realize a potential partner needs to see that you are what they're looking for. Baby Girl addresses that issue in this couple. Are they normal for what they like in their relationship? Is there potential for a future? Scott Hildreth takes you on that journey of a different type of relationship. Can a woman give herself over to a demanding man? In a time when women are supposed to be very independent? Baby Girl is a psychological quest for answers. As our main couple takes this journey together will they reach their ever after? Will it be happy? I am anxious to continue this journey with them. I was extremely and pleasantly surprised this was not an average alpha meets his submissive bed pal. It made you think. I could not just read it fast. There are no filler words in this story. It's meaty, tasty that you need to take your time to savor every morsel word for juicy word. I read fast, very fast. I could not with Baby Girl. I sat up and took notice. Now it's time to move to the next journey for Baby Girl and her alpha man.", "overall": 5.0, "summary": "Heartfelt and thought provoking", "unixReviewTime": 1389225600, "reviewTime": "01 9, 2014"}
{"reviewerID": "AP3L1D6WOQPVG", "asin": "B00J1U4J8Y", "reviewerName": "Leala Anajafi \"lalani\"", "helpful": [2, 2], "reviewText": "Now I know what the Dow is but I had not heard of the Dow Theory which kind of sparked my interest in checking out this book. The theory is actually just based on 3 theories which is explained in this book. This theory being completely new and unheard of to me, I really liked how each assumption was clearly written out on a level that anyone could understand. The book used a lot of comparisons to really get the point across and a little bit of history was brought in the mix so you could really see where it all started. As with most theories and information on stocks and trading, the dow theory is heavily concentrated on recognizing, analyzing, and being aware of trends. The Dow Theory is definitely another weapon to use in your stock market strategy. I feel that if I become more familiar with it I can use it to my advantage allowing me to pay attention and use the facts over popular assumptions that are easy to follow.", "overall": 5.0, "summary": "Another Weapon To Add To My Trading Strategy", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A3JVF17MIYLTOO", "asin": "1500110957", "reviewerName": "Dalitza", "helpful": [2, 2], "reviewText": "Light the Lamp is sweet, sexy and inspiring, it will have you smiling as brightly as Noelle’s cheery disposition and make you want to believe people so giving live among us as well as move you to try to be like them.Noelle has been down on her luck because she recently lost her job and then her house, but her viewpoint isn’t keeping luck company. She has a positive attitude knowing she’ll find a solution to her problems especially since worry has never rolled up its sleeves and solved anything. And now, by a fortuitous happenstance she can continue making a difference and spreading cheer after being saved from an encounter with certain death by a stranger.Liam “Kally” Kallen has been scarred by his wife’s death. Not only has his career suffered from it, he is also plagued with a guilt he can hardly talk about much less expunge, tinting his life a dull gray. That is until his concern leads him to save Noelle and his protectiveness guides him to incorporate her into his life. She gives him a new optimistic view and a second chance at love he thought he would never get again.The only problem is Liam and Noelle have too much to give. Liam in the way of material needs and Noelle in terms of positive emotions. Their relationship was too new, moving too fast it’s overwhelming, forcing Noelle to walk away unless they can find a way to balance their bond.I ached for Liam and his broken soul. Liam made me sympathized with him and his tragic loss. I felt terrible for his misplaced guilt, I understood his confusion over the new opportunity life gave him at a perfect love. He’s a different kind of take charge heroI enjoyed reading about.I was completely charmed with Noelle’s character and her desire to do something meaningful with her life. I honestly wish I had that strength of character. But there were also times when my very practical side wanted to slap her and Liam silly for not talking, exploring options and trying to find some kind of middle ground.It’s really great reading about the previous couples and characters in the team. Their family like bond and their support in this particular book shone through.I was so glad I got to read more about Jamie Babcock, having him living with Kally. He’s still young enough to be completely cute and adorable but also old enough to be an alpha male with his very own Babs signature.Liam and Noelle’s story blew me away with the amount of emotions it stirred. A couple of times bringing me to tears. It moved me and left me wanting to make a difference myself.This is the third book in the Portland Storm series. You could probably read it without reading the previous books but you would be missing out on the characters that appear as secondary in this book. I strongly suggest you read the series in order.And for those of you who are Tammy Falkner fans and follow her Reed Brothers series, can you guess where Liam gets his tattoos at?", "overall": 5.0, "summary": "Sweet, sexy and inspiring", "unixReviewTime": 1402876800, "reviewTime": "06 16, 2014"}
{"reviewerID": "A3CATHYVW4CTMW", "asin": "0373827822", "reviewerName": "Jana Jarrell", "helpful": [0, 0], "reviewText": "Book was Amazing! Very tender and heartfelt for a man to show that kind of love for a woman he held so dear.Was very emotion and she describes the scenery so well and in such detail you feel as though you are right there with the characters. Loved this book now I'm going to get the whole series of the McKaslin'sI would recommend this to everyone!", "overall": 5.0, "summary": "Homespun Bride by Jillian Hart", "unixReviewTime": 1402444800, "reviewTime": "06 11, 2014"}
{"reviewerID": "A16VLQH0VOIEAL", "asin": "B00HXXWTUQ", "reviewerName": "krissyl", "helpful": [0, 0], "reviewText": "Who doesn't want to learn more about setting goals to improve overall quality of life? "Goal Setting" is a pretty quick and easy read, but it's crammed full of info that has inspired me to set clearer, more well-defined goals.I would recommend this book to anyone who wants to achieve more in life by setting goals.", "overall": 5.0, "summary": "Great Self-Help Book!", "unixReviewTime": 1391385600, "reviewTime": "02 3, 2014"}
{"reviewerID": "A3BN6W75D2X3YQ", "asin": "140883233X", "reviewerName": "Stacy \"good times\"", "helpful": [0, 0], "reviewText": "It has a nonstop rise in tension and excitement as the story goes on. I recommend it to those who like medieval time era combined with science fiction", "overall": 5.0, "summary": "Thrilling", "unixReviewTime": 1393891200, "reviewTime": "03 4, 2014"}
{"reviewerID": "A27FUC0EH0PRQD", "asin": "0764203649", "reviewerName": "Neva", "helpful": [0, 0], "reviewText": "I'm tired of not having endings to books, the story keeps dragging out through more than one book, I however did enjoy this story and thought it was written well.", "overall": 4.0, "summary": "Liked except the ending", "unixReviewTime": 1403481600, "reviewTime": "06 23, 2014"}
{"reviewerID": "A1JFBMHF4STYCK", "asin": "B00IJR3DE6", "reviewerName": "Jenny", "helpful": [0, 0], "reviewText": "This book is a life-saver, no doubt about it. Every time me and my family move it seems like we have more "stuff". Our home always begins to feel cramped over time and we move thinking it will solve the problem. This book has helped us figure out ways of cutting down on the clutter and condensing the stuff we have to a much more manageable level. I never knew where to begin so would just give up on minimizing the clutter, and instead would just want to move again to a bigger place. We now do not have to move again! We have finally found a sure fire way to maximize our space, and it has made our stress levels plummet! I didn't even realize that the source of our stress was the clutter everywhere. Now things are more organized and not only is our house happier, but we are happier as well. You have to read this book, it will turn your life around!", "overall": 5.0, "summary": "Get rid of the clutter, and the stress will follow!", "unixReviewTime": 1393113600, "reviewTime": "02 23, 2014"}
{"reviewerID": "A3S96B2GBP04N2", "asin": "B00F01WK5C", "reviewerName": "Lisa", "helpful": [1, 1], "reviewText": "I'll admit that when I first started reading the Daughter of Darkness Trilogy I had to stop and check that I didn't purchase an erotica instead of a romance. There is a good story line here and there is a lot of sex but unlike some "romance" books I have read it doesn't go on and on (and sometimes on) with the sex. This of course just depends on the author. There is sex and there is an okay amount of detail about the sex but I have read romances where the sex could span two or three pages and quite frankly I can only read so much of how the hero takes his velvet steel into her moist folds before I just decide to skip ahead.Now that I'm clear about the fact that there is sex here I'll also tell you that for most of this book I was wondering how the heck was this going to resolve! I too was feeling torn!The book does require some editing I'll have to admit but it's really not something that should impact your enjoyment of the book. They say a strong mind is able to figure out what is meant to be said and any noticeable errors only occur occasionally.There are some great twists in this book, and a really good ending which doesn't leave me going "What? That was how it ended?"", "overall": 4.0, "summary": "Sex, magic, conflict and a satisfying ending.", "unixReviewTime": 1388966400, "reviewTime": "01 6, 2014"}
{"reviewerID": "A1SNWEQFFNH09U", "asin": "B00GM3QBNE", "reviewerName": "Tanya Vetter", "helpful": [0, 0], "reviewText": "What a great story. I'm hoping for a continuation of their story but at least it didn't end in a cliffhanger. Elaine Breson did a great job in writing this book. It was a very believable story and had me from the very first chapter.", "overall": 5.0, "summary": "Parker is so sweet", "unixReviewTime": 1393545600, "reviewTime": "02 28, 2014"}
{"reviewerID": "AHXJ8OAVNR90O", "asin": "061579548X", "reviewerName": "Jorge Alberto Orduna \"Jorge A. Orduna\"", "helpful": [2, 2], "reviewText": "Much like Dracula, the zombie genre has been done to death. Finding new ways to have a good story is tough, especially when so many have done it already. Marie F Crow does something that many other authors don’t, she grabs your attention and tells you a story that is beyond the scope of your traditional zombie narrative. Sure there are components that you will find with others, but what really throws you for a loop here is the main character and the scope of the larger picture.Much like “Walking Dead” features a great deal of emotion, Helena (the main character) is a catalyst for so many points of fear, regret, life, and so much more. Crow finds a way of establishing this character, deeply rooted in emotion, so when she goes through the story, you’re floored with excitement.It’s hard not to shed a tear at some points, as some of the family bonding, even within the scope of a motorcycle club begins to pull at your heartstrings. Mixing “Sons of Anarchy” with “The Walking Dead” is about as close as I can come to trying to tell you what this narrative is like. It’s multi-layered, has zombies, but grips your heart with a certain horror that is missing from a lot of other zombie tales. I found it intrepid, compelling, and worth a second read, just not in the dark. My cat scared me while reading. There’s a lot of good found in this one. If you like zombies, you’ll love it, and if you’re an avid reader, then this is another instant classic to add to your kindle collection, no joke.", "overall": 5.0, "summary": "The Risen Packs a Serious Punch For More Than Just Zombie Fans", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "A3UTMRCIJ01DNO", "asin": "B00JOPR0ZK", "reviewerName": "Brooke", "helpful": [16, 16], "reviewText": "Love everything Jamie McGuire and this one certainly didn't let me down! I was stuck from the first page. I can not wait for the next installment :)", "overall": 5.0, "summary": "Wowzer", "unixReviewTime": 1399593600, "reviewTime": "05 9, 2014"}
{"reviewerID": "A2EGG81WBWN93I", "asin": "B00J2CG0UG", "reviewerName": "Laura Scott", "helpful": [2, 2], "reviewText": "I love to read thrillers and mystery novels, and I usually avoid those with politics. However, I decided to give this novel a try, and I was extremely impressed with the juggling act that Oren Sanderson puts on throughout the storyline. He is very skilled with having a multitude of aspects in the plot, such as politics, love, mystery, and many others, but not lose interest in the main story line.Dancing bear was completely captivating and kept me reading to the very last page. The fact that it is extremely well written and organized definitely benefited the complexity of the storyline. The characters are very well developed. I definitely could relate with David and wondered if that woman could be trusted. I found myself thinking I knew what was going to happen, and then something else completely caught me off guard.Most of all, I love the thrill of the chase that this book provides its reader. I feel like I am constantly chasing after the answers and sometimes I feel somewhat like David chasing after Kate. When books hand you the answers to the questions right away, it makes the book less exciting. Let me tell you this book is the complete opposite!Overall, I was extremely happy with this book and I would definitely recommend this book to my friends and family.", "overall": 5.0, "summary": "The thrill of this chase will keep you reading until the last page!", "unixReviewTime": 1396569600, "reviewTime": "04 4, 2014"}
{"reviewerID": "AEGTZWD1AX4KK", "asin": "B007QXV9S6", "reviewerName": "glenn rolfe", "helpful": [1, 1], "reviewText": "I loved Matheson's Duel. King and Hill pay perfect homage to a masterpiece of terror. A great story that burned by my eyes in a trail of gasoline and smoke. I'd tell you to read it, but with the reputations involved that seems pointless.", "overall": 5.0, "summary": "Fantastic,I expected nothing less.", "unixReviewTime": 1397952000, "reviewTime": "04 20, 2014"}
{"reviewerID": "A3CPQHC1I7CGVD", "asin": "0316955116", "reviewerName": "Dan Silagi", "helpful": [1, 1], "reviewText": "In the spring of 1956, when I was 12 1/2 years old, living in Queens, and finishing the 7th grade (just like Herbie), my parents bought Herman Wouk's \"Marjorie Morningstar,\" and I started reading it. I found it a bit ponderous, at least for my 12-year-old taste, and my parents thought it might be too \"mature\" for a little kid. So my mother went to our local library and borrowed \"City Boy,\" telling me I'd love it.She was absolutely right, although I took umbrage at identifying myself as a \"Herbie.\" Unlike the book's protagonist, I was big and strong for my age and a decent athlete who could hit a baseball a mile (catching it was a different story) and who could take care of himself, so I tried to think of myself as a \"Lennie\" (the big, dumb kid who was Herbie's rival) although I found his character a bit repulsive, as he was a bully and I (generally) wasn't. I paid little attention to the subplot involving Lucille Glass (I wasn't yet interested in girls), and even less to that involving the attempted buyout of \"The Place,\" the ice factory co-owned by Herbie and Lennie's fathers, and by a silent partner, Mr. Powers. The following year, I went to a sleepaway camp much like Camp Manitou, and with my bunkmates at Bunk 9, put a few of Herbie's ideas into play. By that time my interest in the opposite sex started to manifest itself. Did it ever.Recently I bought \"City Boy\" along with \"The Caine Mutiny\" and \"Marjorie Morningstar\" (which my wife is reading for the second time), and I've come to the conclusion that despite the fact that I could hit a spaldeen 3 sewers as a kid, I was very much a Herbie, then and now, who would soon develop his hopeless crush on his very own Lucille Glass -- actually two of them--sequentially and many years separated, both of whom I met at yet another summer camp. (One of the two even grew up in the Bronx, not all that far in distance from Mosholu Parkway where Lucille lived but light-years away demographically and culturally.)Like Herbie, I was that lad who would ride in the front car of the subway with his buddies, noses pressed up against the glass by the motorman's cab as we watched the train fly through the tunnel as we headed towards Ebbets Field in Brooklyn where we would emerge into dazzling sunlight at the Prospect Park station to watch the immortal Duke blast frozen ropes onto Bedford Avenue before the great No. 4 and the other Dodgers would desert us for the purported Sybaritic paradise of La-la Land. The crushes would come a couple years later, and last forever. I suspect Herbie, now 97, still has a thing for 96-year-old Lucille.Let's briefly summarize the plot: 1928. Herbie Bookbinder, a precocious and manipulative 11-year-old a year ahead of his class in school, develops a crush on a little girl, Lucille Glass, a grade behind him. Lucille tells Herbie she's going to attend Camp Manitou, a kid's summer camp in the Berkshires run by Mr. Gauss, the school's principal. Herbie wheedles his parents into letting him go there. Also attending will be Lennie Krieger, a lunkheaded 13-year-old who's a year behind his class, and about to be left back again. Herbie's father and Lennie's father are co-owners of an ice-making business called \"The Place,, and there's an Irish silent partner named Powers who may or may not own a controlling interest in the business, and who wants to sell it to a third party so he can cover some bad outside investments. Lucille's father is an attorney who represents the business, but seems to represent Powers more than the other two partners.Herbie gets to camp, and quickly learns it's no paradise; \"Uncle\" Gauss is far more interested in turning a profit by cutting corners than in molding childrens' characters. Moreover, Herbie's a lousy athlete, and is taunted by the older boys, with the bullying led by Lennie. Herbie, in an effort to impress Lucille, wants to build an amusement park-type ride for the camp's Mardi Gras Day, but the materials to build it will cost $50 (equivalent to $1,000 today) which he doesn't have. How to get the money? Steal it from his dad's safe (Herbie knows the combination); then leave a promissory note guaranteeing repayment. In an mad series of adventures, Herbie and his cousin Cliff sneak out of camp, hitchhike the 100 miles back to the Bronx in the middle of the night, only to find Mr. Bookbinder and his partners engaged in an acrimonious discussion about selling off the company. When the men are somehow distracted, Herbie and Cliff steal $50 from the thousands in the safe, hightail it out of there, and hitch back to Camp Manitou before reveille the next morning, without anyone noticing. Herbie, assisted by Cliff, a broken-down horse, and the camp's handyman, who turns out to be Herbie's mentor, builds his ride. It's a big success, making far more than the $50 cost of materials, and most important, Herbie finally impresses the \"fickle\" Lucille. But Herbie's troubles are only beginning, and the conclusion of the story brings the three legs of the plot together.One thing I really liked was that Herbie and his pals navigated the NYC subway system by themselves at age 11, just as I did back in the '50's. NYC, including the subways, has become as safe as it was 55 years ago, but most parents think it's still 1990 and riding the subway is as dangerous as being in Afghanistan. Today, if an 11-year-old is seen riding the subway, Child Protective Services will accuse his parents of neglect. Another thing that I totally agreed with was that Wouk, without explicitly saying so, is opposed to smart kids skipping grades. Herbie was 1 1/2 years ahead intellectually, but socially and physically he was still only 11, which is especially troublesome for boys. Fortunately, the NYC school system has largely abandoned this.In conclusion, I found the story far more entertaining as an adult than I did as a child, and I loved it back then. Yet I can't give it 5 stars, as much as I'd like to, because Wouk is overly on-the-nose in drumming the story's moral - the ends don't justify the means - into the innocent and not-so-innocent readers. In the Caine Mutiny, where there are more than 50 shades of grey to describe the characters of the ensemble cast (including Lt. Commander Queeq), Wouk lets their actions do the moralizing, rather than editorialize. That said, I whole-heartedly recommend this for children of all ages, and would grade this 4 1/2 stars if I could.", "overall": 4.0, "summary": "I Read Two Different Books; Once at Age 12, the Second More than 50 Years Later", "unixReviewTime": 1393977600, "reviewTime": "03 5, 2014"}
{"reviewerID": "A1G58B0DML1GWM", "asin": "0385348452", "reviewerName": "CMKeller", "helpful": [0, 0], "reviewText": "A dangerous manuscript, a literary agent, the CIA, Zurich, and Copenhagen. The perfect set-up for a thriller—crack for readers. And it only got better once I started the book.At the beginning, I was concerned with the plethora of characters and viewpoints, which often turns a novel into a confusion of characters where you have to turn back to earlier chapters to remember who is who. But Chris Pavone does a great job of making each character memorable enough to keep straight.It is the choices of these characters that drive an intricate plot, which unwinds in a frenetic twenty-four hour period. Not only are the plot and characters well-written, the writing itself is clean and free of the clichés that often find their way into thrillers.The Accident is a perfect weekend read or, in my case, excellent treadmill reading. And I have to give five stars to any book that makes me lose track of how far I’ve run.(I was given a free copy of this novel in exchange for an honest review.)", "overall": 5.0, "summary": "Crack for Readers", "unixReviewTime": 1404172800, "reviewTime": "07 1, 2014"}
{"reviewerID": "A1Y28ID1PCR71T", "asin": "1442488603", "reviewerName": "Pam McMillan", "helpful": [0, 0], "reviewText": "I loved this books. I have read four of the Sea Breeze Books now. Each one of them keeps getting better and better. I loved Preston and Amanda's story line. Love Abbi Glines writing she is a great writer, she knows how to bring a storyline to life. Wish she would write a sequel to this one.", "overall": 5.0, "summary": "Great Love Story", "unixReviewTime": 1403913600, "reviewTime": "06 28, 2014"}
{"reviewerID": "AQAKRKE8PBQMW", "asin": "1599219808", "reviewerName": "Dora L. Davison", "helpful": [0, 0], "reviewText": "I think that Patti Digh may be onto something with this book. We all live complex lives, however even the busiest of us could probably remember four words of self-help. Just think of all the diet books that could be eliminated from the shelves if we all abided by the self-help advice for weight loss--eat less, move more. When you really get down to it, isn't that what all the programs espouse? I loved the positive tone of the book and the beautiful illustrations that were contributed by fans of her blog. Whether or not you believe that self-help can be reduced to four words, I think that this book is worth a read.", "overall": 4.0, "summary": "Four words of help", "unixReviewTime": 1388966400, "reviewTime": "01 6, 2014"}
{"reviewerID": "A1R5REZQWFJBQ6", "asin": "0071782362", "reviewerName": "Beth", "helpful": [1, 1], "reviewText": "I have been reading the two authors' blogs for some time now and was eagerly awaiting their book. I was not disappointed! Not only is this a well-developed cookbook, but it is chock full of really helpful tips on provisioning, storage, and other food-related topics. I appreciate that the authors are both cruisers with experience, not just folks trying to come up with one-pot recipes that should be easy to create in a galley.", "overall": 5.0, "summary": "Very helpful book", "unixReviewTime": 1396310400, "reviewTime": "04 1, 2014"}
{"reviewerID": "A642MIH49FU0", "asin": "B00EYMXM2I", "reviewerName": "Jae", "helpful": [1, 1], "reviewText": "I would recommend this book to anyone who enjoys "paranormal lite". It features Vampyres, angels, fairies, political intrique and family feuds, all served with a generous dollop of humor.", "overall": 4.0, "summary": "Fun and funny!", "unixReviewTime": 1398124800, "reviewTime": "04 22, 2014"}
{"reviewerID": "A1OD0FHT0VKM0K", "asin": "B002TNWJ5A", "reviewerName": "Dale", "helpful": [0, 0], "reviewText": "It covers the thirteen Articles of Faith very well. If you are looking for this book you will be happy with it, and the price is right.", "overall": 5.0, "summary": "This is a complete book", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "ASO61LQ1CG4DI", "asin": "B00HTXSDKA", "reviewerName": "Luciano Mosquera", "helpful": [4, 5], "reviewText": "Since my adolescent I've been interested in the brain and the potential of it. I read several books, but I have to admit that "Mind Control: The Ultimate Guide To Human Manipulation, Persuasion, and Deception" is particularly amazing. The author has managed to in an easy way explain about the workings of the human brain and how to use this knowledge to learn more about manipulation, persuasion and mind control. Now I feel more confident and with more skills at the time to be with people. Thanks Clarence. I highly recommend this book!", "overall": 5.0, "summary": "The power!", "unixReviewTime": 1390348800, "reviewTime": "01 22, 2014"}
{"reviewerID": "A2V2HXNYQQNS05", "asin": "0936756616", "reviewerName": "Alex", "helpful": [0, 0], "reviewText": "Funny, charming, candid, and delightful. Dreamlander, Cookie Mueller's writing is fast-paced and delightful, and offers an inside look into the swinging sixties and outrageous seventies.", "overall": 5.0, "summary": "Awesome", "unixReviewTime": 1400976000, "reviewTime": "05 25, 2014"}
{"reviewerID": "A1F4E98KLLT2IY", "asin": "0778324842", "reviewerName": "JDW", "helpful": [0, 0], "reviewText": "Love love the whole series!! These are a must read if you like romance and mystery and a little fashion. (:", "overall": 5.0, "summary": "Read them all! Every book is great!", "unixReviewTime": 1403740800, "reviewTime": "06 26, 2014"}
{"reviewerID": "A3QN04CNKOOZBR", "asin": "1497380618", "reviewerName": "K. Crepeau", "helpful": [2, 2], "reviewText": "As a personal trainer I know there's a lot of mis - information out there about IF and this guide helps the beginner understand the benefits and basic idea behind IF. Would definitely recommend for a beginner interested in IF.", "overall": 4.0, "summary": "Well put together guide on IF.", "unixReviewTime": 1394496000, "reviewTime": "03 11, 2014"}
{"reviewerID": "A1O1UN6U522LWR", "asin": "B00L5QH96Q", "reviewerName": "Laura Crawford \"crawford writes\"", "helpful": [1, 1], "reviewText": "***Unsolicited Review*** When I heard Jasinda Wilder was writing Paranormal, I was intrigued. I read it and it read more like a mystery/thriller in the beginning. Carson is a detective investigating a homicide, a pile of bones and ash found in a parking garage. Once they identify who it is, the mystery begins as he pieces together the events leading up to the crime. Miriam is in a horribly abusive relationship and tries to leave Ben, but he won't let her go. Then Jack comes to her rescue and while they get to know each other, they fall hard for one another. But Miriam has no idea the strength and power she has within her and what she can do with that power. I highly recommend this book! If you haven't read paranormal before, this is a good book to start with. I am looking forward to reading the next book in this series, "Djinn and Tonic". Keep writing, Jasinda and I will keep reading! :)", "overall": 5.0, "summary": "Jasinda Wilder writes Paranormal and it is awesome!", "unixReviewTime": 1405296000, "reviewTime": "07 14, 2014"}
{"reviewerID": "A30RH4NHL8KUDR", "asin": "1442358424", "reviewerName": "Pamela Moser", "helpful": [0, 0], "reviewText": "Yes there is certainly a lot of grace in this book. Once again Richard captures your attention right from the first page and it is hard to put the book down once you have started it.", "overall": 5.0, "summary": "Grace!", "unixReviewTime": 1392422400, "reviewTime": "02 15, 2014"}
{"reviewerID": "A414YEU57FUHJ", "asin": "1468042904", "reviewerName": "Erin Brooks", "helpful": [0, 0], "reviewText": "alex is doing an internship at a military base. but her stay there isn't pleasant. for one. . . for two . . . for three. . . .ace is aloof and cautious of humans until alex. he is. . . and thus gets her in his department after. . .they had a rocky start that went to full blown stop to a cloud of despair to heroic feats to hurt feelings to . . . . all in one summeron top of that, she has to deal with skeptics, evil people, and . . .will they survive the summer???enjoy!!! ;p", "overall": 4.0, "summary": "dangerous love", "unixReviewTime": 1398816000, "reviewTime": "04 30, 2014"}
{"reviewerID": "A2SLNY7FT6KOQD", "asin": "0606262520", "reviewerName": "Kery L Bell", "helpful": [0, 0], "reviewText": "I saw this on a suggested list...looked interesting...so glad I read this book. Loved it! So looking forward to the second book...another non typical type of book...great read...easy to get thru...wanted to keep reading!", "overall": 5.0, "summary": "Loving this book", "unixReviewTime": 1404864000, "reviewTime": "07 9, 2014"}
{"reviewerID": "AKT90SJ1JVJGN", "asin": "0525953906", "reviewerName": "FDM", "helpful": [2, 3], "reviewText": "Great story lines that converge as the book reaches it's climax. Rawles never disappoints. Everyone who is an Expat should read this and take notice.", "overall": 5.0, "summary": "Outstanding read!", "unixReviewTime": 1391385600, "reviewTime": "02 3, 2014"}
{"reviewerID": "A246RNOSR76X3T", "asin": "0446361739", "reviewerName": "JerseyGirl \"Bookworm\"", "helpful": [0, 0], "reviewText": "Since I have been on a Sandra Brown reading binge, I got this one from the library and I am certainly glad that I did not buy this one. The story is about a family in a small southern town called Heaven, Louisiana.The heroine is Schyler Crandall who has returned home to Heaven from London, where she escaped to after her sister, Tricia betrays her. Schyler has come back to the family home named Belle Terre, an old southern home that she loves, because her father has had a major heart attack. Since her father is in the hospital, Schyler takes on the family business.The book is heavy on very crass language and sex scenes. If you are looking for a romance novel, then this book is hot what I would call romantic, The romantic involvement for Schyler is a Cajun who lives on the bayou, Cash Boudreaux. He is as foul mouthed and crude as they come. How any woman could find anything romantic about this man is beyound me.There are a number of other sex scenes with other characters that I basically skipped over. I am not a blushing virgin and I have read many romance novels in the past but this one is so crass that I was even appalled.Also for dog lovers, this book has a pit bull fight that I could not read. Cruelty to animals and to people is another reason that I did not like this book. Also stereotypes abound about the south in this book that are so overdone as to be silly."Slow Heat in Heaven" is one of Sandra Brown's earlier novels; I will stick to reading her more current books because they have more appeal to me. This one barely earns that two stars that I am giving it.", "overall": 2.0, "summary": "Pass on this one!", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "A17ES1XXQ6OUIY", "asin": "0345542886", "reviewerName": "Marie A. Roberts", "helpful": [0, 0], "reviewText": "I thoroughly love each of her Stephanie books. They keep me tiedto the antics and give me lots of laughs. Grandma is a real treasure.", "overall": 5.0, "summary": "Another great Stephanie Plum Novel", "unixReviewTime": 1391040000, "reviewTime": "01 30, 2014"}
{"reviewerID": "A2W6RM6XOFZ8Y4", "asin": "B00D4CZE8E", "reviewerName": "Anita L. Sherwin \"Anita Sherwin"dragon"\"", "helpful": [0, 0], "reviewText": "Another CSI series but it has it high points since it takes place in Ireland.", "overall": 4.0, "summary": "a quick who done it", "unixReviewTime": 1405987200, "reviewTime": "07 22, 2014"}
{"reviewerID": "A26LL02IF0M9ZX", "asin": "B00F3JBZZC", "reviewerName": "Dianne", "helpful": [0, 0], "reviewText": "I completely enjoyed the whole set of books by Jill Sanders and will buy more of her books. You like women writers you will like her.", "overall": 5.0, "summary": "Great stories", "unixReviewTime": 1398643200, "reviewTime": "04 28, 2014"}
{"reviewerID": "A3ESFCDE13IMH4", "asin": "B007W5CP9K", "reviewerName": "Kindle Customer", "helpful": [1, 1], "reviewText": "I thoroughly enjoyed this book and all of the characters in the storyline, especially the hero and heroine of this book. I enjoyed how the author developed a romance between them and how the secondary characters were used to make the story so interesting. This was a very clean story full of sweet romance.", "overall": 5.0, "summary": "Excellent Book", "unixReviewTime": 1394409600, "reviewTime": "03 10, 2014"}
{"reviewerID": "A1X0YKYE37T07K", "asin": "1462112102", "reviewerName": "Helen Booysen", "helpful": [0, 0], "reviewText": "It is often taken for granted just how emancipated we woman of today are ... I lived each page and rebelled in El's successes", "overall": 5.0, "summary": "this century", "unixReviewTime": 1390089600, "reviewTime": "01 19, 2014"}
{"reviewerID": "A24A1PDG9JINYI", "asin": "0983729840", "reviewerName": "Seth Aragon \"bagger1955@yahoo.com\"", "helpful": [0, 1], "reviewText": "I am a Jack Reacher fan. This book is a poor knock-off. Admittedly good prose and syntax, but lousy logic in the plot. Worse, no real unredeeming vicarious violence much less emotional warmth or even sex. Don't fall for this one.Cheers,Seth", "overall": 1.0, "summary": "It is NOT a Jack Reacher book, do not let the title fool you.", "unixReviewTime": 1398211200, "reviewTime": "04 23, 2014"}
{"reviewerID": "A3RO6KO9BQZE9Z", "asin": "0380776804", "reviewerName": "Good story, hot and erotic scenes", "helpful": [1, 1], "reviewText": "Tanya has done it again. She has spun a tale to capture your interest and hold you spell bound until the last page. You will find yourself back in time. The story written so beautifully, it will play out in your mind like a movie. I truly enjoyed this book.", "overall": 5.0, "summary": "Wonderful read....", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "A3QW65RBPV8Z3R", "asin": "B00EBGBKN0", "reviewerName": "DR WHO FAN", "helpful": [0, 0], "reviewText": "I JUST LOVED THE BRIE SERIES I KNOW IT HAD TO END BUT DAMN DO I MISS IT I THINK IT WAS A GREAT VIEW", "overall": 5.0, "summary": "LOVE THIS", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "A3UYID16MQU45M", "asin": "B00K2L6LBE", "reviewerName": "Chicks Looking For A Book Fix", "helpful": [1, 1], "reviewText": "Not Hiding is the third book in the Parker Sibling Series, it is Cambree and Max's story. It is filled with drama, heartbreak, and love. Oh yeah it also has plenty of crazy, funny moments by the Parker sisters.Cambree is off at college and has agreed to meet up with Max but other things take place which leads to Cambree being attacked. Cambree knows who is responsible for the attack on her, the pycho who has been torturing the Parker family for years, Brent. Even though Cambree is strong, this attack has pushed her to the one man that broke her heart, Max Baird. Her love for him never changed, but she just couldn't deal with all secrets and lies Max fed her. Cambree will not give in to easily to Max, he must prove himself.Max feels guilty about Cambree's attack, he was supposed to be protecting her, but in turn brought her into harms way. Max knows he screwed up in the past, and is determined to make it up to Cambree. He wants to start their relationship right this time with no lies and no secrets. Until everything can be revealed he has to hold back expressing the way he truly feels about Cambree, but is still going to be by her side no matter what. He will protect her this time, no more slip ups.As Max and Mitch work on a case against Brent, more secrets are revealed that may help them catching Brent and putting him away for good. Mitch has his own secret that he needs to tell the family but isn't for sure how or when he should tell them. Max and Mitch have to make tough decisions about what to tell the Parker family, because just they know any deviation in their plans could risk everything they have built up in the case so far.Even though there is so much drama going on with the Parker gang, they all no how to act crazy and have fun when the moment is right. The women in the family are strong-willed and sassy, while their men support them and know when to back down. I seriously love the things that come out the Parker sister's mouths, it is hilarious. I love the multiple POVs from all the family during the book. After following the Parker gang since the beginning of the series I feel like I'm apart of the family. I loved how Cambree and Max's story ended. I can't wait to read Dustin's story.", "overall": 5.0, "summary": "Awesome Series!!", "unixReviewTime": 1399248000, "reviewTime": "05 5, 2014"}
{"reviewerID": "A22RY8N8CNDF3A", "asin": "1476751447", "reviewerName": "Loyd E. Eskildson \"Pragmatist\"", "helpful": [31, 52], "reviewText": "We all remember that Hillary lost to Obama in 2008. In 'Hard Choices' she tells us that she then planned to return to the Senate and was surprised when Obama offered the Secretary of State position to her. Supposedly she liked the idea of following one of her heroes, William Seward - another N.Y. senator who lost out to the ultimate president (Lincoln), and then served in his cabinet. (Who ever heard of William Seward? And why the focus on 'political heroes' instead of the opportunity to better America?) We're supposed to believe that personal political calculation had nothing to do with her acceptance - 'When your President asks you to serve, you should say Yes.'Hillary's narration shows her as consistently hawkish, consistent with her previously insisting on serving on the Armed Services Committee while a senator, and voting for the Iraq War. But I also saw her as constantly sticking her nose into every other nation's affairs - to the point she came across as domineering and insulting; not surprisingly, she doesn't see it that way in 'Hard Choices.'As for Benghazi, it's lot of double-talk, taking all positions at the same time, but failing to address the question of 'Why did the U.S. even have a State Dept. office in a non-capital city in Libya?' Putin - he's a bad guy, but she fails to see that his help is essential in addressing problems in Syria and Iran, issues with Russian hackers interfering with U.S. commerce and Internet traffic, and probably Iraq. Thus, her/our demonizing him (and others) simply makes progress in other areas more difficult, if not impossible. Pivoting to Asia - another demonizing tactic that supposedly makes America (and Hillary) look tough, but makes little sense. Today we're seeking help from Iran to stem the Sunni uprising in Iraq. We need China's ongoing help (and that of others) to address Global Warming; on the other hand, we also need to stop letting Asia in general (and China in particular) decimate our economy. Free Trade is working - for them, not us. Regardless, who in America wants to risk losing eg. L.A. and Seattle to defend some miniscule island in the Pacific, thousands of miles away?We also get the cloy ploy for sympathy - 'there's a double standard applied to women in politics.' Tell that to Angela Merkel and others.Overall, 'Hard Choices' is rather boring and overly vague on specifics. Meanwhile, her political spin continues - this week it's a lame explanation of why she charges so much for speaking engagements.If anybody out there doesn't think 'Hard Choices' isn't a planned step on the road to the 2016 nomination, I've got a lot of bridges I'd like to sell you.", "overall": 1.0, "summary": "It's Really Hard To Take What This Woman Writes at Face Value", "unixReviewTime": 1402617600, "reviewTime": "06 13, 2014"}
{"reviewerID": "A3RSIYMHECWMDN", "asin": "B00EYQZS9Y", "reviewerName": "Styles Bitchley", "helpful": [0, 0], "reviewText": "This is a short and very well written book which can be easily absorbed in less than an hour, and effectively so.", "overall": 4.0, "summary": "Fast read who hits the nail on the head! Just the facts of matter...", "unixReviewTime": 1405296000, "reviewTime": "07 14, 2014"}
{"reviewerID": "AHXMDCU0N15TN", "asin": "1455523429", "reviewerName": "sonybalony \"sonybalony\"", "helpful": [0, 0], "reviewText": "When my son read this book he immediately scolded me that this wasn't an appropriate book for my 3-yr old Gd. I replied I hadn't bought it for Gd; I bought it for me.", "overall": 5.0, "summary": "Colbert is a national treasure", "unixReviewTime": 1403913600, "reviewTime": "06 28, 2014"}
{"reviewerID": "A1H10L6S9KZB2C", "asin": "0373278535", "reviewerName": "Denise R. Bryant", "helpful": [1, 1], "reviewText": "Wonderful story in the series--looking forward to the story for the last sister,and what happens to Liz. Carla Cassidy is a wonderful author--I have always enjoyed her books.", "overall": 5.0, "summary": "Lethal Lawman", "unixReviewTime": 1391126400, "reviewTime": "01 31, 2014"}
{"reviewerID": "A17D5YKHL033T2", "asin": "0821776878", "reviewerName": "Gaylene Kirkbride", "helpful": [1, 1], "reviewText": "ive been reading all of beverlys books as i can get! she is an awesome writer and hope she writes more! i love her writng style and the saga of the powells!", "overall": 5.0, "summary": "awesome!", "unixReviewTime": 1393027200, "reviewTime": "02 22, 2014"}
{"reviewerID": "A114EFL97VTWSE", "asin": "0061131768", "reviewerName": "Chanell", "helpful": [0, 0], "reviewText": "Perfect book to read to a young child about adoption. I highly recommend. Talking to your adopted child early about adoption is so important!", "overall": 5.0, "summary": "Great book", "unixReviewTime": 1404086400, "reviewTime": "06 30, 2014"}
{"reviewerID": "A2VFCSY7WSD0KU", "asin": "1426307667", "reviewerName": "evie", "helpful": [0, 0], "reviewText": "my granddaughters are 7 and 9 and i got them each a different book in this series. they are always quoting from it. lots of fun information.", "overall": 5.0, "summary": "grandkids love this series", "unixReviewTime": 1391731200, "reviewTime": "02 7, 2014"}
{"reviewerID": "AHXGKTISCA5L1", "asin": "B00FGHLC6I", "reviewerName": "Clarence Kittelsen \"Zombienkongen\"", "helpful": [1, 1], "reviewText": "A great read.I loved the trilogy.And I will keep a lookout for more by the Author.recommended!!!please write more very soon!", "overall": 4.0, "summary": "fast and fun", "unixReviewTime": 1391472000, "reviewTime": "02 4, 2014"}
{"reviewerID": "AP9KLNTGRIZ8", "asin": "B00GUNB9RO", "reviewerName": "Riva", "helpful": [0, 0], "reviewText": "I'll admit I liked the first book of this series better. This one was darker than the first. However, I still enjoyed it and look forward to more from Ms. Walker.", "overall": 4.0, "summary": "Nice 2nd book", "unixReviewTime": 1392508800, "reviewTime": "02 16, 2014"}
{"reviewerID": "ADIJ8IRWTUFW8", "asin": "B00JLMH9KC", "reviewerName": "EllieK", "helpful": [0, 0], "reviewText": "Most adult people in the world today have never been married or are divorced. Divorce is a common theme in America and something that many people cope with. This book offers a new insight into divorce, why it happens, and why it’s not as bad as stigma has made it out to be. Sometimes divorce can be for good and this book does a great job of shedding new light on that subject.", "overall": 4.0, "summary": "New Light on an Old Subject", "unixReviewTime": 1398556800, "reviewTime": "04 27, 2014"}
{"reviewerID": "A23P5SADGX21AI", "asin": "1490487190", "reviewerName": "lucky Chucky.", "helpful": [0, 0], "reviewText": "Loved the character plays in it. It was an easy and fun read. Loved it! A must read for anyone looking for a book to finish in a day.", "overall": 4.0, "summary": "Cute story!", "unixReviewTime": 1390521600, "reviewTime": "01 24, 2014"}
{"reviewerID": "A1TRVSQJZGYJP5", "asin": "1937041123", "reviewerName": "carlymcc", "helpful": [0, 0], "reviewText": "Debora Geary manages to make you laugh in this book about two witches on a journey of self discovery. But beyond the laughter, Ms. Geary manages to make the reader feel sympathy, and sometimes frustration, towards the characters that live inside this book. Their journey becomes your own, their self discovery your discovery. I am a dedicated fan of Ms. Geary's \"A Modern Witch\" series, and was not disappointed in this next chapter of Witch Centrals stories, peripheral as they may be. I'll be downloading book number two in \"The Witchlight Triology\" immediately! You should do the same.", "overall": 4.0, "summary": "Fun Reading With Depth...Highly Recommend", "unixReviewTime": 1394755200, "reviewTime": "03 14, 2014"}
{"reviewerID": "A25V7KAUQZ1W1W", "asin": "0758203721", "reviewerName": "Claudia N. Davidsen \"Claudia Davidsen\"", "helpful": [0, 0], "reviewText": "For me, this was Daisy's best outing. It had everything: Locations, excitement, historical figures, and comedy. Dunn writes so well, and has the descriptive ability to place the reader in the setting without getting bogged down in tedious details. There were scenes that compare favorably with the classic William Powell "Thin Man" series: fast moving, great dialogue and richly colorful characters. I enjoyed every word of Murdered Muckraker. This is fully worthy of a PBS Masterpiece Mystery. So: Movie! Movie! Movie!", "overall": 5.0, "summary": "Shout out for a movie!", "unixReviewTime": 1397779200, "reviewTime": "04 18, 2014"}
{"reviewerID": "A3VL7MU8U9DOV0", "asin": "0679722602", "reviewerName": "Debra Purdy Kong \"Mystery Author\"", "helpful": [0, 0], "reviewText": "The Continental Op's (he's never named) assignment is to investigate the theft of diamonds from the Leggett family home. When one of the two suspects is quickly found murdered, the Leggetts' story about what really happened begins to unravel. As it does, the past and the present slowly reveal themselves in a quagmire of trouble.For most novels, this would be enough material to fill one book, but for Dashiell Hammett, this is only the first of three parts that become steadily darker and seedier as the story progresses. The key figure in the book is Gabrielle Leggett, the confused, aloof daughter plagued by her own demons. Just when the Continental Op thinks he's done with the family, he's asked to watch over Gabrielle who's recovering from tragedy at a Temple, which appears to be a religious cult. From there, things only get worse.What can I say about Dashiell Hammett that hasn't already been said? Having read his work after so many years, I understand why he's considered one of the masters of the detective novel. It was a welcome change to read mystery that's kicking it old style. There's no hi-tech gimmicks in this story, just a lot of leg work and--on the downside--some sexism and racist slurs that were prevalent back then. Still, this whodunit will keep you guessing as hidden agendas and connections make a simple plot increasingly complex. Having said that, the twisted motivations and secret relationships in this book became so extensive that it stretched credibility by the end, however this won't deter us true Hammett fans from reading more of his work.", "overall": 4.0, "summary": "Complex Story From One of the Best", "unixReviewTime": 1394236800, "reviewTime": "03 8, 2014"}
{"reviewerID": "A2ZJHEB8K8JZR3", "asin": "B00H5PS86G", "reviewerName": "Amazon Customer", "helpful": [2, 2], "reviewText": "Great BDSM but just cant stand reading about stupid /clueless women sometimes. It wasn't high on the intensity department for me. It was more of a 3 1/2 out of 5 rating.", "overall": 4.0, "summary": "Good", "unixReviewTime": 1391299200, "reviewTime": "02 2, 2014"}
{"reviewerID": "A2MOBP9N4R4IN", "asin": "1591845556", "reviewerName": "Bart", "helpful": [1, 1], "reviewText": "a map to learning anything in a reasoable amount of time. A new way to aproach the way to master whatever you want. I am interested in improving my golf game after years of futility. I have deconstructed my swing and am focussed on one element at a time & I already am seeing progress. Great book", "overall": 5.0, "summary": "well done", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "A3813M2HAMX0I8", "asin": "0061098698", "reviewerName": "book lover", "helpful": [0, 0], "reviewText": "Callahan Garrity, private eye and cleaning lady, loses a former partner and good friend when he makes a quick stop at a convenience store. Callahan, even after being warned off, tries to find the bad guys involved.The writing is tightly plotted, the story line will keep you guessing, the characters are likeable – except of course, for the sleazy ones. Andrews has another winner in her Garrity series of mysteries. Her fans will love it and new readers, who need not have read any others in series, will find a new author to seek out.4 of 5 stars", "overall": 4.0, "summary": "IRISH EYES by Mary Kay Andrews", "unixReviewTime": 1402185600, "reviewTime": "06 8, 2014"}
{"reviewerID": "A3MT311233OHMQ", "asin": "1477657762", "reviewerName": "Sophia Rose \"Guest Reviewer for Delighted Rea...", "helpful": [0, 0], "reviewText": "This one got pretty exciting and I was thrilled to see this happen. I loved all the twists and turns it took. While the romance was as good as I've come to expect from this series, I have to say that I found the advancements in the overall story arc for the series equally compelling.Jessica and Travis were a great couple. They had me laughing, sighing at the tender moments and groaning over their mutual stubbornness. Before I go much further, I should point out that this one is very much connected to the ones that came before it. It assumes the reader is familiar with the history of several people and the ongoing situation that makes them time travelers.Jessica Battaglia is a nurse at a hospital in Harrisburg and her life leaves her content with the exception of painful situation of her grandfather walking away from his marriage and taking up with a much younger woman. She can't forgive him for this and doesn't trust his new wife, but she agrees to come to dinner along with her best friend, Hailey for moral support. At the dinner, all goes wrong and she ends up accused of murdering her own grandfather and taken into custody even while her friend is taken to the hospital because Eve drugged them. While sitting in the interrogation room, something weird happens and she blacks out only to end up in the countryside almost a hundred and fifty years before her time trying to convince a guy that she's not crazy.Travis Wade, a Union deserter and thought dead, is making his way back to his uncle in Harrisburg to get his help when he stumbles on a crazy beautiful woman who thinks she's from the future. It's not long before he learns that her bizarre story is indeed the truth when he encounters more time travelers just like her and they all know his uncle and his brother. His life is turned upside down and his attraction to Jessica is at the center of this. Each time he is near her though he ends up saying or doing the wrong stuff that causes an argument. He has no idea what to do and recognizes that if he doesn't figure it out quick, she'll leave him behind to return to her own time.Jessica is all stirred up when it comes to Travis and she doesn't know what to think about the irritating man who both makes her go weak at the knees and gives her the urge to hit him all at the same time. She has the added distraction of worrying what is going on with her grandfather's murder and her friend's precarious survival in her absence. Her heart is divided and she has no idea what to do.In the meantime, she is enjoying the camaraderie and family of people who have taken her into their life and made her one of their own. Sophie and Jamie kindly do all they can for her and Travis, Em and Hannah are busy with babies and pregnancies and they're all caught up in the events brought on by the War. The mysterious Madame and others are at work in the shadows orchestrating things that effect everyone's lives.As I said earlier, the plot on this one was loaded with action and suspense which I loved. The pace moved along pretty good. I enjoyed the reveals about the bad guys' plottings. Jessica and Travis were key figures that the good guys had to protect and the bad guys take out for the opposing people to get their victories. The murder plot in the contemporary time just made things even more exciting.As to the romance and characters of Jessica and Travis, I really liked it for the most part. They were both so stubborn and unwilling to see the other's perspective at times that I got frustrated. And there was a period where denial of feelings caused stupid setbacks for them, but fortunately they had Sophie and Jamie around to knock some sense into their heads. I suppose all the conflict leading up to the resolve just made the resolve that much sweeter.It was fun to get a peek in with everyone else as they all played a big part in the story including Crow and Shaye in the future. Looking forward to what comes next.This book and the series it is part of would appeal to those who enjoy sweeter romances in a time-travel situation that is spent mostly in the American Civil War era.My thanks to the author for gifting me a copy of this book in exchange for my honest review thoughts.", "overall": 5.0, "summary": "Rivals My Favorites in the Series For Romance and Suspense", "unixReviewTime": 1390089600, "reviewTime": "01 19, 2014"}
{"reviewerID": "A2QTTKSZR514U5", "asin": "1583457348", "reviewerName": "vickie", "helpful": [0, 0], "reviewText": "Good, heart warming story. Predictable but still leaves the warm fuzzy feeling. Glad I read it just for the pleasure of it.", "overall": 4.0, "summary": "Good story", "unixReviewTime": 1394755200, "reviewTime": "03 14, 2014"}
{"reviewerID": "A3EZ4UKJO6GPOT", "asin": "B00JFF5JMA", "reviewerName": "Peter A", "helpful": [0, 0], "reviewText": "I'm a June birthday and therefore a Gemini, got this book to understand a little more about my star sign and the author has put together a great little book on astrology.The section on Gemini and health struck very close to home as it perfectly described my working habits.", "overall": 5.0, "summary": "Understanding myself through Gemini", "unixReviewTime": 1396828800, "reviewTime": "04 7, 2014"}
{"reviewerID": "AGUUTE30RCO0O", "asin": "B00JF6PCB2", "reviewerName": "Kindle Customer", "helpful": [0, 0], "reviewText": "I WASN'T DRYING TO READ THIS BOOK BUT GLAD I DID. THIS BOOK HAD A LOT OF DRAMA. I FEEL SORRY FOR TABBY BUT SHE FELL FOR THE WRONG DUDE. I WILL BE LOOKING FORWARD TO PART TWO..", "overall": 4.0, "summary": "REALLY GOOD", "unixReviewTime": 1398816000, "reviewTime": "04 30, 2014"}
{"reviewerID": "A22VBEZI6I42IM", "asin": "0373803508", "reviewerName": "Lynn Bleuer", "helpful": [0, 0], "reviewText": "This chronicles are so interesting. The characters and side plots are riveting and I enjoyed the humor and adventure in all of them.", "overall": 5.0, "summary": "Excellent", "unixReviewTime": 1388966400, "reviewTime": "01 6, 2014"}
{"reviewerID": "A3T53I4UUNBKLK", "asin": "B00IMP3N86", "reviewerName": "tnbookaddict", "helpful": [1, 13], "reviewText": "I loved What Wendy Wants and Karma, but this book fell flat for me. This was less of an erotic novel and more of a guide to true intimacy. What I didn't like was that the plot seemed so far fetched. Unless this author comes out with a novel similar to What Wendy Wants I won't be reading any more of her work.", "overall": 2.0, "summary": "Ho hum", "unixReviewTime": 1395273600, "reviewTime": "03 20, 2014"}
{"reviewerID": "AZW2DQAT61RJP", "asin": "0800794052", "reviewerName": "Barbara Foreman", "helpful": [0, 0], "reviewText": "this was a sad story but a loving heart felt story. it helped me to be thankful of the freedom that i have as a christian to praise and worship Jesus anytime i want. I would recommend it for other to read to see how much we take freedom to worship Jesus for granted.", "overall": 5.0, "summary": "WOW", "unixReviewTime": 1392076800, "reviewTime": "02 11, 2014"}
{"reviewerID": "AG0IHS9UYOXPM", "asin": "0385335350", "reviewerName": "AJConrad", "helpful": [0, 0], "reviewText": "I'm so glad I found this author. Beautiful story telling with reasonable problems, no villains, just strong characters with wonderful personalities, trying for happiness. I will continue to buy Mary Balogh's books.", "overall": 5.0, "summary": "excellent", "unixReviewTime": 1392854400, "reviewTime": "02 20, 2014"}
{"reviewerID": "A1ZTZ9G6EDJFQK", "asin": "0805098542", "reviewerName": "Amazon Customer", "helpful": [0, 1], "reviewText": "I took my time to absorb the information and to learn more about Jesus his life and his teachings. O'riley and Dugard did an excellent job of researching the facts of Jesus life. I did appreciate how it came to be of the illegal trial and the death sentence and thank them for limiting the gore.", "overall": 5.0, "summary": "captivating", "unixReviewTime": 1390262400, "reviewTime": "01 21, 2014"}
{"reviewerID": "AISUSPFYY68RO", "asin": "0802734499", "reviewerName": "bookworm1858", "helpful": [0, 1], "reviewText": "Source: Received an e-ARC via Netgalley in exchange for an honest review.I had heard good things about this author's previous book Breaking Beautiful so I decided to go for it and check out her latest to see if I'd want to circle back and read the other one. Based on the plot and writing of this one, I would be willing to check out the first book from the library. I can't say I was head over heels in love to want to buy it.Jaycee missed the last text of her best friend Rachel's life, caught up in her first kiss and lingering anger from a fight between the girls six months previously. This haunts her as she starts to believe there was more to Rachel's death than is being shared and confirmed when she receives unlikely aid from a friend of Rachel's, sending her down a path of gangs, hazing initiations, jealousy, and racial tensions in a small insular Washington town.For me, this book's big strength was its fast-paced. I read it all in one frantic day, barely able to put it down as each chapter only impelled me to read further. I credit this to the writing and plotting of Wolf-she really kept me on the edge of my seat.Also of interest was peeling back the layers of racism and mistrust between the old timers of the small town and the migrant workers, some of whom may be there illegally. When Rachel is murdered, it is all too easy to lay the blame at the feet of someone who allegedly has ties to a gang or whose skin is a different color from yours. I'm not sure this was handled as thoroughly as it could have been but it might be enlightening for some people and it helped to ratchet up the tension in the beginning of the book.But its weakness for me was its timid and naive narrator, though as the book progresses the reader gets a sense of her strong moral fortitude. I guess you could compare her to Fanny Price of Mansfield Park. She lives within her father's stringent rules and doesn't try to push the bounds of what it means to be a good girl, accepting her fate as one of the uncool. But her best friend considers her the best person she knows, someone who knows right from wrong and will diligently work to expose the truth and render justice (not vengeance, a key distinction). Saying that, even as I admire those kinds of people, they don't tend to be my favorite book characters. I like a bit more flamboyance and wit a la Elizabeth Bennet. The naivety is especially frustrating when it came to the culprit; I started having my suspicions probably later than others but it was eons before Jaycee with her trusting heart.Overall: I am eager to hear the opinion of people who have read Wolf's previous outing as well as those who are well-versed in YA mystery/thrillers. How do you think this stacks up? Personally I think this is a can-miss. Give it a read if the concept sounds intriguing to you but otherwise, don't feel bad about passing over it.", "overall": 3.0, "summary": "A review from Bookworm1858", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "A198FHNK8BE0MX", "asin": "B00LDI41Z8", "reviewerName": "Tucker", "helpful": [1, 1], "reviewText": "It's In Your Hands is a great book about motivating yourself to achieve goals. The book helps the reader to reach those goals by giving examples and detailing what is needed in order to achieve success. Overall, I found the book to be a good motivational tool and hope others might like the book as well.", "overall": 5.0, "summary": "Good Read", "unixReviewTime": 1404518400, "reviewTime": "07 5, 2014"}
{"reviewerID": "A2ZHZ8CFVNYO3V", "asin": "0316240079", "reviewerName": "Barbara L Quehl", "helpful": [0, 0], "reviewText": "a small group of men that got little cooperation from the government to do a job for which the world should most grateful.", "overall": 4.0, "summary": "Monumental heros", "unixReviewTime": 1396310400, "reviewTime": "04 1, 2014"}
{"reviewerID": "A3IPNF64L8R3RJ", "asin": "1489528865", "reviewerName": "rkjnfl", "helpful": [0, 0], "reviewText": "What is hotter than a tattooed hottie! Was a wild ride! There was some really heated parts of this book. I like that it continues in other books too.", "overall": 5.0, "summary": "HOT!HOT!HOT!", "unixReviewTime": 1392249600, "reviewTime": "02 13, 2014"}
{"reviewerID": "A2BS0C9622LG49", "asin": "0062120344", "reviewerName": "jo", "helpful": [0, 0], "reviewText": "Very interesting read. When I bought the book I thought. It was going to be about Raylen and Boyd. I was pleasantly suprised that it was so much more. I really liked theTonto woman.", "overall": 5.0, "summary": "Yea for Raylon.", "unixReviewTime": 1392422400, "reviewTime": "02 15, 2014"}
{"reviewerID": "ABDR6IJ93HFIO", "asin": "B00GZ0SS58", "reviewerName": "Daisy \"Daisy S\"", "helpful": [0, 0], "reviewText": "There are many self help books out there in order to help one with positive thinking. However this book is different from other self help books that I have read in the positive thinking respect. What it has is SHORT, SWEET and UNIQUE because it has quotes from famous people like Taylor Swift and even Abraham Lincoln. After each quote is a mini lesson on how to apply this quote into your life.There are 30 SUPERB quotes by famous people and found that in one way or another, all 30 are helpful.My favorite quote and mini lesson is:* Number 1 by Henry Ford: Whether you think you can or think you can't you're right. How true this quote is! And I liked it so much, I put it on a 3 x 5 card in my bathroom and use the I CAN part of this, what a wonderful quote!This is a MUST READ book because it is small and so MEANINGFUL and so HELPFUL. At the low price of just about one dollar, it is worth the purchase!Highly recommend this book!", "overall": 5.0, "summary": "Famous quotes by famous people - short book with great food for thought!", "unixReviewTime": 1389139200, "reviewTime": "01 8, 2014"}
{"reviewerID": "A3LQ0NO9184JTU", "asin": "1495252671", "reviewerName": "denise", "helpful": [0, 0], "reviewText": "Misty decides it's time to leave her abuse husband ..she is working under a diff name when the Bryson happen tostumble upon her..Bryson tries to tell Misty That she needsto put her ex husband away .. Bryson learns that Misty is Damonlost sister.. This was an amazing read ..", "overall": 5.0, "summary": "Execellent book", "unixReviewTime": 1393632000, "reviewTime": "03 1, 2014"}
{"reviewerID": "AVSSL2A6OF4TU", "asin": "1250039819", "reviewerName": "Amazon Customer", "helpful": [2, 4], "reviewText": "What a wonderful book. Four buddies, friends from grace school in the heartland of America, just ordinary guys. But they have stories so rich and friendships so deep, you wish you could meet them. I didn't want the book to end. A page turner that will keep you up late. Reminds me of Anita Shreve's earlier works.", "overall": 5.0, "summary": "Perfection.", "unixReviewTime": 1396569600, "reviewTime": "04 4, 2014"}
{"reviewerID": "AEO8TLBXYU569", "asin": "B00HIOO7NC", "reviewerName": "Raving in Alaska \"CMF\"", "helpful": [0, 0], "reviewText": "Listened to this one while driving through Northern California and the tall pines. Just right for this one. Book two held just the right balance of action and romance for me. Relationships are what life is all about and this one built on the first book nicely. Good job Ms. Raymond.", "overall": 5.0, "summary": "Good job.", "unixReviewTime": 1405382400, "reviewTime": "07 15, 2014"}
{"reviewerID": "A1P6TG70UWKNJC", "asin": "0451417909", "reviewerName": "Amazon Customer", "helpful": [1, 1], "reviewText": "It has been awhile since I have read Anne Bishop novel. The Black Jewels series were my first books by her. I decided to check this out and delighted with the story. A page turner with great characters and fantasy worlds. I just purchased the second in the series Murder of Crows and can't wait to get started. Highly encourage everyone to read this book no regrets.", "overall": 5.0, "summary": "Awesome", "unixReviewTime": 1394755200, "reviewTime": "03 14, 2014"}
{"reviewerID": "A37VEI6XOJ7RH1", "asin": "0615441866", "reviewerName": "Diane L. Carter", "helpful": [0, 0], "reviewText": "I enjoyed this book although it was a bit far out in terms of believability. I think it portrayed the heroine's religious struggle particularly well. The "bad guy" in the church was a good story tactic but I was disappointed with how his part played out in the end. It was a bit over the top and then there was no resolution of that part of the story. I wanted to know what happened to him and his cronies. This book probably deserves three stars but I gave it four because I just liked the story.", "overall": 4.0, "summary": "Runaway Pastor’s wife", "unixReviewTime": 1396396800, "reviewTime": "04 2, 2014"}
{"reviewerID": "A22NAXY2WI4YMD", "asin": "1477818162", "reviewerName": "joanie", "helpful": [0, 0], "reviewText": "Kept my interest. Author has a fine vocabulary. So easy to use on a kindle. Will read more books by him", "overall": 3.0, "summary": "well written", "unixReviewTime": 1397952000, "reviewTime": "04 20, 2014"}
{"reviewerID": "ARBELHYW35HQI", "asin": "B00FIUHQP4", "reviewerName": "JJ Zonvil", "helpful": [1, 1], "reviewText": "If you're expecting John Rain, read something else. This lacks anything familiar to Eisler's writing other than the name and that he's an assassin. Eisler tends to have a lot of atmospheric description and is tight with details on training, weapons, violence, and what Rain is thinking. It was hard to get a sense of the streets ape of Manila. It was almost insulting to read the line (paraphrasing here), "I checked to make sure I had weapons...and all that." Pretty far removed from John Rain. No details on the plan, type of knife, exploring the angles and options for implementing his plan. The fight sequences with the Russians read like a bad movie plot. Trading face punches? No judo or grips and holds? Joking with new partners like they are life long friends?If you've read any real Rain stories, then you know this doesn't fit.", "overall": 1.0, "summary": "poor attempt at taking over the Rain character", "unixReviewTime": 1388707200, "reviewTime": "01 3, 2014"}
{"reviewerID": "AQXFKB1LKUMNX", "asin": "1477817522", "reviewerName": "SONDRA", "helpful": [0, 0], "reviewText": "An interesting book but not spellbinding. Ok writing but even with extensive editorial help still somewhat stilted. Who did it in this whodunit was rather obvious early on.", "overall": 3.0, "summary": "An ok book", "unixReviewTime": 1401062400, "reviewTime": "05 26, 2014"}
{"reviewerID": "A2UL4M5SXL7L0A", "asin": "1466206136", "reviewerName": "basieswings", "helpful": [0, 0], "reviewText": "This is a good book for people who want to use quick books for bookkeeping and have a lot to catch up on but don't know where to start. The book is pretty old in the tech world (2008-2009) and it needs to be updated which is why I didn't give it five stars. The author also includes links to her other books and none of them work.", "overall": 4.0, "summary": "Solid book with good info but needs to be updated", "unixReviewTime": 1396396800, "reviewTime": "04 2, 2014"}
{"reviewerID": "A2IDEB62UVVXX5", "asin": "1456727796", "reviewerName": "Norman F. Quirion", "helpful": [0, 0], "reviewText": "I enjoyed this book very much and wholeheartedly recommend it to anyone who wants to be entertained. Can't wait to read another book by this author.", "overall": 4.0, "summary": "A great read", "unixReviewTime": 1395446400, "reviewTime": "03 22, 2014"}
{"reviewerID": "A2C6NFRW1L324X", "asin": "0470374942", "reviewerName": "Sandra H. Kennedy", "helpful": [0, 0], "reviewText": "As a tutor, I order texts frequently. This was the first time I ordered binder ready. I ordered it because the price and condition were quite favorable compared to any other format. I haven't put it in a binder. For tutoring, I can take out the current chapter we are working on, and just put that in a binder. I think it would be hard to handle if all of it was put in a very large binder. As a CPA, accounting texts all seem the same to me. The presentations in this one were good and I was able to find Power Points of most of the chapters on line at no cost. That helped my tutoring as I was able to upload to a whiteboard and use with my students.", "overall": 5.0, "summary": "Good text, binder ready format handy", "unixReviewTime": 1398729600, "reviewTime": "04 29, 2014"}
{"reviewerID": "A3T7S6BDKHWPJD", "asin": "B00FDX59UA", "reviewerName": "christine abee", "helpful": [0, 0], "reviewText": "I put my name behind this writer I like her books . You'll not be disappointed.so grab a book or two sit back start reading.", "overall": 5.0, "summary": "another great writer", "unixReviewTime": 1399420800, "reviewTime": "05 7, 2014"}
{"reviewerID": "A10GF96SESUSWQ", "asin": "B00C08FXFC", "reviewerName": "Dotfromoz", "helpful": [0, 0], "reviewText": "I finished Book 1 last night and immediately purchased Book 2. Now I need Book 3. I have never been a fan of Science Fiction. What draws me to Jason Gurley's work are the characters. I care about them. They make me cry. This review is for readers like me who don't like this genre. Give it a try. Jason is great about offering his works for free. Got me hooked and I actually bought this one. Be kind. Be generous.", "overall": 5.0, "summary": "Wonderful Trilogy.", "unixReviewTime": 1401235200, "reviewTime": "05 28, 2014"}
{"reviewerID": "A3IDW5NUE2VICC", "asin": "038533401X", "reviewerName": "R Stahl", "helpful": [0, 0], "reviewText": "Wonderful, suspenseful book.", "overall": 4.0, "summary": "Four Stars", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "A2RY2WZFFKI8YL", "asin": "0373129300", "reviewerName": "Christina Jump", "helpful": [0, 0], "reviewText": "Melanie is a very talented writer. Her books are easy reads and the characters are 'normal'. Very good plot under believable circumstances.", "overall": 4.0, "summary": "A very good read!", "unixReviewTime": 1388620800, "reviewTime": "01 2, 2014"}
{"reviewerID": "A1SAG3H9UP4U54", "asin": "0316055433", "reviewerName": "Jane", "helpful": [0, 0], "reviewText": "Intense, disturbing, engrossing. It is a wonderful book and brilliantly written;", "overall": 5.0, "summary": "It is a wonderful book and brilliantly written", "unixReviewTime": 1404950400, "reviewTime": "07 10, 2014"}
{"reviewerID": "A2JGA4F7XHZTN6", "asin": "0062270044", "reviewerName": "Beverly A Brown", "helpful": [0, 0], "reviewText": "This was an amazing book! So full of characters brought to life to love. The history of the period was compassionate and awe inspiring for the courage of people living it. I loved the nonjudgmental attitude stories were infused with!", "overall": 5.0, "summary": "Loved this inspiring story of compassion and fortitude!", "unixReviewTime": 1398470400, "reviewTime": "04 26, 2014"}
{"reviewerID": "A30BP74NIJ0QD3", "asin": "0764203800", "reviewerName": "Jean Jenks", "helpful": [0, 0], "reviewText": "The perfect ending to a really good book. I started wondering after the picture was delivered, how will this end. It really had to be something special and it was. Thanks", "overall": 5.0, "summary": "enjoyable read", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "AKSAJKVR26RX2", "asin": "0375854258", "reviewerName": "Jeanne", "helpful": [0, 0], "reviewText": "A bit old fashioned and of course there are only blonde white children depicted, but this trip to the beach is presented in a simple familiar way. I love these old fashioned illustrations.", "overall": 4.0, "summary": "sweet", "unixReviewTime": 1394064000, "reviewTime": "03 6, 2014"}
{"reviewerID": "A118YNN30H79IU", "asin": "0345528204", "reviewerName": "Rheba Cooper Jackson", "helpful": [0, 0], "reviewText": "As usual she wrote a great book in this one. Enjoyed it to the last page. Hard to put down. Must read", "overall": 5.0, "summary": "Another Great one by Karin Slaughter", "unixReviewTime": 1389830400, "reviewTime": "01 16, 2014"}
{"reviewerID": "A3UEEBT514YGJN", "asin": "0765326949", "reviewerName": "Shirl", "helpful": [0, 0], "reviewText": "The book arrived very promptly. Very enjoyable story on how life probably was way back then. it does give you a little history of north america.", "overall": 5.0, "summary": "Good book", "unixReviewTime": 1402876800, "reviewTime": "06 16, 2014"}
{"reviewerID": "A1DPU1ZBRWSFD3", "asin": "1618080350", "reviewerName": "connywithay", "helpful": [0, 0], "reviewText": "Title: Red Sky at MorningAuthor: Steve WilsonPublisher: White Feather PressISBN: 978-1-61808-035-6“This is definitely in the ‘Red Sky’ category. Who do we have in the field that can check on this further?” Avery asks when an American plane is shot down over the Sea of Japan in the beginning of Steve Wilson’s novel, "Red Sky at Morning."This first book in the Michael Neill Adventure series targets readers who like military strategy, nuclear warfare, and political intrigue in current day scenarios. With no profanity or sexual scenes, this Christian-based story includes violence due to the topic of nuclear destruction.In this tome, United States First Lieutenant Michael Neill grew up with his missionary parents in the Ukraine but has not returned to the country for over eight years. As a Marine, he speaks several languages working as a Marine in the Security Forces Squadron.When his military friend’s plane flies too low near the Russian coastline due to inclement weather and is shot down by a fighter plane with stealth technology, Neill is heart-broken of his friend’s demise but knows God is in control. Yet on the broad scale, other governments want their own control and power in the former Soviet Union area, especially when it involves nuclear weapons.Ordered by the Unites States, the Marine’s instructions are to verify the status of thirty-six C-type nuclear warheads that are to be disassembled at the Odessa plant in the Ukraine. Added to his duties, he must uncover information about the sixth-generation stealth fighter that killed his comrade.While Neill meets up with his old Ukrainian friend, Andrei Ulyanov, who now runs the disarmament program at Odessa, the two Christian men pray for wisdom and guidance when they learn one warhead is missing. Realizing it could be a dirty bomb or full-fledge nuke, they, along with a persistent beautiful journalist, try to anticipate where two Russians who want to restore the old Soviet Union have hidden the deadly device.Counting down to detonation, readers become engaged in the military espionage and patriotism for one’s homeland as pages turn quickly to find out if this time there will be radiological dispersion. As a well-written, technical military tale, Wilson set up a great series where one man’s faith in God is consistent as he deals with others on a personal or global level.Thanks to CWA Review Crew for furnishing this book in exchange for a review of the reader’s honest opinion.", "overall": 5.0, "summary": "Having Faith During Ukrainian Nuke Crisis", "unixReviewTime": 1389398400, "reviewTime": "01 11, 2014"}
{"reviewerID": "A1K6HATE4C4G1R", "asin": "B00KF0URBM", "reviewerName": "Amazon Customer", "helpful": [2, 3], "reviewText": "Loved the book but it was way to short! I would have loved to figure out what happened to him exactly. The end hinted at something but still no answers", "overall": 3.0, "summary": "way to short", "unixReviewTime": 1400457600, "reviewTime": "05 19, 2014"}
{"reviewerID": "A2VR28Q0AO0GTK", "asin": "1493766260", "reviewerName": "Harold Murray", "helpful": [0, 0], "reviewText": "This was a terrific tale for us sci-fi fans. It had enough twists and turns to keep me interested. Can not wait for next installment.", "overall": 3.0, "summary": "Terrific", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "A1SHF7Y7K6QJ39", "asin": "1480568880", "reviewerName": "Sarah", "helpful": [0, 0], "reviewText": "This story is a quick read that quickly gets to a struggle between two people who have not been in the best of situations but take the time to work together and find out whats important. Why this book is short and sweet its a fun read. I know this is a novella but my only wish was that the story was longer this is a great and fun read and I can say easily be read in an hour to an hour and half. Definitely worth the buy. I can't wait to read more A year of the wedding books", "overall": 4.0, "summary": "a quick read", "unixReviewTime": 1397088000, "reviewTime": "04 10, 2014"}
{"reviewerID": "A1KUWGZ04I0W2R", "asin": "0590430505", "reviewerName": "Supercalafragilisticexpealadocious", "helpful": [0, 0], "reviewText": "I am not a fan of Diane Hoh, but I will try any audio book for a book I want to read but am unsure of, especially if I have never read any of an authors books before or dislike the author. The Funhouse is OK, but it's no different than almost all of Scholastic thrillers.Funhouse **1/2 out of *****Violent Content: 2/10 - Minor Violence.Descriptions of Sexual Content: 0/10", "overall": 2.0, "summary": "An OK thriller story, much better than trying to read the actual book", "unixReviewTime": 1392768000, "reviewTime": "02 19, 2014"}
{"reviewerID": "A2ZSVFGBTDKKB2", "asin": "B00HVRDDQ8", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "I love this book and all the books so far in this series. I cannot wait for the next installment to come out.", "overall": 5.0, "summary": "Love this series", "unixReviewTime": 1400544000, "reviewTime": "05 20, 2014"}
{"reviewerID": "A2ZIHME6JE32HK", "asin": "1623360943", "reviewerName": "Nicholai Patchen", "helpful": [0, 2], "reviewText": "Personal stories seem to be a trend in cookbooks recently, like cookbooks need narratives. I don't fully understand that, but in any case this book has a lot of great recipes and the stories certainly have emotional pull. The recipes are extremely clear, the results very flavorful, and in general most of it seems foolproof (at least, I haven't managed to botch any of the recipes I've cooked out of it yet). In my opinion, the book is at its strongest when it is working with vietnamese flavors, but like I said, all the recipes I've tried so far have been really good. Definitely worth buying.", "overall": 4.0, "summary": "Good and lots of personal stories", "unixReviewTime": 1395187200, "reviewTime": "03 19, 2014"}
{"reviewerID": "A2V1Y6HD7AVJPH", "asin": "0062130358", "reviewerName": "Form", "helpful": [2, 3], "reviewText": "Very exciting read. Makes me want to be a fighter pilot. Has a good way of writing that doesnt bore you.", "overall": 5.0, "summary": "makes me want to be a fighter pilot", "unixReviewTime": 1395705600, "reviewTime": "03 25, 2014"}
{"reviewerID": "A1ENMHNYFVROW1", "asin": "0062132520", "reviewerName": "nynana", "helpful": [0, 0], "reviewText": "I love this author and the way she brings the low country to life. This book had so many great moments while addressing g so many real issues. Absolutely fun to read.", "overall": 4.0, "summary": "Good summer read", "unixReviewTime": 1403136000, "reviewTime": "06 19, 2014"}
{"reviewerID": "A33QSO9REE1E7J", "asin": "B00IREVEZG", "reviewerName": "K. Meador", "helpful": [0, 0], "reviewText": "Taken back to a time where people sailed the ocean to find a better way of living and risking their lives at the hands of pirates. This lady received more than she bargained for. A different kind of romance (BDSM) that contained a storyline geared to keep you turning the pages.", "overall": 5.0, "summary": "A good and different kind of romance", "unixReviewTime": 1403395200, "reviewTime": "06 22, 2014"}
{"reviewerID": "ACW3QWC5VH6FZ", "asin": "0764203665", "reviewerName": "pom love", "helpful": [0, 0], "reviewText": "This was my favorite book of the three. It wrapped up loose ends in the trilogy. The author is quite repetitive in all three books and I think she could have developed the characters better. The three cousins are a wonderful idea. They were rebellious in the roles society gave them in the first book and they could have been more aggressive as the women grew. Still the books are interesting and enjoyable.", "overall": 4.0, "summary": "Satisfactory ending to trilogy", "unixReviewTime": 1404777600, "reviewTime": "07 8, 2014"}
{"reviewerID": "A30DZJBG8ZEGHT", "asin": "1844137864", "reviewerName": "Tab", "helpful": [0, 10], "reviewText": "This was a gift, but some of the art inside is inapropriate, especially for young or immature viewers. I don't recommend this book for purchase, go check it out at your local library if you're interested.", "overall": 1.0, "summary": "Don't agree with all of the art.", "unixReviewTime": 1393977600, "reviewTime": "03 5, 2014"}
{"reviewerID": "A32J25QNA1YAD4", "asin": "0062107313", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "I have always enjoyed Amy Tan's unique style of writing. This book was good but a little long- it almost lost my interest.", "overall": 3.0, "summary": "I have always enjoyed Amy Tan's unique style of writing", "unixReviewTime": 1404691200, "reviewTime": "07 7, 2014"}
{"reviewerID": "A276S6WI4W87R2", "asin": "1493685937", "reviewerName": "book junkie", "helpful": [0, 0], "reviewText": "I really love the Invisibles series. Each story has me ready to read the next one. I really enjoyed the story of Grant and Jesse. They are an opposite attracts couple and I enjoyed their journey. I am never disappointed when reading a book by Michelle Lynn. Love her style and characters! You will not be wasting your time on this one!", "overall": 5.0, "summary": "Another winner!", "unixReviewTime": 1396483200, "reviewTime": "04 3, 2014"}
{"reviewerID": "A3C6NF2G5SBRJ8", "asin": "1497572320", "reviewerName": "KateSullivan", "helpful": [1, 1], "reviewText": "Another great hit by Lauren. This whole series has been a fantastic read. Pick up the set now and you won't be disappointed.", "overall": 5.0, "summary": "Love this couple!", "unixReviewTime": 1399939200, "reviewTime": "05 13, 2014"}
{"reviewerID": "A1ZB4X0T8YD7YN", "asin": "0553584197", "reviewerName": "Karen E. Foster", "helpful": [0, 0], "reviewText": "Really enjoyed this book. I can't wait for the next one! The characters were flawd but likable. You really wanted the best for them.", "overall": 4.0, "summary": "Great Start for this Trilogy!", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "AS730WK81A3LD", "asin": "B00IYINKVG", "reviewerName": "Hanna Banks", "helpful": [0, 0], "reviewText": "What I know about Julius Caesar before reading this book is close to nothing but after reaching the last chapter of the book, I knew of his complete (and quite long) name and more. I particularly liked the life lessons of Julius Caesar as it specifically makes the reader feel that big things are achievable and it gives a reader the impression that Caesar is an ordinary man. I just wish that the chapters retelling the life of Caesar were relayed in an engaging and creative manner.", "overall": 4.0, "summary": "The Life of the Great Julius Caesar", "unixReviewTime": 1399593600, "reviewTime": "05 9, 2014"}
{"reviewerID": "A17FDFSQ1OLOUN", "asin": "B00CTU1QBQ", "reviewerName": "dienia k bennett \"dee\"", "helpful": [0, 0], "reviewText": "short story but im glad i read it , ending seemed kinda rushed but all in all well written , read this one", "overall": 5.0, "summary": "cute", "unixReviewTime": 1401321600, "reviewTime": "05 29, 2014"}
{"reviewerID": "A2P7XZORDGSKCK", "asin": "B00IN47VY8", "reviewerName": "Karajeanne Zinsmeister", "helpful": [0, 0], "reviewText": "I read this book in one sitting, I couldn't put it down. It was the perfect afternoon escape. I'm new to erotic romance and I wasn't sure if it was for me, but this book was an awesome romance with some hot sex. The perfect combo in my opinion. Five stars!", "overall": 5.0, "summary": "Erotic Romance with the focus on Romance", "unixReviewTime": 1397174400, "reviewTime": "04 11, 2014"}
{"reviewerID": "A3UXBFDVLBMZQZ", "asin": "B00FZ0FGDG", "reviewerName": "Wanda Green Swafford", "helpful": [0, 0], "reviewText": "I really enjoyed this book and not just for the amount of steam involved, which makes it pretty warm when reading this book. The characters were very realistic and the problems also. The fact that the main man character was older, instead of young 20 something was great too. I fell in love with Griffin, the cowboy rancher raising a baby girl on his own. My heart melted at his story. Griffin is a take charge kind of guy and Nola learns that she loves that. Inside and outside of the bedroom he can make her sing. Nola has a dream to be a music superstar. Griffin learns that just like lyric, his daughter, he will do whatever it takes to keep Nola by his side.", "overall": 5.0, "summary": "Lots of Steam and Heart!!!", "unixReviewTime": 1392163200, "reviewTime": "02 12, 2014"}
{"reviewerID": "A14PRVP4JK88E7", "asin": "B00HDKZUVE", "reviewerName": "Rafase282", "helpful": [1, 1], "reviewText": "good recipes for new and seasoned dieters alike. Does have a few old favorites, but many are worth a try. Recommended for low carb dieters", "overall": 5.0, "summary": "Very tasty", "unixReviewTime": 1402876800, "reviewTime": "06 16, 2014"}
{"reviewerID": "A2UL8JJ1MYIVDI", "asin": "1433501155", "reviewerName": "F. Maddalena", "helpful": [0, 1], "reviewText": "I want to start with the premise that I am not a huge fan of WL Craig. I agree with him on some things and disagree on many other topics in his works and lectures.I am stating this because there seems to be, on the net, both a group of Craig "fanboys" (mostly evangelical Christians) and other people (mostly new atheists) who dismiss him a priori without even listening to what he has to say.Now I am sure most people, certainly those who do not share the same faith as Craig, might disagree with him regarding several things in his book, yet, whatever your beliefs Christian, non-Christian (poly)theist, agnostic or atheist, I think this book is worth reading.Whether you agree with Craig or not, he presents his arguments in a very clearly and understandable matter.", "overall": 3.0, "summary": "Interesting book for anyone.", "unixReviewTime": 1401062400, "reviewTime": "05 26, 2014"}
{"reviewerID": "AT6N0J4O6V0LQ", "asin": "081299289X", "reviewerName": "ginger", "helpful": [0, 0], "reviewText": "three friends, their ups and downs. this does happen but they were able to move on in life and when you make a mistake the win is in learning from it. i found it very true to life.", "overall": 4.0, "summary": "very good", "unixReviewTime": 1403136000, "reviewTime": "06 19, 2014"}
{"reviewerID": "A16853A94XILCK", "asin": "0880882484", "reviewerName": "miranda", "helpful": [0, 0], "reviewText": "I've purchased large kits for this price so I'm not very impressed. This is a pocket sized kit and the cards are not thick and sturdy. I'd get a better set for the money.", "overall": 3.0, "summary": "Cards are thin", "unixReviewTime": 1398556800, "reviewTime": "04 27, 2014"}
{"reviewerID": "A3MQBVYW0APY5A", "asin": "B00F891Z9I", "reviewerName": "arlee", "helpful": [1, 1], "reviewText": "This is a great guide for beginners or hobbyist who want to step up a tank for Shrimp. Shrimp aquariums don't seem common and that, perhaps, is because it appears more difficult that it actually is. Gordon Monock demystifies how hard it is to step up a shrimp aquarium in this easy to follow guide. He covers why to consider shrimp as pets, to feeding them and how to breed them. It's a pretty informative, while being concise guide. I recommend this to anyone looking to start a shrimp aquarium.", "overall": 5.0, "summary": "Helpful, Concise and Informative", "unixReviewTime": 1403222400, "reviewTime": "06 20, 2014"}
{"reviewerID": "AVEFL9T9PJF1T", "asin": "0764227017", "reviewerName": "Faith Griffin", "helpful": [0, 0], "reviewText": "I couldn't put this book down. It kept you wanting more. You felt that you were trying to protect each of the girls. Becomingangry with all the hateful people they had to deal with in order to servive.", "overall": 5.0, "summary": "Page Turner", "unixReviewTime": 1396051200, "reviewTime": "03 29, 2014"}
{"reviewerID": "AINL01VIF0HM8", "asin": "037365782X", "reviewerName": "Helen V. Stoughtenger", "helpful": [0, 0], "reviewText": "I also am enjoying stories that are about families and wish there were more and I have gotten really enjoying the ones that deal with the Bravo's.", "overall": 5.0, "summary": "Holiday royale (The bravo royales)", "unixReviewTime": 1392422400, "reviewTime": "02 15, 2014"}
{"reviewerID": "A9IUBQJWY0ZY5", "asin": "B00IQ8Z8MS", "reviewerName": "Jenny M.", "helpful": [1, 1], "reviewText": "I loved Can't Go Home and couldn't wait to read Can't Go Without! I was dying for Jackson's story. Well, I was not disappointed!!! Hot, sexy, hilarious and all the things I look for in a book!!! Angsty and just perfection!! I CANNOT wait to hear more from Angelisa!!! Amazing follow up!!! LOVED IT!!!", "overall": 5.0, "summary": "I LOVED THIS BOOK!!! Don't go without it!!!", "unixReviewTime": 1394150400, "reviewTime": "03 7, 2014"}
{"reviewerID": "A2MGLTZ6IIOG53", "asin": "B00EFYYNQE", "reviewerName": "Ebony EyeCU Reading \"Ebony EyeCU Reading\"", "helpful": [0, 0], "reviewText": "Now that's how you end a trilogy with a BANG!Page turner from beginning to end! Can't recall EVER reading so fast! Each installment out did it's predecessor! All three stories were full of twist, turns and loop holes that wrapped up in a jaw dropping ending! Just when I thought I had it all figured out, the author threw a curve to throw me off trail! As in all three stories.....Great detailed similarities to Facebook with lessons in the dangers of broadcasting your life on social networks.EyeCU's got a fan Mr. Jordan Belcher and "Closet Ho" was a great teaser that left me wanting more! Looking forward to reading more of your work!EbonyEyeCU Approved & Recommended", "overall": 5.0, "summary": "bang! Bang! BANG!", "unixReviewTime": 1388880000, "reviewTime": "01 5, 2014"}
{"reviewerID": "AX5KL9LWC1TG6", "asin": "B00KC39VEG", "reviewerName": "Nancy of Utah", "helpful": [0, 0], "reviewText": "This is the fourth exciting novel by talented author Douglas Wickard. He certainly knows how to make your spine tingle. He stands with the most popular authors of this genre as he writes another gripping suspense. Sacred rituals await a teenaged girl as the villain scopes her out at the mall watching her dance around her boyfriend. That evening George Madden drops off his wife, Edna, at the weekly prayer meeting. As usual, he has his own weekly meeting at the prostitute club, \"Silk Stockings.\" After he gets his satisfaction, it's hard for him to see while driving on the dark country road at night. However, as he glances toward a stand of trees, he notices a person dressed in all white running and stumbling through the trees. He stops, grabs a flashlight, and works his way through the brambles to find a young girl, barely breathing, laying on the ground. He hoists her over his shoulder to his car and takes her to the hospital. He feels he's likely to be in deep do-do when he has to explain this to his wife Edna. Doctor Sydia Garrison who specializes in surgery at Medical University of South Carolina is sickened by the barbaric assault on this young teenager. A local news reporter, Janice Porter, gets a tip from a fellow who works at the hospital, so she quickly attempts to be the lead reporter and goes to the hospital. There she sees the infamous Detective Dan Hammer who has a strong dislike for reporters, which only hampers her a bit to get a report to her boss. Very soon, as the police search the area where George found the mutilated girl, another young girl's body is found. This leads to FBI Agent Harry Wright into the fast moving investigation of the serial killer tagged, \"The Mutilator.\" This is very compelling story, with the characters well defined, in fast reading style of writing by the author. One can't help read this story non-stop to the very end to see when and if the trauma ends. Highly recommend this suspenseful thriller.", "overall": 5.0, "summary": "\"An Awesome Psychological Crime Thriller\"", "unixReviewTime": 1400457600, "reviewTime": "05 19, 2014"}
{"reviewerID": "AZJE74PQIGKOD", "asin": "0989943461", "reviewerName": "bwarnick", "helpful": [0, 0], "reviewText": "Love it. I kind of started figuring what was going on while about 50% into the book. It was good book. I would reccomend this series to my friends. I would like to know what happened with Ty and Cassie after spring break.", "overall": 4.0, "summary": "Need more", "unixReviewTime": 1394323200, "reviewTime": "03 9, 2014"}
{"reviewerID": "A39I6W6HW3YBHL", "asin": "0140274065", "reviewerName": "TomReader", "helpful": [0, 0], "reviewText": "I went back and read what I now call the President Jack Ryan Trilogy, where in the first, it describes how he became POTUS, then in the second, the first crisis of his presidency, and now with this, the second. While later books still have him as the Commander in Chief, these three are in my opinion, the best. I was surprised how much I'd forgotten and how much I thoroughly enjoyed these! I encourage all who have long ago read and "put down" these great Tom Clancy thrillers, to "pick them back up" - now of course in the form of your Kindle. Like a fine wine, I never want these to end! -TRL", "overall": 5.0, "summary": "Re-Reading These Jack Ryan Classics is Like Enjoying a Fine Wine", "unixReviewTime": 1389744000, "reviewTime": "01 15, 2014"}
{"reviewerID": "A3HBIGI7O48PM7", "asin": "1451611862", "reviewerName": "Bessmess", "helpful": [0, 0], "reviewText": "Like many others - fascinated by the Romanovs. Did enjoy elements of the plot but overall did not enjoy the book as much as I had expected. Hard to explain the reason - just found something lacking in the characters I think", "overall": 3.0, "summary": "EXPECTED TO ENJOY THIS MORE", "unixReviewTime": 1389052800, "reviewTime": "01 7, 2014"}
{"reviewerID": "A11NCZ9Z3LJL1J", "asin": "145161778X", "reviewerName": "J. Tipton", "helpful": [0, 0], "reviewText": "Haunting and very realistic! I can see how this could happen to any of us. Great read!", "overall": 5.0, "summary": "Great read!", "unixReviewTime": 1404518400, "reviewTime": "07 5, 2014"}
{"reviewerID": "A3U7ELIED4WP4R", "asin": "0765329603", "reviewerName": "Dark Faerie Tales", "helpful": [0, 0], "reviewText": "Review courtesy of Dark Faerie TalesQuick & Dirty: Three is my favorite book in the gritty Article 5 trilogy thanks to Simmons’ flawless delivery of both heartbreaking losses and moments of incredible tenderness. Fans of both the dystopian and New Adult romance genres will definitely want to read this exceptional story!Opening Sentence: The dream was changing.The Review:Ember and Chase have gone through hell to be together. The Moral Militia. The Rehabilitation Center. Secrets and betrayals by people they once considered friends. The number of people they’ve watched die. Yet nothing has come as close to truly separating them as the emotional scars they both carry after shooting a young guard in Chicago while rescuing Rebecca.After all, it’s not like they can take a time out to talk about Chase’s darkest secrets or Ember’s greatest fear. With the only safe house they knew of destroyed, their small group of survivors from the MM attack is scrambling to find a place to recover. Ember, Chase, Rebecca, Sean and four others have set out from a temporary shelter to find supplies and a better hiding spot for those injured during the tunnel collapse. No one is happy about leaving the weakest, virtually defenseless members of their group behind and they all feel the pressure to return by the promised deadline only a few days away. Ember, Chase and the rest have barely had time to sleep, let alone hold any private soul-bearing conversations and their hope is fading fast. The only thing keeping any of them going is the hope that Tucker and the two carriers who went with him can find a rebellion post in the Red Zone.The news from Tucker isn’t good when he finally makes contact with Ember though. The first rebellion post is deserted. The news that one of the carriers, the name given to members of the rebellion who deliver messages between posts, is missing is even worse. Tucker is clearly worried about the situation, however most of his concern seems to be focused on Ember – something which makes things with Chase even tenser. Despite their issues, it’s clear Ember loves Chase and vice versa. Still, she can’t deny her feelings for the guy who both betrayed Chase and murdered her mother. She doesn’t want to be concerned about his safety or feel relief at hearing his voice…except she does. Tucker has proven himself several times over and Ember unwillingly feels a softening in her heart toward him.Rather than think too long about the odd Tucker situation, her strained friendship with Rebecca or even the worry she feels over Chase pulling away from her, Ember instead focuses on a trail of subtle clues possibly left by the rebel group known as Three. Ember is certain Three is the key to unifying the rebellion groups – the only hope they have to defeat the President and his Bureau of Reformation. The only problem? No one knows for sure if Three exists or how to get in contact with them. Ember is sure they are getting closer to the elusive group and is convinced they just need more time to find them. For as much guilt and concern Ember felt up to this point for leaving the injured people behind, she’s pretty quick to talk the others into following the trail of clues rather than returning by the promised deadline. I understand her reasoning – finding Three would benefit them much more than simply turning around – but this still seems like a harsh decision. It reflects how much she’s changed since Article 5, how all of them have become hardened to the world of Statutes and murder sentences for single mothers.This change is further emphasized when Ember’s group is ambushed. These may not be MM members yet she reminds herself that anyone attacking her is her enemy. At least it appears that way, until the other group’s leader is revealed to be a man from Chase’s past. A dangerous man who has the power to hurt Chase more than he already has. Afraid Chase will push her even further away if she reveals her true feelings regarding the guy; Ember instead stays silent on the sudden reappearance of the man she trusts less than Tucker. The only good news is the rest of the people with him are rebels who survived another safe house attack.The story, which was in no way slow up to this point, really starts to fly once Ember’s group meets up with these survivors. It’s hard to talk about the rest of the story without giving anything away though. What I can say is there are a lot of hard lessons learned when they eventually do find the mysterious Three. Secret agendas and more deaths – several of which left me a sobbing mess – keep the tension almost unbearably high for the rest of the book, making it very difficult to put it down for even a moment. There are double and triple crosses, but the killer is that there aren’t purely good or purely evil aspects for most characters or their actions. The will to survive can make people do things they never imagined they could to make it one more hour, one more day. There are plot twists I saw coming and others that completely surprised me.None of the relationships in Three are simple, but there were a number of sweet moments that warmed my heart. Ember and Chase’s relationship is definitely one of the more beautiful ones I’ve read in a while. They’ve both changed so much since the first book, yet their love has only deepened. The tenderness Simmons is able to portray between Ember and Chase, and to a greater extent Rebecca and Sean, is refreshing and unique in Young Adult and New Adult pieces where physical attraction is the primary focus. Finally, I’d be lying if I didn’t admit how heartbreaking the ending was for me. I don’t think there’s any other way Simmons could’ve done her remarkable story justice though.Three may be the first book I’ve ever whole-heartedly and universally recommended for everyone with no thought as to what genre it should be placed in. Though there are sexual situations and violence in the trilogy, the overall story belongs among social commentary classics like Fahrenheit 451.Notable Scene:“Why are they here?” I asked, suddenly angry at them — the dead people. They shouldn’t have scared me. I’d seen worse. Much worse.“Let’s go get some air,” he said.I peeled his fingers away.“Why didn’t they clear out like everyone else?” There wasn’t any sign of violence; it was like they’d laid down to sleep and not woken up, and for some reason this bothered me even more.“I don’t know.”“They should have evacuated.” The government had cleared this area years ago.I swiped at my arms again, feeling the tickle on my skin.“Maybe they didn’t want to.” He chewed his bottom lip, looking into the room.His words shifted my fear to something more solid, something stronger. I’d had it backward. These people hadn’t given up, they’d made their stand. Maybe that was all we really got: a choice to control our own fate.FTC Advisory: Tor Teen/Macmillan provided me with a copy of Three. No goody bags, sponsorships, “material connections,” or bribes were exchanged for my review.", "overall": 5.0, "summary": "Three is my favorite book in the gritty Article 5 trilogy", "unixReviewTime": 1401753600, "reviewTime": "06 3, 2014"}
{"reviewerID": "A2I3V7Y1O73XV4", "asin": "0316019984", "reviewerName": "Myster E-O", "helpful": [0, 0], "reviewText": "I used to own a bookstore... I used to sell pop-up books, and I loved to sell them because I thought they were pretty amazing...But this pop-up book is in another dimension... It must be The Mother of all pop-up books I ever saw before...I have never seen anything else that comes close to the complexity and ingenuity of these pop-ups...(This is the first pop-up I have seen by Mathew Reinhart, but I will see more of them...)", "overall": 5.0, "summary": "The Mother of Pop-up Books...", "unixReviewTime": 1390348800, "reviewTime": "01 22, 2014"}
{"reviewerID": "A21V2ROV9Z3KMY", "asin": "1494414309", "reviewerName": "D. Ruthless \"Mellow\"", "helpful": [0, 0], "reviewText": "How does she keep coming up with these stories. This is a read that holds you to each page. Sensational!", "overall": 5.0, "summary": "Sensational!", "unixReviewTime": 1395878400, "reviewTime": "03 27, 2014"}
{"reviewerID": "AWZ29YIO39HAH", "asin": "1477847030", "reviewerName": "Joan Albright", "helpful": [0, 3], "reviewText": "Really haven't read this yet. I gave it a random review because it looks a bit...... boring. I would definitly not laugh out loud.", "overall": 2.0, "summary": "Really I haven't read it yet.", "unixReviewTime": 1392422400, "reviewTime": "02 15, 2014"}
{"reviewerID": "A1LOILP3NIQARW", "asin": "1250039819", "reviewerName": "DW", "helpful": [2, 3], "reviewText": "This book about friends in Wisconsin is loving yet spare. The writing is stunning. The story turns and twists but seems inevitable and real and what friendship and caring and small towns are all about. One of my favorite books this year. It deserves everything good said about it.", "overall": 5.0, "summary": "A wonderful unsentimental book that I couldn't put down", "unixReviewTime": 1396742400, "reviewTime": "04 6, 2014"}
{"reviewerID": "A3IAU8E9ADI6OK", "asin": "0316194751", "reviewerName": "Kerry E. Hannon", "helpful": [1, 2], "reviewText": "One of the best books I've read in a longtime! Amazing reporting and storytelling. You really get a feel for the times, the music industry, Cash and more.--Kerry Hannon, Author of Great Jobs for Everyone 50+", "overall": 5.0, "summary": "Great read!", "unixReviewTime": 1393113600, "reviewTime": "02 23, 2014"}
{"reviewerID": "A2CAUXMWEVCB31", "asin": "0764206427", "reviewerName": "Pat", "helpful": [0, 0], "reviewText": "I liked the way Ms Miller developed her characters and the plot. This book gave an insight into this religious sect that I previously knew nothing about.", "overall": 4.0, "summary": "Good summer reading", "unixReviewTime": 1403222400, "reviewTime": "06 20, 2014"}
{"reviewerID": "A2F8W9DY2LTMYA", "asin": "B00HKIJNUI", "reviewerName": "excellentwheels", "helpful": [0, 0], "reviewText": "The Miss Passport three-day mini vacation itinerary is a phenomenal piece of travel equipment and hands down is the best three dollar investment I've ever made this little 10 page paperback travel guide is a complete itinerary that takes all the stress out of planning the perfect Hawaiian vacation it has everything listed for three days, starting with the day of arrival and progressing accordingly. Each day as a main attraction listed along with suggested restaurants for inappropriate meals. The book is jam packed full of useful information in any tourist might need from historical intriguing facts to the contact information for the hotel theater or boat to her agency. Everything is taken care of by Miss Passport is like having a tour guide in my back pocket, whose sole purpose for existing is to make sure that I have the most memorable vacation possible. I find that the Miss Passport travel guide is an invaluable piece of equipment, and I will definitely be buying other itineraries. For other unforgettable vacations I am sure the Miss Passport guide system will be an invaluable for many adventures to come.", "overall": 5.0, "summary": ": the perfect wine vacation in 10 awesome pages.", "unixReviewTime": 1391040000, "reviewTime": "01 30, 2014"}
{"reviewerID": "A24486AEFQF7Q4", "asin": "0979019710", "reviewerName": "James Rick", "helpful": [1, 1], "reviewText": "Hal has written a fantastic, practical book for making a positive shift in one of the most important spaces in our lives: our daily routine. He not only explains what you can do to make each day, each morning a miracle, but how you can incorporate it into the busiest of schedules. Even the 6 minute miracle morning is genius because it helps you maintain the discipline of a daily routine , even if it is only 6 minutes on a super busy day. The easier it is to keep commitments, the easier it is to build discipline. A great book and strategy for anyone that wants to change their life for the better.", "overall": 5.0, "summary": "Fantastic book, will change lives", "unixReviewTime": 1403395200, "reviewTime": "06 22, 2014"}
{"reviewerID": "A1FAICST7L8P3Z", "asin": "B00FXW4R9U", "reviewerName": "Mabuxt", "helpful": [0, 0], "reviewText": "This story grew tired quickly. I was over Annie about three chapters in. It grates my patience to read about a beautiful smart heroine who is strong in all her decision making except when it comes to trusting her emotions. She goes for what she wants but not romantic happiness. The author could have been erotic and sensual without the brazen profanity. I think it negated the sexiness of the scenes. Anyway, I will read the next book in the series because I want to know Antoinette's story.", "overall": 3.0, "summary": "Promising", "unixReviewTime": 1393286400, "reviewTime": "02 25, 2014"}
{"reviewerID": "A1RRGLIM1F7B18", "asin": "0957309414", "reviewerName": "Lynda Sharrer", "helpful": [0, 0], "reviewText": "What a fun book! It shows how some people make lemonade, when life gives them lemons. I really enjoyed this book and I'm certain you will too!", "overall": 4.0, "summary": "Really good book!", "unixReviewTime": 1403568000, "reviewTime": "06 24, 2014"}
{"reviewerID": "A83XFCPTVRQZ0", "asin": "B00FRSXKMU", "reviewerName": "Kisha Green \"Literary Jewels\"", "helpful": [0, 0], "reviewText": "Heaven’s CryBy: Charmaine GallowayThis story is about a teenage girl named Heaven. Heaven is a pastor’s daughter and her mother is the first lady of their church. She’s dealing with so much along with the everyday struggles of being a teenager.Heaven’s dealing with such as a teenager from being bullied at school to her sexuality. She feels she can’t talk to her parents because they always trying to keep the perfect image for the church. Her parents are always preaching and quoting Bible scriptures.Heaven has a best friend named Jordan who she has more than just friendly feelings for. She has no one to talk to about her feeling for Jordan. Her parent is so strict and live by the every word in the Bible that she’s afraid to even share her feelings. Her parents have tried to instill the Bible into her.When the bullies at school find out how she feels about Jordan they embarrass her during lunch. Heaven is so embarrassed they she starts fighting the bullies and ends up getting expelled out of the private school she has attended since starting school. Heaven has not be forced to go to public school and her parents was upset to say the least about her attending public school which their perfect family image is tainted.This was my first read by this author and I enjoyed this short story and look forward to reading more by this author. The storyline was good and touched on very important issues that teenagers are dealing with today. I rated his title 4*.*Review Copy Provided By Author*", "overall": 4.0, "summary": "Heaven's Cry...", "unixReviewTime": 1390435200, "reviewTime": "01 23, 2014"}
{"reviewerID": "A18V2OY2DHO2ED", "asin": "B006G66YTS", "reviewerName": "Karin Parmentier", "helpful": [0, 0], "reviewText": "This has got to be one of the best books I have read in a very long while.. Sam is so great with Holly's little ones", "overall": 5.0, "summary": "The Daddy Pact", "unixReviewTime": 1403222400, "reviewTime": "06 20, 2014"}
{"reviewerID": "A31CX94EDLUWNV", "asin": "1489514473", "reviewerName": "Yaritza", "helpful": [1, 1], "reviewText": "Received this book directly from the author. It was such a sad outcome but at the end it was also some what happy. It was a tough decision that both these people made in order for there children to survive in a world that is close to ending. This book really does portray what might happen to us in the future. So many problems with the environment and so many people having longer lives. Will there be an epic disease like the black plague that most people will not be able to overcome. It was great that they both found each other even if it was for two hours before they ended up dyeing. Love is always there even when you are not looking for it. Thanks Arron for letting me review this powerful short story. Recommend this book to everyone.", "overall": 5.0, "summary": "Visions of our Future", "unixReviewTime": 1402617600, "reviewTime": "06 13, 2014"}
{"reviewerID": "A2WY52YD5GAEIB", "asin": "0544114353", "reviewerName": "Lauri Crumley Coates", "helpful": [0, 0], "reviewText": "When I first saw this book and read the synopsis, I have to admit to an unvoluntary shudder and a "yuck" thought. Regardless of how adventurous most of us consider ourselves to be in the world of culinary delights, eating bugs doesn't exactly sound like the catch of the day.The author takes a look at hunger, culture, the work of other governments in entomophagy, the actual nutrition that bugs contain, and lots more. The casual conversational style of her writing makes Martin's book interesting and easy to understand. While I am not sure personally that bugs are what's for dinner here tonight, I can easily see the advantages of a readily available food source that is easily sustainable and can basically be grown anywhere.For me, it brought up a more interesting train of thought....why do I think bugs are so disgusting to eat? How culturally brainwashed am I? It's food for thought, for sure.", "overall": 4.0, "summary": "Interesting Look At Creepy Crawlies", "unixReviewTime": 1397606400, "reviewTime": "04 16, 2014"}
{"reviewerID": "A1MRIKXYOCDL6X", "asin": "0440245613", "reviewerName": "moldie", "helpful": [1, 1], "reviewText": "I am a diabetic and have to count carbs - years ago I bought a great carb counter book and this is the updated version - if you or anyone you know has to count carbs for whatever reason this is an excellent source - my bible", "overall": 5.0, "summary": "updated version of an old friend", "unixReviewTime": 1393804800, "reviewTime": "03 3, 2014"}
{"reviewerID": "A3ULETCKQMVG7N", "asin": "9769556602", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "The power of love is the sweetest and craziest thing. You never know what the reaction will be. Great story. Love, lies, and betrayal", "overall": 5.0, "summary": "Great Book!", "unixReviewTime": 1397433600, "reviewTime": "04 14, 2014"}
{"reviewerID": "A29N3SF8Y2SPLO", "asin": "0679643753", "reviewerName": "Laurence Sterne \"Tristram\"", "helpful": [0, 0], "reviewText": "The book is entertaining because of the offbeat, humorous approach to problems of growing up that we all face. His problem-solving is often dysfunctional but his optimism, determination, and essential good nature shine through. Is his growing self-acceptance based on genuine self knowledge?", "overall": 4.0, "summary": "Humor As Remedy", "unixReviewTime": 1401840000, "reviewTime": "06 4, 2014"}
{"reviewerID": "A98IZAMT07XZ4", "asin": "1623221064", "reviewerName": "Julie", "helpful": [1, 1], "reviewText": "Let me start by saying this is the first time I have ever read a book from this author and I will definitley be buying more from her! The author did such a Great job giving each of the characters their own personalities, but the story itself is AWESOME! This story is sooooo good! There is so much Romance, Love through out the story! Way To Go Ms. Mayburn and Please keep them coming!", "overall": 5.0, "summary": "AWESOME, AWESOME ALIEN ROMANCE!! RECOMMEND!", "unixReviewTime": 1404518400, "reviewTime": "07 5, 2014"}
{"reviewerID": "A18HL7EY84E15A", "asin": "B00JKPXSKU", "reviewerName": "Goddess", "helpful": [1, 1], "reviewText": "I love murder mysteries! And when you combine a shifter trope with a murder mystery, I'm all for it. Our heroine is a sleuth who gets caught up in a small town murder. When she meets Dylan, a shapeshifter, sparks fly. But naturally, not all is as meets the eye with Dylan.I was very excited to read on to see just how linked Dylan was with the murder. I would highly recommend this story!", "overall": 5.0, "summary": "Stunning!", "unixReviewTime": 1399766400, "reviewTime": "05 11, 2014"}
{"reviewerID": "A37AIR0GJ5229P", "asin": "054799219X", "reviewerName": "Marcia A Jennings", "helpful": [0, 0], "reviewText": "I loved the whole series and hope Oliver Potzsch keeps going! The history involved was wonderful! The writing was moving, and consistently good! I fell in love with Magdelana and her situation with her lover, Simon! The Hangman was a really good man put into a profession he did not choose--which shows class differential in that Century. You will love the series of the"Hangman's Daughter"!", "overall": 5.0, "summary": "Second in the Hangman's Daughter Series!", "unixReviewTime": 1390867200, "reviewTime": "01 28, 2014"}
{"reviewerID": "AN2HBDX718RNV", "asin": "B003ZK5M50", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "This was another very good book in the series. lots of action and suspense. A very good romance story also. and it took me a while to figure out who was trying to murder Melissa. Can't wait to start the next one.", "overall": 5.0, "summary": "Bachelor Sheriff", "unixReviewTime": 1393027200, "reviewTime": "02 22, 2014"}
{"reviewerID": "A11X0RF20MIB1D", "asin": "0963926209", "reviewerName": "bev", "helpful": [0, 1], "reviewText": "I was not very happy with the book I received. I thought I was receiving a newer Master Cleanser. Also the packaging was ripped open when I received it.", "overall": 3.0, "summary": "The Master Cleanser", "unixReviewTime": 1398124800, "reviewTime": "04 22, 2014"}
{"reviewerID": "A1YBM3LBZ07QQS", "asin": "B00K7TWH28", "reviewerName": "Chloe Halston", "helpful": [2, 2], "reviewText": "A Taste of Honey is a uniquely seductive thriller where sex is power and danger hides in the details. Evocative descriptions draw the reader swiftly into its world of deception and espionage, one which damaged heroine Nikki Siriene may not fully yet comprehend.Be prepared for a level of eroticism most thrillers won't touch - in fact, it's rare that when a book gets this dirty, there's room for a plot at all. Somehow, though, Hennessy makes it work. Catching your breath is tough between the suspense, steam and mystery, and as the stakes got higher I was more and more impressed with Hennessy's perceptive understanding of female sensuality and what goes on in our heads.", "overall": 5.0, "summary": "Sex, power and danger", "unixReviewTime": 1401667200, "reviewTime": "06 2, 2014"}
{"reviewerID": "A26NFR6IX3WGBG", "asin": "0486451429", "reviewerName": "M. Freeman \"M Reader\"", "helpful": [0, 0], "reviewText": "I love history and especially the history when revealed in personal letters. There is nothing better. You get a real view of just how the people were. They were a strong, brave, hard working, faithful & resourceful people who faced the difficult life circumstances with strength and could also enjoy themselves and relax once in awhile too.", "overall": 5.0, "summary": "The Truth told Beautifully.", "unixReviewTime": 1391817600, "reviewTime": "02 8, 2014"}
{"reviewerID": "A1AO24HWH6L2A4", "asin": "1491840900", "reviewerName": "Sam Randol", "helpful": [0, 1], "reviewText": "Excellent resource for info on the latest discoveries in Genetic Genealogy. Would highly recommend this book. Written in a language that anyone could understand.", "overall": 5.0, "summary": "Excellent Resource", "unixReviewTime": 1392422400, "reviewTime": "02 15, 2014"}
{"reviewerID": "A335NDQMD6OH6E", "asin": "1497585368", "reviewerName": "JenWen", "helpful": [0, 0], "reviewText": "Brief synopsis: Karissa is a young college student with a fun, rich and quirky roommate. Karissa has no money and her only family is her mom. Her mother is paranoid and Karissa believes she is somewhat mentally unstable. She is also a recluse. Karissa meets our hero Naz when he is in her classroom speaking to one of her professors. Shaking him down actually but Karissa does not know this. And that is how they meet. Naz isn't just some handsome stranger. He is a very dangerous man. And he wants Karissa. This book ends in a cliffhanger that was so delicious!I devoured every word of this book. I loved Naz so much and I was a little afraid of him too. I especially loved how the author did not do the insta love connection. Naz's possessiveness comes to a slow boil and you are just like the lobster...you don't know its to late until...well its to late. Karissa is a bit immature and a bit trusting but it is believable for her age and situation. I mean what young girl on her own wouldn't want to be around a dark and sexy man. And he is dark. And dangerous. And sexy. But the author does a great job of allowing the reader to learn these things along with Karissa. We are not told what a bad ass he is. We are not told how violent and deadly. But we learn and we realize like someone in her shoes. Karissa had realistic and believable reactions to everything Naz did. And Naz...oh man...you do not walk away from this man. I am praying that the author keeps up his alpha domineering ways in the next book. I want the dark. I want the scary and shocking.", "overall": 5.0, "summary": "Just so yummy! Perfect alpha male", "unixReviewTime": 1400457600, "reviewTime": "05 19, 2014"}
{"reviewerID": "A3JWZ8VI8IP4LR", "asin": "B00KDSMZKW", "reviewerName": "Bill", "helpful": [0, 0], "reviewText": "This story line has kept on evolving and keeping me coming back for more.I don't like to give spoilers in a review (and I won't start now) but the ending in #4 is quite a good one, different from what usually goes down in a Hollywood movie. But, this story would run very well if it ever went to screen.The characters are still very well written and the flow of the story is what I like. It is able to jump forward and back in time to look at a characters storyline without losing your attention.The space battles and tactics read well too, easy to visualize what is going on even though space is vast.Well done Jasper.", "overall": 5.0, "summary": "continues to impress me", "unixReviewTime": 1401321600, "reviewTime": "05 29, 2014"}
{"reviewerID": "A2UNMDJYXPEQZ3", "asin": "194055991X", "reviewerName": "Gatorfan", "helpful": [2, 2], "reviewText": "I thought this was a very enjoyable read. A cute story and a good romance. She is a chef operating her restaurant out of one of his properties. They each have a very clever mother very anxious to become a grandmother. So, they put their heads together to see what mischief they can come up with.The results are explosive. The attraction is bigger than both of them. There was a lot of sex rather quick but I think there had to be a little more than either of them realized to make it explode the way it did. Her lease is about to expire and he holds all the cards to keeping her restaurant going or turning the property over to another chef. Lots of things happen to tear these two apart but Mother Does Know Best. They didn't have a chance. You don't raise 6 boys without learning some pretty clever moves.I think this story was very. very good. I enjoyed it and highly recommend it. I thought it was long enough. It got the story told without a lot of extra drama and events that just make a book longer and really add nothing to the story. Give it a try, I think you will be glad you did.", "overall": 4.0, "summary": "I really liked it.", "unixReviewTime": 1401062400, "reviewTime": "05 26, 2014"}
{"reviewerID": "A273R71NB411LX", "asin": "B00L9DHL6I", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Shaye delivers as promised! A quickie read that stirs the blood leaving you wanting for more! For a good time.. read it!", "overall": 5.0, "summary": "Wow!", "unixReviewTime": 1403568000, "reviewTime": "06 24, 2014"}
{"reviewerID": "A25DUS0W9QSM56", "asin": "B00HRJKAF2", "reviewerName": "Dr. F05", "helpful": [0, 0], "reviewText": "I picked this because I wanted to learn more about these two men. I have always liked and admired Bob Hope. I enjoyed the book, although it was sad to discover some negative things about both men's personal lives.", "overall": 4.0, "summary": "Good short bios", "unixReviewTime": 1396310400, "reviewTime": "04 1, 2014"}
{"reviewerID": "ALPO0F7B7CLBA", "asin": "081299289X", "reviewerName": "Old Redhead", "helpful": [0, 0], "reviewText": "A story of three woman. One Chinese. The other two Japanese passing as Chinese In America. All three in the entertainment field. The novel is about what happens to them before, during and after World War Two.", "overall": 5.0, "summary": "Relationships during W.W.II between Japanese, Chinese and other nationalities.", "unixReviewTime": 1404518400, "reviewTime": "07 5, 2014"}
{"reviewerID": "A17C4RWHLKL502", "asin": "0307460185", "reviewerName": "P. B. Eyrick", "helpful": [0, 0], "reviewText": "Great story. I felt I was part of the story as it truly drew me into the lives of the characters.", "overall": 5.0, "summary": "moving story", "unixReviewTime": 1397088000, "reviewTime": "04 10, 2014"}
{"reviewerID": "AC3X9XOJVAVTB", "asin": "1442402970", "reviewerName": "TXSarah \"Sarah\"", "helpful": [0, 0], "reviewText": "It's a very cute story and perfect for Halloween. My 4 year old daughter enjoyed it though only liked reading it once. She said she didn't like the "creepy" pictures.", "overall": 4.0, "summary": "Very cute but not very captivating", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "A3UIQ1DG8MOREB", "asin": "1478266015", "reviewerName": "Beverly Morten", "helpful": [0, 0], "reviewText": "This small book holds some great information. It guides you threw spiritual verses and help you understand what you can do to help you wants and dreams come true. There is no outside force, all come from within us. We are the one that can change our life to better or worse. I plan on reading this again and again. Each time my mind will comprehend more of the real secret of the art of believing. Thank you very much.", "overall": 5.0, "summary": "Good reading", "unixReviewTime": 1395792000, "reviewTime": "03 26, 2014"}
{"reviewerID": "A2VCMU9IPIPMHY", "asin": "B00JNRLOEW", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Wow this series blowed me away I loved it man the author hit this one right on the money", "overall": 5.0, "summary": "wow blown away by this box set", "unixReviewTime": 1405123200, "reviewTime": "07 12, 2014"}
{"reviewerID": "A2J6WSX7U92W6H", "asin": "1494820609", "reviewerName": "Sharon Duke", "helpful": [0, 0], "reviewText": "This book didn't tell me much more than what I had been able to find online by Googling. But it does provide me a one-stop place to remind me of the techniques I need. I also like that it comes with free updates when Chromecast changes.", "overall": 4.0, "summary": "Helpful information in one location", "unixReviewTime": 1392595200, "reviewTime": "02 17, 2014"}
{"reviewerID": "AUQFY0EMWIACL", "asin": "B00HB9E018", "reviewerName": "Thomas Mobius", "helpful": [0, 0], "reviewText": "Get ready for a good dose of good ol' British humour.This is a pretty realistic depiction or corporate London with all its quirks, warts and dark sides. I think I enjoyed how the author fleshes out the character the most - it was very entertaining following Charlie's character. Allen is a very talented writer, with his 'no-holds barred' style, he is definitely one that I'll watch.Entertaining read!", "overall": 4.0, "summary": "Witty, Slick, Engaging", "unixReviewTime": 1398902400, "reviewTime": "05 1, 2014"}
{"reviewerID": "A21ATVN2BJC01J", "asin": "1572246456", "reviewerName": "Fran", "helpful": [1, 1], "reviewText": "The author says he is both a scientist and a spiritual seeker. Judging by this book he is 90% scientist and only 10% spiritual seeker. The only reason he gives for rejecting the materialist world view is that it is depressing and renders life meaningless. That's a good reason to be a spiritual seeker, but does not provide evidence for a different world view.The author believes life is meaningless without a belief in life in after death, so he writes about paranormal phenomena, OBEs, NDEs, and so forth. The problem is that he presents no compelling evidence for these things. His scientific side requires him to hedge and examine evidence for spiritual phenomena from a skeptical viewpoint. The author treats telekinesis, clairvoyance, telepathy, remote viewing, OBEs, NDEs, and so forth. But after examining the "evidence" in light if the author's scientific "weasel words," you are less likely to believe in these things than to accept them as real. Even the author's single so-called PSI experience is very weak and unconvincing.The author states that "after death contacts" would provide the most compelling evidence for an afterlife, and then writes a chapter that concludes not only that there is NO evidence for such, but it is just too hard to study "scientifically." The theme runs throughout the book that science has led us astray, yet we have no choice but to use the scientific method to set us back on the right path. As a practicing scientist with a reputation to uphold, the author attempts to both criticize science and appease his colleagues at the same time. How can the author believe that science is at once the problem AND the solution?The author's message boils down to this: "I want to believe in an afterlife, and in spite of the lack of evidence I WILL believe because the alternative is too depressing (meanwhile, I will look forward to the day when science gives me a good reason to believe)..", "overall": 3.0, "summary": "Not At All Compelling", "unixReviewTime": 1400889600, "reviewTime": "05 24, 2014"}
{"reviewerID": "A6OSTAN3NPPPB", "asin": "0765326353", "reviewerName": "HB \"HB\"", "helpful": [0, 0], "reviewText": "This book is probably my number 2 book right now, only surpassed by "The Name of the Wind". This is not a lite book, but it is amazing how fast you can fly through it. Brandon Sanderson is a great author that has developed a form of "magic" that is breathtaking and unique. I love this series and will be a die hard fan to the end. Be warned though, that this is supposed to be an epic series with some 10 books (currently only 2 released). If you have issues with pausing amazing stories right in the middle, then you might want to put this on your wish list and keep and eye on it. I know that I nearly cried when I read the last page and realized I would have to wait a year or more for the next installment.This book will refresh anyone's love of fantasy!", "overall": 5.0, "summary": "Amazing book, but reader beware", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "A2J3F6VICYU00C", "asin": "1416577572", "reviewerName": "Robert Sparrenberger", "helpful": [0, 0], "reviewText": "Endless action again. It gets tiresome and Reilly tries to throw a few twists in there but at times the list of bad guys are too many to keep track of. Overall, a good ending to the series.", "overall": 4.0, "summary": "One More Time", "unixReviewTime": 1391472000, "reviewTime": "02 4, 2014"}
{"reviewerID": "A1VCAOFHSTNK6G", "asin": "1422168166", "reviewerName": "Big Data Paramedic \"Chandra\"", "helpful": [5, 7], "reviewText": "The book is a good primer to understand Big Data. Just like every early stage revolutions, Big Data has been equally misunderstood even among tech and business saavy people. For many Big Data , Data Science, Analytics are all interchangeable terminologies. This book takes care of that and lot more. Everyone will learn quiet a lot about Big data from this book,but specifically it is targeted for The Decision Makers.The most interesting feature in the book are the real world corporate examples ; stories to emphasize the point of view that makes it an interesting read for everyone. The slim 175 Pages is split across 8 Chapters:CHAPTERS:1. Why Big Data Is Important to You and Your Organization?2. How Big Data will change your job, Your Company and Your Industry?3. Developing a Big Data Strategy4. The Human Side Of Big Data5. Technology For Big Data6. What It takes to Succeed With Big Data7. What You Can Learn from Start-ups And Online Firms8. What You Can Learn From Large Companies: Big Data and Analytics 3.0.NOW FOR THE DETAILS :Chapter One : This is the superficial section of the book; The author does not use the boring Twitter data feed, Enormous Facebook data as an example which seems to be the staple diet for all Big data articles. Explains the difference between traditional analysis Vs Big Data . Cautions rightfully about Vendors who use the term \"big data\" on totally unrelated topics so can get your attention, ear and business.Chapter Two And Three: Goes over who will be impacted by Big data (Ex : If you move things, If you sell items, If Money is involved) and how . The nice examples involves Scenarios so everyone can relate to his business in some form or Other. This is a primer on the larger objectives around which you build your Big Data strategies . Do you want to save Money? Or is it that you want to introduce new product ? and so on. The sections are backed by tons of examples ( For that Matter, the entire book is one large story telling examples).Chapter Four And Five : It is in a nutshell about \"Data Scientist\". Who they are, and more importantly who is 'not a data scientist', The Shortage of getting resources, how it can be solved. If you want to be a data scientist, read this section, It explains how sizzling hot you are going to be. For a company , be cautious. The chapters go around Hadoop and the technology that goes with it. Hadoop, Map reduce, how Big data will coexist with Data warehouse and so on. As an IT person , you should find this very useful.Chapter Six / Seven /Eight : Is a little more deeper analysis of the factors to have a successful Big data . The Data you need, the leadership you need, the type of Human resources need etc. The chapters are glowing eulogy about the successful companies like Linkedin and the takeaway companies can leverage. If you are decision maker every of these chapters are interesting.Having said that, there is a better book on the same topic, which isBig Data: A Revolution That Will Transform How We Live, Work, and ThinkOn a personal note, My interest on big data spiked after the Harvard Business Review article which predicted Data Scientist as the sexiest job of the 21st Century. From there on. have been reading several books on these topics and hope to be a Cloudera Certified developer soon .", "overall": 4.0, "summary": "Panoramic Birds Eye View Of Big Data", "unixReviewTime": 1390435200, "reviewTime": "01 23, 2014"}
{"reviewerID": "A36WJCEZEJMA0P", "asin": "B00JIV2YA6", "reviewerName": "S&Ms Book Obsessions", "helpful": [0, 0], "reviewText": "I had never read Ella Frank before and wasn’t even sure what to think when reading the synopsis.. After reading it, I don’t think the blurb does it justice. This book felt like it was written as an erotic suspense with lots of twists and turns. I was gripped by the story from the beginning and could not put it down. I think it should have been said that this is a student/teacher romance. BUT don’t allow preconceived notions to let that turn you off…. trust me, this isn’t what you’re thinking. This book wasn’t what I was expecting and I couldn’t be happier about it.In the beginning, we meet Addison (Addy) and it’s pretty clear she is in a mental institution. Her doctor “Doc” is trying to get her to talk and she seems to be in some kind of psychosis where she won’t speak. I was really excited that the book just throws you off the cliff and you have to try and figure out what is happening. From the beginning all you know is that something is wrong and you want to know how she got there. The most intriguing part of the beginning of the book is that Addy keeps thinking she’s alone and “he” is gone. The first three chapters of this book set an amazing tone of the story that follows. Addy was a dark and sexual character to get inside. I was captivated by her maturity even though she was young. I loved how she was so bold and not embarrassed by her body or her desires.Mr. McKendrick wasn’t at all what I was expecting. When someone says student/teacher romance I immediately think the guy is going to be a sleazy creep. I assume he is preying on an innocent girl or taking advantage of a vulnerability. I can honestly say those thoughts NEVER crossed my mind with him. I felt like from the beginning he was trying to thwart Addy’s advances. He was very clear that she was his student and it wasn’t going to happen. He kept his distance and told her “no” repeatedly. I loved that he wasn’t your typical guy looking for a young piece of a**. He was a man, who’s heart connected to Addy’s. I fell in love with Mr. McKendrick and I am not even the least bit ashamed. He does reveal his first name in the book, but it’s such an intimate scene I’ll let you find that out on your own.I am not even a little sorry at how much this book turned me on. I think I even said I was going to make my husband tell me “no” over and over again after I finished this book. I have never been so turned on in my life by a man trying to stop a woman’s sexual advances. The tease, the build up, and the sex are 5 of 5 stars. My vagina and I were totally in agreement that this book was a sexual beast.For me, this book was an A. The story was suspenseful and captivating and I couldn’t stop reading. I was wrapped in the mystery of what happened to Addy and why Mr. McKendrick was missing. I didn’t see how this book was going to play out from the beginning, so I loved that it kept me on edge. I read this book in a day and was angry at myself for finishing it so fast. I don’t know about the author’s other books, but this blew me away. If you are looking for book that has a lot of heat, and a bit of a thriller aspect to it, then this is it! Loved it from beginning to end.", "overall": 5.0, "summary": "I’ll teach you how to come with a man inside you…", "unixReviewTime": 1398211200, "reviewTime": "04 23, 2014"}
{"reviewerID": "A1PV7O0WEA03RI", "asin": "B001P2ZSBS", "reviewerName": "Thea", "helpful": [0, 0], "reviewText": "My son recommended this book and I am really glad that I ordered and read it. It was not at all what I expected and the losses in the book were more than I had thought there would be. It seemed very realistic", "overall": 5.0, "summary": "Great Read", "unixReviewTime": 1389916800, "reviewTime": "01 17, 2014"}
{"reviewerID": "A2PD27UKAD3Q00", "asin": "0425266877", "reviewerName": "Wilhelmina Zeitgeist \"coolartsybabe\"", "helpful": [1, 1], "reviewText": ""Shadow Catcher: A Novel (Nick Baron Series)" by James R. Hannibal is a really amazing and exciting military story. It's a multi-layered story that kept me captivated and on edge the whole way through. I was so into this story before I was even half way through the Prologue. If you love military themes and are a fan of edge of you seat thrillers then by all means, you must read this book!To sum this book up in one word: WOW!", "overall": 4.0, "summary": "Amazing And Exciting", "unixReviewTime": 1395792000, "reviewTime": "03 26, 2014"}
{"reviewerID": "A7WNQN5D1E4HW", "asin": "0307719391", "reviewerName": "Erin Davies", "helpful": [1, 2], "reviewText": "On December 7, 1941 the United States of America was suddenly and deliberately attacked by naval and air forces of the Empire of Japan. Stationed at Pearl Harbor, Morris Sullivan owes his survival to Robert Dobbins, a black seaman who died pulling his comrades from the water. Seeking closure, Morris is determined to thank Robert’s family for his sacrifice, but his effort to honor a fallen hero blooms into a romance that will define the man he becomes and challenge everything he believes.Spanning the better part of five decades, A Life Apart, is a tedious historical, but under that it is a heartbreakingly beautiful novel of prejudice, strength, forgiveness and love that defies convention. I personally found Marlow’s peppering of the story with tenuously relevant headlines from the 40s, 50s, 60s and 70s distracting, but the depth and earnestness of the love triangle she created between Morris, Beatrice and Agnes provided a powerfully moving thesis that struck me to the core.", "overall": 4.0, "summary": "A Life Apart: A Novel", "unixReviewTime": 1399075200, "reviewTime": "05 3, 2014"}
{"reviewerID": "A3MVIEPWQFIKP2", "asin": "146108086X", "reviewerName": "Rich", "helpful": [0, 0], "reviewText": "Once again Joseph Duncan has me hooked. Now I'm waiting for the next book to come out. I love this series.", "overall": 5.0, "summary": "Enthralled", "unixReviewTime": 1392508800, "reviewTime": "02 16, 2014"}
{"reviewerID": "A3O3F5R14BPOPP", "asin": "1494240491", "reviewerName": "Nicole K.", "helpful": [0, 0], "reviewText": "If you are wanting a book that will make you laugh and has no cliffhanger this is your book. I was wanting a fun easy read and had this sitting on my kindle so decided to give it a read. My only complaint is I wish I had read it sooner. Trent was nothing but amazing and when you put Ellen and her best friend Amy together you couldn't help but wish they were your best friends.Rating: 5 hilarious starsPOV: All 1st and mostly in Ellen POV with a couple in Trent POV.Series: Yes, The Infamous series#1: The Infamous Ellen James (Ellen and Trent story)#2: Avoiding Amy Jackson (Amy and James story)Cliffhanger: NoHEA: YES!!!! The epilogue was amazing and even though i was already in love with Trent it made me love him even more.", "overall": 5.0, "summary": "Will make you laugh", "unixReviewTime": 1399075200, "reviewTime": "05 3, 2014"}
{"reviewerID": "A1ZNRZ8QXB7FX7", "asin": "1480049522", "reviewerName": "J. Benner", "helpful": [0, 0], "reviewText": "As usual Vicky weaves a wonderful story first by getting to know the subject really well, then caring about telling about their lives in a deeply personal way. I knew from her blog that she was a friend of Comer, and a very good one at that, but as a writer she still has a special way of wanting to write about someone with depth and caring. It wasn't just words on paper, she made his experiences come alive and you really cared what happened. If history could have been taught in school this way, I would have paid more attention. I almost didn't read it because I'm not a history buff. At all. I shy away from these things. But because it was Vicky who wrote it and I loved her other books, I felt I should give it a chance. I am glad I did. She's a wonderful writer, but she also had wonderful material to work with. Give it a try. I don't believe you'll be disappointed.", "overall": 5.0, "summary": "Awesome book, even if you're not into war stories", "unixReviewTime": 1402012800, "reviewTime": "06 6, 2014"}
{"reviewerID": "A2NXKCVP8GL4ZX", "asin": "1630350192", "reviewerName": "Dianna Malone", "helpful": [3, 5], "reviewText": "This is getting to serious. I can't wait to find out who is wanting Avery dead. I need the next book now! Can't wait! H.M. Ward is keeping us on our toes trying to figure out what will happen next.", "overall": 5.0, "summary": "OMG!", "unixReviewTime": 1393200000, "reviewTime": "02 24, 2014"}
{"reviewerID": "A1P0WTWLLJE7VH", "asin": "0989148912", "reviewerName": "alice", "helpful": [1, 1], "reviewText": "Thoroughly enjoyed this Lei Crime Companion novel about Marcella. Turns out she was even more interesting than I expected. Thought she was just interested in nothing but career, and I had it all figured out, but I was wrong.", "overall": 4.0, "summary": "Stolen in Paradise", "unixReviewTime": 1395619200, "reviewTime": "03 24, 2014"}
{"reviewerID": "A1YUKD9YI72CPJ", "asin": "147824738X", "reviewerName": "Amazon Customer \"Bonnie K\"", "helpful": [0, 0], "reviewText": "I enjoyed the story, but some of it was a little goofy at times when she dressed as a stableboy. It didn't fit. It was typical of this genre, nothing outstanding, but I enjoyed.", "overall": 3.0, "summary": "enjoyable,", "unixReviewTime": 1402358400, "reviewTime": "06 10, 2014"}
{"reviewerID": "A3E5GF0UKRC1MG", "asin": "0529064634", "reviewerName": "NH Grandma", "helpful": [0, 3], "reviewText": "What can be said that would amply describe the treasure that is in the Bible. It is the inspired Word of God - the Creator of all things, and given to us for our daily bread.", "overall": 5.0, "summary": "Greatest Book of All Time", "unixReviewTime": 1394409600, "reviewTime": "03 10, 2014"}
{"reviewerID": "A3JHL9MU889QYR", "asin": "0972121153", "reviewerName": "Always learning", "helpful": [0, 0], "reviewText": "As stated with other books of this series, I'm greatly enjoying the fun and relaxing style of writing as well as references to the church. Spot on, Mark!", "overall": 4.0, "summary": "Love the series", "unixReviewTime": 1403654400, "reviewTime": "06 25, 2014"}
{"reviewerID": "A35CC2LV7L5GFE", "asin": "B00JGEMNOC", "reviewerName": "Jaime @FTLOBbyJBlog", "helpful": [0, 0], "reviewText": "This story started off a little slow for me and at times the dialogue was a little stiff, making it almost seem forced. The further I read the more interesting and natural the story became. I loved the brothers and roommates in their own ways but I had a particular fondness for George and the prank wars between him and Kyle. Dean seemed like he was just trying to look out for Kyle but in doing so he didn't leave a lot of room for her to make her own decisions and I think it was actually doing more harm than good.I still have questions about the night that Kyle regrets the most in her life it just seemed liked we didn't get a lot of details of the aftermath or in fact the aftermath wasn't as serious as it seemed to be to affect Kyle in such a strong way. I was also a little confused about her family's reaction to Nick. One minute it seemed like they wanted her to stay away from him and the next it was like they just wanted her to move on from her previous relationship and get a boyfriends already.I loved Kyle but frankly he's still sort of a mystery to me. He's totally swoonworthy, I mean really a British accent, yes please. He is also patient and kind but persistent in his efforts to make Kyle understand how much he cares about her.Now can we talk about the last chapter and the ending? I have so many questions about Nick's sudden 360, what happened, what's going on? Then the way the book ended, say what? I was not expecting that at all and now I'm biting my nails to find out what happens next.Over all I think this was a great debut and I could see the growth of the author from the beginning to the end of the book. I look forward to what she brings us in the next installment.*I received an ARC from the author/publisher in exchange for an honest review", "overall": 3.0, "summary": "3.5 Stars A great debut", "unixReviewTime": 1396483200, "reviewTime": "04 3, 2014"}
{"reviewerID": "AHCHCJ5E8AJHQ", "asin": "B00DXOJIKS", "reviewerName": "Mona Roberts", "helpful": [0, 0], "reviewText": "The Colorado Brides Series is wonderful. I really enjoyed reading these. I would highly recommend this series of books to read.", "overall": 5.0, "summary": "Great", "unixReviewTime": 1395360000, "reviewTime": "03 21, 2014"}
{"reviewerID": "ANTWMBKHBVJIO", "asin": "1494969114", "reviewerName": "Patricia M. Moore", "helpful": [2, 3], "reviewText": "One of the Best! You feel like you are actually experiencing what the Character is. Can't recall when I read a book and felt good afterwards. She knows how to end a story! Beautifully written, I will be sure to read her other works. Thank you!", "overall": 5.0, "summary": "Gosh this was good!", "unixReviewTime": 1390521600, "reviewTime": "01 24, 2014"}
{"reviewerID": "A28P0TZWR8X4E", "asin": "1480186120", "reviewerName": "D. Reichert", "helpful": [0, 0], "reviewText": "Hands down, the funniest series ever! How Tara makes me stop reading several times in the same chapter so I can stop my laughing is amazing lol. I love this series so much and recommend it to my friends who are looking for a great series that is tons of fun! when Drew talks about the guys at the hardware store having a candlelight vigil over the swing, I could not stop laughing and it makes me laugh even now lol this is a must read!", "overall": 5.0, "summary": "OMG Drew!", "unixReviewTime": 1394236800, "reviewTime": "03 8, 2014"}
{"reviewerID": "A2A0J3C8VFPUXQ", "asin": "B00LF2PL0Q", "reviewerName": "Justin Matthews", "helpful": [0, 0], "reviewText": "After Receiving an advance copy of this book, I have to say that I want more! I really like this story of the "special people" who are just learning about their abilities. The Characters are vivid, and easy to read. They feel tangible, as in, I can feel the people and their struggles. The only complaint that I have for this book, is it is way too short. This feels like the first 1-2 chapters of a larger book, and I was disappointed at the end. I was left hanging, hoping for some more short stories soon. If you are a fan of Becca's like I am, pick this up and read it. If you need a longer story, wait for the next one to come out and then read them both at once.", "overall": 4.0, "summary": "A short story that begs for more...", "unixReviewTime": 1404691200, "reviewTime": "07 7, 2014"}
{"reviewerID": "AGBGV16NY06FW", "asin": "B00H49GO8M", "reviewerName": "Cyn", "helpful": [1, 1], "reviewText": "I was given this book by the author for a honest review.WOW this book started off and didn't stop through out it. It starts out with Kate being chased by men and Ethan saving her and helping her look for his brother. She doesn't trust him due to what his brother said. The men chasing didn't stop there, they turn up every time you turn around, throw in a few Indian children, a wild wolf, ghost, spirits and a few other things and you have a great read. You find yourself pulled into the story, looking for the brother who is looking for gold, but really wanting to find the father, seems everyone is looking for Ethan brother but not all for the same reason.There is all the romance you could ask for, the good and the bad along with the sad, throw in a little humor and you have a good read. Kate finds out a few things about Ethan's past that she doesn't know if she can forget much less forgive. To find the answers you will have to read the book. I promise you will not be disappointed.", "overall": 5.0, "summary": "A great book", "unixReviewTime": 1390694400, "reviewTime": "01 26, 2014"}
{"reviewerID": "A5MZ6LAN8DX6M", "asin": "0316218952", "reviewerName": "Patrick C. Weidinger", "helpful": [0, 0], "reviewText": "Okay book, but totally unremarkable like so much modern literature. I can barley remember what it was about.", "overall": 3.0, "summary": "but totally unremarkable like so much modern literature", "unixReviewTime": 1404691200, "reviewTime": "07 7, 2014"}
{"reviewerID": "A1WR183VN5WNG0", "asin": "B00HDD5NHC", "reviewerName": "Linda Patterson", "helpful": [0, 0], "reviewText": "I enjoyed reading the story even when I knew how it was going to end. The way the author writes keeps you wondering if you are correct in your thoughts. Very good twisting of this an that.", "overall": 3.0, "summary": "Who gets to keep it?", "unixReviewTime": 1395964800, "reviewTime": "03 28, 2014"}
{"reviewerID": "A3P4BJ6GBH7KIW", "asin": "B00IJHR28E", "reviewerName": "Becky C", "helpful": [0, 0], "reviewText": "Briar Rose is a combination Bed and Breakfast and a D/s training school. When Parker begins to doubt himself as a sub his Dom Gaston reaches out to Matt and Adam, the D/s couple who own Briar Rose for help. Dom Matt involves his sub Adam in the plans for how to train Parker to come on command without any penetration or touch to his cock.The strategy they come up with involves strict discipline and the use of toys. When Gaston and Parker agree to the lessons they ask for demonstrations, so the reader gets two views of the same scene, once with the experienced couple and again with the trainees.Gaston has to convince Parker that if they do not achieve their goal they must put this behind them and move on. Parker, on the other hand, feels he should leave Gaston so he can find a sub who can follow any command Gaston cares to give. Either way, it’s up to Gaston to make Parker feel successful.This is a very, very sexy story. It comes close to porn without plot but doesn’t take that one extra step off the cliff, remaining grounded in the story of BDSM training. I really want more books about the Briar Rose, Matt, and Adam.", "overall": 5.0, "summary": "One of Sean Michael's best", "unixReviewTime": 1394150400, "reviewTime": "03 7, 2014"}
{"reviewerID": "A1SIP2N8ACHNX8", "asin": "1580175988", "reviewerName": "Miss Blackheart", "helpful": [0, 0], "reviewText": "This book is a wonderful resource for any questions you might have about how to crochet but it is not a "how to" book that will teach you. As a long time knitter, I ordered this book to learn crochet - not the right book for that. Once I have mastered the basic skills, I think this will be an excellent resource - but I've had to go elsewhere to learn the basics. Illustrations are also a limited and not easy to follow.", "overall": 3.0, "summary": "Not for Beginners", "unixReviewTime": 1389484800, "reviewTime": "01 12, 2014"}
{"reviewerID": "A2LM1HE1HAXMVB", "asin": "0393239357", "reviewerName": "A. Menon", "helpful": [3, 5], "reviewText": "Much about the world always stays the same but in the background there are often big trends that are hard to see when in the thick of it. In the Second Machine Age, authors Erik Brynjolfsson and Andrew McAfee try to distinguish the forrest from the trees and discuss whats happening in the new digital age and how it is affecting us all economically. This book discusses business trends and what is happening in information technology and analyzes it from the viewpoint of economics. It gives perspective on the labour market, the rise of inequality, the needs of the new economy and the policies we should consider in this new environment. It is always sensible and does its best to discuss issues evenly. Despite us all living in this new technological age it is difficult to take a step back and try to get a true appreciation of whats going on is challenging. This book aids in that process and helps frame the issues for the reader to think about.The authors start by considering human progress through our history. They show how population growth as well as our social developement (as considered by Ian Morris in "Why the West Rules for Now") has grown exponentially from the first industrial revolution and they discuss the technology and process that got us here. The authors then discuss their experiences in the present and the journey they took in one of google's automated vehicles. The author's argue that such applications of technology were not possible in the recent past but the exponential growth of computational power has enabled us to start doing things that seemed impossible just a few years ago. They discuss the amazing progress in robotics and AI in the last few years and how this progress is just the beginning. They give some metrics about how much information is getting digitized and how with the price of memory and processing going to 0 how much we have increased in terms of cataloguing. In particular statistics like 10% of all the photos ever taken were taken last year with more photos taken every 2 minutes than in the entire 19th century. The digitization of our daily lives is hard to fathom but when put in such terms the magnitude is astounding. The authors then discuss innovation. Recently the limits of human progress has been a hot topic of debate. Robert Gordon recently questioned whether growth was sustainable and has argued the current growth trends and productivity enhancing innovations pale in comparison to the technologies of upheaval in the past. The authors argue against this perspective and discuss the idea that growth comes from recombining old good ideas into better new ideas and how given how many more people are being brought into the new economy with the barriers to entry being low in the digital economy meaning we are in a new digital age of progress and we are at the beginning still. The authors discuss how GDP as a measure is insufficient and how there is enormous consumer surplus created from recent technologies. They discuss how the economy has migrated from rival to non-rival meaning that in the new economy the things we often value the most have negligible marginal cost of production. An example being Wikipedia might destroy GDP by removing the need for labour for encyclopaedia britannica but has created massive consumer surplus for people at large. The authors discuss how the new economy creates enormous economies of scale and as a result the distribution of incomes will be fundamentally altered as gains are not attributed to relative productivity but go to the very top at the expense of the rest. The repurcussions being that average and median incomes continue to diverge and there is little natural reversion in that process. The authors discuss what they think are ways for people to adapt to the new economy. They give basic examples of how right now, at the core, people using machines are the ones enabled we are not in a machines purely replace people world. The authors are very even and do not conclude that supply side innovations naturally create demand for labour and how fast innovation can run the risk of constantly leaving a portion of the population behind the production frontier. At the same time the authors discuss ways in which we can address some of the adverse consequences of the digitization of the economy through intelligent policy.The Second Machine Age is a must read for those thinking about how the world has been changing since the dawn of the internet. It is hard to not be convinced by much of what the author's discuss and the book is full of insight the reader can easily take away after reading. It gives food for thought about what skills we should always be thinking about adding as well as broad social policy we might need for the future that has been different from the past. This is one of the best books I have read in a while.", "overall": 5.0, "summary": "Excellent overview of developements in and repurcussions of digital age we live in", "unixReviewTime": 1392422400, "reviewTime": "02 15, 2014"}
{"reviewerID": "A3A6C58USZGUY6", "asin": "B00L2024XI", "reviewerName": "Book Addict", "helpful": [0, 0], "reviewText": "Jessica Wood has done it again. I knew I was dying for more after I finished Chase 1. But what I didn't expect was what I just read with Chase 2. Besides being hot, there was a twist I did not see coming. I loved how the author went from past to present, giving some feedback on the characters past which helped understand the twist. The unchanged in this one was bigger then the first. It left me with my jaw on the floor. I'm beyond dying for volume 3 now. Regardless of this being a short read, this was an amazing short read. I highly recommend this book.", "overall": 5.0, "summary": "OMG What an unexpected twist, didn't see it coming", "unixReviewTime": 1402963200, "reviewTime": "06 17, 2014"}
{"reviewerID": "A2VS6B6P1LV5Q5", "asin": "1483996204", "reviewerName": "Don L", "helpful": [0, 0], "reviewText": "I most definitely recommend all jack noble books by L T Ryan. Exciting and intriguing is one way of describing his work, but you need to experience his writing first hand!!!!", "overall": 5.0, "summary": "Worth reading", "unixReviewTime": 1401840000, "reviewTime": "06 4, 2014"}
{"reviewerID": "A1P09MFZZWVHNJ", "asin": "0062070401", "reviewerName": "e sunderman", "helpful": [1, 1], "reviewText": "I bought this and the Lost in Babylon in audio for my 10yo and WOW!! he really loves it. He listens to them over and over and says he can close his eyes and feel the book happening all around him while he listens! THAT-- is pretty cool~", "overall": 5.0, "summary": "Great Book!!", "unixReviewTime": 1395187200, "reviewTime": "03 19, 2014"}
{"reviewerID": "A3Q8AOCIRVC78B", "asin": "B00E9YKGAC", "reviewerName": "Blaltimore Phil", "helpful": [0, 0], "reviewText": "If you read the first book I don't think the second book will disappoint. Sakavic has captured the language of youth making it all the more real. A word of caution. You do have to place close attention to the background character explanations to get various relationships. This enables you to follow certain sequences. Admittedly, the author could have a bit more clarity in this area. Eventually, though, you figure it out.The problem I have with a series is when you have to wait for the final installment. It's rather a let down. But, I did read the conclusive segment should occur sometime January, 2014. I can hope. I have one issue with the second book that did follow a conventional mind set that bugs me. Nicky(Neil's teammate and openly gay character) rants to Neil about the only way Neil will have a happy life is having a significant other. Otherwise, this dooms Neil to a joyless life. I've commented on this issue previously in other critiques. Are you telling me that even thought I have decent caring friends, a purposeful life, a loving relationship with myself open toward the other that if I 'don't have someone' I'm doomed to a miserable life.? Listen up. There are people who lead a happy existence with caring attachments and are ok. Don't get me wrong. It is desirable to have a partner but not a need to prevent a fulfilling life. I'll stop now.Ah, don't let me distract from the fact that I still consider the second book highly recommendable.", "overall": 4.0, "summary": "Ok, I'm left hanging since the last book is yet not available.", "unixReviewTime": 1388793600, "reviewTime": "01 4, 2014"}
{"reviewerID": "A18JHVX925K101", "asin": "B00D7Z4FW4", "reviewerName": "Dii", "helpful": [2, 2], "reviewText": "Erin McCarthy brings another wonderful New Adult contemporary romance to life with Believe, the third book in the True Believers Series. Two young people, damaged by their pasts find a friendship that relieves their feelings of isolation. As Robin and Phoenix find true acceptance with each other their feelings grow and they find love, even though neither believes they are deserving of it. Robin, a college student who became the campus party girl made a drunken mistake one night that will change her life and possibly destroy her best friend. As it haunts her every day, she isolates herself from those around her and vows never to drink again. Enter Phoenix, just released from prison, alone, with nothing but the borrowed clothes on his back, and a couch to sleep on at his cousins’ house. Phoenix seems to be in control of himself at all times, until any type of spark ignites the rage he keeps bottled up inside. Will these two find the support they need from each other or will they need to face their demons alone?Filled with angst, anger, guilt, and the tenuous threads of love, Believe is the story of two individuals who must learn to love themselves and accept that their own shortcomings are their greatest enemies while accepting that they are worthy of love that is given freely.Erin McCarthy has done a wonderful job creating characters that feel real and could be someone one could find on any campus when first cut loose into the world. Using the POVs of both main characters further illustrates her ability to give life to her tale. The fact that I wanted to shake them both one minute and hug them the next, means I was in the moment from start to finish. Her world is like a tour of campus life, the friendships and bonds, the turmoil of being a young person out on their own in a world they were not expecting. Another great read from this talented author.I received a review edition from PENGUIN GROUP Berkley, NAL / Signet Romance, DAW/Intermix in exchange for my honest review.", "overall": 4.0, "summary": "Sweet, Emotional, Romantic", "unixReviewTime": 1391126400, "reviewTime": "01 31, 2014"}
{"reviewerID": "A1VW2N1PBTBO62", "asin": "1741796962", "reviewerName": "Broadsworddiva", "helpful": [1, 1], "reviewText": "I'm an avid traveler and ALWAYS am pleased with the Lonely Planet series. This book was excellent for the RV roadtrip I took last summer through Alaska. Always full of recommendations and spot on. Thanks to this book, we did not miss out on the town of Hope, which ended up being our favorite stop. If it hadn't been for this book, we would have missed out on that gem!", "overall": 5.0, "summary": "Any Lonely Planet book is worth it!", "unixReviewTime": 1392249600, "reviewTime": "02 13, 2014"}
{"reviewerID": "A1R5HCZNCWHFGK", "asin": "0007444117", "reviewerName": "Laura Barthol", "helpful": [2, 4], "reviewText": "so tris dies for no reason... and then she doesnt come back... and she died for no reason... bad. LET TRIS LIVE!!!! IT WAS A MISTAKE!!! tris better be alive and there better be a next book because i will never forgive veronica roth for killing her. you dont kill the main charachter. NO", "overall": 4.0, "summary": "...", "unixReviewTime": 1397865600, "reviewTime": "04 19, 2014"}
{"reviewerID": "A1AIA0J6B2AGCM", "asin": "B00L9S5OF8", "reviewerName": "lovestoread", "helpful": [0, 0], "reviewText": "This is the first work by this author that I've read and I was not disappointed. The story line was good ( don't you wish there really was a website like that?) even though it was a little predictable.I'm intrigued enough to be on the hunt for the second installment -I hope it's not a long wait.", "overall": 4.0, "summary": "More, please............NOW", "unixReviewTime": 1404086400, "reviewTime": "06 30, 2014"}
{"reviewerID": "AA5WGF8UQU9YX", "asin": "B00KFUJX58", "reviewerName": "Erin Fisher", "helpful": [0, 0], "reviewText": "5 "lobster" stars!!!I'm in love with Justice Drake! This story was HOT, heartbreaking, beautiful and so much more! I was sucked in from the beginning and couldn't put it down until I was finished! Had some crazy things I didn't see coming and what an ending! Just perfect!", "overall": 5.0, "summary": "5 \"lobster\" stars!", "unixReviewTime": 1403481600, "reviewTime": "06 23, 2014"}
{"reviewerID": "AUJWCB9MLDWCP", "asin": "B00I6ZS6IE", "reviewerName": "Rita", "helpful": [0, 0], "reviewText": "I love it! rock and roll + time travel = Love. I really enjoyed Megan and Davy's built up to romance. I love the twist. Who hasn't dreamed about time travel where you find you true love.I received a copy of this book for a honest review.", "overall": 5.0, "summary": "Not what I expected", "unixReviewTime": 1393200000, "reviewTime": "02 24, 2014"}
{"reviewerID": "A22H4HI9GWAEJS", "asin": "1476712913", "reviewerName": "Amazon Customer", "helpful": [1, 1], "reviewText": "The action continues as the forces affecting HP and his sister, Rachel, reach out internationally to keep the tension level high. With the evil forces of the game in the background, fate seems to turn against Rachel as she fights to do her job safeguarding government officials and HP is set up as an apparent murderer in the Emirate of Dubai. Technology is at the forefront again as too many people are not what they seem, and a large tech company works a dark magic through the web. The action flows fast and furious as parallel story lines proceed in alternating paragraphs. It is an unusual and very effective technique to engross the reader and heighten the level of tension. I was exhausted when I finished the book, but eager for more.", "overall": 5.0, "summary": "The Excitement Continues", "unixReviewTime": 1389052800, "reviewTime": "01 7, 2014"}
{"reviewerID": "A3444H23TJFGKN", "asin": "055341920X", "reviewerName": "julieblue", "helpful": [1, 1], "reviewText": "It ends the trilogy well. Still has unexpected turns that keep you on your toes and licking your lips! Awesome", "overall": 5.0, "summary": "lovey ending", "unixReviewTime": 1401840000, "reviewTime": "06 4, 2014"}
{"reviewerID": "A17YWP0TOP43LH", "asin": "1590202457", "reviewerName": "Cyndy Beedell \"Cyndy\"", "helpful": [0, 0], "reviewText": "Susan Hill is a great writer.She comes up with original story lines and keeps you enthralled from beginning to end !", "overall": 5.0, "summary": "Good reading", "unixReviewTime": 1403481600, "reviewTime": "06 23, 2014"}
{"reviewerID": "A18BQ0IVTX404E", "asin": "B00DUJDK3W", "reviewerName": "Julie DeAngelo", "helpful": [0, 0], "reviewText": "This is such a cute and fun read. It takes me out of my hectic day of work and kids and lets me go into a whole other world. I love this type of hot romantic fun comedy.", "overall": 5.0, "summary": "Great read", "unixReviewTime": 1395878400, "reviewTime": "03 27, 2014"}
{"reviewerID": "A1WH1YZ5VGTKXG", "asin": "0449809978", "reviewerName": "Viviane Crystal", "helpful": [0, 0], "reviewText": "Laila is a 14 year-old girl who has lived like royalty and suddenly finds out that her family really isn’t loyalty and never has been. As a matter of fact, what she discovers about her family makes her literally ill with horror and fear. For she mourns her father who loved her dearly but she also mourns the man as tyrant and killer who has tortured and killed thousands; at least he is responsible for these acts even if he has not literally carried them out himself in a single-handed way. The word her friends use about the children’s fairy tales and practices of her father’s rule is “barbaric,” a painful word that sears through her mind and feelings for days and weeks. How does one cope with her father’s guilt, that which took the lives of families and friends of people she actually knows in America?Now Laila is in America. Several people are interested in her, the man who is attempting to convince her mother to cooperate with CIA interests, the man who doesn’t trust Laila initially but eventually will come to accept her at face value, and a normal American boy who wants to write a journalistic account of her father’s life and her experiences in the nameless country from which she is in exile. Its these relationships that evolve in dramatic ways that cause her to grow up fast. Whether the reader thinks this evolution is healthy and good for Laila is left up to his or her imagination!We learn that her Uncle is now ruling the land Laila once called “home.” He spends his time frantically calling Lails’s mother. Over time, Laila experiments with her new life in the United States, dressing like other girls do, dancing, and cultivating friendships that are “normal” for Americans but very, very different from what she knew before. Meanwhile, she learns the truth about her family’s place of “royalty,” and that changes her forever. Her choices after that will affect her family and her former country forever!The author tells us, after the story ends, the seeds that planted this unforgettable story in her head and what she wished the reader to experience throughout the account and afterward. J. C. Carleson brilliantly succeeds in her quest and the reader may reach his or her own decision regarding same. This is a must read for American teenagers and adults, a side of life that could be any teenager in the Middle East or America, a side that calls for momentous decisions that could have planned or unforeseen consequences for history. Superb novel and highly recommended historical fiction or contemporary fiction!", "overall": 5.0, "summary": "What If One Could Live a Different Life?", "unixReviewTime": 1392681600, "reviewTime": "02 18, 2014"}
{"reviewerID": "A12SZOYDQTCF0X", "asin": "125005236X", "reviewerName": "Terra Oenning \"Love ,Light,N Blessings\"", "helpful": [0, 0], "reviewText": "What Happens in Vegas usually stays in vegas Unless you wake up with a complete stranger and find out your married.Evelyn Thomas wanted to celebrate her 21st Birthday party in Vegas and when she woke up the next morning her life was about to change from the normal going to college and working to being in the spotlight.David Farris was the lead singer and guitar player in a band called stage dive, when they were in vegas after a show he watched this blonde women lay into his friends and she had no clue who he was and that was something that he needed to be someone normal . He helped her out before she was kicked out of the hotel and then his world changed. Evelyn and david decide it was for the best to end the married since she was drunk and cant remember anything. that is when they find out that really do have a connection and more. will they stay married and start a life as a happy couple or will they end it and move on?I have to say thanks to slickreads for posting the books on her wall in facebook. I needed to find something that would pick me up and give me more out of books. i fell in love with Kylie scott and A Stage Dive novel books. i found myself laughing outloud and couldnt stop !", "overall": 4.0, "summary": "hottt", "unixReviewTime": 1396915200, "reviewTime": "04 8, 2014"}
{"reviewerID": "A1ANP28LJDTLK8", "asin": "1939713196", "reviewerName": "C. Halford \"Rookie Romance\"", "helpful": [1, 1], "reviewText": "Originally published at Rookie Romance.The blurb got me very excited, a wallflower and a criminal looking for redemption? Um, yes please!Audrey is a wallflower, but wants so much more from her life than what her parents have planned for her. She longs for adventure and an escape. She certainly dives head first into adventure when Ethan Jagger/Locke shows up injured at her window. I liked Audrey, she has guts and I admired her determination to enjoy her life and escape the box her parents were trying to put her in. But I found her actions rather puzzling in the first third of the book. I'm not sure how much she knew Ethan previously, but her grandfather was just assaulted by some ruffians and she up and leaves with a man she barely knows who is clearly running from someone. Then when she realises that Ethan is running from Bow Street, she continues on her 'adventure' with him. It just came across as kind of reckless and foolish, to be honest. Fair enough, I understood her motivations, but I read it with a raised eyebrow. Once Ethan and Audrey's relationship develops, the eyebrow lowered and it made sense that she stuck by him and defended him.Ethan has a criminal past that he's trying to put behind him. He wants nothing more than to let go of the past and mend his relationship with his brother, unfortunately that past does not want to let go of him. When he's falsely accused of murdering a Marquess, he's forced to literally run for his life. Ethan likes Audrey, but he never intended to bring her with him. As they spend more time together though,he realises that she's an unusual young lady and there's a lot more to her than meets the eye. Ethan has done a lot in his past that he regrets and he wants to become a better man, the man his father intended for him to be.I enjoyed Ethan and Audrey's relationship. I thought her optimism and innocence balanced his cynicism and made him a bit less jaded. Ethan is a good man at heart, and Audrey sees that man.I could get a little lost with all the characters, at times. It's part of a series and can be read as a stand alone, but there are a lot of characters who are clearly in the previous books in the series and it could be difficult to remember who was who. Although, it doesn't affect the reading of this book particularly.Overall, I liked it but I didn't love it. The characters held a lot of promise but fell a bit flat for me. I was left feeling luke warm about this, although I'm interested to read some of the other character's stories in previous books of the series.*I received a review copy form the publisher, via NetGalley, for my honest opinion. Thank you!", "overall": 3.0, "summary": "Luke warm", "unixReviewTime": 1397088000, "reviewTime": "04 10, 2014"}
{"reviewerID": "A2F5K8GCG251DH", "asin": "1490904026", "reviewerName": "Wendy Marie Ward", "helpful": [1, 1], "reviewText": "In the beginning of Inescapable Desire, Logan shows up on Savannah’s doorstop in Texas attempting to win her back. When that doesn’t work out he will try anything to get Savannah back and he plays dirty. Luckily Kayden and Savannah are getting closer than ever. Unfortunately for the two of them, Logan is not the only obstacle to their happy ever after. The reader will be completely surprised at which character(s) pose a deadly threat to Savannah and Kayden’s happiness.Although I don’t condone violence, I have to say that I love it that Savannah punched Logan. While we have to constrain ourselves in the real world it was amazing to see a cheating guy get what he deserves on the written page. Although I didn’t think it possible, this sequel may have even surpassed the original in every way. The sex is even hotter, the drama is even more intense, and the cliffhanger will leave your jaw on the floor. Danielle Jamie is a superb writer.", "overall": 5.0, "summary": "Another shot at love with the RIGHT guy.", "unixReviewTime": 1397433600, "reviewTime": "04 14, 2014"}
{"reviewerID": "A2MW2B7DMR057R", "asin": "0938045040", "reviewerName": "Caleb D. Moyer", "helpful": [1, 3], "reviewText": "You're up shit creek, in a turd canoe, with a dookie paddle smeared over the part where you put your hands, and you will still be less shitty than this book. you might as well just go do cross-fit, or some other type of interval training. if you are not a complete, and i mean COMPLETE noob who's only concern is looking slightly better in clothes than usual. do not by this book", "overall": 1.0, "summary": "Let me explain...", "unixReviewTime": 1391644800, "reviewTime": "02 6, 2014"}
{"reviewerID": "A17ISPXDEKQYLV", "asin": "1600617840", "reviewerName": "Douglas G. Ordetx", "helpful": [0, 1], "reviewText": "While the illustrations are great and the course is well presented. The kindel edition makes it hard to follow the step by step and holding it properly and timing out when you are doing because you did not turn the page.", "overall": 1.0, "summary": "Good book", "unixReviewTime": 1391040000, "reviewTime": "01 30, 2014"}
{"reviewerID": "AIHIEGASZZGLN", "asin": "0310330734", "reviewerName": "shirley", "helpful": [0, 0], "reviewText": "This book has given me a better perspective on prayers and the way to pray. There is much to learn reading The Circle Maker. I highly recommend it to all who know the importance of prayer.", "overall": 5.0, "summary": "faith in prayer", "unixReviewTime": 1390867200, "reviewTime": "01 28, 2014"}
{"reviewerID": "A1G33R910XJGTN", "asin": "0849922070", "reviewerName": "Sammy", "helpful": [0, 0], "reviewText": "I've always been a believer but this was incredible and so many things that have recently happened to me. My niece receiving a bilateral lung transplant when time was running out, I stopped screaming and saying why won't you give us lungs, I started praying \"since you will give us lungs can we have them Mother's day weekend? Well guess what? She had her transplant the day before Mother's day. GOD is Awesome!!!", "overall": 5.0, "summary": "Awesome book", "unixReviewTime": 1400803200, "reviewTime": "05 23, 2014"}
{"reviewerID": "A3361XGKYF17S3", "asin": "1495416046", "reviewerName": "Shiela", "helpful": [0, 1], "reviewText": "Omg this was just the book I was looking for. It was so good. Stone age man finds woman from another time. They find a way to communicate with each other. It tells the story from when they meet to the end.", "overall": 5.0, "summary": "Transcendence", "unixReviewTime": 1393718400, "reviewTime": "03 2, 2014"}
{"reviewerID": "A235NU3KW6O9SD", "asin": "1491272201", "reviewerName": "Denise Dameron", "helpful": [0, 0], "reviewText": "This was a easy read. The story line was good. It had sadness in it that you really felt by way the author wrote. This book really showed how there truly can be kind people out there and that you really can't always go by what you hear. I enjoyed this story and would recommend to anyone looking for a heart touching story.", "overall": 4.0, "summary": "Good read", "unixReviewTime": 1392595200, "reviewTime": "02 17, 2014"}
{"reviewerID": "AMLW5NFA1VQ90", "asin": "1491510706", "reviewerName": "Kristine P. Alderfer", "helpful": [0, 0], "reviewText": "This book was wonderful! It's not about cancer. It's not about teens. It's about families dealing with a tragic illness and how it becomes their "new normal". It's about teens who come together, despite their disease. How they follow their passions and connect with one another.It was uplifting and emotional. It was sad and inspirational. I highly recommend this book.", "overall": 5.0, "summary": "Wonderful in a heart-breaking kind of way", "unixReviewTime": 1401753600, "reviewTime": "06 3, 2014"}
{"reviewerID": "A2RYC5BQZLPFD6", "asin": "0805423605", "reviewerName": "Kimberly Brooks", "helpful": [0, 0], "reviewText": "very informative and educational. I love it, I will continue to utilize the resources from this book as the practice of ministry", "overall": 5.0, "summary": "My Guidebook", "unixReviewTime": 1398556800, "reviewTime": "04 27, 2014"}
{"reviewerID": "A3J9GM7VIV3LBZ", "asin": "B00IT8F816", "reviewerName": "Kevin Kerr", "helpful": [1, 1], "reviewText": "I'm a fan of natural cures and this book gives you the ins and outs of arthritis the holistic way! Highly recommended.", "overall": 5.0, "summary": "Very well written", "unixReviewTime": 1394755200, "reviewTime": "03 14, 2014"}
{"reviewerID": "A13BZESLVX9E6P", "asin": "0316222461", "reviewerName": "angeline sambrano", "helpful": [0, 0], "reviewText": "must have for the avid twilight collector.", "overall": 5.0, "summary": "Five Stars", "unixReviewTime": 1404259200, "reviewTime": "07 2, 2014"}
{"reviewerID": "A15LITM8N9J151", "asin": "1482385635", "reviewerName": "Denise Jordan", "helpful": [0, 0], "reviewText": "Enjoyed this book thoroughly. Went to Ireland this past summer and visited many of the places mentioned in the book, it was like doing it again with new friends. The characters were similar to many of the people we met on our trip and it made you want to know them better. Enjoyed the story lines...complex yet realistic. Will read more by this author", "overall": 4.0, "summary": "Fun read", "unixReviewTime": 1390608000, "reviewTime": "01 25, 2014"}
{"reviewerID": "A3MJ2VI65D6D3P", "asin": "B00CMXCWW2", "reviewerName": "TiggersRule", "helpful": [0, 0], "reviewText": "I thought the title sounded fun. Unfortunately the book was awful. What could have been a fun empowering book featuring full figure women turned out to have a pathetic train wreck. The main character had such low self esteem there is no way she'd ever have a dating business. She kept continually stating how \"guys like him wouldn't fall for a heavy girl.\" Wow. This author has no idea the opportunity she had to show a strong confident larger woman who knew she was worth a lot and didn't need a man to define her. Skip this book it's too full of bad characters and self loathing and no redeeming value because the author further perpetuates the stereotype that full figure women would never attract a good looking man and if she did she was so lucky. It should never only be about looks. What a wasted opportunity for this author.", "overall": 1.0, "summary": "A Review", "unixReviewTime": 1403308800, "reviewTime": "06 21, 2014"}
{"reviewerID": "A3FWTMCB1XCWUV", "asin": "B00K4IFUYE", "reviewerName": "ViviBee", "helpful": [0, 0], "reviewText": "this book is for every woman. you are bound to recognize someone or something that you can relate to. it is a real treasure. please don't pass on such a remarkable book.", "overall": 4.0, "summary": "Like life imitating art", "unixReviewTime": 1401062400, "reviewTime": "05 26, 2014"}
{"reviewerID": "AYG1U47VFZ165", "asin": "1565112008", "reviewerName": "E. Lee Zimmerman \"Trekscribbler (aka Ed)\"", "helpful": [0, 0], "reviewText": "Now that Dark Horse Comic’s tenure with the Star Wars license is starting to wind down, I wanted to take some time to go back and reread some of the bigger, bolder titles that have seen release throughout the years. Like many longtime readers, I’m immeasurably bummed about the move of the comics from the Horse to the Mouse House of Marvel (I’m really not looking forward to the Vader/Wolvie crossover); and – in order to keep it real – I’m revisiting some of the yarns that made waves.One of the first big breakthroughs was something called DARK EMPIRE. It went on to have a few sequels, but – for my tastes – I honestly didn’t much care for this tale even when it first hit the shelves. It isn’t that I disliked the idea of exploring an Emperor Palpatine resurrected in the days of the New Republic fumbling to establish a firm footing; it’s just that so much of Tom Veitch’s story felt like character retreads.More after the break …(NOTE: The following review will contain minor spoilers necessary solely for the discussion of plot and/or characters. If you’re the type of reader who prefers a review entirely spoiler-free, then I’d encourage you to skip down to the last two paragraphs for my final assessment. If, however, you’re accepting of a few modest hints at ‘things to come,’ then read on …)Essentially, the story that unfolds here is that the Empire isn’t quite as dead as our heroes – Luke Skywalker, Leia Organa-Solo, Han Solo, and more – long believed it to be. In fact, some lingering elements in the inner galaxies have gone a long way toward re-establishing their own union, putting the New Republic back on its heels and having to fight in smaller isolated conflicts once more. Naturally, this brings our gang back together, and they’re rushed to the front lines in order to give yet one more ‘New Hope’ street cred with faltering worlds.Lo and behold, our young Skywalker – now a bit older – discovers that the Emperor (aka Darth Sidious) has been resurrected (in a sense). It would seem that his life essence has become a part of the living Dark Side – much like Obi-wan Kenobi, Yoda, and Anakin Skywalker have merged with the Light Side elements; all the former Palpatine need do is pull a younger version of himself out of a clone canister and – viola – new Emperor! Now, he’s using some massive new weapons known as ‘World Devastators’ to crush planets that won’t bend to his will.Just as was the thematic undercurrent for the Luke Skywalker character in THE EMPIRE STRIKES BACK and RETURN OF THE JEDI (and many, many Extended Universe tales since then), this new Emperor wants to turn our hero to the Dark Side. What makes this tale a bit different is that the Jedi seemingly does embrace it, though he admits to readers over and over again that he’s done so only to get closer to Palpatine so that he can inevitably defeat him. Leia, Han, and the others don’t see as clearly what Luke’s motivations are, so they spend the bulk of their time trying to contact the Jedi Master so they can ‘reclaim’ him for their side … and, so far as I can tell, that about wraps it up.DARK EMPIRE is a worthy read, but it’s nothing that really smacks of originality or epicness (if you’ll pardon my creation of the word). The Emperor is the same – as are all of our regular players – so nothing new added to the mix pretty much leaves this tale tasting like something we’ve all had before. That in itself isn’t enough reason to resist the story’s obvious temptations – could it be that Luke won’t survive the Emperor’s machinations this time? – which is why I basically deem it worth a read but little else. Plus, DARK EMPIRE has a weird artistic template; it’s almost as if illustrator Cam Kennedy (who does terrific work) made some curious decision to color the worlds of George Lucas monochromatically, and, for the life of me, I can’t figure out how anyone thought that was a good idea. (???) One of the most enduring qualities of STAR WARS is how different the various worlds and machines and droids look from one to another, so casting so very many panels in as few color choices as possible makes no narrative much less commercial sense.Heck, even the long-rumored dead Boba Fett shows up for what plays out like an almost obligator appearance, one meant to recapture the magic of the bounty hunters glory days instead of adding legitimacy to the web being spun here. I like Boba Fett. I get most fanboys like Boba Fett. But his appearance here? It just didn’t need to be.RECOMMENDED. I’m smitten with most of the Dark Horse’s adventures from a long time ago in a galaxy far, far away; still, there’s something about DARK EMPIRE that just underwhelmed me. There were a few moments of greatness – Luke’s commitment to kinda/sorta bringing the Force into balance; Leia’s love for family despite the obvious hardships; Han’s ribbing of his brother-in-law; etc. – but most of them underscore relationships already so firmly established that there was little new brought to the game. Otherwise, much of this tale flew on autopilot, and it was hardly as DARK as it could’ve been. Good – worth a read – but far from great.", "overall": 3.0, "summary": "Blast from the Past: DARK EMPIRE Reconsidered After All These Years", "unixReviewTime": 1404086400, "reviewTime": "06 30, 2014"}
{"reviewerID": "A34FGMJ3K5O6GT", "asin": "B00H6SOCAS", "reviewerName": "readbychoice", "helpful": [0, 0], "reviewText": "Okay, so I said I wouldn't read the second book, but so I did. Interesting all I know is she is a troubled teen, even if she's 18. If her life wasn't screwed up before, it sure is now. Good job on the authors part.", "overall": 4.0, "summary": "yes, I know", "unixReviewTime": 1389312000, "reviewTime": "01 10, 2014"}
{"reviewerID": "A2N8RON1NT1N9G", "asin": "1118725751", "reviewerName": "Lawrence J. Epstein \"Author of "The Basic...", "helpful": [0, 0], "reviewText": "I am not an expert in long-term care, but this book seemed clear and very thorough. I am going to save this book. It works very well as a reference work when specific problems show up. I read it through once, liked it, and realized I need to keep it around.", "overall": 5.0, "summary": "Admirably Thorough", "unixReviewTime": 1403481600, "reviewTime": "06 23, 2014"}
{"reviewerID": "A15OVY0KVCTOPO", "asin": "B00GTXGPL0", "reviewerName": "Dinky's Kindle", "helpful": [0, 0], "reviewText": "This book was so good. D. Scott did not disappoint! I thought it was a continuation of Dr. Ford & Maya's love story, but Marcus and Karalee was great!! I read this book2 in one setting. It was too good to put down & I can't wait for more I highly recommemd both books. Dee Dee Scott definitely has me needing for more.", "overall": 5.0, "summary": "Wonderful Story!!!", "unixReviewTime": 1391558400, "reviewTime": "02 5, 2014"}
{"reviewerID": "A3O24SH2K12EL7", "asin": "0062218980", "reviewerName": "Nicole", "helpful": [0, 0], "reviewText": "Friends to lovers, one of my favorite themes in romance. Jericho and Zoey are best friends, but when they see each other after 3 years suppressed feelings come roaring back. Jericho and Zoey are thrown together when they both work on a dig. Sparks are going to fly, but they're going to try their hardest to deny their lustful feelings or it could cost Jericho his archeology job. Jericho wants forever with Zoey, but Zoey is known not to stick with anything be it a relationship or a job. Can Zoey finally find something that's worth risking her heart? But it isn't going to be easy when danger is lurking around the corner.", "overall": 4.0, "summary": "Somebody to Love", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "A2ZC6R0QBM75H8", "asin": "145583985X", "reviewerName": "Pat Walsh", "helpful": [0, 0], "reviewText": "I enjoyed the book. It was a little different from what I have been reading. It kept my interest and I will definitely check out other things he has written.", "overall": 5.0, "summary": "Different", "unixReviewTime": 1402531200, "reviewTime": "06 12, 2014"}
{"reviewerID": "AGHMSC65R0FPK", "asin": "B00DP03EFK", "reviewerName": "Mendi Everett", "helpful": [0, 0], "reviewText": "Enjoyed the easy style of reading. It was basic, to the point, and helpful. It gave me a way to better organize the book I'd like to write.", "overall": 4.0, "summary": "Thanks", "unixReviewTime": 1389657600, "reviewTime": "01 14, 2014"}
{"reviewerID": "A3FR50N7RBJ9PY", "asin": "1250036607", "reviewerName": "Jerry Angerman", "helpful": [3, 3], "reviewText": "There is something unique about this series, set in the Shetland Islands off England. The descriptions of the sea, the scenery, the houses, and the quaint and mostly quiet lifestyle are helpful in creating the setting. Our inspector hero is back after battling depression ensuing from the death of his lady love. He gingerly gets back into investigating two murders after taking time off to recover, all the while continuing to take care of her daughter, Cassie, because the natural father doesn't want to be bothered with anything but visits. The islands may seem calm and sedate but passions run deep and there are crimes to solve.", "overall": 4.0, "summary": "A great series", "unixReviewTime": 1396656000, "reviewTime": "04 5, 2014"}
{"reviewerID": "A1QRWJ2ZZ8BDTL", "asin": "0307378411", "reviewerName": "Joan L. Cole", "helpful": [0, 0], "reviewText": "I love the No. 1 Ladies Detective Agency books. While the intrigue may not be as complex as in other detective type books, no one can match the color and imbedded messages that are found in this series.", "overall": 4.0, "summary": "I love these books", "unixReviewTime": 1395964800, "reviewTime": "03 28, 2014"}
{"reviewerID": "A3JX7JTU9NI5TL", "asin": "0615827446", "reviewerName": "N. Venable", "helpful": [1, 1], "reviewText": "Buy this and your emotions will take over! I was not able to stop reading until I completed the book.", "overall": 5.0, "summary": "Emotions!", "unixReviewTime": 1392336000, "reviewTime": "02 14, 2014"}
{"reviewerID": "A1Q1T811N4IY3Z", "asin": "1423171020", "reviewerName": "Wixby Bonnet", "helpful": [0, 1], "reviewText": "These Broken Stars is the start of a science fiction trilogy in which two very different people fall in love. It takes place in a fictitious universe. Lilac and Tarver are the two survivors from a spaceliner that crashes. She is a spoiled rich girl and he is poor soldier, but they are the only two people on a seemingly abandoned planet. The work together to find safety and help and despite their differences, they fall for each other.I thought the novel was well-written. The authors did a nice job of painting a picture in my head of the world the characters live in. There was also a captivating plot as the characters encounter strange happenings on the planet. Ultimately, it’s a love story though and I thought that even though rich girl and poor boy fall in love is somewhat cliché, the love story was well done. My son read this book and said it was alright. He most likely enjoyed the science fiction aspect best. I think he might get more out of it when he’s in middle school. I thought it was nicely done and I’ll check out the next in the trilogy.", "overall": 4.0, "summary": "The first in a trilogy", "unixReviewTime": 1396569600, "reviewTime": "04 4, 2014"}
{"reviewerID": "A3TV6R54FH6R0I", "asin": "0307913090", "reviewerName": "Amazon Customer \"mysteri1229\"", "helpful": [0, 0], "reviewText": "That hasn't been said thousands of time already. First book of what i hear is a great series. I am 25% into book 2 and still enjoying the series", "overall": 5.0, "summary": "what can I say", "unixReviewTime": 1399420800, "reviewTime": "05 7, 2014"}
{"reviewerID": "A1GOV08ZJXKBSW", "asin": "B006THX6PY", "reviewerName": "Debra", "helpful": [1, 1], "reviewText": "I persevered and finished the book. The guardian angel was variously portrayed as being ignorant of modern culture and language and quite familiar with slang and technology. I think the book would have just as good without "pea brain." The book needed an editor badly. The mystery storyline was a little weak and I really got tired of the "aging hippie" descriptions. I would like to read another book by this author to see if the writing or editing improves.", "overall": 3.0, "summary": "Should have read the title several more times before beginning the book.", "unixReviewTime": 1400284800, "reviewTime": "05 17, 2014"}
{"reviewerID": "AZ4E4S4KCRKBN", "asin": "B00JOXGMH4", "reviewerName": "PantherClaw", "helpful": [0, 1], "reviewText": "I have read all of the books in this series to date and I have enjoyed them so I was really looking forward to this one.I'm not sure what exactly the author was attempting to do here but it seems like she had many ideas but for some reason felt she was under a word limit or something. These ideas really never get a chance to blossom before she's on to the next one leaving the reader confused as to what is going on and more importantly why. This has been one of my complaints with this series is that it seems to be over as soon as its begun. Just enough to keep us intrigued but not enough depth to really get us involved.I gave the book 2 stars because it does give us more insight into the storyline of the rest of the series. Lets just hope the next book isn't so rushed.", "overall": 2.0, "summary": "Huh?", "unixReviewTime": 1399766400, "reviewTime": "05 11, 2014"}
{"reviewerID": "A3RZ9RN5W4WBPN", "asin": "0345527380", "reviewerName": "Matthew Bartlett", "helpful": [0, 0], "reviewText": "In A Chain of Thunder, Jeff Shaara continues his series on the War in the West bringing us the campaign which opened the Mississippi and introduces us to some very interesting characters. Through his usual narrative, there comes some clarity which has left Civil War novices confused about the Vicksburg Campaign and the novel stands as a great introduction for those people interested in something besides the War in the East. The second part of his series is a welcome addition not only to the bookshelves of Civil War buffs, but the literary world as well.Jeff Shaara is a New York Times bestseller and began his career with the work preceding his father’s called Gods and Generals and finished the story with The Last Full Measure. Shaara has won numerous accolades for his works on the revolution called Rise to Rebellion and The Glorious Cause. After his series on the Civil War in the West, he will be pursuing the Texas conflict and the Korean War.For the first time in his career, Jeff Shaara has given us the outlook of a woman. She does not have just one chapter, but many telling the story of the civilians who had to hide out in the caves and sometimes gave their services as nurses. The narrative of the hospitals is gruesome and not for the faint of heart, but even more so, the narrative of life in the caves is even worse. There are some points in literature which stick with you for the rest of your life and his description of life in the caves and the starvation of the men and women of the city of Vicksburg is one of those passages. Whether it be the slaughter of the horses so they could eat all the way down to killing dogs for food, the disturbing image comes when there is no reservation about eating these animals. Even the conditions of the high command of the Confederate army is deplorable. In this volume, Shaara chooses to use Pemberton as the voice of the Confederate command structure instead of Johnston and rightfully so. Pemberton was more the defender of Vicksburg than any other commander. He does, however, give Pemberton the same treatment his father gave Longstreet in The Killer Angels. He has taken a character which was not always in good light and given him a favorable view. In the end, you feel sorry for Pemberton and wonder what he could have done to further his fight. But knowing there was nothing for him to do was quite sad and some say could change the opinions of people about the man. On the Union side, we have the regulars from the last book, A Blaze of Glory, with Private Bauer from the 17th Wisconsin and General Sherman. Something, however, can be said about reading a book with the opposition has the upper hand constantly in the campaign. While there are small battles throughout the siege which the Union army loses, there is something in the back of the reader’s mind saying that they still have the upper hand in the situation which makes this book a bit more history than novel. Which brings me to the major point of my review. A Chain of Thunder is a good book, but is more nonfiction novel than an actual historical fiction book. I learned more about the Vicksburg Campaign in this book than I have learned from any of his other works and once again, Shaara shines when he only has to worry about a single campaign or battle instead of stretching the work over a few years.I recommend this book to anyone who is a fan of historical fiction because while being such, it is quite different from what the standard is for those types of works. The detail in which is gives to the campaign of Vicksburg is quite good and while he makes the reader feel sympathy for the Confederate army, there is still an even divide between the Union and Confederate accounts. Jeff Shaara’s War in the West series is a very welcome addition to my own Civil War library and should be a welcome addition to any other history fan as well.Matthew Bartlett - Author, Gettysburg Chronicle", "overall": 5.0, "summary": "General Pemberton Finally Gets His Due Diligence", "unixReviewTime": 1403481600, "reviewTime": "06 23, 2014"}
{"reviewerID": "AM0SA7ZKLL6FG", "asin": "0425191583", "reviewerName": "Amazon Customer", "helpful": [0, 0], "reviewText": "Can't put the book down on Eve Dallas! Catches your interest at the first page and carries you through to the end!", "overall": 5.0, "summary": "Excellent Read!", "unixReviewTime": 1389398400, "reviewTime": "01 11, 2014"}
{"reviewerID": "A1Q3P5W409XK8I", "asin": "0385346824", "reviewerName": "Wright", "helpful": [0, 0], "reviewText": "I thoroughly enjoyed this book. I've read the 1st 3 and will be buying the 4th shortly.I thoroughly enjoy the characters and setting that Mr. Clines has created. The blending of classic superhero tropes with zombie survival is a great blend, far better than I would have expected. I further appreciate the detail that Mr. Clines goes into, particularly with regard to Captain Freedom's military background. It adds a wonderful richness to the world.The biggest compliment that I can give the book (as well as the series) is that I was willing to pay more than $.99 or $1.99 for it. With so many books available for cheap on Amazon, that these caught my interest enough to warrant a $7.99 investment says something.I definitely recommend.", "overall": 5.0, "summary": "A very fun read.", "unixReviewTime": 1404691200, "reviewTime": "07 7, 2014"}
{"reviewerID": "AOFXJE92VZHJA", "asin": "B00J9312KQ", "reviewerName": "LaVonMoffett \"heavy reader\"", "helpful": [0, 0], "reviewText": "I was impressed with not only the characters of the book, but also the description of Wyoming where the story takes place. What a nice book, just makes you feel right with the world when you finish the book.", "overall": 5.0, "summary": "Loved the story", "unixReviewTime": 1400371200, "reviewTime": "05 18, 2014"}
{"reviewerID": "A1OH43Q6Q05ULQ", "asin": "0553808036", "reviewerName": "Jaci", "helpful": [0, 0], "reviewText": "I like the characters. I had read the short story that preceded the book and was happy to get some "closure" on Addington.", "overall": 5.0, "summary": "Angels among us?", "unixReviewTime": 1396915200, "reviewTime": "04 8, 2014"}
{"reviewerID": "A34QXHSIS1IFNS", "asin": "B00BPTTFOW", "reviewerName": "H.Smith", "helpful": [8, 9], "reviewText": "She got way she wanted,but can she pick the right guy or the both of them at the same time. Great book get it ,it is a great read", "overall": 5.0, "summary": "Which one is the real one", "unixReviewTime": 1401408000, "reviewTime": "05 30, 2014"}
{"reviewerID": "A1L1PDGJNOKGA", "asin": "1490321101", "reviewerName": "L Doll \"L\"", "helpful": [0, 0], "reviewText": "All these twists, turns and discoveries. There were things I was shocked to understand that tied all the way back to the Growing Pains trilogy. The way Vic and Lyric are forced to potentially look at each other now... the truth about Blood's behavior... I'm still kinda shocked that Tricey has gotten away with all she's done despite throwing Blood's dirt in her face.Jessica writes some amazing stuff. She makes the books provocative, emotional and riveting with great pacing and amazing cliffhangers. She keeps you going and going and going for more... but the way this ended... OMG.", "overall": 5.0, "summary": "YO!!!! Craziest Installment Ever!", "unixReviewTime": 1395187200, "reviewTime": "03 19, 2014"}