-
Notifications
You must be signed in to change notification settings - Fork 0
/
guide.json
1293 lines (1293 loc) · 36.9 KB
/
guide.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
[
{
"key": "Thurs Day",
"date": 15,
"day": "Thursday",
"venue": "Day",
"artists": [
{
"time": "13:00",
"location": "SonarVillage",
"type": "live",
"from": "ES",
"name": "Tutu",
"genre": "Abstract/Dance/Techno",
"comment": "Great first artist."
},
{
"time": "14:30",
"location": "SonarVillage",
"type": "live",
"from": "ES",
"name": "BFlecha",
"genre": "R&B/Spanish Pop",
"comment": "not sure."
},
{
"time": "15:35",
"location": "SonarVillage",
"type": "live",
"from": "ES",
"name": "Rumore",
"genre": "Sunny House",
"comment": "Some nice sounds."
},
{
"time": "16:40",
"location": "SonarVillage",
"type": "live",
"from": "US",
"name": "Princess Nokia",
"genre": "R&B/Rap",
"comment": "Seems a bit angry."
},
{
"time": "17:20",
"location": "SonarVillage",
"type": "DJ",
"from": "ES",
"name": "Bawrut",
"genre": "Acid Rumba",
"comment": "Funky!."
},
{
"time": "18:30",
"location": "SonarVillage",
"type": "live",
"from": "US",
"name": "DAWN",
"genre": "Dramatic R&B",
"comment": "not my thing but good if it is yours."
},
{
"time": "19:30",
"location": "SonarVillage",
"type": "DJ",
"from": "NO",
"name": "Prins Thomas",
"genre": "Classy disco",
"comment": "Nice bass synths, retro in a good way."
},
{
"time": "21:00",
"location": "SonarVillage",
"type": "live",
"from": "AT",
"name": "HVOB",
"genre": "Electropop/Techno",
"comment": "Dancey melodic electro pop bubbling gradually into techno. Like."
},
{
"time": "22:10",
"location": "SonarVillage",
"type": "DJ",
"from": "UK",
"name": "Craig Richards",
"genre": "Spacey House/Techno/Funk",
"comment": "Fabric Resident. Builds, grooves, fills. Sexy! Deffo check out."
},
{
"time": "13:00",
"location": "SonarDôme",
"type": "live",
"from": "ES",
"name": "Lanoche",
"genre": "Deep House",
"comment": "Perfect for a Thursday afternoon."
},
{
"time": "13:50",
"location": "SonarDôme",
"type": "DJ",
"from": "TW",
"name": "RayRay",
"genre": "Trippy HH",
"comment": "Could be good."
},
{
"time": "14:55",
"location": "SonarDôme",
"type": "DJ",
"from": "KR",
"name": "MIIIN",
"genre": "Korean Electro Pop/TH",
"comment": "Not sure, might throw in a surprise."
},
{
"time": "16:00",
"location": "SonarDôme",
"type": "live",
"from": "SA",
"name": "Christian Tiger School",
"genre": "Electro/Techno/House/HH/Instrumental",
"comment": "yeah!."
},
{
"time": "17:20",
"location": "SonarDôme",
"type": "live",
"from": "DE",
"name": "Daniel Brandt & Eternal Something",
"genre": "Classical with Bass and synth",
"comment": "bit retro."
},
{
"time": "18:20",
"location": "SonarDôme",
"type": "live",
"from": "US",
"name": "Earl Sweatshirt",
"genre": "Rap",
"comment": "Nope."
},
{
"time": "19:15",
"location": "SonarDôme",
"type": "DJ",
"from": "US",
"name": "RP Boo",
"genre": "Rapper",
"comment": "Not for me."
},
{
"time": "20:30",
"location": "SonarDôme",
"type": "DJ",
"from": "UK",
"name": "Denis Sulta",
"genre": "Progressive House",
"comment": "Light, funky and surprising."
},
{
"time": "14:30",
"location": "SonarHall",
"type": "Live",
"from": "PT",
"name": "Boris Chimp 504",
"genre": "Arty electro",
"comment": "out there man! Fits right in!."
},
{
"time": "16:30",
"location": "SonarHall",
"type": "Live",
"from": "EE",
"name": "Tommy Cash",
"genre": "Rap",
"comment": "Move along."
},
{
"time": "18:30",
"location": "SonarHall",
"type": "Live",
"from": "UK",
"name": "Forest Swords",
"genre": "Strings, Airy vocals, Folk, dub",
"comment": "Out there but like it."
},
{
"time": "21:00",
"location": "SonarHall",
"type": "Live",
"from": "VE",
"name": "Arca & Jesse Kanda",
"genre": "Latin Futuristic Electro",
"comment": "like it."
},
{
"time": "13:30",
"location": "SonarComplex",
"type": "Live",
"from": "",
"name": "Dopplereffekt + Antivj",
"genre": "Electronic",
"comment": "Scientists, artists, coders, boom!."
},
{
"time": "16:00",
"location": "SonarComplex",
"type": "Live",
"from": "",
"name": "Dopplereffekt + Antivj",
"genre": "Electronic",
"comment": "Scientists, artists, coders, boom!."
},
{
"time": "18:00",
"location": "SonarComplex",
"type": "Live",
"from": "NL",
"name": "Tarik Barri ft LEa Fabrikant",
"genre": "Pianos/Orchestral/Electronic",
"comment": "Serious potential."
},
{
"time": "20:00",
"location": "SonarComplex",
"type": "Live",
"from": "UK",
"name": "Andy Stott",
"genre": "Dark House/Slow",
"comment": "Could be anything, worth a look?."
},
{
"time": "16:00",
"location": "SonarXS",
"type": "DJ",
"from": "UK",
"name": "Conor Thomas",
"genre": "Electronic, soundscapes",
"comment": "bass, slow, large speakers needed."
},
{
"time": "16:50",
"location": "SonarXS",
"type": "DJ",
"from": "SE",
"name": "Toxe",
"genre": "Some heavy stuff",
"comment": "Could be just the ticket."
},
{
"time": "17:55",
"location": "SonarXS",
"type": "DJ",
"from": "ES",
"name": "BSN Posse",
"genre": "Funk/HH/Soul/Dub",
"comment": "Something for everyone."
},
{
"time": "19:00",
"location": "SonarXS",
"type": "Live",
"from": "ES",
"name": "Yung Beef",
"genre": "R&B?",
"comment": "Someone take that autotune off him."
},
{
"time": "19:50",
"location": "SonarXS",
"type": "Live",
"from": "US",
"name": "Yves Tumor",
"genre": "Worldy and strange",
"comment": "okay if you need to slow down."
},
{
"time": "20:35",
"location": "SonarXS",
"type": "DJ",
"from": "UK",
"name": "Dj Bus Replacement Service",
"genre": "Comical",
"comment": "at least I think it's meant to be."
}
]
},
{
"key": "Fri Day",
"date": 16,
"day": "Friday",
"venue": "Day",
"artists": [
{
"time": "13:00",
"location": "SonarVillage",
"type": "DJ",
"from": "ES",
"name": "Diego Armando",
"genre": "Afro Jamaican/Big Band",
"comment": "Gentle jazzy start to the day."
},
{
"time": "14:00",
"location": "SonarVillage",
"type": "Live",
"from": "ES",
"name": "Playback Maracas",
"genre": "Latin electro",
"comment": "Perfect for their timeslot."
},
{
"time": "15:15",
"location": "SonarVillage",
"type": "Live",
"from": "AR",
"name": "Juana Molina",
"genre": "Folky synth and guitars",
"comment": "Probably other stuff to see."
},
{
"time": "16:05",
"location": "SonarVillage",
"type": "DJ",
"from": "DE",
"name": "c/o pop: Lena Willikens",
"genre": "Bizarre Electronica",
"comment": "Probably even more crazy live."
},
{
"time": "17:35",
"location": "SonarVillage",
"type": "Live",
"from": "DE",
"name": "c/o pop: Roosevelt",
"genre": "Electropop",
"comment": "Clear retro, dancey pop voice. Bit cheesy."
},
{
"time": "18:35",
"location": "SonarVillage",
"type": "DJ",
"from": "UK",
"name": "Stööki Sound",
"genre": "Grime/HH/Trap",
"comment": "It has it's moments."
},
{
"time": "19:35",
"location": "SonarVillage",
"type": "Live",
"from": "NZ",
"name": "Fat Freddy’s Drop",
"genre": "Dub/Funk/electro",
"comment": "Might depend when you catch them. It's certainly eclectic."
},
{
"time": "21:00",
"location": "SonarVillage",
"type": "DJ",
"from": "UK",
"name": "Damian Lazarus",
"genre": "Dance/Electro",
"comment": "Good but needs to step it up to close at Sonar Day."
},
{
"time": "13:00",
"location": "SonarDôme",
"type": "Live",
"from": "ES",
"name": "Julián Mayorga",
"genre": "Guitars",
"comment": "Yeah, no."
},
{
"time": "13:50",
"location": "SonarDôme",
"type": "Live",
"from": "LB",
"name": "Etyen",
"genre": "Indietronica",
"comment": "Might be worth a listen if others not floating your boat."
},
{
"time": "15:10",
"location": "SonarDôme",
"type": "Live",
"from": "NL",
"name": "Sofie Winterson",
"genre": "Electropop",
"comment": "More plinky plonky. Nice voice though."
},
{
"time": "16:00",
"location": "SonarDôme",
"type": "Live",
"from": "IT",
"name": "Lamusa",
"genre": "Ambient",
"comment": "Plinky plonky kinda Aphex Twin but with less energy. Nice if you need to mellow out for a bit."
},
{
"time": "17:00",
"location": "SonarDôme",
"type": "Live",
"from": "CA",
"name": "River Tiber",
"genre": "R&B",
"comment": "nice beats and airy vocals. Easy going background."
},
{
"time": "18:00",
"location": "SonarDôme",
"type": "Live",
"from": "IT",
"name": "Suzanne Ciani",
"genre": "Classical/Synth",
"comment": "Difficult to say. Her albums sound pretty traditional."
},
{
"time": "18:50",
"location": "SonarDôme",
"type": "Live",
"from": "CN",
"name": "Pan Daijing",
"genre": "Dark soundtracks with a beat",
"comment": "Serious, retro noise generation."
},
{
"time": "19:50",
"location": "SonarDôme",
"type": "Live",
"from": "CA",
"name": "Marie Davidson Pr “Bullshit Treshold“",
"genre": "Synth pop",
"comment": "some interesting sounds but goes on a bit."
},
{
"time": "21:00",
"location": "SonarDôme",
"type": "Live",
"from": "US",
"name": "Floorplan Live (Robert & Lyric Hood)",
"genre": "Techno",
"comment": "Nice floor tapper."
},
{
"time": "14:30",
"location": "SonarHall",
"type": "Live",
"from": "ES",
"name": "Kinder Malo & Pimp Flaco",
"genre": "Trap",
"comment": "New to me. Melodic Rapping in Spanish. Probably good if you're into this."
},
{
"time": "16:30",
"location": "SonarHall",
"type": "Live",
"from": "FR",
"name": "Jacques",
"genre": "French Dance",
"comment": "Certainly different but I think no."
},
{
"time": "18:30",
"location": "SonarHall",
"type": "Live",
"from": "UK",
"name": "Evian Christ",
"genre": "Trance/Hip Hop",
"comment": "This is gonna be banging unless the MCing is over the top."
},
{
"time": "20:30",
"location": "SonarHall",
"type": "Live",
"from": "UK",
"name": "Clark",
"genre": "Moody Basy IDM",
"comment": "We need to see this."
},
{
"time": "14:00",
"location": "SonarComplex",
"type": "Live",
"from": "ES",
"name": "Aitor Etxebarria",
"genre": "Instrumental Documentary",
"comment": "Documentary of the 1937 Spanish bombing. Beautiful."
},
{
"time": "16:00",
"location": "SonarComplex",
"type": "Live",
"from": "ES",
"name": "LCC",
"genre": "Soundscapes/Dark Techno",
"comment": "Bubbling, teasing soundscapes with some banging bass beats. Fancy a peak."
},
{
"time": "18:00",
"location": "SonarComplex",
"type": "Live",
"from": "US",
"name": "Elysia Crampton",
"genre": "Alt Classical",
"comment": "Might be a bit too out there."
},
{
"time": "20:00",
"location": "SonarComplex",
"type": "Live",
"from": "FR",
"name": "Nonotak",
"genre": "Classic Sonar A/V experience",
"comment": "Need to see this."
},
{
"time": "16:00",
"location": "SonarXS",
"type": "Live",
"from": "AR",
"name": "Juan Ingaramo",
"genre": "R&B/Electro",
"comment": "Sounds like Jamiroquai, a really cheesy version."
},
{
"time": "16:50",
"location": "SonarXS",
"type": "DJ",
"from": "SE",
"name": "Kablam",
"genre": "Bass",
"comment": "Mental Magnet Morphing!."
},
{
"time": "17:55",
"location": "SonarXS",
"type": "Live",
"from": "IS",
"name": "Sturla Atlas",
"genre": "R&B",
"comment": "Get me outta here."
},
{
"time": "18:35",
"location": "SonarXS",
"type": "Live",
"from": "ES",
"name": "Bad Gyal",
"genre": "R&B",
"comment": "Poppy autotunetastic."
},
{
"time": "19:15",
"location": "SonarXS",
"type": "DJ",
"from": "UK",
"name": "DJ Florentino",
"genre": "Latin",
"comment": "Could be good depending on mood."
},
{
"time": "20:20",
"location": "SonarXS",
"type": "DJ",
"from": "FR",
"name": "Kiddy Smile",
"genre": "Dance/Disco - Wow retro dance",
"comment": "unless I took the wrong thing I'll be elsewhere."
}
]
},
{
"key": "Fri Night",
"date": 16,
"day": "Friday",
"venue": "Night",
"artists": [
{
"time": "21:30",
"location": "SonarClub",
"type": "DJ",
"from": "ES",
"name": "Mario Nieto",
"genre": "Dance/Electronic/Glitch",
"comment": "Pretty good but a little generic. Probably on too early unless you're doing Night only."
},
{
"time": "22:30",
"location": "SonarClub",
"type": "Live",
"from": "US",
"name": "DJ Shadow",
"genre": "Electronic/Sampled/Trip Hop",
"comment": "Endtroducing is still a genre defining album. His latest work has some big sounds which are sure to sound epic here."
},
{
"time": "23:35",
"location": "SonarClub",
"type": "DJ",
"from": "UK",
"name": "Jon Hopkins",
"genre": "Electronic/Glitch",
"comment": "My favourite artist of the present day. Mashing classical instruments into the electronic world and a mastery of glitch that no one has matched yet."
},
{
"time": "01:00",
"location": "SonarClub",
"type": "Live",
"from": "DE",
"name": "Moderat",
"genre": "Electronic",
"comment": "Silky baselines, lyrics slot in. A little mainstream but excellently executed."
},
{
"time": "02:25",
"location": "SonarClub",
"type": "DJ",
"from": "CA",
"name": "Jacques Green",
"genre": "Dance/House/Funk",
"comment": "Light feeling but darker stuff too. Vocals are okay. Better use of autotune. Leaves you wanting. Pop back later if you're not feeling it."
},
{
"time": "03:50",
"location": "SonarClub",
"type": "Live",
"from": "BE",
"name": "Soulwax",
"genre": "Synthpop/Funk",
"comment": "Intelligent retro plinky plonky but maybe should have stayed at home."
},
{
"time": "05:10",
"location": "SonarClub",
"type": "DJ",
"from": "US",
"name": "Dubfire",
"genre": "Ploddy Techno",
"comment": "Sway your way into Saturday morning. Some standout sounds and vocals in there too."
},
{
"time": "22:00",
"location": "SonarPub",
"type": "DJ",
"from": "ES",
"name": "Judah",
"genre": "R&B/Grime/HH",
"comment": "Local talent bringing in Friday night."
},
{
"time": "23:30",
"location": "SonarPub",
"type": "Live",
"from": "US",
"name": "Anderson .Paak & The Free Nat",
"genre": "Soul/Funk/Rap",
"comment": "Not original enough for me but I'm no expert in this area."
},
{
"time": "00:35",
"location": "SonarPub",
"type": "DJ",
"from": "US",
"name": "Clams Casino",
"genre": "Trap",
"comment": "Real stripped down MCing. Too much talking for me but it's got something that will attract."
},
{
"time": "01:45",
"location": "SonarPub",
"type": "Live",
"from": "US",
"name": "Nicolas Jaar",
"genre": "Ambient/Blues/Noise/House/Jazz",
"comment": "Slow build."
},
{
"time": "03:20",
"location": "SonarPub",
"type": "DJ",
"from": "US",
"name": "Derrick Carter",
"genre": "Funky House",
"comment": "Reasonable toe tapper."
},
{
"time": "05:05",
"location": "SonarPub",
"type": "DJ",
"from": "RU",
"name": "Nina Kraviz",
"genre": "Techno",
"comment": "Ambient with Dark beats. Pretty banging!."
},
{
"time": "21:30",
"location": "SonarLab",
"type": "DJ",
"from": "ES",
"name": "Ches",
"genre": "Dance/HH",
"comment": "Finally MCing that doesn't grate. Some well timed beats, synths and bass drops to boot."
},
{
"time": "22:30",
"location": "SonarLab",
"type": "DJ",
"from": "ES",
"name": "Sandro Jeeawock",
"genre": "Hip Hop",
"comment": "HipHop with odd harmonies. Typical Lab content."
},
{
"time": "23:30",
"location": "SonarLab",
"type": "Live",
"from": "SE",
"name": "Little Dragon",
"genre": "Electro Pop",
"comment": "Laid back. Warm sounds. Mellow vocals. Some good rhythms."
},
{
"time": "00:35",
"location": "SonarLab",
"type": "DJ",
"from": "NO",
"name": "Cashmere Cat",
"genre": "Synthpop",
"comment": "Airy fairy shit."
},
{
"time": "01:40",
"location": "SonarLab",
"type": "Live",
"from": "UK",
"name": "AJ Tracey",
"genre": "Grime",
"comment": "Not my thing."
},
{
"time": "02:15",
"location": "SonarLab",
"type": "Live",
"from": "US",
"name": "Jlin",
"genre": "Worldly/Percussive",
"comment": "This one is out there! Gelling percussion, timbres and looped vocals and effects to create some ear pleasing noises. Original."
},
{
"time": "03:15",
"location": "SonarLab",
"type": "Live",
"from": "UK",
"name": "Giggs",
"genre": "Grime",
"comment": "The MCing is decent but the repeated melodies don't provide enough interest for me. Seems a little amateur in places but might just be the upfront mic position."
},
{
"time": "04:10",
"location": "SonarLab",
"type": "Live",
"from": "CA",
"name": "Lunice",
"genre": "Grime/Trap/HH/Electro",
"comment": "Now this is interesting. MCing but layered with a variety of sounds. Plenty of crossover with various genres. Not all talking."
},
{
"time": "05:15",
"location": "SonarLab",
"type": "DJ",
"from": "UK",
"name": "Benji B",
"genre": "Grime/House",
"comment": "Ah another person who likes his voice through an autotune. Mixes it up with some slow bass but doesn't save it for me."
},
{
"time": "00:00",
"location": "SonarCar",
"type": "Live",
"from": "US",
"name": "Masters At Work / 6 H Set",
"genre": "Retro Dance",
"comment": "If you can get in take a trip down memory lane."
}
]
},
{
"key": "Sat Day",
"date": 17,
"day": "Saturday",
"venue": "Day",
"artists": [
{
"time": "13:00",
"location": "SonarVillage",
"type": "Live",
"from": "ES",
"name": "Pauk",
"genre": "Electronic",
"comment": "Sounds very much like Wisp. Glitchy, Bassy, love it (Need to get up early for this)."
},
{
"time": "14:00",
"location": "SonarVillage",
"type": "Live",
"from": "ES",
"name": "Fira Fem",
"genre": "Electro dance pop",
"comment": "yeah whatever."
},
{
"time": "14:45",
"location": "SonarVillage",
"type": "Live",
"from": "ES",
"name": "Telmo Trenor",
"genre": "Electro/Synth",
"comment": "Laid back electronic & synth to bring in Saturday."
},
{
"time": "15:50",
"location": "SonarVillage",
"type": "Live",
"from": "UK",
"name": "Joe Goddard",
"genre": "Electric Pop/House",
"comment": "Great arps. Way better than some of the other Synthpopers."
},
{
"time": "16:50",
"location": "SonarVillage",
"type": "DJ",
"from": "MX",
"name": "Zutzut & Imaabs",
"genre": "Latin Electro Bass",
"comment": "Tough one to call as material is non-existent."
},
{
"time": "18:00",
"location": "SonarVillage",
"type": "Live",
"from": "UK",
"name": "Nadia Rose",
"genre": "HipHop",
"comment": "Good if you like that sort of thing."
},
{
"time": "18:35",
"location": "SonarVillage",
"type": "DJ",
"from": "US",
"name": "Soulection Presents Joe Kay + Jarreau Vandal",
"genre": "Elevator music",
"comment": "Shallow vocals oh and a few beats."
},
{
"time": "20:10",
"location": "SonarVillage",
"type": "Live",
"from": "CA",
"name": "Keys N Krates",
"genre": "Trap/EDM",
"comment": "Well put together electro dance with some fat bass and filters."
},
{
"time": "21:15",
"location": "SonarVillage",
"type": "DJ",
"from": "UK",
"name": "Optimo",
"genre": "Funk/Techno/Dub/Electro/House",
"comment": "Lots of bongos but probably something for everyone."
},
{
"time": "13:00",
"location": "SonarDôme",
"type": "Live",
"from": "ES",
"name": "Ghostly Enemies",
"genre": "Dark Synth Trip Pop",
"comment": "Good voice. Crazy Genre bending stuff. Liking it."
},
{
"time": "13:45",
"location": "SonarDôme",
"type": "Live",
"from": "ES",
"name": "Huma",
"genre": "Noise/Soundscape",
"comment": "Bit more structure and interest than Aethereal. Worth checking out."
},
{
"time": "14:30",
"location": "SonarDôme",
"type": "Live",
"from": "JP",
"name": "Crystal / Sparrows",
"genre": "Japanese Electro synth pop",
"comment": "Interesting boarders on cheesy but might just get away with it."
},
{
"time": "15:20",
"location": "SonarDôme",
"type": "Live",
"from": "US",
"name": "Matmos",
"genre": "Abstract/Narration",
"comment": "Narration, washing machines and Björk. No doubt it's weird."
},
{
"time": "16:10",
"location": "SonarDôme",
"type": "DJ",
"from": "US",
"name": "Veronica Vasicka",
"genre": "Minimal Wave",
"comment": "I'm in a computer game!."
},
{
"time": "17:15",
"location": "SonarDôme",
"type": "Live",
"from": "ES",
"name": "C. Tangana",
"genre": "Spanish/Rap/Pop",
"comment": "Not my thing but shows promise."
},
{
"time": "18:20",
"location": "SonarDôme",
"type": "Live",
"from": "US",
"name": "Suicideyear",
"genre": "Rap - Lots of angry bad words with some spacey soundscapes",
"comment": "bit annoying."
},
{
"time": "19:35",
"location": "SonarDôme",
"type": "Live",
"from": "US",
"name": "Thundercat",
"genre": "Drawing similarities with Jamiroquai again",
"comment": "not for me."
},
{
"time": "20:45",
"location": "SonarDôme",
"type": "DJ",
"from": "US",
"name": "Star Eyes B2 B Jubilee",
"genre": "House/Techno + Grime/HH/Bass",
"comment": "If you wanna move check these two out."
},
{
"time": "14:30",
"location": "SonarHall",
"type": "Live",
"from": "ES",
"name": "Anímic",
"genre": "Dark Synth",
"comment": "More intelligent than some of the Electropop here. Could be good on big speakers."
},
{
"time": "16:30",
"location": "SonarHall",
"type": "Live",
"from": "UK",
"name": "Gaika",
"genre": "Grime/HH/Dance",
"comment": "Some interesting material here."
},
{
"time": "18:30",
"location": "SonarHall",
"type": "Live",
"from": "US / JP",
"name": "Nosaj Thing + Daito Manabe",
"genre": "Abstract Electro",
"comment": "With some funky visuals, check it out."
},
{
"time": "20:30",
"location": "SonarHall",
"type": "Live",
"from": "UK",
"name": "Sohn",
"genre": "Electropop",
"comment": "Warm, powerful electronic with slightly vocoded vocals."
},
{
"time": "14:00",
"location": "SonarComplex",
"type": "Live",
"from": "ES",
"name": "Connectome",