-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrupal.html
878 lines (622 loc) · 57 KB
/
drupal.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" version="XHTML+RDFa 1.0" dir="ltr"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:og="http://ogp.me/ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sioc="http://rdfs.org/sioc/ns#"
xmlns:sioct="http://rdfs.org/sioc/types#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<!-- Mirrored from www.robshouse.net/drupal by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 26 Jan 2022 11:57:08 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head profile="http://www.w3.org/1999/xhtml/vocab">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Generator" content="Drupal 7 (http://drupal.org)" />
<link rel="alternate" type="application/rss+xml" title="Drupal" href="drupal.xml" />
<link rel="shortcut icon" href="http://www.robshouse.net/misc/favicon.ico" type="image/vnd.microsoft.icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Drupal | RobsHouse.net [Arichive]</title>
<link type="text/css" rel="stylesheet" href="sites/default/files/css/css_xE-rWrJf-fncB6ztZfd2huxqgxu4WO-qwma6Xer30m4.css" media="all" />
<link type="text/css" rel="stylesheet" href="sites/default/files/css/css_7lF-Ou5Lrtcb7Qz3tvIwPBteZYL_XfoYHFIDYyp2kgs.css" media="all" />
<link type="text/css" rel="stylesheet" href="sites/default/files/css/css_E_zalDBl5HRkhOxFIkB1BiqNzBscpF_06Jftjhs4dFU.css" media="all" />
<link type="text/css" rel="stylesheet" href="sites/default/files/css/css_G9ZPvxbrJMswp5leAey9VkIKcnaMj6STtAS-Uy4Z6LM.css" media="all" />
<script type="text/javascript" src="sites/default/files/js/js_yMSKTzBO0KmozyLwajzFOrrt_kto_9mtccAkb0rm7gc.js"></script>
<script type="text/javascript" src="sites/default/files/js/js_eYYzMTEhy1avDvCymxlR3i6kn7-s4HBvj4OtULYztpU.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,"script","https://www.google-analytics.com/analytics.js","ga");ga("create", "UA-30340450-1", {"cookieDomain":"auto"});ga("send", "pageview");
//--><!]]>
</script>
<script type="text/javascript" src="sites/default/files/js/js_Eh5YD_NaSuBo42t5SlHViIi6IWnv39zd1xoGFNpXspU.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"acq_robshouse","theme_token":"9hB08bfPKsF6j1rj6apI8PzqKCfT6SmtYl69nD4SKT4","js":{"misc\/jquery.js":1,"misc\/jquery-extend-3.4.0.js":1,"misc\/jquery-html-prefilter-3.5.0-backport.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"sites\/all\/modules\/timeago\/timeago.js":1,"sites\/default\/libraries\/timeago\/jquery.timeago.js":1,"sites\/all\/modules\/google_analytics\/googleanalytics.js":1,"0":1,"sites\/default\/themes\/acq_robshouse\/local.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.messages.css":1,"modules\/system\/system.theme.css":1,"sites\/all\/modules\/date\/date_repeat_field\/date_repeat_field.css":1,"modules\/field\/theme\/field.css":1,"modules\/node\/node.css":1,"modules\/search\/search.css":1,"modules\/user\/user.css":1,"sites\/all\/modules\/views\/css\/views.css":1,"sites\/all\/modules\/ctools\/css\/ctools.css":1,"sites\/default\/files\/css\/follow.css":1,"sites\/default\/themes\/acq_robshouse\/defaults.css":1,"sites\/default\/themes\/acq_robshouse\/style.css":1,"sites\/default\/themes\/acq_robshouse\/palette.css":1,"sites\/default\/themes\/acq_robshouse\/custom.css":1,"sites\/default\/themes\/acq_robshouse\/advanced.css":1,"sites\/default\/themes\/acq_robshouse\/font-families.css":1}},"googleanalytics":{"trackOutbound":1,"trackMailto":1,"trackDownload":1,"trackDownloadExtensions":"7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip"},"urlIsAjaxTrusted":{"\/drupal":true}});
//--><!]]>
</script>
</head>
<body class="html not-front not-logged-in no-sidebars page-drupal theme-markup-2 body-layout-fixed-ac" >
<div id="skip-to-content">
<a href="#skip-to-content-target">Skip directly to content</a>
</div>
<!--[if IE ]>
<div id="gardens_ie">
<![endif]-->
<!--[if IE 8]>
<div id="gardens_ie8">
<![endif]-->
<!--[if IE 7]>
<div id="gardens_ie7">
<![endif]-->
<!--[if lt IE 7]>
<div id="gardens_ie-deprecated">
<![endif]-->
<!-- Hosted on Platform.sh -->
<div id="page" class="page clearfix tb-terminal">
<div id="page-deco-top" class="deco-page-top deco-page deco-top deco tb-scope tb-scope-prefer">
<div class="width deco-width inner tb-terminal">
<div class="layer-a layer"></div>
<div class="layer-b layer"></div>
<div class="layer-c layer"></div>
<div class="layer-d layer"></div>
</div>
</div>
<div id="page-deco-bottom" class="deco-page-bottom deco-page deco-bottom deco tb-scope tb-scope-prefer">
<div class="width deco-width inner tb-terminal">
<div class="layer-a layer"></div>
<div class="layer-b layer"></div>
<div class="layer-c layer"></div>
<div class="layer-d layer"></div>
</div>
</div>
<div class="page-width tb-scope">
<div class="lining tb-terminal"> <!-- Broken out of .page-width to avoid update issues with margin: 0 auto being undone -->
<div id="header" class="wrapper-header wrapper clearfix tb-scope">
<div id="header-deco-top" class="deco-header-top deco-header deco-top deco tb-scope tb-scope-prefer">
<div class="width deco-width inner tb-terminal">
<div class="layer-a layer"></div>
<div class="layer-b layer"></div>
<div class="layer-c layer"></div>
<div class="layer-d layer"></div>
</div>
</div>
<div id="header-deco-bottom" class="deco-header-bottom deco-header deco-bottom deco tb-scope tb-scope-prefer">
<div class="width deco-width inner tb-terminal">
<div class="layer-a layer"></div>
<div class="layer-b layer"></div>
<div class="layer-c layer"></div>
<div class="layer-d layer"></div>
</div>
</div>
<div id="preheader" class="stack-preheader stack-pre stack col-align-last-right horizontal clearfix tb-scope">
<div class="stack-width inset-1 inset tb-terminal">
<div class="inset-2 inset tb-terminal">
<div class="inset-3 inset tb-terminal">
<div class="inset-4 inset tb-terminal">
<div class="box col-1 clearfix tb-terminal">
<div class="col-first col only last tb-height-balance tb-terminal">
<div id="preheader-first-region" class="tb-region tb-scope">
<div class="region region-preheader-first">
<div id="block-follow-site" class="block block-follow clearfix">
<div class="inner tb-terminal">
<div class="top"><div class="top-inset-1 tb-terminal"><div class="top-inset-2 tb-terminal"></div></div></div>
<div class="middle tb-terminal">
<div class="content">
<div class='follow-links clearfix site'><div class='follow-link-wrapper follow-link-wrapper-linkedin'><a href="http://www.linkedin.com/in/roberttdouglass" class="follow-link follow-link-linkedin follow-link-site" title="Follow me on LinkedIn">LinkedIn</a>
</div><div class='follow-link-wrapper follow-link-wrapper-twitter'><a href="https://twitter.com/#!/robertDouglass" class="follow-link follow-link-twitter follow-link-site" title="Follow me on Twitter">Twitter</a>
</div><div class='follow-link-wrapper follow-link-wrapper-this-site'><a href="rss.xml" class="follow-link follow-link-this-site follow-link-site" title="Follow me on This site (RSS)">This site (RSS)</a>
</div></div> </div>
</div>
<div class="bottom"><div class="bottom-inset-1 tb-terminal"><div class="bottom-inset-2 tb-terminal"></div></div></div>
</div>
</div>
</div>
</div>
</div> <!-- /#preheader-first-region -->
</div>
</div>
</div>
</div>
</div>
</div>
<div id="header-inner" class="stack-header-inner stack clearfix tb-scope">
<div class="stack-width inset-1 inset tb-terminal tb-header-inner-1">
<div class="inset-2 inset tb-terminal tb-header-inner-2">
<div class="inset-3 inset tb-terminal">
<div class="inset-4 inset tb-terminal">
<div class="box col-4 clearfix tb-terminal">
<div class=" col col-first right tb-height-balance tb-terminal">
<div id="header-region" class="tb-region tb-scope">
<div class="region region-header">
<div id="block-block-17" class="block block-block clearfix">
<div class="inner tb-terminal">
<div class="top"><div class="top-inset-1 tb-terminal"><div class="top-inset-2 tb-terminal"></div></div></div>
<div class="middle tb-terminal">
<div class="content">
<div id="header-text">
<span id="site-title"><br /><h1>Robshouse.net [Archive]</h1>
<p></p></span><br /><span id="site-tagline"><br /><h2>Archival personal site of Robert Douglass.</h2>
<p></p></span>
</div>
</div>
</div>
<div class="bottom"><div class="bottom-inset-1 tb-terminal"><div class="bottom-inset-2 tb-terminal"></div></div></div>
</div>
</div>
</div>
</div>
</div>
<div class="col-c tb-primary tb-height-balance">
<p id="site-slogan" class="site-slogan"></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Navigation -->
<div id="navigation" class="stack-navigation stack horizontal pulldown clearfix tb-scope">
<div class="stack-width inset-1 inset tb-terminal">
<div class="inset-2 inset tb-terminal">
<div class="inset-3 inset tb-terminal">
<div class="inset-4 inset tb-terminal">
<div class="box col-1 clearfix tb-terminal">
<div id="navigation-region" class="col tb-region tb-scope tb-height-balance">
<div class="region region-navigation">
<div id="block-system-main-menu" class="block block-system block-menu clearfix">
<div class="inner tb-terminal">
<div class="top"><div class="top-inset-1 tb-terminal"><div class="top-inset-2 tb-terminal"></div></div></div>
<div class="middle tb-terminal">
<div class="content">
<ul class="menu"><li class="first leaf"><a href="index.html">Home</a></li>
<li class="leaf"><a href="content/robert-douglass.html" title="Resume and CV of Robert Douglass">About Robert</a></li>
<li class="leaf active-trail"><a href="drupal.html" class="active-trail active">Drupal</a></li>
<li class="leaf"><a href="music.html">Music</a></li>
<li class="last leaf"><a href="other-stuff.html">Other stuff</a></li>
</ul> </div>
</div>
<div class="bottom"><div class="bottom-inset-1 tb-terminal"><div class="bottom-inset-2 tb-terminal"></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> <!-- /#header -->
<div id="content" class="wrapper-content wrapper clearfix tb-scope">
<div class="wrapper-1 tb-terminal tb-content-wrapper-1">
<div id="content-deco-top" class="deco-content-top deco-content deco-top deco tb-scope tb-scope-prefer">
<div class="width deco-width inner tb-terminal">
<div class="layer-a layer"></div>
<div class="layer-b layer"></div>
<div class="layer-c layer"></div>
<div class="layer-d layer"></div>
</div>
</div>
<div id="content-deco-bottom" class="deco-content-bottom deco-content deco-bottom deco tb-scope tb-scope-prefer">
<div class="width deco-width inner tb-terminal">
<div class="layer-a layer"></div>
<div class="layer-b layer"></div>
<div class="layer-c layer"></div>
<div class="layer-d layer"></div>
</div>
</div>
<div id="breadcrumb" class="stack-breadcrumb stack clearfix tb-scope">
<div class="stack-width inset-1 inset tb-terminal">
<div class="inset-2 inset tb-terminal">
<div class="inset-3 inset tb-terminal">
<div class="inset-4 inset tb-terminal">
<div class="box col-1 clearfix tb-terminal">
<div id="breadcrumb-region" class="col tb-region tb-scope tb-height-balance">
<h2 class="element-invisible">You are here</h2><div class="breadcrumb"><a href="index.html">Home</a></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="content-inner" class="stack-content-inner stack clearfix tb-scope">
<div class="stack-width inset-1 inset tb-terminal">
<div class="inset-2 inset tb-terminal">
<div class="inset-3 inset tb-terminal">
<div class="inset-4 inset tb-terminal">
<div class="box clearfix tb-terminal tb-preview-shuffle-regions">
<div id="sidebar-a" class="col-a sidebar left tb-height-balance tb-region tb-scope tb-sidebar tb-left">
<div class="region region-sidebar-a">
<div id="block-search-form" class="block block-search clearfix">
<div class="inner tb-terminal">
<div class="top"><div class="top-inset-1 tb-terminal"><div class="top-inset-2 tb-terminal"></div></div></div>
<div class="middle tb-terminal">
<div class="content">
<form action="http://www.robshouse.net/drupal" method="post" id="search-block-form" accept-charset="UTF-8"><div><div class="container-inline">
<h2 class="element-invisible">Search form</h2>
<div class="form-item form-type-textfield form-item-search-block-form">
<label class="element-invisible" for="edit-search-block-form--2">Search </label>
<input title="Enter the terms you wish to search for." type="text" id="edit-search-block-form--2" name="search_block_form" value="" size="15" maxlength="128" class="form-text" />
</div>
<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Search" class="form-submit" /></div><input type="hidden" name="form_build_id" value="form--F_4NS-q_kxeF-oje31u0sF9fZytY02QqaRA2s0eQCY" />
<input type="hidden" name="form_id" value="search_block_form" />
</div>
</div></form> </div>
</div>
<div class="bottom"><div class="bottom-inset-1 tb-terminal"><div class="bottom-inset-2 tb-terminal"></div></div></div>
</div>
</div>
<div id="block-block-19" class="block block-block clearfix">
<div class="inner tb-terminal">
<div class="top"><div class="top-inset-1 tb-terminal"><div class="top-inset-2 tb-terminal"></div></div></div>
<div class="middle tb-terminal">
<h2>Kimiko Ishizaka on Bandcamp</h2>
<div class="content">
<iframe style="border: 0; width: 200px; height: 342px;" src="https://bandcamp.com/EmbeddedPlayer/album=4173461786/size=large/bgcol=ffffff/linkcol=0687f5/tracklist=false/transparent=true/" seamless=""><a href="http://kimikoishizaka.bandcamp.com/album/j-s-bach-open-goldberg-variations-bwv-988-piano">J.S. Bach: "Open" Goldberg Variations, BWV 988 (Piano) by Kimiko Ishizaka</a></iframe> </div>
</div>
<div class="bottom"><div class="bottom-inset-1 tb-terminal"><div class="bottom-inset-2 tb-terminal"></div></div></div>
</div>
</div>
</div>
</div>
<!-- end sidebars -->
<div id="main" class="col-c tb-height-balance tb-region tb-scope tb-primary">
<div class="pane">
<a id="skip-to-content-target" class="skip-to-link" title="Target of skip-to-content link"></a>
<h1 class="title" id="page-title">Drupal</h1>
<div class="tabs"></div>
<div id="content-area" class="content-area"> <div class="region region-content">
<div id="block-system-main" class="block block-system clearfix">
<div class="inner tb-terminal">
<div class="top"><div class="top-inset-1 tb-terminal"><div class="top-inset-2 tb-terminal"></div></div></div>
<div class="middle tb-terminal">
<div class="content">
<div class="view view-drupal view-id-drupal view-display-id-page view-dom-id-ec19fc0d1b03925aa6d4d1b4cb507063">
<div class="view-content">
<div class="views-row views-row-1 views-row-odd views-row-first">
<div id="node-299" class="node node-blog node-promoted node-teaser odd clearfix" about="/content/drupalcon-amsterdam-prenote-drupal-memories-full-video" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/drupalcon-amsterdam-prenote-drupal-memories-full-video.html">The DrupalCon Amsterdam Prenote : Drupal Memories (with full video!)</a></h2>
<span property="dc:title" content="The DrupalCon Amsterdam Prenote : Drupal Memories (with full video!)" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robert-douglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">Robert Douglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2014-10-05T21:28:24+00:00" datatype="xsd:dateTime">Sun, 10/05/2014 - 21:28</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>Rob, Jam, and guests tell the history of DrupalCon, from Antwerp to Amsterdam, from the point of view of those whose lives were changed by them. This video includes "Oh, and one time, at Drupal Camp", "The Drupal 8 Bug Elimination Challenge", a guest appearance by Captain Drupal, a performance of "The Drupal Song", a re-enactment of the genesis of Acquia, a "Never Marry Me" proposal, and a stunning performance of "Memories" by Bryn and Campbell Vertesi.</p></div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div><div class="field-item odd"><a href="tags/drupal.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal</a></div><div class="field-item even"><a href="tags/drupalcon.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">DrupalCon</a></div><div class="field-item odd"><a href="tags/selfieception.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Selfieception</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/drupalcon-amsterdam-prenote-drupal-memories-full-video.html" rel="tag" title="The DrupalCon Amsterdam Prenote : Drupal Memories (with full video!)">Read more<span class="element-invisible"> about The DrupalCon Amsterdam Prenote : Drupal Memories (with full video!)</span></a></li>
</ul>
</div>
</div>
<div class="views-row views-row-2 views-row-even">
<div id="node-298" class="node node-blog node-promoted node-teaser even clearfix" about="/content/drupal-8-bug-elimination-challenge" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/drupal-8-bug-elimination-challenge.html">The Drupal 8 Bug Elimination Challenge</a></h2>
<span property="dc:title" content="The Drupal 8 Bug Elimination Challenge" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robert-douglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">Robert Douglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2014-10-01T05:31:02+00:00" datatype="xsd:dateTime">Wed, 10/01/2014 - 05:31</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>In the style of the ALS Ice Bucket challenge, we'll lick those bugs, one at a time! The three people I nominate to also take the challenge are Tom Erickson, Dries Buytaert, and Josh Koenig. You've got 24 hours!</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/eCuQevzQr4c" frameborder="0" allowfullscreen=""></iframe></p>
<p>Prior to the DrupalCon Amsterdam Prenote (where this video was shown), I had captured a few reactions from some of my friends (a sort of market testing, if you will).</p>
<p>Jam and friends react.</p></div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div><div class="field-item odd"><a href="tags/drupal.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal</a></div><div class="field-item even"><a href="tags/drupalcon.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">DrupalCon</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/drupal-8-bug-elimination-challenge.html" rel="tag" title="The Drupal 8 Bug Elimination Challenge">Read more<span class="element-invisible"> about The Drupal 8 Bug Elimination Challenge</span></a></li>
</ul>
</div>
</div>
<div class="views-row views-row-3 views-row-odd">
<div id="node-297" class="node node-blog node-promoted node-teaser odd clearfix" about="/content/drupal-coder-vs-themer-ultimate-drupalcon-trailer" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/drupal-coder-vs-themer-ultimate-drupalcon-trailer.html">Drupal Coder vs Themer: The ultimate DrupalCon trailer?</a></h2>
<span property="dc:title" content="Drupal Coder vs Themer: The ultimate DrupalCon trailer?" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robert-douglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">Robert Douglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2014-09-24T14:43:56+00:00" datatype="xsd:dateTime">Wed, 09/24/2014 - 14:43</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>Campbell Vertesi and Adam Juran are at the top of their game when it comes to coding and theming Drupal. They're also deeply involved in and shaped by their study of martial arts. That's what makes <a href="https://www.youtube.com/watch?v=gRhLHBxYg-0" title="Link to the YouTube video">this DrupalCon trailer so very good</a>: they make an analogy for working with Drupal that pits the coder vs the themer, and it becomes the basis of their whole DrupalCon session. This trailer (which is meant to get <a href="https://amsterdam2014.drupal.org/session/coder-vs-themer-ultimate-grudge-smackdown-fight-death" title="Coder vs Themer session">butts into seats next week in Amsterdam</a>), is a tribute to B-grade Kung Fu movies, and is true to Drupal's tradition of approaching technology with a good dose of levity and humor. I, for one, really enjoyed working with Campbell and Adam while shooting this, and am looking forward to their session.</p>
<iframe width="640" height="360" src="http://www.youtube.com/embed/gRhLHBxYg-0" frameborder="0" allowfullscreen=""></iframe></div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div><div class="field-item odd"><a href="tags/drupal.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal</a></div><div class="field-item even"><a href="tags/drupalcon.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">DrupalCon</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/drupal-coder-vs-themer-ultimate-drupalcon-trailer.html" rel="tag" title="Drupal Coder vs Themer: The ultimate DrupalCon trailer?">Read more<span class="element-invisible"> about Drupal Coder vs Themer: The ultimate DrupalCon trailer?</span></a></li>
</ul>
</div>
</div>
<div class="views-row views-row-4 views-row-even">
<div id="node-293" class="node node-blog node-promoted node-teaser even clearfix" about="/content/robert-douglass-takes-als-ice-bucket-challenge-k%C3%B6ln" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/robert-douglass-takes-als-ice-bucket-challenge-k%c3%b6ln.html">Robert Douglass takes the ALS Ice Bucket Challenge in Köln</a></h2>
<span property="dc:title" content="Robert Douglass takes the ALS Ice Bucket Challenge in Köln" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robert-douglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">Robert Douglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2014-08-25T18:23:31+00:00" datatype="xsd:dateTime">Mon, 08/25/2014 - 18:23</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p><a href="https://www.youtube.com/watch?v=1IS0j1qp-9g">Baris Wanschers called me out</a>, and here it is, my <a href="https://en.wikipedia.org/wiki/Ice_Bucket_Challenge">ALS Ice Bucket Challenge</a>.</p>
<p>Thank you to the Drupal Community for 10 years of prosperity: I hope you take this challenge too, and find it in your heart to <a href="http://www.alsa.org/fight-als/ice-bucket-challenge.html">give to ALSA.org</a> or a charitable organizations of your choice.</p></div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/robert-douglass-takes-als-ice-bucket-challenge-k%c3%b6ln.html" rel="tag" title="Robert Douglass takes the ALS Ice Bucket Challenge in Köln">Read more<span class="element-invisible"> about Robert Douglass takes the ALS Ice Bucket Challenge in Köln</span></a></li>
</ul>
</div>
</div>
<div class="views-row views-row-5 views-row-odd">
<div id="node-261" class="node node-blog node-promoted node-teaser odd clearfix" about="/content/my-contribution-drupalcon-opening-session" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/my-contribution-drupalcon-opening-session.html">My contribution to the DrupalCon opening session</a></h2>
<span property="dc:title" content="My contribution to the DrupalCon opening session" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robertdouglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">robertDouglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2013-09-29T13:48:49+00:00" datatype="xsd:dateTime">Sun, 09/29/2013 - 13:48</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>I wasn't in Prague on the first day of DrupalCon, but that didn't stop me from contributing to the opening session. Here is the "song" that I "sang", with all of the lyrics. Enjoy!</p>
<p><iframe width="640" height="480" src="http://www.youtube.com/embed/MkUI_euqeuk" frameborder="0" allowfullscreen=""></iframe></p></div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/my-contribution-drupalcon-opening-session.html" rel="tag" title="My contribution to the DrupalCon opening session">Read more<span class="element-invisible"> about My contribution to the DrupalCon opening session</span></a></li>
</ul>
</div>
</div>
<div class="views-row views-row-6 views-row-even">
<div id="node-256" class="node node-blog node-promoted node-teaser even clearfix" about="/content/open-source-music-video-drupalcon-session" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/open-source-music-video-drupalcon-session.html">Open Source Music - Video from the DrupalCon Session</a></h2>
<span property="dc:title" content="Open Source Music - Video from the DrupalCon Session" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robertdouglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">robertDouglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2013-09-28T20:14:59+00:00" datatype="xsd:dateTime">Sat, 09/28/2013 - 20:14</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>The "Bach to the Future" session at DrupalCon Prague was fun, and a success, I think. Together with my wife, pianist Kimiko Ishizaka, I presented the concept of open source music, showed how Drupal is enabling the MuseScore project to thrive and treat musical scores as semantic content, and gave a demonstration showing the cool things you can do with digital scores and live performances. Kimiko Ishizaka played a selection of pieces from the Well-Tempered Clavier on the venue's Steinway grand piano, and it was a lovely way to start the final day of DrupalCon.</p></div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div><div class="field-item odd"><a href="tags/music.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Music</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/open-source-music-video-drupalcon-session.html" rel="tag" title="Open Source Music - Video from the DrupalCon Session">Read more<span class="element-invisible"> about Open Source Music - Video from the DrupalCon Session</span></a></li>
</ul>
</div>
</div>
<div class="views-row views-row-7 views-row-odd">
<div id="node-231" class="node node-blog node-promoted node-teaser odd clearfix" about="/content/bringing-bach-drupalcon-and-beyond" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/bringing-bach-drupalcon-and-beyond.html">Bringing Bach to DrupalCon and beyond</a></h2>
<span property="dc:title" content="Bringing Bach to DrupalCon and beyond" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robertdouglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">robertDouglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2013-08-05T23:38:34+00:00" datatype="xsd:dateTime">Mon, 08/05/2013 - 23:38</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><div>Open Source Bach. It was an idea so simple yet completely audacious that it made the front pages of BoingBoing and Slashdot, was written about in Wired, The New Yorker, F.A.Z., Spiegel, La Stampa, and brought together a diverse team that included a publisher, a piano manufacturer, and a notation software company. At the center of it all was pianist Kimiko Ishizaka, my wife and muse.</div></div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/music.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Music</a></div><div class="field-item odd"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div><div class="field-item even"><a href="tags/drupal.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal</a></div><div class="field-item odd"><a href="tags/kimiko-ishizaka.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Kimiko Ishizaka</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/bringing-bach-drupalcon-and-beyond.html" rel="tag" title="Bringing Bach to DrupalCon and beyond">Read more<span class="element-invisible"> about Bringing Bach to DrupalCon and beyond</span></a></li>
</ul>
</div>
</div>
<div class="views-row views-row-8 views-row-even">
<div id="node-226" class="node node-blog node-promoted node-teaser even clearfix" about="/content/commerce-kickstart-available-pantheon" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/commerce-kickstart-available-pantheon.html">Commerce Kickstart available on Pantheon</a></h2>
<span property="dc:title" content="Commerce Kickstart available on Pantheon" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robertdouglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">robertDouglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2013-05-31T17:45:56+00:00" datatype="xsd:dateTime">Fri, 05/31/2013 - 17:45</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><div>Pantheon is a great company with great product. They make hosting Drupal sites easy, and you can try out their service for free. I've enjoyed watching their company grow, and they make great contributions to Drupal overall. </div>
<div> </div>
<div><a href="http://commerceguys.com/">Commerce Guys</a> is a great company with a great product. We make getting started selling online with Drupal a breeze, and I've had a blast being part of the products team responsible for Commerce Kickstart.</div>
<div> </div></div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div><div class="field-item odd"><a href="tags/commerce-guys.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Commerce Guys</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/commerce-kickstart-available-pantheon.html" rel="tag" title="Commerce Kickstart available on Pantheon">Read more<span class="element-invisible"> about Commerce Kickstart available on Pantheon</span></a></li>
</ul>
</div>
</div>
<div class="views-row views-row-9 views-row-odd">
<div id="node-191" class="node node-blog node-promoted node-teaser odd clearfix" about="/content/abcs-drupalcon-munich" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/abcs-drupalcon-munich.html">The ABC's of DrupalCon Munich</a></h2>
<span property="dc:title" content="The ABC's of DrupalCon Munich" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robertdouglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">robertDouglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2012-09-03T22:40:01+00:00" datatype="xsd:dateTime">Mon, 09/03/2012 - 22:40</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>DrupalCon Munich is a few weeks past but today was the first day I was fully recovered, and by "fully recovered" I mean all of the <a href="https://twitter.com/robertDouglass/status/237843509112102913/photo/1">red toe-nail polish</a> was finally gone. Through various twists and turns I ended up being part of five sessions this year, including the highlights of being onstage with <a href="https://www.acquia.com/about-us/team/jim-shaw">Acquia's Jim Shaw</a> talking about <a href="http://munich2012.drupal.org/program/sessions/selling-enterprise">Enterprise Sales</a>, and announcing the entire product strategy for the Commerce Guys (<a href="http://commerceguys.com/webinars/webinar-big-news-drupal-con">which will be reprised as a webinar soon</a>). Those were certainly stressful sessions with high expectations and a lot riding on me to perform well.</p>
<p>But in the end, nothing took quite as much preparation and hard work as the opening session - the 6th iteration of a tradition started at DrupalCon San Francisco - where<a href="http://drupal.org/user/76919"> jam (aka horncologne aka some name that only his mother calls him)</a> and I get on stage at a stupidly early morning hour and use music and cheap theatrical tricks to convince people they didn't come to the wrong conference.</p>
<p>So, for posterity's sake, here's the video of this year's session, featuring the <a href="http://www.flickr.com/photos/amazeelabs/7829328162/in/set-72157631161628590">debut apperance of "Roberta"</a>, the Beautiful Blonde Baviarian with a Beard. After utilizing <a href="http://www.flickr.com/photos/amazeelabs/7829323566/in/set-72157631161628590/">Alphorns, Accordions, Dirndls, Lederhosen</a>, Schuhplattler, Yodeling, and the amazing soundtrack from the <a href="http://bavaria-derfilm.de/">recently released film "Bavaria",</a> we're going to need some new ideas if this show is going to <a href="http://portland2013.drupal.org/">play Portland next year</a>! (video after the break)</p>
<p> </p>
</div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/drupal.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal</a></div><div class="field-item odd"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div><div class="field-item even"><a href="tags/technology.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Technology</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/abcs-drupalcon-munich.html" rel="tag" title="The ABC's of DrupalCon Munich">Read more<span class="element-invisible"> about The ABC's of DrupalCon Munich</span></a></li>
</ul>
</div>
</div>
<div class="views-row views-row-10 views-row-even views-row-last">
<div id="node-166" class="node node-blog node-promoted node-teaser even clearfix" about="/content/my-role-commerce-guys" typeof="sioc:Post sioct:BlogPost">
<div class="float-overflow tb-terminal">
<h2><a href="content/my-role-commerce-guys.html">My Role at Commerce Guys</a></h2>
<span property="dc:title" content="My Role at Commerce Guys" class="rdf-meta element-hidden"></span>
<div class="meta">
<div class="submitted">Submitted by <span class="username"><span rel="sioc:has_creator"><span class="username" xml:lang="" about="/users/robertdouglass" typeof="sioc:UserAccount" property="foaf:name" datatype="">robertDouglass</span></span></span> </div>
<div class="created">on <span class="date"><span property="dc:date dc:created" content="2012-06-11T16:56:12+00:00" datatype="xsd:dateTime">Mon, 06/11/2012 - 16:56</span></span></div>
</div>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>Today marks a new phase for me; I have joined the Commerce Guys as <a href="http://commerceguys.com/users/robert">Director of Product Operations</a>. This role will see me working closely with the product development, sales, business development, and marketing teams to create and bring to market a product lineup focused on <a href="http://www.drupalcommerce.org/">Drupal Commerce</a>, and eCommerce in general.</p></div></div></div> </div>
<div class="tags">
<div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="tags/drupal.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal</a></div><div class="field-item odd"><a href="tags/drupal-planet.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Drupal Planet</a></div><div class="field-item even"><a href="tags/commerce-guys.html" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Commerce Guys</a></div></div></div> </div>
</div>
<ul class="links inline"><li class="node-readmore first last"><a href="content/my-role-commerce-guys.html" rel="tag" title="My Role at Commerce Guys">Read more<span class="element-invisible"> about My Role at Commerce Guys</span></a></li>
</ul>
</div>
</div>
</div>
<h2 class="element-invisible">Pages</h2><div class="item-list"><ul class="pager"><li class="pager-current first">1</li>
<li class="pager-item"><a title="Go to page 2" href="drupal2679.html?page=1">2</a></li>
<li class="pager-next"><a title="Go to next page" href="drupal2679.html?page=1">next ›</a></li>
<li class="pager-last last"><a title="Go to last page" href="drupal2679.html?page=1">last »</a></li>
</ul></div>
</div> </div>
</div>
<div class="bottom"><div class="bottom-inset-1 tb-terminal"><div class="bottom-inset-2 tb-terminal"></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> <!-- /.box tb-terminal -->
</div>
</div>
</div>
</div>
</div> <!-- /#main -->
</div>
</div> <!-- /#content -->
<div id="footer" class="wrapper-footer wrapper clearfix tb-scope">
<div id="footer-deco-top" class="deco-footer-top deco-footer deco-top deco tb-scope tb-scope-prefer">
<div class="width deco-width inner tb-terminal">
<div class="layer-a layer"></div>
<div class="layer-b layer"></div>
<div class="layer-c layer"></div>
<div class="layer-d layer"></div>
</div>
</div>
<div id="footer-deco-bottom" class="deco-footer-bottom deco-footer deco-bottom deco tb-scope tb-scope-prefer">
<div class="width deco-width inner tb-terminal">
<div class="layer-a layer"></div>
<div class="layer-b layer"></div>
<div class="layer-c layer"></div>
<div class="layer-d layer"></div>
</div>
</div>
<div id="prefooter" class="stack-prefooter stack-pre stack clearfix tb-scope">
<div class="stack-width inset-1 inset tb-terminal tb-prefooter-1">
<div class="inset-2 inset tb-terminal tb-prefooter-2">
<div class="inset-3 inset tb-terminal">
<div class="inset-4 inset tb-terminal">
<div class="box col-2 clearfix tb-terminal">
<div class="col-second col left tb-height-balance tb-terminal">
<div id="prefooter-second-region" class="tb-region tb-scope">
<div class="region region-prefooter-second">
<div id="block-views-music-block" class="block block-views clearfix">
<div class="inner tb-terminal">
<div class="top"><div class="top-inset-1 tb-terminal"><div class="top-inset-2 tb-terminal"></div></div></div>
<div class="middle tb-terminal">
<h2>Music</h2>
<div class="content">
<div class="view view-music view-id-music view-display-id-block view-dom-id-62c176260dce906fb838782a6118f1f8">
<div class="view-content">
<div class="item-list"> <ul> <li class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/js-bach-well-tempered-clavier-complete-video-people-who-truly-love-music.html">J.S. Bach, Well-Tempered Clavier complete video for people who truly love music</a></span> </div></li>
<li class="views-row views-row-2 views-row-even">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/wildly-popular-youtube-kimiko-ishizakas-goldberg-variations-and-musescore.html">Wildly popular on YouTube: Kimiko Ishizaka's "Goldberg Variations" and MuseScore </a></span> </div></li>
<li class="views-row views-row-3 views-row-odd">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/operatic-land-musical-smiles-review-cast-live-paris.html">Operatic - the land of musical smiles, a review of "The Cast: Live from Paris"</a></span> </div></li>
<li class="views-row views-row-4 views-row-even">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/open-well-tempered-clavier-here.html">The Open Well-Tempered Clavier is here</a></span> </div></li>
<li class="views-row views-row-5 views-row-odd views-row-last">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/when-open-well-tempered-clavier-going-be-released.html">When is the Open Well-Tempered Clavier going to be released?</a></span> </div></li>
</ul></div> </div>
</div> </div>
</div>
<div class="bottom"><div class="bottom-inset-1 tb-terminal"><div class="bottom-inset-2 tb-terminal"></div></div></div>
</div>
</div>
</div>
</div>
</div>
<div class="col-third col left last tb-height-balance tb-terminal">
<div id="prefooter-third-region" class="tb-region tb-scope">
<div class="region region-prefooter-third">
<div id="block-views-otherstuff-block" class="block block-views clearfix">
<div class="inner tb-terminal">
<div class="top"><div class="top-inset-1 tb-terminal"><div class="top-inset-2 tb-terminal"></div></div></div>
<div class="middle tb-terminal">
<h2>Other stuff</h2>
<div class="content">
<div class="view view-otherstuff view-id-otherstuff view-display-id-block view-dom-id-bbc7bed6b017b114160d884978452b88">
<div class="view-content">
<div class="item-list"> <ul> <li class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/robert-douglass-horn-player-archive.html">Robert Douglass, Horn Player: The Archive</a></span> </div></li>
<li class="views-row views-row-2 views-row-even">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/orchestration-code-deployment-infrastructure.html">Orchestration, Code, Deployment, Infrastructure</a></span> </div></li>
<li class="views-row views-row-3 views-row-odd">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/robert-douglass-takes-als-ice-bucket-challenge-k%c3%b6ln.html">Robert Douglass takes the ALS Ice Bucket Challenge in Köln</a></span> </div></li>
<li class="views-row views-row-4 views-row-even">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/i-want-show-you-photograph.html">I want to show you a photograph</a></span> </div></li>
<li class="views-row views-row-5 views-row-odd views-row-last">
<div class="views-field views-field-title"> <span class="field-content"><a href="content/youtube-data-api-v3-how-get-developerkey.html">YouTube Data API v3 : How to get $DEVELOPER_KEY </a></span> </div></li>
</ul></div> </div>
</div> </div>
</div>
<div class="bottom"><div class="bottom-inset-1 tb-terminal"><div class="bottom-inset-2 tb-terminal"></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> <!-- /#footer -->
</div> <!-- /.lining -->
</div> <!-- /.page-width -->
</div> <!-- /#page -->
<div id="copyright" class="stack-copyright stack page clearfix tb-region tb-scope">
<div class="page-width inner">
<div class="stack-width">
<div class="box">
<div class="region region-copyright">
<div id="block-system-powered-by" class="block block-system clearfix">
<div class="inner tb-terminal">
<div class="top"><div class="top-inset-1 tb-terminal"><div class="top-inset-2 tb-terminal"></div></div></div>
<div class="middle tb-terminal">
<div class="content">
<span>Powered by <a href="https://www.drupal.org/">Drupal</a></span> </div>
</div>
<div class="bottom"><div class="bottom-inset-1 tb-terminal"><div class="bottom-inset-2 tb-terminal"></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--[if IE ]>
</div>
<![endif]-->
<!--[if IE 8]>
</div>
<![endif]-->
<!--[if IE 7]>
</div>
<![endif]-->
<!--[if lt IE 7]>
</div>
<![endif]-->
</body>
<!-- Mirrored from www.robshouse.net/drupal by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 26 Jan 2022 11:57:25 GMT -->
</html>