-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1104 lines (880 loc) · 46.9 KB
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="alternate" type="application/rss+xml" title="Sound Machine Dream RSS" href="rss.xml" />
<title>Sound Machine Dream | Please Listen to Something Good!</title>
<link type="text/css" rel="stylesheet" media="all" href="sites/soundmachinedream.com/files/css/css_3cae3bd4a33e22949ae553e34db22318.css" />
<link type="text/css" rel="stylesheet" media="print" href="sites/soundmachinedream.com/files/css/css_57367fa5fc6f36e7558dd525f390534e.css" />
<script type="text/javascript" src="sites/soundmachinedream.com/files/js/js_d17f465d56b4f7f3c49d364cbb7368cd.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","googleanalytics":{"trackOutbound":1,"trackMailto":1,"trackDownload":1,"trackDownloadExtensions":"7z|aac|arc|arj|asf|asx|avi|bin|csv|doc|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip"},"thickbox":{"close":"Close","next":"Next \u003e","prev":"\u003c Prev","esc_key":"or Esc Key","next_close":"Next \/ Close on last","image_count":"Image !current of !total"},"extlink":{"extTarget":0,"extClass":"ext","extSubdomains":1,"extExclude":"","extInclude":"","extCssExclude":"","extCssExplicit":"","extAlert":0,"extAlertText":"This link will take you to an external web site. We are not responsible for their content.","mailtoClass":"mailto"}});
//--><!]]>
</script>
<!--[if lt IE 7]>
<link type="text/css" rel="stylesheet" media="all" href="/themes/garland/fix-ie.css /> <![endif]-->
</head>
<body>
<!-- Layout -->
<div id="header-region" class="clear-block"></div>
<div id="wrapper">
<div id="container" class="clear-block">
<div id="header">
<div id="logo-floater">
<h1><a href="node.1.html" title="Sound Machine Dream"><span>Sound Machine Dream</span></a></h1> </div>
</div> <!-- /header -->
<div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
<div id="mission">Musical ramblings and learnings designed to entertain and enlighten your pop and indie music enjoyment.</div> <div class="clear-block">
<div id="node-134" class="node">
<h2><a href="content/contra-was-better-nes.html" title="Contra was better on the NES">Contra was better on the NES</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Contra </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Vampire Weekend </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2010 </div>
</div>
</div>
<p>Vampire Weekend's newest, <cite>Contra</cite>, is fairly unimpressive. What we get is a slightly more refined and better produced version of their debut. The quasi-afro-beat influence, along with regurgitated new-wave, create nice background music for a college party. Thankfully, great production values and decent instrumentation still save an otherwise unfortunate serious listening experience.</p>
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/contra-was-better-nes.html" title="Read the rest of Contra was better on the NES.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-133" class="node">
<h2><a href="content/volcano-choir.html" title="Volcano Choir">Volcano Choir</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Unmap </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Volcano Choir </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2009 </div>
</div>
</div>
I remember when some friends of mine in college were trying to turn me onto Pele, and instrumental band they dug on PolyVinyl (oh, my friends were from Chicago, and we were in western Michigan, thus the Lake-Michigan-centric musical taste) … I never really got into them at the time however. Then, not too long ago, I got a hold of a Collections of Colonies of Bees album. It was great. </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/volcano-choir.html" title="Read the rest of Volcano Choir.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-132" class="node">
<h2><a href="content/sufjan-giving-us-something-â%2580¦.html" title="Sufjan is giving us something …">Sufjan is giving us something …</a></h2>
<div class="content clear-block">
<object width="370" height="209"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5682252&server=vimeo.com&show_title=0&show_byline=0&show_portrait=0&color=ffffff&fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5682252&server=vimeo.com&sh </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/sufjan-giving-us-something-â%2580¦.html" title="Read the rest of Sufjan is giving us something ….">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-131" class="node">
<h2><a href="content/la-patère-rose-pacemaker-french-pop-explosion.html" title="La patère rose || PaceMaker - French Pop Explosion">La patère rose || PaceMaker - French Pop Explosion</a></h2>
<div class="content clear-block">
<object width="370" height="200"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3718478&server=vimeo.com&show_title=1&show_byline=0&show_portrait=1&color=00ADEF&fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3718478&server=vimeo.com&sh </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/la-patère-rose-pacemaker-french-pop-explosion.html" title="Read the rest of La patère rose || PaceMaker - French Pop Explosion.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-130" class="node">
<h2><a href="content/olafur-eliassonâ%2580¦.html" title="Olafur Eliasson…">Olafur Eliasson…</a></h2>
<div class="content clear-block">
<object width="375" height="305"><param name="movie" value="http://www.youtube.com/v/C26IU-Es8qw&color1=0xb1b1b1&color2=0xcfcfcf&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/C26IU-Es8qw&color1=0xb1b1b1&color2=0xcfcfcf&hl=en&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="375" height="305"></embed></object>
<p> </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/olafur-eliassonâ%2580¦.html" title="Read the rest of Olafur Eliasson….">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-129" class="node">
<h2><a href="content/completely-unrelated-music.html" title="COMPLETELY UNRELATED TO MUSIC">COMPLETELY UNRELATED TO MUSIC</a></h2>
<div class="content clear-block">
<div class="field field-type-filefield field-field-accompanying-image">
<div class="field-label">Accompanying Image: </div>
<div class="field-items">
<div class="field-item odd">
<div class="filefield-file"><img class="filefield-icon field-icon-image-jpeg" alt="image/jpeg icon" src="sites/all/modules/contrib/filefield/icons/image-x-generic.png" /><a href="http://files/accompany/bottle.jpg" type="image/jpeg; length=136137">bottle.jpg</a></div> </div>
</div>
</div>
<br>And Now For Something We Hope You Really Like!</br>
<br></br>
<br>It's becoming fall, which means that the stores are starting to put their pumpkin ales back on the shelf. Last year I took a few months to sample as many ales as possible from this specific category. This year, I am carrying on the tradition.</br>
<br></br>
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/completely-unrelated-music.html" title="Read the rest of COMPLETELY UNRELATED TO MUSIC.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-128" class="node">
<h2><a href="content/yet-another-nice-canadian-band.html" title="Yet Another Nice Canadian Band">Yet Another Nice Canadian Band</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Treasury Library Canada </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Woodpigeon </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2008 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/yet-another-nice-canadian-band.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/soundmachinedream/album_art/tlc_front.gif" alt="Wood Pigeon - Treasury Library Canada" title="Wood Pigeon - Treasury Library Canada" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
<p class='review'>
Woodpigeon's sophomore release sounds like a lot of things. It sounds like Canada's version of Sufjan Stevens. At times it sounds like an undiscovered demo from the late Elliot Smith that was remastered and completed by some other band. It sounds folky. It sounds moody. </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/yet-another-nice-canadian-band.html" title="Read the rest of Yet Another Nice Canadian Band.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-122" class="node">
<h2><a href="content/infiniheart.html" title="Infiniheart">Infiniheart</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Infiniheart </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Chad Vangaalen </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2005 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/infiniheart.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/amazon_images/B000A2H8AS.jpg" alt="" title="" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
<p class='review'>
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/infiniheart.html" title="Read the rest of Infiniheart.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-121" class="node">
<h2><a href="content/jerk-it.html" title="Jerk It">Jerk It</a></h2>
<div class="content clear-block">
<p class='entry'>I saw this the other day, and thought it was pretty good. The song is catchy, the Thunderheist logo is awesome (a ripoff of the Van Halen logo), and the video is clever. Oh, and the way the girl is dressed in this, I think she goes to MICA... Enjoy.
</p> </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/jerk-it.html" title="Read the rest of Jerk It.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-120" class="node">
<h2><a href="content/im-back.html" title="I'm Back!">I'm Back!</a></h2>
<div class="content clear-block">
<p class='entry'>
I was on a design trip to Europe for a few weeks after finishing my spring term, so I let the site slip into disrepair a little. I am now back and ready for action however, and we will get the reviews flowing, and get Karsten set up with his new MP3 column, where he talks about a favorite song, and we offer it up for limited-download. Hurray.
</p> </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/im-back.html" title="Read the rest of I'm Back!.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-119" class="node">
<h2><a href="content/she-gonna-be-big-star.html" title="Is she gonna be a big star?">Is she gonna be a big star?</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Big Star </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Haley Bonar </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2008 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/she-gonna-be-big-star.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/amazon_images/B00193PV06.jpg" alt="" title="" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
<p class='review'>
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/she-gonna-be-big-star.html" title="Read the rest of Is she gonna be a big star?.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-118" class="node">
<h2><a href="content/albert-hammond-jr-finding-his-sound.html" title="Is Albert Hammond, Jr. Finding His Sound?">Is Albert Hammond, Jr. Finding His Sound?</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Cómo Te Llama </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Albert Hammond, Jr. </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2008 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/albert-hammond-jr-finding-his-sound.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/soundmachinedream/album_art/f_ahjrcomominm_6ce3fe0.jpg" alt="f_ahjrcomominm_6ce3fe0.jpg" title="f_ahjrcomominm_6ce3fe0.jpg" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
That's the big question with <strong>Albert Hammond, Jr's</strong> sophomore release <cite>Cómo Te Llama</cite>, is he finding his sound? </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/albert-hammond-jr-finding-his-sound.html" title="Read the rest of Is Albert Hammond, Jr. Finding His Sound?.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-117" class="node">
<h2><a href="content/quiet-sounds-are-quite-good.html" title="Quiet Sounds are Quite Good">Quiet Sounds are Quite Good</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
For Emma, Forever Ago </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Bon Iver </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2008 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/quiet-sounds-are-quite-good.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/amazon_images/B0013IKUIK.jpg" alt="" title="" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
<p>
This is probably the best record I have heard this year.
</p>
<p class='review'>
As the story goes, This album just fell out of Justin Vernon as he spent the winter in a cabin in northern Wisconsin. Recorded on minimal equipment with only a drum, guitar, and layers of his voice, he creates a sound that pulls you in, and lets you drift.
</p> </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/quiet-sounds-are-quite-good.html" title="Read the rest of Quiet Sounds are Quite Good.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-116" class="node">
<h2><a href="content/holy-hell-where-have-we-all-gone-too.html" title="HOLY HELL, WHERE HAVE WE ALL GONE TOO!">HOLY HELL, WHERE HAVE WE ALL GONE TOO!</a></h2>
<div class="content clear-block">
<div class="field field-type-filefield field-field-accompanying-image">
<div class="field-label">Accompanying Image: </div>
<div class="field-items">
<div class="field-item odd">
<div class="filefield-file"><img class="filefield-icon field-icon-image-jpeg" alt="image/jpeg icon" src="sites/all/modules/contrib/filefield/icons/image-x-generic.png" /><a href="http://files/accompany/record.jpg" type="image/jpeg; length=57425">record.jpg</a></div> </div>
</div>
</div>
Well considering the last post was over a month and a half ago, and that there's supposedly three people posting on this site, that is pretty sad. BUT GOOD NEWS!!!!!
I finally Got my trusty turntable shipped to me. My beauteous Pioneer jidga-whomp! I've been waiting for September for this day, and finally today 5 boxes showed up containing my collection of LP's and the ol' Pioneer.
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/holy-hell-where-have-we-all-gone-too.html" title="Read the rest of HOLY HELL, WHERE HAVE WE ALL GONE TOO!.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-115" class="node">
<h2><a href="content/death-kllers.html" title="Death Kllers">Death Kllers</a></h2>
<div class="content clear-block">
<div class="field field-type-filefield field-field-accompanying-image">
<div class="field-label">Accompanying Image: </div>
<div class="field-items">
<div class="field-item odd">
<div class="filefield-file"><img class="filefield-icon field-icon-image-png" alt="image/png icon" src="sites/all/modules/contrib/filefield/icons/image-x-generic.png" /><a href="http://files/accompany/deathkill.png" type="image/png; length=4186">deathkill.png</a></div> </div>
</div>
</div>
This sounds too crazy to actually be true, but it is. Some kids (a brother and sister) have gotten together and kicked out some jams under the moniker <cite>Death Killers</cite> and they are awesome. Check out some mp3s here <a href='http://www.wfmu.org/onthedownload.php'>www.wfmu.org/onthedownload.php</a>. Keep on rocking. </div>
<div class="clear-block">
<div class="meta">
</div>
</div>
</div>
<div id="node-114" class="node">
<h2><a href="content/consistency-key.html" title="Consistency is Key?">Consistency is Key?</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Heaven </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Mobius Band </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2007 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/consistency-key.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/amazon_images/B000VALY5E.jpg" alt="" title="" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
<p class='entry'>
I had high hopes for <strong>Mobius Band</strong> when I heard a sample off of this album on itunes. The next time I was in the record shop, I looked it up and the album was only 10 bucks. So after a few listens I came to this conclusion, <cite> Heaven</cite> is an alright album.
</p> </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/consistency-key.html" title="Read the rest of Consistency is Key?.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-112" class="node">
<h2><a href="content/christian-marclays-cover-stories.html" title="Christian Marclay's cover stories">Christian Marclay's cover stories</a></h2>
<div class="content clear-block">
<div class="field field-type-filefield field-field-accompanying-image">
<div class="field-label">Accompanying Image: </div>
<div class="field-items">
<div class="field-item odd">
<div class="filefield-file"><img class="filefield-icon field-icon-image-jpeg" alt="image/jpeg icon" src="sites/all/modules/contrib/filefield/icons/image-x-generic.png" /><a href="http://files/accompany/marclay3_sm.jpg" type="image/jpeg; length=52226">marclay3_sm.jpg</a></div> </div>
</div>
</div>
<p>As the newest addition to the Sound Machine Dream team, I thought it might be polite to introduce myself before we get down to business. (Eventually I'll be playing matchmaker for a couple songs each week.)</p> </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/christian-marclays-cover-stories.html" title="Read the rest of Christian Marclay's cover stories.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-110" class="node">
<h2><a href="content/i-missed.html" title="I missed this...">I missed this...</a></h2>
<div class="content clear-block">
<p class='entry'>
<a href='http://minnesota.publicradio.org/collections/special/columns/music_blog/archive/2007/03/'>mpr link...</a>
</p> </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/i-missed.html" title="Read the rest of I missed this....">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-109" class="node">
<h2><a href="content/piping-hot.html" title="Piping Hot!">Piping Hot!</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Your Kisses Are Wasted on Me </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
The Pipettes </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2007 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/piping-hot.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/amazon_images/B000QGDJME.jpg" alt="" title="" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
<p class='review'>
This is not brand new stuff, but it is on the newer end of my current listening spectrum. <strong>The Pipettes</strong> are a fanciful girl group and are part of the current mo-town revival that has come into muscial vogue as of late. They do a really nice job of creating vintage inspired songs that still sound fresh and modern.
</p> </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/piping-hot.html" title="Read the rest of Piping Hot!.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-108" class="node">
<h2><a href="content/kiss.html" title="K.I.S.S.">K.I.S.S.</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Keep It Simple </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Van Morrison </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2008 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/kiss.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/amazon_images/B0012QGP00.jpg" alt="" title="" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
<p class='review'>
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/kiss.html" title="Read the rest of K.I.S.S..">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-106" class="node">
<h2><a href="content/old-new-again.html" title="Old is new again">Old is new again</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
The Only Reason I Feel Secure </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Pedro the Lion </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2001 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/old-new-again.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/amazon_images/B00005O7SO.jpg" alt="" title="" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
<p class='review'>
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/old-new-again.html" title="Read the rest of Old is new again.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-105" class="node">
<h2><a href="content/young-and-new.html" title="Young and New?">Young and New?</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
Foundations </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Kate Nash </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2008 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/young-and-new.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/amazon_images/B000V3L0ZK.jpg" alt="" title="" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
<p class='review'>
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/young-and-new.html" title="Read the rest of Young and New?.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-104" class="node">
<h2><a href="content/dont-call-it-comeback.html" title="Don't Call it a Comeback">Don't Call it a Comeback</a></h2>
<div class="content clear-block">
<div class="field field-type-filefield field-field-accompanying-image">
<div class="field-label">Accompanying Image: </div>
<div class="field-items">
<div class="field-item odd">
<div class="filefield-file"><img class="filefield-icon field-icon-image-jpeg" alt="image/jpeg icon" src="sites/all/modules/contrib/filefield/icons/image-x-generic.png" /><a href="http://files/accompany/197563926_818f401532.jpg" type="image/jpeg; length=49598">197563926_818f401532.jpg</a></div> </div>
</div>
</div>
Here I am, in month number four of "waiting for my turntable to arrive." Back in september I moved into a larger home, and went back to michigan to collect a few items, the most prized of them was my turntable. My mother, who had promised to ship it soon, has yet to full fill that promise, and I wait here in New York, the mecca of record shops, making a very long list of records to purchase.
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/dont-call-it-comeback.html" title="Read the rest of Don't Call it a Comeback.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-103" class="node">
<h2><a href="content/my-local-fav.html" title="My Local Fav">My Local Fav</a></h2>
<div class="content clear-block">
<div class="field field-type-text field-field-album-title">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Album Title: </div>
The Big Sea </div>
</div>
</div>
<div class="field field-type-text field-field-band-name">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Band Name: </div>
Beat Radio </div>
</div>
</div>
<div class="field field-type-number-integer field-field-release-year">
<div class="field-items">
<div class="field-item odd">
<div class="field-label-inline-first">
Release Year: </div>
2007 </div>
</div>
</div>
<div class="field field-type-filefield field-field-image">
<div class="field-items">
<div class="field-item odd">
<a href="content/my-local-fav.html" class="imagecache imagecache-thumb imagecache-linked imagecache-thumb_linked"><img src="sites/soundmachinedream.com/files/imagecache/thumb/files/soundmachinedream/album_art/beatradio2.jpg" alt="beatradio2.jpg" title="beatradio2.jpg" width="91" height="91" class="imagecache imagecache-thumb"/></a> </div>
</div>
</div>
</div>
<div class="clear-block">
<div class="meta">
</div>
</div>
</div>
<div id="node-102" class="node">
<h2><a href="content/read.html" title="Read This">Read This</a></h2>
<div class="content clear-block">
<p class='entry'>
Here is an interesting article from the wallstreet journal. It talks about the future of the album, and as an album lover, I found it quite interesting. Read on.
</p>
<p class='entry'>
<a href='http://online.wsj.com/article/SB120119822271713925.html'>
http://online.wsj.com/article/SB120119822271713925.html
</a></p>
<p class='entry'>
K
</p> </div>
<div class="clear-block">
<div class="meta">
</div>
</div>
</div>
<div id="node-101" class="node">
<h2><a href="content/drews-2007-top-6.html" title="Drew's 2007 top 6">Drew's 2007 top 6</a></h2>
<div class="content clear-block">
<div class="field field-type-filefield field-field-accompanying-image">
<div class="field-label">Accompanying Image: </div>
<div class="field-items">
<div class="field-item odd">
<div class="filefield-file"><img class="filefield-icon field-icon-image-jpeg" alt="image/jpeg icon" src="sites/all/modules/contrib/filefield/icons/image-x-generic.png" /><a href="http://files/accompany/smd_2007comp_2.jpg" type="image/jpeg; length=109646">smd_2007comp_2.jpg</a></div> </div>
</div>
</div>
<p class='entry'>
Drew Brockington (aka capt.geech) has given us this telling list of 6 of his many favorite tracks from 2007.
</p> </div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/drews-2007-top-6.html" title="Read the rest of Drew's 2007 top 6.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-98" class="node">
<h2><a href="content/mika-live-show-spectacle-event.html" title="Mika: The Live Show Spectacle Event">Mika: The Live Show Spectacle Event</a></h2>
<div class="content clear-block">
<div class="field field-type-filefield field-field-accompanying-image">
<div class="field-label">Accompanying Image: </div>
<div class="field-items">
<div class="field-item odd">
<div class="filefield-file"><img class="filefield-icon field-icon-image-jpeg" alt="image/jpeg icon" src="sites/all/modules/contrib/filefield/icons/image-x-generic.png" /><a href="http://files/accompany/mika.jpg" type="image/jpeg; length=20945">mika.jpg</a></div> </div>
</div>
</div>
<p class='entry'>
</div>
<div class="clear-block">
<div class="meta">
</div>
<div class="links"><ul class="links inline"><li class="node_read_more first last"><a href="content/mika-live-show-spectacle-event.html" title="Read the rest of Mika: The Live Show Spectacle Event.">Read more</a></li>
</ul></div>
</div>
</div>
<div id="node-95" class="node">
<h2><a href="node/95.html" title="Music and Quality">Music and Quality</a></h2>
<div class="content clear-block">
<p class='entry'>
I found this on a scrap of paper while cleaning up my studio.
</p
<p class='entry'>
<cite>