-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathtasks.json
More file actions
1618 lines (1618 loc) · 68.7 KB
/
tasks.json
File metadata and controls
1618 lines (1618 loc) · 68.7 KB
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
[
{
"data": {
"reviewerID": "A2IBPI20UZIR0U",
"asin": "1384719342",
"reviewerName": "cassandra tu \"Yeah, well, that's just like, u...",
"helpful": [
0,
0
],
"reviewText": "Not much to write about here, but it does exactly what it's supposed to. filters out the pop sounds. now my recordings are much more crisp. it is one of the lowest prices pop filters on amazon so might as well buy it, they honestly work the same despite their pricing,",
"overall": 5,
"summary": "good",
"unixReviewTime": 1393545600,
"reviewTime": "02 28, 2014"
},
"predictions": [
{
"result": [
{
"from_name": "sentiment",
"id": "sZ2AW3fNVw",
"to_name": "my_text",
"type": "choices",
"value": {
"choices": [
"Positive"
]
}
}
]
}
]
},
{
"data": {
"reviewerID": "A14VAT5EAX3D9S",
"asin": "1384719342",
"reviewerName": "Jake",
"helpful": [
13,
14
],
"reviewText": "The product does exactly as it should and is quite affordable.I did not realized it was double screened until it arrived, so it was even better than I had expected.As an added bonus, one of the screens carries a small hint of the smell of an old grape candy I used to buy, so for reminiscent's sake, I cannot stop putting the pop filter next to my nose and smelling it after recording. :DIf you needed a pop filter, this will work just as well as the expensive ones, and it may even come with a pleasing aroma like mine did!Buy this product! :]",
"overall": 5,
"summary": "Jake",
"unixReviewTime": 1363392000,
"reviewTime": "03 16, 2013"
}
},
{
"data": {
"reviewerID": "A195EZSQDW3E21",
"asin": "1384719342",
"reviewerName": "Rick Bennette \"Rick Bennette\"",
"helpful": [
1,
1
],
"reviewText": "The primary job of this device is to block the breath that would otherwise produce a popping sound, while allowing your voice to pass through with no noticeable reduction of volume or high frequencies. The double cloth filter blocks the pops and lets the voice through with no coloration. The metal clamp mount attaches to the mike stand secure enough to keep it attached. The goose neck needs a little coaxing to stay where you put it.",
"overall": 5,
"summary": "It Does The Job Well",
"unixReviewTime": 1377648000,
"reviewTime": "08 28, 2013"
}
},
{
"data": {
"reviewerID": "A2C00NNG1ZQQG2",
"asin": "1384719342",
"reviewerName": "RustyBill \"Sunday Rocker\"",
"helpful": [
0,
0
],
"reviewText": "Nice windscreen protects my MXL mic and prevents pops. Only thing is that the gooseneck is only marginally able to hold the screen in position and requires careful positioning of the clamp to avoid sagging.",
"overall": 5,
"summary": "GOOD WINDSCREEN FOR THE MONEY",
"unixReviewTime": 1392336000,
"reviewTime": "02 14, 2014"
}
},
{
"data": {
"reviewerID": "A94QU4C90B1AX",
"asin": "1384719342",
"reviewerName": "SEAN MASLANKA",
"helpful": [
0,
0
],
"reviewText": "This pop filter is great. It looks and performs like a studio filter. If you're recording vocals this will eliminate the pops that gets recorded when you sing.",
"overall": 5,
"summary": "No more pops when I record my vocals.",
"unixReviewTime": 1392940800,
"reviewTime": "02 21, 2014"
}
},
{
"data": {
"reviewerID": "A2A039TZMZHH9Y",
"asin": "B00004Y2UT",
"reviewerName": "Bill Lewey \"blewey\"",
"helpful": [
0,
0
],
"reviewText": "So good that I bought another one. Love the heavy cord and gold connectors. Bass sounds great. I just learned last night how to coil them up. I guess I should read instructions more carefully. But no harm done, still works great!",
"overall": 5,
"summary": "The Best Cable",
"unixReviewTime": 1356048000,
"reviewTime": "12 21, 2012"
}
},
{
"data": {
"reviewerID": "A1UPZM995ZAH90",
"asin": "B00004Y2UT",
"reviewerName": "Brian",
"helpful": [
0,
0
],
"reviewText": "I have used monster cables for years, and with good reason. The lifetime warranty is worth the price alone. Simple fact: cables break, but getting to replace them at no cost is where it's at.",
"overall": 5,
"summary": "Monster Standard 100 - 21' Instrument Cable",
"unixReviewTime": 1390089600,
"reviewTime": "01 19, 2014"
}
},
{
"data": {
"reviewerID": "AJNFQI3YR6XJ5",
"asin": "B00004Y2UT",
"reviewerName": "Fender Guy \"Rick\"",
"helpful": [
0,
0
],
"reviewText": "I now use this cable to run from the output of my pedal chain to the input of my Fender Amp. After I bought Monster Cable to hook up my pedal board I thought I would try another one and update my guitar. I had been using a high end Planet Waves cable that I bought in the 1980's... Once I found out the input jacks on the new Monster cable didn't fit into the Fender Strat jack I was a little disappointed... I didn't return it and as stated I use it for the output on the pedal board. Save your money... I went back to my Planet Waves Cable...I paid $30.00 back in the eighties for the Planet Waves which now comes in at around $50.00. What I'm getting at is you get what you pay for. I thought Waves was a lot of money back in the day...but I haven't bought a guitar cable since this one...20 plus years and still working...Planet Waves wins.",
"overall": 3,
"summary": "Didn't fit my 1996 Fender Strat...",
"unixReviewTime": 1353024000,
"reviewTime": "11 16, 2012"
}
},
{
"data": {
"reviewerID": "A3M1PLEYNDEYO8",
"asin": "B00004Y2UT",
"reviewerName": "G. Thomas \"Tom\"",
"helpful": [
0,
0
],
"reviewText": "Perfect for my Epiphone Sheraton II. Monster cables are well constructed. I have several and never had any problems with any of them over the years. Got this one because I wanted the 90 degree plug.",
"overall": 5,
"summary": "Great cable",
"unixReviewTime": 1215302400,
"reviewTime": "07 6, 2008"
}
},
{
"data": {
"reviewerID": "AMNTZU1YQN1TH",
"asin": "B00004Y2UT",
"reviewerName": "Kurt Robair",
"helpful": [
0,
0
],
"reviewText": "Monster makes the best cables and a lifetime warranty doesnt hurt either. This isnt their top of the line series but it works great with my bass guitar rig and has for some time. You cant go wrong with Monster Cables.",
"overall": 5,
"summary": "Best Instrument Cables On The Market",
"unixReviewTime": 1389139200,
"reviewTime": "01 8, 2014"
}
},
{
"data": {
"reviewerID": "A2NYK9KWFMJV4Y",
"asin": "B00004Y2UT",
"reviewerName": "Mike Tarrani \"Jazz Drummer\"",
"helpful": [
6,
6
],
"reviewText": "Monster makes a wide array of cables, including some that are very high end. I initially purchased a pair ofMonster Rock Instrument Cable - 21 Feet - Angled to Straight 1/4-Inch plugto use with my keyboards, but when it came time to purchase cables for my bass and guitar I thought I'd pinch a few pennies. I am so glad I did.I compared this cable model to the more expensive models I previously purchased and, aside from looks, could not detect any difference in sound. I Swapped back and forth between my guitars and keyboards, ensuring that each model was used on each instrument - still no difference.What the more expensive model has going for it is looks. I am not sure it (the higher priced model) is even more sturdy because the molded stress relief ends on this model seem to make it more reliable than its pricier sibling.Bottom line: carefully compare both cables using your own instrument and amp - if possible - before making a purchase decision. You may find, as I did, that higher price does not necessarily equal higher value, even from the same manufacturer.",
"overall": 5,
"summary": "One of the best instrument cables within the brand",
"unixReviewTime": 1334793600,
"reviewTime": "04 19, 2012"
}
},
{
"data": {
"reviewerID": "A35QFQI0M46LWO",
"asin": "B00005ML71",
"reviewerName": "Christopher C",
"helpful": [
0,
0
],
"reviewText": "I got it to have it if I needed it. I have found that i don't really need it that often and rarely use it. If I was really good I can see the need. But this is a keyboard not an organ.",
"overall": 4,
"summary": "It works great but I hardly use it.",
"unixReviewTime": 1398124800,
"reviewTime": "04 22, 2014"
}
},
{
"data": {
"reviewerID": "A2NIT6BKW11XJQ",
"asin": "B00005ML71",
"reviewerName": "Jai",
"helpful": [
0,
0
],
"reviewText": "If you are not use to using a large sustaining pedal while playing the piano, it may appear little awkward.",
"overall": 3,
"summary": "HAS TO GET USE TO THE SIZE",
"unixReviewTime": 1384646400,
"reviewTime": "11 17, 2013"
}
},
{
"data": {
"reviewerID": "A1C0O09LOLVI39",
"asin": "B00005ML71",
"reviewerName": "Michael",
"helpful": [
0,
0
],
"reviewText": "I love it, I used this for my Yamaha ypt-230 and it works great, I would recommend it to anyone",
"overall": 5,
"summary": "awesome",
"unixReviewTime": 1371340800,
"reviewTime": "06 16, 2013"
}
},
{
"data": {
"reviewerID": "A17SLR18TUMULM",
"asin": "B00005ML71",
"reviewerName": "Straydogger",
"helpful": [
0,
0
],
"reviewText": "I bought this to use in my home studio to control my midi keyboard. It does just what I wanted it to do.",
"overall": 5,
"summary": "It works!",
"unixReviewTime": 1356912000,
"reviewTime": "12 31, 2012"
}
},
{
"data": {
"reviewerID": "A2PD27UKAD3Q00",
"asin": "B00005ML71",
"reviewerName": "Wilhelmina Zeitgeist \"coolartsybabe\"",
"helpful": [
0,
0
],
"reviewText": "I bought this to use with my keyboard. I wasn't really aware that there were other options for keyboard pedals. It doesn't work as smoothly as the pedals do on an acoustic piano, which is what I'd always used. Doesn't have the same feel either. Nowhere close.In my opinion, a sustain pedal like the M-Audio SP-2 Sustain Pedal with Piano Style Action or other similar pedal is a much better choice. The price difference is only a few dollars and the feel and action are so much better. The only thing I've found the Yamaha FC-5 Sustain Pedal is good for is taking up space in a drawer where I keep my electric guitar pedals.",
"overall": 2,
"summary": "Definitely Not For The Seasoned Piano Player",
"unixReviewTime": 1376697600,
"reviewTime": "08 17, 2013"
}
},
{
"data": {
"reviewerID": "AKSFZ4G1AXYFC",
"asin": "B000068NSX",
"reviewerName": "C.E. \"Frank\"",
"helpful": [
0,
0
],
"reviewText": "This Fender cable is the perfect length for me! Sometimes I find it a bit too long but I don't mind. The build quality is great and I know that it will last. The only gripe I have with this cable is that the metal sleeve gets unscrewed way too easily, requiring me to tighten it often.Sound quality is not affected, and the color is cool, definitely try this cable out.",
"overall": 4,
"summary": "Durable Instrument Cable",
"unixReviewTime": 1376352000,
"reviewTime": "08 13, 2013"
}
},
{
"data": {
"reviewerID": "A67OJZLHBBUQ9",
"asin": "B000068NSX",
"reviewerName": "Charles F. Marks \"charlie marks\"",
"helpful": [
0,
0
],
"reviewText": "wanted it just on looks alone...It is a nice looking cord... I know it will perform...as for Sam Ash ...this cord was packed in a mailer inside another box with my Roc n Soc... his shipping team do great work..never any complaints from me... I love Sam Ash.. thanks Amazon",
"overall": 5,
"summary": "fender 18 ft. Cali clear...",
"unixReviewTime": 1373328000,
"reviewTime": "07 9, 2013"
}
},
{
"data": {
"reviewerID": "A2EZWZ8MBEDOLN",
"asin": "B000068NSX",
"reviewerName": "Charlo",
"helpful": [
3,
3
],
"reviewText": "I've been using these cables for more than 4 months and they are holding up pretty well. For years I used seemingly indestructable guitar cables that were made for me by an electrician friend. When they finally gave out, I got in the habit of using the no-name cables that are always on display near the register at Guitar Center- really more of an impulse buy than something I put any thought into. After the third or fourth Guitar Center cable failed from light use I decided to try these cables. Not only are they cheaper but they seem to be holding up better. I am not terribly hard on my gear but my cables tend to get twisted as I move around and the cheaper ones eventually fail mid-cable. I don't mind spending a few extra dollars if the cable is a little more durable. This cable is actually cheaper- $12 or so shipped- and it's holding up pretty well. These are actually very reasonably priced for 18' cables. There is some kind of limited life warranty on this product but I haven't needed it. Five stars for a nicely made 18 foot guitar cable that costs $12 shipped!Incidentally- these cables are shielded and are meant to connect your instrument to your amp's input. Do not use these to connect an amplifier to a speaker cab. You want to use unshielded cables for that purpose.Edit- More than 6 months has passed and this cable is functioning without any issues. The price on these things has gone up significantly and although the cable is highly recommended, there are probably better values from Hosa, Monster or Planet Waves-",
"overall": 5,
"summary": "So far so good. Will revisit at the 6 month mark ;)",
"unixReviewTime": 1363564800,
"reviewTime": "03 18, 2013"
}
},
{
"data": {
"reviewerID": "A1CL807EOUPVP1",
"asin": "B000068NSX",
"reviewerName": "GunHawk",
"helpful": [
0,
0
],
"reviewText": "Fender cords look great and work just as well. By adding the word California to the description I'm sure to sound like the Beach Boys...",
"overall": 5,
"summary": "Add California to the name and I jump!",
"unixReviewTime": 1375833600,
"reviewTime": "08 7, 2013"
}
},
{
"data": {
"reviewerID": "A1GMWTGXW682GB",
"asin": "B000068NSX",
"reviewerName": "MetalFan",
"helpful": [
0,
0
],
"reviewText": "This is a cool looking cheap cable which works well. I bent one of the connectors pretty badly but that was my fault. One thing to consider with the cable is to tighten the connectors once in awhile. You'll be able to hear them rattle. It seems that the 'retro' look is screw on connectors over some black rubber, but other than that, the cable looks cool and works well.I also have the shorter red cable which goes with one of my guitars perfectly. I bought theses to use while practicing with others who use black cables. It's easier to plug into different amps without cutting someone out by accident. The green cable is good for that.",
"overall": 4,
"summary": "Cheap and cool looking, good length",
"unixReviewTime": 1331856000,
"reviewTime": "03 16, 2012"
}
},
{
"data": {
"reviewerID": "A2G12DY50U700V",
"asin": "B000068NSX",
"reviewerName": "Ricky Shows",
"helpful": [
0,
0
],
"reviewText": "The Fender 18 Feet California Clear Instrument Cable - Lake Placid Blue is a very good extra cord for a good price.",
"overall": 5,
"summary": "Fender 18 Feet California Clear Instrument Cable - Lake Placid Blue",
"unixReviewTime": 1390953600,
"reviewTime": "01 29, 2014"
}
},
{
"data": {
"reviewerID": "A3E0CF25A7LD2",
"asin": "B000068NSX",
"reviewerName": "WBowie",
"helpful": [
0,
0
],
"reviewText": "Very good cable. Well made and it looks great with my Candy Apple Red Tele. The reason I gave it only 4 stars is because it tends not to lay flat on the floor.",
"overall": 4,
"summary": "Guitar Cable",
"unixReviewTime": 1354924800,
"reviewTime": "12 8, 2012"
}
},
{
"data": {
"reviewerID": "A2W3CLAYZLDPTV",
"asin": "B000068NTU",
"reviewerName": "Amazon Customer \"=Chris=\"",
"helpful": [
0,
0
],
"reviewText": "Got this cable to run a rockband keyboard controller to my M-audio profire 2626 to control midi in Pro Tools. Works great! Firm fit, solidly molded ends, reputable branded cable.(a bit on the thin side, but i haven't seen to have any issue due to this or anything. Couldn't go wrong for $5 at the time of my purchase and prime eligibility.",
"overall": 5,
"summary": "Quality cable!",
"unixReviewTime": 1341446400,
"reviewTime": "07 5, 2012"
}
},
{
"data": {
"reviewerID": "A398X9POBHK69N",
"asin": "B000068NTU",
"reviewerName": "Ann Vande Zande",
"helpful": [
0,
0
],
"reviewText": "When I was searching for MIDI cables for my ART X-15 foot controller, I came across these Hosa ones, and they were $2 dollars each! As they are now $6, I realize I would still be happy with that price as well, as they are high quality plastic and metal connectors, and work flawlessly. You must realize that they are only 5 feet, as I overestimated it and now wish they were longer. For any connection from racked sound modules, this will be perfect.",
"overall": 5,
"summary": "I Got Great Pricing, But Still a Really Good Product",
"unixReviewTime": 1383177600,
"reviewTime": "10 31, 2013"
}
},
{
"data": {
"reviewerID": "AXWB93VKVML6K",
"asin": "B000068NTU",
"reviewerName": "Michael Hassey",
"helpful": [
0,
0
],
"reviewText": "Cant go wrong. Great quality on a budget price - Hosa is the go to when you need to hook things up",
"overall": 4,
"summary": "Its a Hosa",
"unixReviewTime": 1372809600,
"reviewTime": "07 3, 2013"
}
},
{
"data": {
"reviewerID": "A2FZ4Z0UFA1OR8",
"asin": "B000068NTU",
"reviewerName": "Pat",
"helpful": [
0,
0
],
"reviewText": "The ends of the midi cable look and feel like quality. Connection is secure, no worries about uneven connections, it also detaches without a hitch. Highly recommended.",
"overall": 5,
"summary": "Quality and Secure",
"unixReviewTime": 1327449600,
"reviewTime": "01 25, 2012"
}
},
{
"data": {
"reviewerID": "AXP9CF1UTFRSU",
"asin": "B000068NTU",
"reviewerName": "tada",
"helpful": [
0,
0
],
"reviewText": "Just trying to find a midi to midi was a task, and you have to make sure the pin config is correct. This one is a good product and works just fine",
"overall": 5,
"summary": "Midi to Midi",
"unixReviewTime": 1381795200,
"reviewTime": "10 15, 2013"
}
},
{
"data": {
"reviewerID": "A2CCGGDGZ694CT",
"asin": "B000068NVI",
"reviewerName": "b carney",
"helpful": [
1,
1
],
"reviewText": "The Hosa XLR cables are affordable and very heavily made.I have a large mixer and rack and cables everywhere.I decided to purchase shorter cables and the Hosa cables 5ft measurement worked perfectly.You really will not be disappointed with these.",
"overall": 4,
"summary": "Very Heavy Cables At Affordable Price",
"unixReviewTime": 1341964800,
"reviewTime": "07 11, 2012"
}
},
{
"data": {
"reviewerID": "A27DR1VO079F1V",
"asin": "B000068NVI",
"reviewerName": "Dan Edman",
"helpful": [
0,
0
],
"reviewText": "I bought these to go from my board to the amp. We use them for a mobile church so they take a beating. They are still going strong.",
"overall": 5,
"summary": "Still going",
"unixReviewTime": 1392768000,
"reviewTime": "02 19, 2014"
}
},
{
"data": {
"reviewerID": "A1LQC225SE8UNI",
"asin": "B000068NVI",
"reviewerName": "David Burch",
"helpful": [
0,
0
],
"reviewText": "Sturdy cord and plugs, inexpensive, good value. I don't require professional-level equipment, so this cord serves my purposes well. Satisfied with purchase.",
"overall": 5,
"summary": "Does what it's supposed to do",
"unixReviewTime": 1337990400,
"reviewTime": "05 26, 2012"
}
},
{
"data": {
"reviewerID": "AU9BPT3Y3K6J4",
"asin": "B000068NVI",
"reviewerName": "G. L. Beebe",
"helpful": [
0,
0
],
"reviewText": "Use it every week at gigs. Solid, no problems with the solder joints. A good quality cable at a very good price.",
"overall": 5,
"summary": "Good cable",
"unixReviewTime": 1376092800,
"reviewTime": "08 10, 2013"
}
},
{
"data": {
"reviewerID": "A14Z9LAETO21KL",
"asin": "B000068NVI",
"reviewerName": "Gutjammer",
"helpful": [
0,
0
],
"reviewText": "Hosa products are a good bang for the buck. I haven't looked up the specifications, but I'm guessing the wire is 22 to 24 AWG, but since it's only 10' long, it's good enough.",
"overall": 4,
"summary": "Good Enough",
"unixReviewTime": 1394496000,
"reviewTime": "03 11, 2014"
}
},
{
"data": {
"reviewerID": "A2074KEJGRYJV4",
"asin": "B000068NVI",
"reviewerName": "hcross",
"helpful": [
0,
0
],
"reviewText": "This was exactly what I was after. I have a voice touch and needed a small cord to connect the mic to the voice touch and this was perfect. Before I used a 20 foot cord to go about 12 inches. I highly recommend this for those who keep the mic on a stand and have a voice touch or other stand connected device for vocals.",
"overall": 5,
"summary": "Great little cord",
"unixReviewTime": 1379289600,
"reviewTime": "09 16, 2013"
}
},
{
"data": {
"reviewerID": "A7TRK2GG6BHWD",
"asin": "B000068NVI",
"reviewerName": "Johnny Pasta \"Johnny Pasta\"",
"helpful": [
0,
0
],
"reviewText": "I bought these because I really had too long of mike cords for my solo live show. And these are really nice cords if you have a home portastudio recording studio like myself. Who needs all the spaghetti to trip on all over the place? I bought two because I use a Digitech Live 2 Harmony processor and two XLR mike cords are required to make it operational. Good price here too. Hard to find just 10' mike cords. Usually longer ones are only obtainable.",
"overall": 5,
"summary": "Does the job. What more do you need?",
"unixReviewTime": 1325808000,
"reviewTime": "01 6, 2012"
}
},
{
"data": {
"reviewerID": "A319B090A2POEB",
"asin": "B000068NVI",
"reviewerName": "Lee",
"helpful": [
0,
0
],
"reviewText": "This cable seems like it will last me for a while. As it is only being used to connect a DI box it will not get abused as much as the vocal mics always do.",
"overall": 4,
"summary": "Decent mic cable",
"unixReviewTime": 1329004800,
"reviewTime": "02 12, 2012"
}
},
{
"data": {
"reviewerID": "A396ELNTQDFYPO",
"asin": "B000068NVI",
"reviewerName": "Mark King",
"helpful": [
0,
0
],
"reviewText": "These are not the greatest but they're cheap and they get to you fast when you need them. I've only had one fail and I've bought many of them to use in our broadcast studio.Amazon is the first place I go when I need cables for audio, video, computers or concert lighting.Good music to all!",
"overall": 4,
"summary": "Decent inexpensive cable",
"unixReviewTime": 1379289600,
"reviewTime": "09 16, 2013"
}
},
{
"data": {
"reviewerID": "A17CU1D2CWXOHB",
"asin": "B000068NVI",
"reviewerName": "Rick",
"helpful": [
0,
0
],
"reviewText": "This is a fine cable at a decent price point, nothing exceptional mind, but it gets the job done well enough.",
"overall": 4,
"summary": "a fine cable.",
"unixReviewTime": 1387065600,
"reviewTime": "12 15, 2013"
}
},
{
"data": {
"reviewerID": "A1S0HTDO0P4N5V",
"asin": "B000068NVI",
"reviewerName": "R. Wristen \"The Party Doc VJ and Karaoke\"",
"helpful": [
0,
0
],
"reviewText": "I've used a lot of cables and I always come back to HOSA, they are indeed some of the best audio cables in their price range on the market.",
"overall": 5,
"summary": "Hosa is the best",
"unixReviewTime": 1379376000,
"reviewTime": "09 17, 2013"
}
},
{
"data": {
"reviewerID": "A3DWQW2L39RB1S",
"asin": "B000068NVI",
"reviewerName": "S. Dawdy",
"helpful": [
0,
0
],
"reviewText": "I bought this cord after returning a cheap one that I should've known better than to buy. My son, who has some experience as a musician recommended the Hosa brand when I was seeking a proper replacement.I bought it for a small home recording setup which includes a Behringer C-1 Condenser Microphone and a Behringer Xenyx 302 Mixer, and both ends make a reliable connection to both the board and the mic; the sound quality is excellent.An excellent value for the money.",
"overall": 4,
"summary": "Excellent quality, exactly what I needed",
"unixReviewTime": 1355443200,
"reviewTime": "12 14, 2012"
}
},
{
"data": {
"reviewerID": "AQQ91U1U4YKDF",
"asin": "B000068NVI",
"reviewerName": "Vince Lewis \"Vince\"",
"helpful": [
0,
0
],
"reviewText": "Nice solid cables, with excellent support at the ends. Should last a lifetime of usage no problem and just what I needed to connect my tube preamp.",
"overall": 5,
"summary": "great value",
"unixReviewTime": 1372464000,
"reviewTime": "06 29, 2013"
}
},
{
"data": {
"reviewerID": "AA5TINW2RJ195",
"asin": "B000068NW5",
"helpful": [
0,
0
],
"reviewText": "Good quality cable and sounds very good",
"overall": 5,
"summary": "Five Stars",
"unixReviewTime": 1405382400,
"reviewTime": "07 15, 2014"
}
},
{
"data": {
"reviewerID": "ABC68JUCPTVOE",
"asin": "B000068NW5",
"reviewerName": "A. Fabbri \"afabbri\"",
"helpful": [
0,
0
],
"reviewText": "Zero issues with this cable so far. It feels fairly cheap and light weight but it has survived for months of plugging in, unplugging, and packing between practice spaces.I'll update this review if/when it breaks.",
"overall": 5,
"summary": "Pretty cheap cable that has lasted so far",
"unixReviewTime": 1333152000,
"reviewTime": "03 31, 2012"
}
},
{
"data": {
"reviewerID": "A3W2E6S24BTXXK",
"asin": "B000068NW5",
"reviewerName": "airchamp \"ariel\"",
"helpful": [
0,
0
],
"reviewText": "Relatively inexpensive patch cable for electric guitar.I have had it for a few months and so far it has held up pretty well",
"overall": 5,
"summary": "very nice cable",
"unixReviewTime": 1401235200,
"reviewTime": "05 28, 2014"
}
},
{
"data": {
"reviewerID": "A3872Y2XH0YDX1",
"asin": "B000068NW5",
"reviewerName": "Amazon Customer",
"helpful": [
0,
0
],
"reviewText": "I bought this because I wanted a cheap replacement cable for one that had a short. I'm pleasantly surprised with this cable. It's decent sound and decent build quality, for a good price.",
"overall": 5,
"summary": "Nice guitar cable, even better price",
"unixReviewTime": 1363132800,
"reviewTime": "03 13, 2013"
}
},
{
"data": {
"reviewerID": "A398X9POBHK69N",
"asin": "B000068NW5",
"reviewerName": "Ann Vande Zande",
"helpful": [
0,
0
],
"reviewText": "This is a very nice cable for the price. I already bent one end of it though, fortunately it still works fine. Inside the phono connector the wires are covered by white shrink plastic. Haven't noticed any hum or crackles. For sure a good buy.",
"overall": 4,
"summary": "Does What You Want",
"unixReviewTime": 1388966400,
"reviewTime": "01 6, 2014"
}
},
{
"data": {
"reviewerID": "A13A81NN0NRD1S",
"asin": "B000068NW5",
"reviewerName": "aspiring saint \"TATITTLE\"",
"helpful": [
12,
13
],
"reviewText": "Cheap and good texture rubber that does not get stiff. Only time will tell how well the soldering is. Sounds fine to me.",
"overall": 4,
"summary": "flexible, soft rubber is great.",
"unixReviewTime": 1290038400,
"reviewTime": "11 18, 2010"
}
},
{
"data": {
"reviewerID": "A1EUO0BU72JR7T",
"asin": "B000068NW5",
"reviewerName": "Bilbo",
"helpful": [
0,
0
],
"reviewText": "Seems sturdy enough, and no noise issues, so I'm pretty much satisfied with it; it doesn't leave the house so I'm not asking it to handle a lot, but with reasonable care it should last a while.",
"overall": 5,
"summary": "Works wonderfully, no noise",
"unixReviewTime": 1372291200,
"reviewTime": "06 27, 2013"
}
},
{
"data": {
"reviewerID": "A1H4WSC8JWS59N",
"asin": "B000068NW5",
"reviewerName": "bradley",
"helpful": [
0,
0
],
"reviewText": "I'm not a professional, but have been playing for many, many years. This is the best cord I've ever had, though I'm sure Eric Clapton has something better.",
"overall": 5,
"summary": "excellent",
"unixReviewTime": 1359504000,
"reviewTime": "01 30, 2013"
}
},
{
"data": {
"reviewerID": "A3OXHLG6DIBRW8",
"asin": "B000068NW5",
"reviewerName": "C. Hill \"CFH\"",
"helpful": [
0,
1
],
"reviewText": "This Hosa Cable is very well made, with good quality connectors and a nice long length. My son is expanding his collection of amps and effects pedals so needed additional cables to get everything connected. This 25' cable gives him flexibility to move around and it is sturdy enough that it can take being stepped on and pulled around.The cable works well and is a good value for a decent quality cable.Highly Recommended!CFH",
"overall": 5,
"summary": "Great Guitar Cable, Good Value - Highly Recommended",
"unixReviewTime": 1346803200,
"reviewTime": "09 5, 2012"
}
},
{
"data": {
"reviewerID": "A12ABV9NU02O29",
"asin": "B000068NW5",
"reviewerName": "C. Longo",
"helpful": [
2,
2
],
"reviewText": "I didn't expect this cable to be so thin. It's easily 1/2 the thickness of any guitar cable I've used. Not sure about long-term durability or signal loss/interference. If I had the foresight I'd spend a couple extra bucks on a thicker cable. Still, it works and was inexpensive.EDIT: 6 months later and it's dead already. Wire frayed at the right angle jack. You get what you pay for.",
"overall": 2,
"summary": "Cannot recommend",
"unixReviewTime": 1309910400,
"reviewTime": "07 6, 2011"
}
},
{
"data": {
"reviewerID": "A2U1Z3TZ4P76JB",
"asin": "B000068NW5",
"reviewerName": "C. Zemer",
"helpful": [
0,
0
],
"reviewText": "Bought this for my daughter along with her new guitar. It seems to work well, no issues in the first couple of weeks.",
"overall": 5,
"summary": "Cable works as described",
"unixReviewTime": 1393977600,
"reviewTime": "03 5, 2014"
}
},
{
"data": {
"reviewerID": "A1L7M2JXN4EZCR",
"asin": "B000068NW5",
"reviewerName": "David G",
"helpful": [
0,
0
],
"reviewText": "It hums, crackles, and I think I'm having problems with my equipment. As soon as I use any of my other cords then the problem is gone. Hosa makes some other products that have good value. But based on my experience I don't recommend this one.",
"overall": 1,
"summary": "I have bought many cables and this one is the only one that gives me problems",
"unixReviewTime": 1391904000,
"reviewTime": "02 9, 2014"
}
},
{
"data": {
"reviewerID": "A37A41GWQFMK3D",
"asin": "B000068NW5",
"reviewerName": "Dr. Freud",
"helpful": [
0,
0
],
"reviewText": "I am not hard on cables. I typically just plug them in to my guitar, dont move around much, and play for an hour or two a day. this one seem to perform just fine. no buzz, and/or other noises noted. I have several of them and they have all performed well.",
"overall": 4,
"summary": "gets the job done",
"unixReviewTime": 1370649600,
"reviewTime": "06 8, 2013"
}
},
{
"data": {
"reviewerID": "A2JK2ITE138P7Z",
"asin": "B000068NW5",
"reviewerName": "Dr. Marc",
"helpful": [
0,
0
],
"reviewText": "I have found Hosa cables to be an excellent value. More expensive cables may be more rugged, but for the price, I'm very happy with the Hosa's I have purchased.",
"overall": 5,
"summary": "Nice cable for the price",
"unixReviewTime": 1399939200,
"reviewTime": "05 13, 2014"
}
},
{
"data": {
"reviewerID": "A1DVUFG2QSJ6IK",
"asin": "B000068NW5",
"reviewerName": "grandpa \"Randy\"",
"helpful": [
0,
0
],
"reviewText": "This is good cable. Excellent 1/4" plugs. The lugs and solder joints are covered with heat shrink material, which will hold everything in place for years. Grade A+ cable at a very affordable price. Definitely going back for more. The 25 ft. cable was only a couple dollars more than 10 ft.",
"overall": 5,
"summary": "Well made audio cable",
"unixReviewTime": 1381190400,
"reviewTime": "10 8, 2013"
}
},
{
"data": {
"reviewerID": "A34VZEFXQJJ7AT",
"asin": "B000068NW5",
"reviewerName": "Guitarslim",
"helpful": [
0,
0
],
"reviewText": "Pretty crappy cable. It works and gets the job done, but after purchasing this product and using it, I will shell out the extra bucks for better quality.",
"overall": 5,
"summary": "Eh",
"unixReviewTime": 1374710400,
"reviewTime": "07 25, 2013"
}
},
{
"data": {
"reviewerID": "A1SD1C8XK3Z3V1",
"asin": "B000068NW5",
"reviewerName": "guitfiddleblue \"guitfiddleblue\"",
"helpful": [
0,
0
],
"reviewText": "I use this cord in my church to run from my pedalboard to my amp (which is in a soundproof box). The cord is reliable and clean sounding. I like it and have used HOSA products in the past with confidence. Excellent cord. Hopefully this review will be useful to you.",
"overall": 5,
"summary": "great, affordable, cord",
"unixReviewTime": 1392163200,
"reviewTime": "02 12, 2014"
}
},
{
"data": {
"reviewerID": "AKHWZ3S1UVZAO",
"asin": "B000068NW5",
"reviewerName": "Hagen LeBray",
"helpful": [
0,
0
],
"reviewText": "This my second Hosa guitar cable. (The other one is shorter.) Like my first Hosa cable, this is a high quality item. I'd definitely buy more cables of this brand.",
"overall": 4,
"summary": "Nice Cable",
"unixReviewTime": 1397779200,
"reviewTime": "04 18, 2014"
}
},
{
"data": {
"reviewerID": "A3LNNEYLGGCO25",
"asin": "B000068NW5",
"reviewerName": "Hans R",
"helpful": [
0,
0
],
"reviewText": "Works for practice ... it's a guitar instrument cable, what can I say ... maybe not the best but it serves it's purpose.",
"overall": 3,
"summary": "maybe not the best but it serves it's purpose",
"unixReviewTime": 1404518400,
"reviewTime": "07 5, 2014"
}
},
{
"data": {
"reviewerID": "AMACM7BGUQCZD",
"asin": "B000068NW5",
"reviewerName": "IBZANE",
"helpful": [
0,
0
],
"reviewText": "These cables have taken a beating the last few months, and have served me well with no problems..Real metal ends, not molded on, with high quality silicone jackets and strain reliefs at the connectors..",
"overall": 5,
"summary": "High quality low cost",
"unixReviewTime": 1390521600,
"reviewTime": "01 24, 2014"
}
},
{
"data": {
"reviewerID": "A38HMS5RYSYF8G",
"asin": "B000068NW5",
"reviewerName": "James I Van Asten",
"helpful": [
0,