-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1919 lines (737 loc) · 73.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><script>var __pbpa = true;</script><script>var translated_warning_string = 'Warning: Never enter your Tumblr password unless \u201chttps://www.tumblr.com/login\u201d\x0ais the address in your web browser.\x0a\x0aYou should also see a green \u201cTumblr, Inc.\u201d identification in the address bar.\x0a\x0aSpammers and other bad guys use fake forms to steal passwords.\x0a\x0aTumblr will never ask you to log in from a user\u2019s blog.\x0a\x0aAre you absolutely sure you want to continue?';</script><script type="text/javascript" language="javascript" src="https://assets.tumblr.com/assets/scripts/pre_tumblelog.js?_v=b9f848c06fcba7eaf305d4a7cb7a1b98"></script><!doctype html>
<html class="no-js" lang="en">
<!-- Mirrored from digitalvaiven.tumblr.com/ by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 23 Mar 2020 22:57:11 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Jumble Premium Tumblr Theme by PRECRAFTED
Visit http://precrafted.com for information, support, and more themes!
Version 9.4
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Basic Page Settings -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="tumblr-theme" content="37057" />
<title>Digital Vaiven</title>
<meta name="author" content="Digital Vaiven">
<style>figure{margin:0}.tmblr-iframe{position:absolute}.tmblr-iframe.hide{display:none}.tmblr-iframe--amp-cta-button{visibility:hidden;position:fixed;bottom:10px;left:50%;transform:translateX(-50%);z-index:100}.tmblr-iframe--amp-cta-button.tmblr-iframe--loaded{visibility:visible;animation:iframe-app-cta-transition .2s ease-out}</style><link rel="stylesheet" media="screen" href="https://assets.tumblr.com/client/prod/standalone/blog-network-npf/index.build.css?_v=6e121b6530ce38be364bf1089290570b"><link rel="shortcut icon" href="https://66.media.tumblr.com/avatar_f6bcc875d019_128.pnj">
<link rel="apple-touch-icon" href="https://66.media.tumblr.com/avatar_f6bcc875d019_128.pnj">
<link rel="alternate" type="application/rss+xml" href="rss">
<!-- Main Style Settings -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://static.tumblr.com/e6lc7yi/Xnlolpyrg/precrafted-social.css">
<link rel="stylesheet" href="https://static.tumblr.com/e6lc7yi/Vbwotmzhz/jumble-styles.css">
<!-- Custom Options -->
<!-- Custom Colors -->
<meta name="color:Menu Icon" content="#26292b"/>
<meta name="color:Menu Icon Hover" content="#66d4ba"/>
<meta name="color:Menu Background" content="#26292b"/>
<meta name="color:Menu Text" content="#ffffff"/>
<meta name="color:Menu Hover Background" content="#66d4ba"/>
<meta name="color:Menu Hover Text" content="#ffffff"/>
<meta name="color:Post Background" content="#ffffff"/>
<meta name="color:Post Titles" content="#283236"/>
<meta name="color:Text" content="#777777"/>
<meta name="color:Link" content="#529ECC"/>
<meta name="color:Link Hover" content="#283236"/>
<meta name="color:Social Background" content="#529ECC"/>
<meta name="color:Social Icon" content="#ffffff"/>
<meta name="color:Social Hover Background" content="#283236"/>
<meta name="color:Social Hover Icon" content="#ffffff"/>
<!-- Custom Images -->
<meta name="image:Background" content=""/>
<meta name="image:Logo" content=""/>
<!-- Custom Text -->
<meta name="text:Menu Text" content="Menu"/>
<meta name="text:Intro Post Title" content=""/>
<meta name="text:Load More" content="Load More Posts"/>
<meta name="text:Load More Loading" content="Loading..."/>
<meta name="text:Load More End" content="No More Posts"/>
<meta name="text:Footer Text" content="Custom Footer Text"/>
<meta name="text:Title Font Size" content="30"/>
<meta name="text:Title Letter Spacing" content="2"/>
<meta name="text:Photoset Spacing" content="5"/>
<meta name="text:Google Analytics Code" content=""/>
<meta name="text:Disqus Shortname" content=""/>
<meta name="text:Font Embed Code" content=""/>
<meta name="text:Font Family Logo" content=""/>
<meta name="text:Font Family Titles" content=""/>
<meta name="text:Font Family Body" content=""/>
<meta name="text:URL Twitter" content=""/>
<meta name="text:URL Facebook" content=""/>
<meta name="text:URL Tumblr" content=""/>
<meta name="text:URL Website" content=""/>
<meta name="text:URL Google" content=""/>
<meta name="text:URL Linkedin" content=""/>
<meta name="text:URL Foursquare" content=""/>
<meta name="text:URL Skype" content=""/>
<meta name="text:URL Email" content=""/>
<meta name="text:URL Instagram" content=""/>
<meta name="text:URL Flickr" content=""/>
<meta name="text:URL 500px" content=""/>
<meta name="text:URL VSCO Grid" content=""/>
<meta name="text:URL Camera" content=""/>
<meta name="text:URL Eye" content=""/>
<meta name="text:URL Pinterest" content=""/>
<meta name="text:URL Heart" content=""/>
<meta name="text:URL Youtube" content=""/>
<meta name="text:URL Vimeo" content=""/>
<meta name="text:URL Vine" content=""/>
<meta name="text:URL Snapchat" content=""/>
<meta name="text:URL Ebay" content=""/>
<meta name="text:URL Store" content=""/>
<meta name="text:URL Apple" content=""/>
<meta name="text:URL Googleplay" content=""/>
<meta name="text:URL Etsy" content=""/>
<meta name="text:URL Amazon" content=""/>
<meta name="text:URL Dribbble" content=""/>
<meta name="text:URL Behance" content=""/>
<meta name="text:URL deviantART" content=""/>
<meta name="text:URL Github" content=""/>
<meta name="text:URL Medium" content=""/>
<meta name="text:URL Reddit" content=""/>
<meta name="text:URL Quora" content=""/>
<meta name="text:URL Weibo" content=""/>
<meta name="text:URL VKontakte" content=""/>
<meta name="text:URL Travel" content=""/>
<meta name="text:URL Lastfm" content=""/>
<meta name="text:URL Spotify" content=""/>
<meta name="text:URL Soundcloud" content=""/>
<meta name="text:URL RSS" content=""/>
<!-- Custom Choices -->
<meta name="select:Pagination" content="pagination_load-more" title="Load More">
<meta name="select:Pagination" content="pagination_standard" title="Standard">
<meta name="select:Pagination" content="pagination_infinite-scroll" title="Infinite Scroll">
<meta name="select:Photo Link" content="post" title="Post">
<meta name="select:Photo Link" content="image" title="Image">
<meta name="select:Photo Link" content="lightbox" title="Lightbox">
<meta name="select:Photo Link" content="none" title="None">
<meta name="select:Photo Link Permalink" content="image" title="Image">
<meta name="select:Photo Link Permalink" content="lightbox" title="Lightbox">
<meta name="select:Photo Link Permalink" content="none" title="None">
<meta name="select:Panorama Link" content="image" title="Lightbox">
<meta name="select:Panorama Link" content="post" title="Post">
<meta name="select:Panorama Link" content="none" title="None">
<meta name="select:Panorama Link Permalink" content="image" title="Lightbox">
<meta name="select:Panorama Link Permalink" content="none" title="None">
<meta name="select:Photoset Link" content="lightbox" title="Lightbox">
<meta name="select:Photoset Link" content="post" title="Post">
<meta name="select:Photoset Link" content="none" title="None">
<meta name="select:Photoset Link Permalink" content="lightbox" title="Lightbox">
<meta name="select:Photoset Link Permalink" content="none" title="None">
<meta name="if:Photoset Cover" content="0">
<meta name="if:Tile Background" content="0">
<meta name="if:Fixed Header" content="1"/>
<meta name="if:Intro Post" content="1"/>
<meta name="if:Show Archive Link" content="1"/>
<meta name="if:Show Search" content="1"/>
<meta name="if:White Icons" content="0"/>
<meta name="if:Show Group Author" content="0">
<meta name="if:Sharer" content="1">
<meta name="if:Sharer Twitter" content="1">
<meta name="if:Sharer Facebook" content="1">
<meta name="if:Sharer Google" content="1">
<meta name="if:Sharer Pinterest" content="1">
<!-- Custom CSS -->
<style type="text/css">
body {
background: #FAFAFA;
color: #777777;
}
body {
background: url('https://static.tumblr.com/cdbcf5714552ca846c289deb78d9e09c/3p4vc3s/AASp6ixhg/tumblr_static_bmdfcqmjg7k8cwg484oss0gwk.jpg') center center no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-attachment: fixed;
}
article {
background: #ffffff;
}
h1, h2, h3, h4, h5, article.type_quote .quote {
color: #283236;
}
a {
color: #a38c15;
}
a:hover {
color: #283236;
}
header .logo h1 {
font-family: 'Arquitecta', sans-serif;
font-weight: bold;
color: #090000;
letter-spacing: 2px;
}
.menu .menu-toggle {
color: #000000;
}
.menu .menu-toggle .menu-toggle-hamburger {
border-color: #000000;
}
.menu .menu-toggle .menu-toggle-hamburger:before,
.menu .menu-toggle .menu-toggle-hamburger:after {
background: #000000;
}
.menu .menu-toggle:hover,
.menu .menu-toggle.on {
color: #e4da55;
}
.menu .menu-toggle:hover .menu-toggle-hamburger,
.menu .menu-toggle.on .menu-toggle-hamburger {
border-color: #e4da55;
}
.menu .menu-toggle:hover .menu-toggle-hamburger:before,
.menu .menu-toggle.on .menu-toggle-hamburger:before,
.menu .menu-toggle:hover .menu-toggle-hamburger:after,
.menu .menu-toggle.on .menu-toggle-hamburger:after {
background: #e4da55;
}
nav {
background: #26292b;
}
nav:after {
border-bottom-color: #26292b;
}
nav ul li a {
color: #ffffff;
}
nav ul li a:hover {
background: #e4da55;
color: #ffffff;
}
nav input {
background: #26292b;
color: #ffffff;
}
nav input:focus {
background: #e4da55;
color: #ffffff;
}
::-webkit-input-placeholder {
color: ;
}
:-moz-placeholder {
color: ;
}
::-moz-placeholder {
color: ;
}
:-ms-input-placeholder {
color: ;
}
footer .type_pagination .load-more,
footer .type_pagination .scroll-top,
footer .type_pagination .pagination a,
footer .post-nav a {
background: #ffffff;
color: #a38c15;
}
footer .type_pagination .load-more:hover,
footer .type_pagination .scroll-top:hover,
footer .type_pagination .pagination a:hover,
footer .post-nav a:hover {
background: #a38c15;
color: #ffffff;
}
.intro-post .avatar-image.with-header {
background: #ffffff;
border-color: #ffffff;
}
.intro-post .social-menu li a {
background: #529ECC;
color: #ffffff;
}
.intro-post .social-menu li a:hover {
background: #283236;
color: #ffffff;
}
article.type_video .video-stage {
background-color: #FAFAFA;
}
article blockquote,
article.type_chat .line,
article.type_answer .answer-person {
border-color: #FAFAFA;
}
article hr {
background: #FAFAFA;
}
article.type_link .the-link {
background: #a38c15;
color: #ffffff;
}
article.type_link .the-link:hover {
background: #283236;
}
.icons li.sharer ul {
background: #ffffff;
border-color: #FAFAFA;
}
.icons li.sharer ul:before {
border-top-color: #FAFAFA;
}
.icons li.sharer ul:after {
border-top-color: #ffffff;
}
::-moz-selection { background: #a38c15; color: #ffffff; text-shadow: none; }
::selection { background: #a38c15; color: #ffffff; text-shadow: none; }
.single-post article.nostretch .article-content img {
width: auto;
margin: 0 auto;
}
@media screen and (min-width: 768px) {
header .logo h1 {
font-size: 30px;
}
}
</style>
<style type="text/css">
</style>
<!-- Sharing meta tags -->
<meta property="og:site_name" content="Digital Vaiven"/><meta property="og:title" content="Digital Vaiven"/><meta property="og:url" content="https://digitalvaiven.tumblr.com/"/><meta property="og:type" content="blog"/><meta property="og:description" content=""/><meta property="og:image" content="https://66.media.tumblr.com/avatar_f6bcc875d019_128.pnj"/>
<link rel="alternate" href="android-app_/com.tumblr/tumblr/x-callback-url/blog96f7.html?blogName=digitalvaiven%26postID=172490639385" /><link rel="alternate" href="ios-app_/305343404/tumblr/x-callback-url/blog5e09.html?blogName=digitalvaiven&postID=172490639385" /><link rel="alternate" type="application/json+oembed" href="https://www.tumblr.com/oembed/1.0?url=https://digitalvaiven.tumblr.com/post/172490639385/at-la-perla-san-juan" title="at La Perla, San Juan."/><script src="https://assets.tumblr.com/assets/scripts/tumblelog_post_message_queue.js?_v=a8fadfa499d8cb7c3f8eefdf0b1adfdd"></script><link rel="stylesheet" type="text/css" href="https://assets.tumblr.com/fonts/arquitecta/stylesheet.css?v=3"><!-- TWITTER TAGS --><meta charset="utf-8"><meta name="twitter:site" content="tumblr" /><meta name="twitter:card" content="app" /><meta name="twitter:description" content="digitalvaiven" /><meta name="twitter:title" content="digitalvaiven" /><meta name="twitter:app:name:iphone" content="Tumblr" /><meta name="twitter:app:name:ipad" content="Tumblr" /><meta name="twitter:app:name:googleplay" content="Tumblr" /><meta name="twitter:app:id:iphone" content="305343404" /><meta name="twitter:app:id:ipad" content="305343404" /><meta name="twitter:app:id:googleplay" content="com.tumblr" /><meta name="twitter:app:url:iphone" content="tumblr://x-callback-url/blog?blogName=digitalvaiven&referrer=twitter-cards" /><meta name="twitter:app:url:ipad" content="tumblr://x-callback-url/blog?blogName=digitalvaiven&referrer=twitter-cards" /><meta name="twitter:app:url:googleplay" content="tumblr://x-callback-url/blog?blogName=digitalvaiven&referrer=twitter-cards" /><!-- GOOGLE CAROUSEL --><script type="application/ld+json">
{"@type":"ItemList","url":"https:\/\/digitalvaiven.tumblr.com","itemListElement":[{"@type":"ListItem","position":1,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172500453055\/the-work-of-generations-what-do-we-receive-what"},{"@type":"ListItem","position":2,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172491363370\/virtual-reality-is-a-computer-generated-simulation"},{"@type":"ListItem","position":3,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172490969460\/at-el-morro-in-san-juan"},{"@type":"ListItem","position":4,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172490939115\/the-way-spirits-speak-to-me-must-be-a-glitch-must"},{"@type":"ListItem","position":5,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172490929245\/she-resorts-to-paper-to-break-the-code-she"},{"@type":"ListItem","position":6,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172490906720\/at-el-morro-in-san-juan"},{"@type":"ListItem","position":7,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172490861625\/at-la-perla-san-juan"},{"@type":"ListItem","position":8,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172490837695\/at-san-juan"},{"@type":"ListItem","position":9,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172490789295\/spaces-that-continue-to-exist-under-colonial-rule"},{"@type":"ListItem","position":10,"url":"https:\/\/digitalvaiven.tumblr.com\/post\/172490639385\/at-la-perla-san-juan"}],"@context":"http:\/\/schema.org"}</script><link rel="canonical" href="index.html" /></head>
<body
class="index"
>
<!-- Tumblr Theme #37057 -->
<header class="fixed">
<div class="menu">
<div class="menu-toggle">
<span class="menu-toggle-hamburger"></span>
<span class="menu-toggle-text">Menu</span>
</div>
<nav class="the-menu">
<ul class="main-menu">
<li><a href="intro.html" title="Introduction">Introduction</a></li>
<li><a href="archive.html" title="Archive">Archive</a></li>
</ul>
<form action="https://digitalvaiven.tumblr.com/search" method="get">
<input type="text" name="q" value="" placeholder="Search..."/>
</form>
</nav>
</div>
<a href="index.html" title="Digital Vaiven" class="logo ">
<h1>Digital Vaiven</h1>
</a>
</header>
<section class="intro-post">
<article class="type_description type_text ready">
<div class="header-image" style="background-image: url('https://static.tumblr.com/4f76b7aa39782aea25854f6d835df260/3p4vc3s/5Nnp6ivqp/tumblr_static_6qktyukfgfk8c44kww88sk8og_2048_v2.jpg');">
</div>
<div class="article-content">
<div class="avatar-image circle with-header">
<img src="https://66.media.tumblr.com/avatar_f6bcc875d019_128.pnj" alt="Digital Vaiven" class="default"/>
</div>
<div class="description">
</div>
<ul class="social-menu">
</ul>
</div>
</article>
</section>
<section class="the-posts index">
<article id="172500453055" class="type_text " rel="https://www.tumblr.com/reblog/172500453055/uZwT5t0l">
<div class="article-content">
<!-- Text Post -->
<figure class="tmblr-full" data-orig-height="3024" data-orig-width="3024"><img src="https://66.media.tumblr.com/0477dc4e3ee0fd1d21327e7465bb0de3/tumblr_inline_p6j88x0xzu1rr8mem_1280.jpg" data-orig-height="3024" data-orig-width="3024" width="840" height="840" alt="image" /></figure><p><i>the work of Generations<br /></i></p><p><i>what do we receive?<br />
what do we filter?</i><br /></p><p style=""><i><br /></i></p><p>at La Perla, San Juan.</p>
<ul class="icons">
<li class="link"><a href="post/172500453055/the-work-of-generations-what-do-we-receive-what.html" title="View Post" class="social-eye"></a></li>
<li class="like"><div class="like_button" data-post-id="172500453055" data-blog-name="digitalvaiven" id="like_button_172500453055"><iframe id="like_iframe_172500453055" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=digitalvaiven&post_id=172500453055&color=black&rk=uZwT5t0l" scrolling="no" width="16" height="16" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_172500453055"></iframe></div></li>
<li class="reblog">
<i class="reblog-icon"><a href="https://www.tumblr.com/reblog/172500453055/uZwT5t0l" class="reblog_button"style="display: block;width:16px;height:16px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></i>
</li>
<li class="sharer">
<a class="social-export"></a>
<div class="sharer-wrap">
<ul>
<li class="twitter">
<a href="https://twitter.com/intent/tweet?url=https://tmblr.co/ZFfica2Wfr0Q-" title="Share on Twitter" class="social-tweets" target="_blank"></a>
</li>
<li class="facebook">
<a href="http://www.facebook.com/sharer.php?u=https://digitalvaiven.tumblr.com/post/172500453055/the-work-of-generations-what-do-we-receive-what" title="Share on Facebook" class="social-facebook" target="_blank"></a>
</li>
<li class="gplus">
<a href="https://plus.google.com/share?url=https://digitalvaiven.tumblr.com/post/172500453055/the-work-of-generations-what-do-we-receive-what" title="Share on Google +" class="social-gplus" target="_blank"></a>
</li>
<li class="pinterest">
<a href="https://pinterest.com/pin/create/button/?url=https://digitalvaiven.tumblr.com/post/172500453055/the-work-of-generations-what-do-we-receive-what&media=https://66.media.tumblr.com/avatar_f6bcc875d019_128.pnj" title="Share on Pinterest" class="social-pinterest" target="_blank"></a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</article>
<article id="172491363370" class="type_video " rel="https://www.tumblr.com/reblog/172491363370/YZi0kW4p">
<div class="article-content">
<!-- Video Post -->
<div class="video-stage">
<div class="video-container" id="172491363370">
<iframe width="700" height="394" id="youtube_iframe" src="https://www.youtube.com/embed/pQV6Eevg3V8?feature=oembed&enablejsapi=1&origin=https://safe.txmblr.com&wmode=opaque" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="caption">
<p>Virtual reality is a computer-generated simulation of real life. Replicating lived experience on the screen, virtual reality can be accessed by putting on a set of compatible goggles and physically looking around through a lens. Whole worlds are created in the screen and set in devices like the Oculus Rift or a Google Cardboard for VR access in your phone. Either way, virtual reality is a constructed world to make you feel as if you are somewhere entirely different than your own physical space.</p><p>Virtual reality, in its marketing, brands presence. The idea of needing to put on a device in order to feel and to experience creates questions on viewership, voyeurism, and the versatility of story. Virtual reality is a space constructed and curated by a developer, acting as an extension of our reality outside of the goggles. However, virtual reality is still reality. It is still real by virtue of existing. Just like we engage with our world–without VR headsets–within a set of parameters and rules, we engage with virtual reality in its own set of constraints. Colonial spaces can be seen as virtual spaces, where the parameters in which they exist in has been set by a developer. This developer is a collection of larger structures of institution that have a grasp on these spaces. And, because of the constant experimentation of spaces and body on the island, the digital identity of colonialism is in this configuration. In virtual reality, changing worlds is as easy as modifying a code. This has drastic consequences sometimes. A change can mean the whole space collapsing in on itself.</p><p>This 360 film was taken in Bayamón, where my great-grandmother lives in her small home with my uncle. Here, when the goggles are slipped on, you can turn all the way around to see the pictures on the walls, what is playing on the television, see my uncle, and face my great-grandmother as she giggles in her nightgown. You are feeling as if you are in her small house with her, standing in front of her as she shouts about her earrings in Spanish. You are also aware of your physical body, knowing that you are actually <i>not </i>with my great-grandmother in Puerto Rico standing in her living room. But do you smile when she laughs? Do you try to see what is on the television? Do you try to make out the faces on the wall? The 360 film makes you feel like you are experiencing the space in spite not being there. This particular experience of virtual reality still perpetuates actions and thoughts we practice in the physical world. Sometimes the experience breaks: you reach out your hand to touch great-grandma’s hands, you try to walk towards my uncle who is curled in bed. Maybe you try to get a closer look at the photos on the wall. What has been created is a space that is constrained by its medium. It is not the physical place that you are experiencing but the representation of a space that has been recorded with a device. The restraints of your experience with the 360 film, however, does not make the space any less real.</p><figure class="tmblr-full" data-orig-height="3024" data-orig-width="3024"><img src="https://66.media.tumblr.com/856d02bcb9ee8e040a4347e2014bac70/tumblr_inline_p6ium4Rxc21rr8mem_1280.jpg" data-orig-height="3024" data-orig-width="3024" width="840" height="840" alt="image" /></figure><p style=""><i>at Isla Verde.</i></p>
</div>
<ul class="icons">
<li class="link"><a href="post/172491363370/virtual-reality-is-a-computer-generated-simulation.html" title="View Post" class="social-eye"></a></li>
<li class="like"><div class="like_button" data-post-id="172491363370" data-blog-name="digitalvaiven" id="like_button_172491363370"><iframe id="like_iframe_172491363370" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=digitalvaiven&post_id=172491363370&color=black&rk=YZi0kW4p" scrolling="no" width="16" height="16" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_172491363370"></iframe></div></li>
<li class="reblog">
<i class="reblog-icon"><a href="https://www.tumblr.com/reblog/172491363370/YZi0kW4p" class="reblog_button"style="display: block;width:16px;height:16px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></i>
</li>
<li class="sharer">
<a class="social-export"></a>
<div class="sharer-wrap">
<ul>
<li class="twitter">
<a href="https://twitter.com/intent/tweet?url=https://tmblr.co/ZFfica2WfILGg" title="Share on Twitter" class="social-tweets" target="_blank"></a>
</li>
<li class="facebook">
<a href="http://www.facebook.com/sharer.php?u=https://digitalvaiven.tumblr.com/post/172491363370/virtual-reality-is-a-computer-generated-simulation" title="Share on Facebook" class="social-facebook" target="_blank"></a>
</li>
<li class="gplus">
<a href="https://plus.google.com/share?url=https://digitalvaiven.tumblr.com/post/172491363370/virtual-reality-is-a-computer-generated-simulation" title="Share on Google +" class="social-gplus" target="_blank"></a>
</li>
<li class="pinterest">
<a href="https://pinterest.com/pin/create/button/?url=https://digitalvaiven.tumblr.com/post/172491363370/virtual-reality-is-a-computer-generated-simulation&media=https://66.media.tumblr.com/avatar_f6bcc875d019_128.pnj&media=https://i.ytimg.com/vi/pQV6Eevg3V8/hqdefault.jpg" title="Share on Pinterest" class="social-pinterest" target="_blank"></a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</article>
<article id="172490969460" class="type_text " rel="https://www.tumblr.com/reblog/172490969460/hBBxYl8j">
<div class="article-content">
<!-- Text Post -->
<figure class="tmblr-full" data-orig-height="3024" data-orig-width="3024"><img src="https://66.media.tumblr.com/523068773b6ee1485c5e215ae5cb38e3/tumblr_inline_p6iu0iJayo1rr8mem_1280.jpg" data-orig-height="3024" data-orig-width="3024" width="840" height="840" alt="image" /></figure><p><i>at El Morro in San Juan.</i></p>
<ul class="icons">
<li class="link"><a href="post/172490969460/at-el-morro-in-san-juan.html" title="View Post" class="social-eye"></a></li>
<li class="like"><div class="like_button" data-post-id="172490969460" data-blog-name="digitalvaiven" id="like_button_172490969460"><iframe id="like_iframe_172490969460" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=digitalvaiven&post_id=172490969460&color=black&rk=hBBxYl8j" scrolling="no" width="16" height="16" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_172490969460"></iframe></div></li>
<li class="reblog">
<i class="reblog-icon"><a href="https://www.tumblr.com/reblog/172490969460/hBBxYl8j" class="reblog_button"style="display: block;width:16px;height:16px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></i>
</li>
<li class="sharer">
<a class="social-export"></a>
<div class="sharer-wrap">
<ul>
<li class="twitter">
<a href="https://twitter.com/intent/tweet?url=https://tmblr.co/ZFfica2WfGr5q" title="Share on Twitter" class="social-tweets" target="_blank"></a>
</li>
<li class="facebook">
<a href="http://www.facebook.com/sharer.php?u=https://digitalvaiven.tumblr.com/post/172490969460/at-el-morro-in-san-juan" title="Share on Facebook" class="social-facebook" target="_blank"></a>
</li>
<li class="gplus">
<a href="https://plus.google.com/share?url=https://digitalvaiven.tumblr.com/post/172490969460/at-el-morro-in-san-juan" title="Share on Google +" class="social-gplus" target="_blank"></a>
</li>
<li class="pinterest">
<a href="https://pinterest.com/pin/create/button/?url=https://digitalvaiven.tumblr.com/post/172490969460/at-el-morro-in-san-juan&media=https://66.media.tumblr.com/avatar_f6bcc875d019_128.pnj" title="Share on Pinterest" class="social-pinterest" target="_blank"></a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</article>
<article id="172490939115" class="type_text " rel="https://www.tumblr.com/reblog/172490939115/hQROvoWJ">
<div class="article-content">
<!-- Text Post -->
<figure data-orig-width="3024" data-orig-height="3024" class="tmblr-full"><img src="https://66.media.tumblr.com/4cf6d6707e43cb5c5ebbfb43411274ee/tumblr_inline_p6ityxC6R51rr8mem_1280.jpg" alt="image" data-orig-width="3024" data-orig-height="3024" width="840" height="840" /></figure><p style=""><i>
the way spirits speak to me must be a glitch. must be where history seeps into this plane of existence with universe-steeped information that spills into my veins like god-giving water. this was always meant to be. i was in the code all along, but i had to carve this feeling out of some type of computational error. the way you whisper into my ear was never supposed to be. but here we are.
<br /></i></p><p style=""><i><br /></i></p><p>at San Juan.</p>