-
Notifications
You must be signed in to change notification settings - Fork 1
/
he-ink-stone.html
986 lines (486 loc) · 53 KB
/
he-ink-stone.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
<!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" lang="en-US" prefix="og: http://ogp.me/ns#">
<head profile="http://gmpg.org/xfn/11"><!-- Start Wayback Rewrite JS Include -->
<script type="text/javascript" src="/static/js/wombat.js?v=uVfyaniA" charset="utf-8"></script>
<script type="text/javascript">
if (window._WBWombatInit) {
_wb_uc = new URL("https://www.dailyserving.com/2016/01/he-yunchang-water-forming-stone-at-ink-studio/");
wbinfo = {}
wbinfo.url = "https://www.dailyserving.com/2016/01/he-yunchang-water-forming-stone-at-ink-studio/";
wbinfo.timestamp = "20201224180606";
wbinfo.request_ts = "20201224180606";
wbinfo.prefix = "https://wayback.archive-it.org/15633/";
wbinfo.mod = "";
wbinfo.is_framed = false;
wbinfo.is_live = false;
wbinfo.coll = "15633";
wbinfo.proxy_magic = "";
wbinfo.static_prefix = "/static/";
wbinfo.enable_auto_fetch = true;
wbinfo.auto_fetch_worker_prefix = "https://wayback.archive-it.org/15633/";
wbinfo.wombat_ts = "20201224180606";
wbinfo.wombat_sec = "1608833166";
wbinfo.wombat_scheme = ( _wb_uc.protocol || 'http').replace(/:$/, '');
wbinfo.wombat_host = _wb_uc.host;
wbinfo.wombat_opts = {
no_rewrite_prefixes: [
"https://wayback.archive-it.org/15633/",
"//archive-it.org/",
"https://partner.archive-it.org/",
]
};
window._WBWombatInit(wbinfo);
// variables useful for rulesengine rewrites from old ait-client_rewrite.js
WB_RewriteUrl = _wb_wombat.rewrite_url;
WB_ExtractOrig = _wb_wombat.extract_orig;
WB_wombat_self_location = window.WB_wombat_location
}
</script>
<script type="text/javascript" src="https://partner.archive-it.org/static/AIT_Analytics.js" async="async"></script>
<!-- End Wayback Rewrite JS Include -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta property="fb:app_id" content="230929536992105"/>
<title>
DAILY SERVING » He Yunchang: Water Forming Stone at Ink Studio
</title>
<link rel="stylesheet" href="https://wayback.archive-it.org/15633/20201224180606cs_/https://www.dailyserving.com/wp-content/themes/cameron/style.css" type="text/css" media="screen"/>
<link rel="alternate" type="application/rss+xml" title="DAILY SERVING RSS Feed" href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/feed/"/>
<link rel="pingback" href="https://www.dailyserving.com/xmlrpc.php"/>
<link rel="shortcut icon" href="/15633/20201224180606im_/https://www.dailyserving.com/2016/01/he-yunchang-water-forming-stone-at-ink-studio/favicon.ico"/>
<link href="https://wayback.archive-it.org/15633/20201224180606cs_/http://fonts.googleapis.com/css?family=Abel" rel="stylesheet" type="text/css">
<!-- Generated by OpenX 2.8.2-rc25 -->
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/http://d1.openx.org/spcjs.php?id=20651&withtext=1"></script>
<style type="text/css">.cc_form_wrapper_2 { font-size:10px; color:#999999; margin:0 auto; text-align:center; padding:3px; background-color:#ffffcc; border:2px solid #000000; } .cc_style_1 * { font-family:Arial,Helvetica,sans-serif;text-align:center; } .cc_style_1 .cc_widget_title { font-weight: bold; font-size:12px; color:#000000;} .cc_style_1 form { margin-bottom:2px; border-top:2px solid ##000000 } .cc_style_1 .cc_label_email { font-weight: normal; font-family:Arial; font-size:12px; color:#000000; } .cc_style_1 .cc_input_email { font-size:10pt; border:1px solid #999999; text-align:left; } .cc_style_1 .cc_submit {font-family:Verdana,Geneva,Arial,Helvetica,sans-serif; font-size:10pt; } .cc_safesubscribe { text-align:center; margin:0 auto; width:168px; padding-top:5px; } .cc_email_marketing { display:block; text-align:center; margin:0 auto; font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999; } .cc_email_marketing a { text-decoration:none;font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999; } .cc_widget_container .cc_preface p { margin:0.25em 0; padding:0; } .cc_widget_container .cc_input_email { max-width:95%; } .cc_widget_container .cc_email_image { float:right; margin-right:5px; margin-top:3px; display:block; padding:0; overflow:hidden; } .cc_widget_container .cc_email_image img { background-color: #006699; float:right; } .cc_widget_container .cc_email_image img { border:0; padding:0; margin:0; }</style>
<style type="text/css">.cc_style_3 { width:100%; background-color: #ebebeb; text-align:left; margin:0 auto; height:40px; } .cc_style_3 * { font-family:Verdana,Geneva,Arial,Helvetica,sans-serif; } .cc_style_3 .cc_widget_title { font-weight: bold; font-family:Arial; font-size:16px; color:#006699; display:block; padding-bottom:.2em; } .cc_style_3 form { margin-bottom:3px; } .cc_style_3 .cc_label_email { font-weight: normal; font-family:Arial; font-size:10px; color:#000000; } .cc_style_3 .cc_input_email { font-size:10pt; border:1px solid #999999; font-size:10px; border:1px solid #999999; color: #666666; } .cc_style_3 .cc_submit { font-size:10px; } .cc_safesubscribe { padding-top:5px; } .cc_email_marketing { font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999; } .cc_email_marketing a { text-decoration:none;font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999; } .cc_widget_container .cc_preface p { margin:0.25em 0; padding:0; } .cc_widget_container .cc_input_email { max-width:95%; } .cc_widget_container .cc_email_image { float:right; margin-right:5px; margin-top:3px; display:block; padding:0; overflow:hidden; } .cc_widget_container .cc_email_image img { background-color: #006699; float:right; } .cc_widget_container .cc_email_image img { border:0; padding:0; margin:0; }</style>
<link rel="stylesheet" id="tabbed-widgets-css" href="https://wayback.archive-it.org/15633/20201224180606cs_/http://www.dailyserving.com/wp-content/plugins/tabbed-widgets/css/tabbed-widgets.css?ver=4.0.13" type="text/css" media="all"/>
<link rel="stylesheet" id="A2A_SHARE_SAVE-css" href="https://wayback.archive-it.org/15633/20201224180606cs_/https://www.dailyserving.com/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.7" type="text/css" media="all"/>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/https://www.dailyserving.com/wp-includes/js/jquery/jquery.js?ver=1.11.1"></script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/https://www.dailyserving.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1"></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.dailyserving.com/xmlrpc.php?rsd"/>
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.dailyserving.com/wp-includes/wlwmanifest.xml"/>
<link rel="prev" title="#Hashtags: In Defense of the Middle-Class Artist" href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/2016/01/hashtags-in-defense-of-the-middle-class-artist/"/>
<link rel="next" title="Chen Qiulin: One Hundred Names at 4A Centre for Contemporary Asian Art, Sydney" href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/2016/01/chen-qiulin-one-hundred-names-at-4a-centre-for-contemporary-asian-art-sydney/"/>
<meta name="generator" content="WordPress 4.0.13"/>
<link rel="canonical" href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/2016/01/he-yunchang-water-forming-stone-at-ink-studio/"/>
<link rel="shortlink" href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/?p=50793"/>
<script type="text/javascript"><!--
var a2a_config=a2a_config||{},wpa2a={done:false,html_done:false,script_ready:false,script_load:function(){var a=document.createElement('script'),s=document.getElementsByTagName('script')[0];a.type='text/javascript';a.async=true;a.src='https://wayback.archive-it.org/15633/20201224180606/https://static.addtoany.com/menu/page.js';s.parentNode.insertBefore(a,s);wpa2a.script_load=function(){};},script_onready:function(){if(a2a.type=='page'){wpa2a.script_ready=true;if(wpa2a.html_done)wpa2a.init();}},init:function(){for(var i=0,el,target,targets=wpa2a.targets,length=targets.length;i<length;i++){el=document.getElementById('wpa2a_'+(i+1));target=targets[i];a2a_config.linkname=target.title;a2a_config.linkurl=target.url;if(el){a2a.init('page',{target:el});el.id='';}wpa2a.done=true;}wpa2a.targets=[];}};a2a_config.tracking_callback=['ready',wpa2a.script_onready];
//--></script>
<!-- This site is powered by Tweet, Like, Plusone and Share Plugin - http://techxt.com/tweet-like-google-1-and-share-plugin-wordpress/ -->
<style type="text/css">div.socialicons{float:left;display:block;margin-right: 10px;line-height: 1;}div.socialiconsv{line-height: 1;}div.socialicons p{margin-bottom: 0px !important;margin-top: 0px !important;padding-bottom: 0px !important;padding-top: 0px !important;}div.social4iv{background: none repeat scroll 0 0 #FFFFFF;border: 1px solid #aaa;border-radius: 3px 3px 3px 3px;box-shadow: 3px 3px 3px #DDDDDD;padding: 3px;position: fixed;text-align: center;top: 55px;width: 68px;display:none;}div.socialiconsv{padding-bottom: 5px;}</style>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/https://platform.twitter.com/widgets.js"></script><script type="text/javascript" src="//wayback.archive-it.org/15633/20201224180606js_/https://connect.facebook.net/en_US/all.js#xfbml=1"></script><script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/https://apis.google.com/js/plusone.js"></script><script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/https://platform.linkedin.com/in.js"></script><!-- WP Favicon -->
<link rel="shortcut icon" href="https://wayback.archive-it.org/15633/20201224180606im_/https://www.dailyserving.com/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="https://wayback.archive-it.org/15633/20201224180606im_/https://www.dailyserving.com/favicon.gif" type="image/gif"/>
<!-- /WP Favicon -->
<!-- WordPress Facebook Open Graph protocol plugin (WPFBOGP v2.0.13) http://rynoweb.com/wordpress-plugins/ -->
<meta property="fb:admins" content="126582914023877"/>
<meta property="og:url" content="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/2016/01/he-yunchang-water-forming-stone-at-ink-studio/"/>
<meta property="og:title" content="He Yunchang: Water Forming Stone at Ink Studio"/>
<meta property="og:site_name" content="DAILY SERVING"/>
<meta property="og:description" content="A clear and joyful light floods the inner gallery of Ink Studio in Beijing, where He Yunchang performed a series of three grueling new works in his exhibition W"/>
<meta property="og:type" content="article"/>
<meta property="og:image" content="https://wayback.archive-it.org/15633/20201224180606im_/http://dailyserving.com/wp-content/themes/cameron/images/logo-b-2.jpg"/>
<meta property="og:image" content="https://wayback.archive-it.org/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2016/01/19968-26681-32907-39592-1.jpg"/>
<meta property="og:image" content="https://wayback.archive-it.org/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2016/01/Keeping-promise.jpg"/>
<meta property="og:image" content="https://wayback.archive-it.org/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2016/01/1162_1000.jpg"/>
<meta property="og:image" content="https://wayback.archive-it.org/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2016/01/1314_1000.jpg"/>
<meta property="og:image" content="https://wayback.archive-it.org/15633/20201224180606im_/http://www.dailyserving.com/wp-content/uploads/2016/01/1314_1000.jpg"/>
<meta property="og:locale" content="en_us"/>
<!-- // end wpfbogp -->
<!-- Google Ads -->
<script type="text/javascript">
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//wayback.archive-it.org/15633/20201224180606/https://www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type="text/javascript">
googletag.cmd.push(function() {
googletag.defineSlot('/7705783/DailyServing_fullsite_rsidebar', [300, 250], 'div-gpt-ad-1328250136329-0').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_01', [150, 150], 'div-gpt-ad-1328250136329-1').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_02', [150, 150], 'div-gpt-ad-1328250136329-2').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_03', [150, 150], 'div-gpt-ad-1328250136329-3').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_04', [150, 150], 'div-gpt-ad-1328250136329-4').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_05', [150, 150], 'div-gpt-ad-1328250136329-5').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_06', [150, 150], 'div-gpt-ad-1328250136329-6').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_07', [150, 150], 'div-gpt-ad-1328813817361-7').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_08', [150, 150], 'div-gpt-ad-1328813817361-8').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<!-- Header forms script -->
<script language="javascript">
function goLite(FRM,BTN)
{
window.document.forms[FRM].elements[BTN].style.backgroundColor = "#1da9bf";
window.document.forms[FRM].elements[BTN].style.borderColor = "#1da9bf";
}
function goDim(FRM,BTN)
{
window.document.forms[FRM].elements[BTN].style.backgroundColor = "#000033";
window.document.forms[FRM].elements[BTN].style.borderColor = "#000033";
}
</script>
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-15083400-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://wayback.archive-it.org/15633/20201224180606/https://ssl' : 'https://wayback.archive-it.org/15633/20201224180606/http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<!--
FILE ARCHIVED ON 18:06:06 Dec 24, 2020 AND RETRIEVED FROM THE
INTERNET ARCHIVE ON 20:23:50 Jan 16, 2024.
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
SECTION 108(a)(3)).
urlKey(b'com,dailyserving)/2016/01/he-yunchang-water-forming-stone-at-ink-studio')
-->
<!-- Facebook JavaScript SDK -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: '230929536992105', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//wayback.archive-it.org/15633/20201224180606/https://connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<!-- End Facebook JavaScript SDK -->
<div id="wrapper">
<div id="header">
<div id="header-serving-image">
<script type="text/javascript">
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
</script>
<div id="wrap-header">
<div id="header-text">
</div>
<!-- Start Header main menu -->
<a href="/15633/20201224180606/https://www.dailyserving.com/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Logo','','/wp-content/uploads/2016/05/logo-b-2-ver2.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2016/05/logo-a-2-ver2.jpg" name="Logo" width="930" height="131" border="0" id="Logo"/></a>
<div id="nav">
<body onload="MM_preloadImages('/wp-content/themes/cameron/images/nav/about-b.jpg','/wp-content/themes/cameron/images/nav/contributors-b.jpg','/wp-content/themes/cameron/images/nav/partners-b.jpg','/wp-content/themes/cameron/images/nav/sponsor-b.jpg','/wp-content/themes/cameron/images/nav/submit-b.jpg','/wp-content/themes/cameron/images/nav/facebook-b.jpg','/wp-content/themes/cameron/images/nav/rss-b.jpg','/wp-content/themes/cameron/images/nav/t-b.jpg','/wp-content/themes/cameron/images/nav/twitter-b.jpg')">
<a href="/15633/20201224180606/https://www.dailyserving.com/about/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('About','','/wp-content/themes/cameron/images/nav/about-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/about-a.jpg" name="About" border="0" id="About" style="padding-right:5px;"/></a> <a href="/15633/20201224180606/https://www.dailyserving.com/contributors" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('contributors','','/wp-content/themes/cameron/images/nav/contributors-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/contributors-a.jpg" name="contributors" border="0" id="contributors" style="padding-right:5px;"/></a> <a href="/15633/20201224180606/https://www.dailyserving.com/partners/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('partners','','/wp-content/themes/cameron/images/nav/partners-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/partners-a.jpg" name="partners" border="0" id="partners" style="padding-right:5px;"/></a> <a href="/15633/20201224180606/https://www.dailyserving.com/sponsor-us/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('sponsor','','/wp-content/themes/cameron/images/nav/sponsor-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/sponsor-a.jpg" name="sponsor" border="0" id="sponsor" style="padding-right:5px;"/></a> <a href="/15633/20201224180606/https://www.dailyserving.com/submit/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('submit','','/wp-content/themes/cameron/images/nav/submit-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/submit-a.jpg" name="submit" border="0" id="submit" style="padding-right:5px;"/></a>
<!-- Start Header social sharing icons-->
<a href="https://wayback.archive-it.org/15633/20201224180606/http://www.facebook.com/pages/Daily-Serving/126582914023877" target="_blank" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('facebook','','/wp-content/themes/cameron/images/nav/facebook-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/facebook-a.jpg" name="facebook" border="0" id="facebook" style="padding-left:90px;"/></a> <a href="/15633/20201224180606/https://www.dailyserving.com/feed/" target="_blank" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('rss','','/wp-content/themes/cameron/images/nav/rss-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/rss-a.jpg" name="rss" border="0" id="rss"/></a> <a href="https://wayback.archive-it.org/15633/20201224180606/https://twitter.com/DAILYSERVING/" target="_blank" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('twitter','','/wp-content/themes/cameron/images/nav/twitter-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/twitter-a.jpg" name="twitter" border="0" id="twitter"/></a>
</div>
<!-- End Header main menu -->
<!-- Start Header sub menu -->
<div id="nav-text">
<a href="/15633/20201224180606/https://www.dailyserving.com/tag/san-francisco/" style="text-decoration:underline; padding-right:13px;">SAN FRANCISCO</a> <a href="/15633/20201224180606/https://www.dailyserving.com/tag/london/" style="text-decoration:underline; padding-right:13px;">LONDON</a> <a href="/15633/20201224180606/https://www.dailyserving.com/tag/new-york-city/" style="text-decoration:underline; padding-right:13px;">NEW YORK</a> <a href="/15633/20201224180606/https://www.dailyserving.com/tag/berlin/" style="text-decoration:underline; padding-right:13px;">BERLIN</a> <a href="/15633/20201224180606/https://www.dailyserving.com/tag/los-angeles/" style="text-decoration:underline; padding-right:13px;">LOS ANGELES</a> <a href="/15633/20201224180606/https://www.dailyserving.com/tag/singapore/" style="text-decoration:underline; padding-right:13px;">SINGAPORE</a> <a href="/15633/20201224180606/https://www.dailyserving.com/tag/chicago/" style="text-decoration:underline; padding-right:13px;">CHICAGO</a> <a href="/15633/20201224180606/https://www.dailyserving.com/tag/amsterdam/" style="text-decoration:underline; padding-right:13px;">AMSTERDAM</a> <a href="/15633/20201224180606/https://www.dailyserving.com/tag/perth/" style="text-decoration:underline; padding-right:13px;">PERTH</a> <a href="/15633/20201224180606/https://www.dailyserving.com/tag/denver/" style="text-decoration:underline; padding-right:13px;">DENVER</a>
<ul id="css3menu1" class="topmenu">
<li class="toplast"><a href="/15633/20201224180606/https://www.dailyserving.com/tag/elsewhere/" style="height:14px;line-height:16px;"><span>ELSEWHERE</span></a>
<ul>
<li><a href="/15633/20201224180606/https://www.dailyserving.com/tag/paris/">Paris</a></li>
<li><a href="/15633/20201224180606/https://www.dailyserving.com/tag/boston/">Boston</a></li>
<li><a href="/15633/20201224180606/https://www.dailyserving.com/tag/portland/">Portland</a></li>
<li><a href="/15633/20201224180606/https://www.dailyserving.com/tag/sao-paulo/">São Paulo</a></li>
<li><a href="/15633/20201224180606/https://www.dailyserving.com/tag/toronto/">Toronto</a></li>
<li><a href="/15633/20201224180606/https://www.dailyserving.com/tag/beijing/">Beijing</a></li>
<li><a href="/15633/20201224180606/https://www.dailyserving.com/tag/shanghai/">Shanghai</a></li>
<li><a href="/15633/20201224180606/https://www.dailyserving.com/tag/sydney/">Sydney</a></li>
</ul></li>
</ul>
</div>
<!-- End Header sub menu -->
<div class="hr1" style="margin-top:25px;"><!-- <hr /> --> </div>
</div>
</div>
<div id="topnavcontainer">
<div id="navcontainer">
<ul id="navlist">
<li><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/">Home</a></li>
<li class="page_item page-item-1056"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/about/">About Us</a></li>
<li class="page_item page-item-1058"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/contributors/">Contributors</a></li>
<li class="page_item page-item-23299"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/contributors-test/">Contributors test</a></li>
<li class="page_item page-item-23029"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/partners/">Partners</a></li>
<li class="page_item page-item-1073"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/sponsor-us/">Sponsor Us</a></li>
<li class="page_item page-item-1070"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/store/">Store</a></li>
<li class="page_item page-item-1057"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/submit/">Submit</a></li>
</ul>
</div>
<div id="divSearchForm">
<form method="get" id="searchform" action="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/">
<div>
<input type="hidden" value="1" id="IncludeBlogs" name="IncludeBlogs"/>
<input type="text" name="s" class="txt" value="Search Keywords" onfocus="document.forms['searchform'].s.value='';" onblur="if (document.forms['searchform'].s.value == '') document.forms['searchform'].s.value='Search Keywords';"/>
<input src="https://wayback.archive-it.org/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/search.gif" alt="Submit" value="Search" id="searchsubmit" type="image">
</div>
</form>
</div>
</div>
</div>
<!-- end #header -->
<div id="container">
<div id="content">
<div class="post">
<h4 class="pagetitle" style="padding-right:10px;">
Beijing</h4>
<div class="postmetadata" style="padding-top:10px;">
<li>January 27, 2016 Written by <a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/author/jing-cao/" title="Posts by Jing Cao" rel="author">Jing Cao</a></li>
</div>
<h2><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/2016/01/he-yunchang-water-forming-stone-at-ink-studio/" rel="bookmark">He Yunchang: Water Forming Stone at Ink Studio</a></h2>
<!-- <div class="hr2"></div> -->
<div class="entry">
<p>A clear and joyful light floods the inner gallery of <a href="https://wayback.archive-it.org/15633/20201224180606/http://www.inkstudio.com.cn/" target="_blank">Ink Studio</a> in Beijing, where He Yunchang performed a series of three grueling new works in his exhibition <a href="https://wayback.archive-it.org/15633/20201224180606/http://www.inkstudio.com.cn/exhibitions/17/overview/" target="_blank"><em>Water Forming Stone</em></a>. Light dances through candy-colored drinking glasses that are suspended in midair over a pedestal of simulated crystals and jade. It radiates off of the warm white walls cleverly composed of cardboard shipping boxes and onto a tree made of rubber tires, which sits on a polished black floor. In this enchanting environment, everyday objects evoke nature and beauty, stillness and movement, growth and peace.</p>
<div id="attachment_50850" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201224180606/https://www.dailyserving.com/wp-content/uploads/2016/01/1314_1000.jpg"><img class="wp-image-50850 size-full" src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2016/01/1314_1000.jpg" alt="" width="600" height="400"/></a><p class="wp-caption-text">He Yunchang. <em>The Expanse of Tranquility</em>, 2015; documentation of performance work. Courtesy of Ink Studio.</p></div>
<p>In contrast to his beautiful installation, He’s new performances are tedious, taxing his own endurance and the audience’s in equal measure. In <em>The Expanse of Tranquility </em>(2015), the first of the three pieces, He punctures a sack of ink that is suspended over a glass pane. For several hours, drops of ink fall onto the glass, and He uses sheets of calligraphy paper to wipe the drips off. In <em>Cloud Shadows at the Heart of the Mirror </em>(2015)<em>, </em>He sets in motion a crystal cube that swings like a pendulum over a glass pane. After waiting over two hours for the swinging to stop, He cuts the rope, sending the crystal cube shattering onto the glass pane. In <em>The Embrace of Wind and Dew </em>(2015), He uses a calligraphy brush to dot water droplets onto a glass pane, only to wait for hours for the water to evaporate. In each of these performances, He is naked except for a thin white shroud, and is flanked by a row of similarly dressed women.</p>
<p><em>Water Forming Stone</em> is part performance series, part career retrospective. The rest of the gallery is filled with documentation of the somber, body-breaking performances which He built his career on. These include <em>Wrestling: One and One Hundred </em>(2001), in which He consecutively wrestled 100 migrant workers; <em>Keeping Promises </em>(2003), in which He kept his hand in a block of hardening cement for twenty-four hours; and <em>The Rock Tours Around Great Britain </em>(2006–2007), in which He carried a rock around the perimeter of England on foot.</p>
<p><span id="more-50793"></span></p>
<div id="attachment_50848" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201224180606/https://www.dailyserving.com/wp-content/uploads/2016/01/1162_1000.jpg"><img class="size-full wp-image-50848" src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2016/01/1162_1000.jpg" alt="He Yunchang. Wrestling: One and One Hundred, 2001. Courtesy of INK Studio." width="600" height="293"/></a><p class="wp-caption-text">He Yunchang. <i>Wrestling: One and One Hundred</i>, 2001; documentation of performance work. Courtesy of Ink Studio.</p></div>
<p>He’s early performances can be understood to carry on a Song dynasty tradition in which art academy students are tested by translating poetry into painting—only in He’s case, myths are translated into the contemporary medium of performance art. <em>Keeping Promises </em>is He’s interpretation of a Chinese myth of a man that waits for his beloved under a bridge where they had agreed to meet. As the water level rises, the man chooses to drown rather than break his promise. Likewise, the myths of men who move mountains or wage war with the sea likely inspired works such as <em>Dialogue with Water </em>(1999), in which He stabbed the ocean with a knife for ninety minutes, and <em>Moving a Mountain </em>(1999), in which He attempted to pull a mountain for thirty minutes.</p>
<div id="attachment_50865" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201224180606/https://www.dailyserving.com/wp-content/uploads/2016/01/Keeping-promise.jpg"><img class="size-full wp-image-50865" src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2016/01/Keeping-promise.jpg" alt="He Yunchang. Keeping Promises, 2003; documentation of performance work. Courtesy of INK Studio." width="600" height="867"/></a><p class="wp-caption-text">He Yunchang. <i>Keeping Promises</i>, 2003; documentation of performance work. Courtesy of Ink Studio.</p></div>
<p>He’s later performances can be understood through his essay “<a href="https://wayback.archive-it.org/15633/20201224180606/http://www.inkstudio.com.cn/press/39/" target="_blank">Fairytales for Adults</a>” (2002). He claims that his actions are meant to inspire myths for future generations. Wresting a hundred men or carrying a rock around Great Britain may seem pointless for now, but He suggests that over time, these actions will become myths that inspire one to endure. While his earlier performances evoked physical endurance, in <em>Water Forming Stone</em> He turns inward demonstrating a meditative stillness of mind.</p>
<p>The exhibition’s most moving image is a photograph from He’s <em>One Rib </em>(2008) series. The artist sits with his mother, who wears a necklace made from one of his ribs. The piece combines an uncharacteristic warmth of emotion with He’s signature willingness to endure suffering. In contrast, the graphic photographs from <em>One Meter of Democracy </em>(2010), in which viewers voted on whether or not He should make a meter-long incision down the length of his body without anesthetics—unsurprisingly, they voted yes—seem gratuitous, even pandering.</p>
<div id="attachment_50829" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201224180606/https://www.dailyserving.com/wp-content/uploads/2016/01/19968-26681-32907-39592-1.jpg"><img class="size-full wp-image-50829" src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2016/01/19968-26681-32907-39592-1.jpg" alt="He Yunchang. One Rib, 2008; documentation of performance work. Courtesy of INK Studio." width="600" height="764"/></a><p class="wp-caption-text">He Yunchang. <i>One Rib</i>, 2008; documentation of performance work. Courtesy of Ink Studio.</p></div>
<p>Curator Nataline Colonnello <a href="https://wayback.archive-it.org/15633/20201224180606/https://galerieursmeile.com/fileadmin/images/Artists/HE_YUNCHANG/HE_YUNCHANG_TEXTS/He-Yunchang_On-He-Yunchangs-Project-One-Rib_Nataline-Colonnello_2009_E.pdf" target="_blank">claims</a> that He’s work, “as excessive or incomprehensible as it may appear to the public, reflects, on the one hand, the existential reassertion of the artist’s will and his intellectual independence; on the other, a reaction against any form of power.” But for all his strength as a performance artist, is He really resisting power when he stages an election that assures his injury? Is he asserting intellectual independence with his clichéd use of nudity and passivity? Who are his performances really for? Certainly not the audience, which was bored out of its collective mind, or the public—the purported benefactors of his “fairy tales”—which, when invited, would rather walk on by.</p>
<p>He Yunchang: Water Forming Stone<em> is on view at Ink Studio in Beijing through February 6, 2016.</em></p>
</div>
</div>
<div class="hr1"><!-- <hr /> --></div>
<div style="padding-bottom:0px; width:250px; float:left;">
<div class="a2a_kit a2a_kit_size_32 addtoany_list a2a_target" id="wpa2a_1"><a class="a2a_dd addtoany_share_save" href="https://wayback.archive-it.org/15633/20201224180606/https://www.addtoany.com/share_save"><img src="https://wayback.archive-it.org/15633/20201224180606im_/http://www.dailyserving.com/wp-content/themes/cameron/images/share-button.jpg" alt="Share"/></a>
<script type="text/javascript"><!--
wpa2a.script_load();
//--></script>
</div>
<div id="twitter" style="position:relative; float:left; width:86px; padding-left:0px;">
<a href="https://wayback.archive-it.org/15633/20201224180606/https://twitter.com/share" class="twitter-share-button" data-via="DAILYSERVING" data-related="DAILYSERVING">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//wayback.archive-it.org/15633/20201224180606/https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> </div>
</div>
<div class="postmetadatafooter" style="float:right; clear:none; width:300px;">
<li style="list-style-type: none; list-style-position:inside; clear: both; padding:0; margin-left:100px; float:right; text-align:right;"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/2016/01/he-yunchang-water-forming-stone-at-ink-studio/">permalink</a></li>
<li style="list-style-type: none; list-style-position:inside; clear: both; padding:0; margin-left:100px; float:right; text-align:right;">Tags: <a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/tag/beijing/" rel="tag">Beijing</a>, <a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/tag/china/" rel="tag">China</a>, <a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/tag/chinese-art/" rel="tag">Chinese art</a>, <a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/tag/endurance/" rel="tag">endurance</a>, <a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/tag/he-yunchang/" rel="tag">He Yunchang</a>, <a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/tag/ink-studio/" rel="tag">INK Studio</a>, <a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/tag/mythology/" rel="tag">mythology</a>, <a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/tag/performance-art/" rel="tag">performance art</a></li>
</div>
<!-- You can start editing here. -->
</div><!-- end #content -->
<div id="sidebar-container">
<div id="sidebar320-ads">
<!-- DailyServing_fullsite_rsidebar -->
</div>
<div id="sidebar">
<div id="text-8" class="widget widget_text"><h2>Join Our Mailing List</h2> <div class="textwidget">Enter your email:
<!--Begin CTCT Sign-Up Form-->
<!-- EFD 1.0.0 [Fri Oct 28 14:40:56 EDT 2016] -->
<link rel="stylesheet" type="text/css" href="https://wayback.archive-it.org/15633/20201224180606cs_/https://static.ctctcdn.com/h/contacts-embedded-signup-assets/1.0.2/css/signup-form.css">
<div class="ctct-embed-signup" style="font: 1rem/1.5 Helvetica Neue, Arial, sans-serif; font-size-adjust: none; font-stretch: normal; -webkit-font-smoothing: antialiased;">
<div style="border-radius: 5px; color: rgb(91, 91, 91);">
<span id="success_message" style="display: none;">
<div style="text-align: center;">Thanks for signing up!</div>
</span>
<form name="embedded_signup" class="ctct-custom-form Form" action="https://wayback.archive-it.org/15633/20201224180606/https://visitor2.constantcontact.com/api/signup" method="POST" data-id="embedded_signup:form" style="min-width:300px;">
<!-- The following code must be included to ensure your sign-up form works properly. -->
<input name="ca" type="hidden" value="4eaebd26-9180-46f3-aaef-fc0c8055e209" data-id="ca:input">
<input name="list" type="hidden" value="2111392802" data-id="list:input">
<input name="source" type="hidden" value="EFD" data-id="source:input">
<input name="required" type="hidden" value="list,email" data-id="required:input">
<input name="url" type="hidden" value="" data-id="url:input">
<p data-id="Email Address:p" style="margin-bottom:10px;"><input name="email" type="text" maxlength="60" value="" data-id="Email Address:input" style="padding: 5px;"></p>
<button class="Button ctct-button Button--block Button-secondary" type="submit" data-enabled="enabled" style="padding: 5px; margin-bottom:10px;">Sign Up</button>
</form>
</div>
</div>
<script type="text/javascript">
var localizedErrMap = {};
localizedErrMap['required'] = 'This field is required.';
localizedErrMap['ca'] = 'An unexpected error occurred while attempting to send email.';
localizedErrMap['email'] = 'Please enter your email address in [email protected] format.';
localizedErrMap['generic'] = 'This field is invalid.';
localizedErrMap['shared'] = 'Sorry, we could not complete your sign-up. Please contact us to resolve this.';
var postURL = 'https://wayback.archive-it.org/15633/20201224180606/https://visitor2.constantcontact.com/api/signup';
</script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/https://static.ctctcdn.com/h/contacts-embedded-signup-assets/1.0.2/js/signup-form.js"></script>
<!--End CTCT Sign-Up Form--></div>
</div><div id="text-9" class="widget widget_text"> <div class="textwidget"><div id="div-gpt-ad-1328250136329-0" style="width:300px; height:250px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328250136329-0'); });
</script>
</div>
</div>
</div><div id="text-5" class="widget widget_text"> <div class="textwidget"><!-- Tile_05 -->
<div id="div-gpt-ad-1328250136329-5" style="width:150px; height:150px; float:left; padding-top:10px; padding-bottom:10px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328250136329-5'); });
</script>
</div>
<!-- Tile_06 -->
<div id="div-gpt-ad-1328250136329-6" style="width:150px; height:150px; float:right; padding-top:10px; padding-bottom:10px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328250136329-6'); });
</script>
</div></div>
</div><div id="text-6" class="widget widget_text"> <div class="textwidget"><!-- Tile_07 -->
<div id="div-gpt-ad-1328813817361-7" style="width:150px; height:150px; float:left; padding-top:10px; padding-bottom:20px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328813817361-7'); });
</script>
</div>
<!-- Tile_08 -->
<div id="div-gpt-ad-1328813817361-8" style="width:150px; height:150px;float:right; padding-top:10px; padding-bottom:20px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328813817361-8'); });
</script>
</div></div>
</div><div id="text-4" class="widget widget_text"> <div class="textwidget">
</div>
</div><div id="text-3" class="widget widget_text"> <div class="textwidget">
</div>
</div><div id="search-2" class="widget widget_search"><form method="get" id="searchform" action="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/" style="padding-top:15px; padding-bottom:20px;">
<input type="text" value="Search DailyServing" onfocus="if (this.value == 'Search DailyServing') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search DailyServing';}" name="s" id="s" style="background: #fff; border: 1px solid #999; height:20px; width:254px; color:#adadad; padding-left:10px;"/>
<input name="image" type="image" onmouseover="this.src='/wp-content/themes/cameron/images/go-b.png'" onmouseout="this.src='/wp-content/themes/cameron/images/go-a.png'" value="Go" src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/go-a.png" alt="Go!" width="36" height="22">
</form>
</div><div id="text-2" class="widget widget_text"><h2>SERIES</h2> <div class="textwidget"> <body onload="MM_preloadImages('/wp-content/themes/cameron/images/series/help-b.jpg','/wp-content/themes/cameron/images/series/hash-b.jpg','/wp-content/themes/cameron/images/series/fan-b.jpg','/wp-content/themes/cameron/images/series/inter-b.jpg','/wp-content/uploads/2013/04/LA-b-2.jpg')">
<p><a href="/15633/20201224180606/https://www.dailyserving.com/tag/help-desk/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Help Desk','','/wp-content/themes/cameron/images/series/help-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/series/help-a.jpg" name="Help Desk" border="0" id="Help Desk"/></a>
<a href="/15633/20201224180606/https://www.dailyserving.com/tag/hashtags/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('#hashtags','','/wp-content/themes/cameron/images/series/hash-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/series/hash-a.jpg" name="#hashtags" border="0" id="#hashtags"/></a>
<a href="/15633/20201224180606/https://www.dailyserving.com/tag/fan-mail/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Fan Mail','','/wp-content/themes/cameron/images/series/fan-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/series/fan-a.jpg" name="Fan Mail" border="0" id="Fan Mail"/></a>
<a href="/15633/20201224180606/https://www.dailyserving.com/category/interviews/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Interviews','','/wp-content/themes/cameron/images/series/inter-b.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/themes/cameron/images/series/inter-a.jpg" name="Interviews" border="0" id="Interviews"/></a>
<a href="/15633/20201224180606/https://www.dailyserving.com/category/l-a-expanded-column/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('LA Expanded','','/wp-content/uploads/2013/04/LA-b-2.jpg',1)"><img src="/15633/20201224180606im_/https://www.dailyserving.com/wp-content/uploads/2013/04/LA-a-2.jpg" name="LA Expanded" border="0" id="LA Expanded"/></a></div>
</div><div id="tabbed-widget-5" class="widget tabbed-widget"><div class="tw-accordion"><div id="tw-content-5-0" class="tw-content"><span style="display:none;">Categories</span><h4 id="tw-title-5-0" class="tw-title">Categories</h4> <ul>
<li class="cat-item cat-item-1"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/articles/">Articles</a>
</li>
<li class="cat-item cat-item-5"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/artist-videos/">Artist Videos</a>
</li>
<li class="cat-item cat-item-70"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/book/">Book</a>
</li>
<li class="cat-item cat-item-6"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/collage/">Collage</a>
</li>
<li class="cat-item cat-item-7"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/conceptual/">Conceptual</a>
</li>
<li class="cat-item cat-item-8"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/conference/">Conference</a>
</li>
<li class="cat-item cat-item-119"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/craft/">Craft</a>
</li>
<li class="cat-item cat-item-9"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/curator/">Curator</a>
</li>
<li class="cat-item cat-item-10"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/design/">Design</a>
</li>
<li class="cat-item cat-item-11"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/digital-media/">Digital Media</a>
</li>
<li class="cat-item cat-item-12"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/drawing/">Drawing</a>
</li>
<li class="cat-item cat-item-15"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/fashion/">Fashion</a>
</li>
<li class="cat-item cat-item-16"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/fiber-arts/">Fiber Arts</a>
</li>
<li class="cat-item cat-item-17"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/illustration/">Illustration</a>
</li>
<li class="cat-item cat-item-18"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/installation/">Installation</a>
</li>
<li class="cat-item cat-item-19"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/interviews/">Interviews</a>
</li>
<li class="cat-item cat-item-20"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/mixed-media/">Mixed Media</a>
</li>
<li class="cat-item cat-item-22"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/new-media/">New Media</a>
</li>
<li class="cat-item cat-item-23"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/painting/">Painting</a>
</li>
<li class="cat-item cat-item-24"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/performance/">Performance</a>
</li>
<li class="cat-item cat-item-25"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/photography/">Photography</a>
</li>
<li class="cat-item cat-item-26"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/print/">Print</a>
</li>
<li class="cat-item cat-item-27"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/reviews/">Reviews</a>
</li>
<li class="cat-item cat-item-28"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/sculpture/">Sculpture</a>
</li>
<li class="cat-item cat-item-3894"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/social-practice-2/">Social Practice</a>
</li>
<li class="cat-item cat-item-29"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/sound-art/">Sound Art</a>
</li>
<li class="cat-item cat-item-30"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/street-art-public-art/">Street Art / Public Art</a>
</li>
<li class="cat-item cat-item-31"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/text/">Text</a>
</li>
<li class="cat-item cat-item-32"><a href="https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/category/video-film/">Video / Film</a>
</li>
</ul>
</div></div></div>
</div>
</div><!-- end #sidebars -->
</div><!-- end #container -->
<div id="footer">
<!-- #base tags commented for footer stuff, see footer.php.bk -->
<ul id="#footer-content">
<li>Copyright 2006-2016 DailyServing.com. All rights reserved. Site by <a href="https://wayback.archive-it.org/15633/20201224180606/http://somethingintheuniverse.com/">Something in the Universe</a></li>
</ul>
</div>
</div><!-- end #wrapper -->
<script type="text/javascript"><!--
wpa2a.targets=[
{title:'He Yunchang: Water Forming Stone at Ink Studio',url:'https://wayback.archive-it.org/15633/20201224180606/https://www.dailyserving.com/2016/01/he-yunchang-water-forming-stone-at-ink-studio/'}];
wpa2a.html_done=true;if(wpa2a.script_ready&&!wpa2a.done)wpa2a.init();wpa2a.script_load();
//--></script>
<script type="text/javascript">var $rotateoptions = new Array();
$rotateoptions[2] = new Array();
$rotateoptions[2]["style"] = "";
$rotateoptions[2]["rotate"] = 0;
$rotateoptions[2]["random_start"] = 0;
$rotateoptions[2]["start_tab"] = 0;
$rotateoptions[2]["interval"] = 10000;
$rotateoptions[5] = new Array();
$rotateoptions[5]["style"] = "accordion";
$rotateoptions[5]["rotate"] = 0;
$rotateoptions[5]["random_start"] = 0;
$rotateoptions[5]["start_tab"] = 0;
$rotateoptions[5]["interval"] = 10000;
</script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/http://www.dailyserving.com/wp-content/plugins/tabbed-widgets/js/init-plugin.js"></script>
<!-- Constant Contact Widget by Katz Web Services, Inc. | http://www.seodenver.com/constant-contact-wordpress-widget/ -->
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/https://www.dailyserving.com/wp-includes/js/jquery/ui/jquery.ui.core.min.js?ver=1.10.4"></script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/https://www.dailyserving.com/wp-includes/js/jquery/ui/jquery.ui.widget.min.js?ver=1.10.4"></script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/https://www.dailyserving.com/wp-includes/js/jquery/ui/jquery.ui.accordion.min.js?ver=1.10.4"></script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201224180606js_/http://www.dailyserving.com/wp-content/plugins/tabbed-widgets/js/jquery-cookie.min.js?ver=4.0.13"></script>
<div id="fb-root"></div>
<script type="text/javascript">;(function(){try{var e,d=document;e=d.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','https://wayback.archive-it.org/15633/20201224180606/http://www.kapsul.org/bookmarklet/dailyserving?v=3');d.body.appendChild(e);}catch(ex){}})();</script>
</body>
</html>
<!--
FILE ARCHIVED ON 18:06:06 Dec 24, 2020 AND RETRIEVED FROM THE
INTERNET ARCHIVE ON 20:23:50 Jan 16, 2024.
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
SECTION 108(a)(3)).
-->
<!--
playback timings (ms):
RulesEngine.query: 58.881
PetaboxLoader3.datanode: 8.851
-->