This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
forked from Future-Made/manifestation-made-for-future
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1390 lines (997 loc) · 101 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>
<!-- saved from url=(0032)https://radicaldesigncourse.com/ -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Future, made by and for all.</title>
<meta name="description" content="A rebellious, multi-lateral, inclusive and future-oriented design, by the creative people of the planet.">
<meta name="twitter:title" content="Future, made by and for all.">
<meta name="twitter:description" content="A rebellious, multi-lateral, inclusive and future-oriented design, by the artists and techies of the Planet.">
<meta name="twitter:image" >
<meta property="og:title" content="Future, made by and for all.">
<meta property="og:description" content="A rebellious, multi-lateral, inclusive and future-oriented design, by the artists and techies of the Planet.">
<meta property="og:image" content="https://i.imgur.com/RYgTGSr.png">
<meta property="og:url" content="https://futurema.de">
<link rel="icon" type="image/png" href="./FutureMade_files/favicon_32.png" sizes="32x32">
<link rel="icon" type="image/png" href="./FutureMade_files/favicon_16.png" sizes="16x16">
<link rel="stylesheet" href="./FutureMade_files/wfk1jdt.css">
<link href="./FutureMade_files/css" rel="stylesheet">
<link rel="stylesheet" href="./FutureMade_files/tailwind.css">
</head>
<body class="body overflow-x-hidden bg-dark antialaised text-dark text-lg font-mono leading-normal" x-bind:class="{ 'cursor-watch': waiting }" x-data="{ slurp: false, weee: false, waiting: false, moo: false }" data-new-gr-c-s-check-loaded="14.984.0" data-gr-ext-installed="">
<div class="mx-4 lg:mx-16 text-yellow text-center xl:text-center py-4 lg:h-16 flex text-xs md:text-sm items-center justify-center ">
<p>A
<span style="background-color: coral; color:black;">
<a href="https://www.youtube.com/watch?v=PfAWReBmxEs" target="_blank">rebelliously |></a>
</span>
<span style="background-color: rgb(80, 191, 255); color: black;">
<a href="https://www.youtube.com/watch?v=7jMlFXouPk8" target="_blank">|> hopeful</a>
</span>
future-oriented, demand-aware, multi-lateral, & inclusive solutions design, gifted by the artists and techies of the planet.</p>
</div>
<!-- <img src="./FutureMade_files/head-left.png" class="absolute rad-head left-0 z-10 cursor-pointer" id="head-left" alt="Rad neon colored woman facing right">
<img src="./FutureMade_files/head-right.png" class="absolute rad-head right-0 z-10" id="head-right" alt="Another rad neon colored woman facing left this time"> -->
<div class="bg-white mx-4 lg:mx-6 xl:mx-16 relative">
<header class="max-w-lg px-2 mx-auto py-10">
</header>
<div class="px-4 mt-4 md:mt-8 lg:mt-12">
<!-- <div class="bg-dark mt-2 lg:mt- leading-none w-full text-center p-1 -rotate-3 text-xl font-hand text-yellow">
</div> -->
<!-- <div class="bg-dark mt-4 mb-6 lg:mt-20 lg:mb-20 leading-none w-full text-center p-1 -rotate-3 text-xl font-hand text-yellow">
</div> -->
<div class="text-center max-w-2xl mx-auto md:text-center text-xl px-8 md:text-xl relative">
<blockquote class="text-center max-w-2xl mx-auto md:text-center font-headline text-4xl md:text-4xl x-8 py-8 relative">
A manifestation
for
</blockquote>
<button type="button"
class="border border-black text-gray-700 rounded-md m-2 transition duration-500 ease select-none hover:text-blue hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://www.merriam-webster.com/thesaurus/offset" target="_blank"><b>"The Offset Movement" </b></a>
</span>
</button>
<br><br>
<br><br>
This manifestation, as in a transparent work in progress; multimediathic future-oriented research, design and development in progress. These set of experimental projects aims to introduce capability improvements for the short term, and catalyser of createion of resources for Unconditional/Universal Basic Income (UBI) with its "causes & NGOs" integration in the long run.
<br><br>
Movement, after all contemplates around the solutions and futuristic visions around accessibility and sustainability of the Arts Cultures, Knowledge,
<br><br> while including them in fostering technology and global democratic impact via bottom-up and inclusive approach and progress, to stay at its core, forever.
<br><br>
It's no-one's and everyone's.
<br><br> As is, an international Art and Tech collective and visioned to grow as an independent think-tank; <br> <br> and currently is already "open and demanding" for cooperation and collaboration, from its foundations.
<br><br> Text, research and all part of a work in progress will be kept versioned and open for public participation.
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-black hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://github.com/Future-Made/manifestation-made-for-future" target="_blank"> @ github.</a>
</span>
</button>
<br><br>
<br><br>
<p>
We hope, that anyone that reads below manifestation and imagines a better world for a second; that is
enough of gain for us, for this year. We had trough lots of things in the last year, and let's embrace the reality and imagine the the achievable change.
</p>
<p>
We'll have a gathering in the next year, to start building the foundations of the technological infrastructure via an online,
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-black hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://en.wikipedia.org/wiki/Event_storming" target="_blank"> "event-storming" </a>
</span>
</button>
event. <br><br> <br>
<button type="button"
class="border border-black text-gray-700 rounded-md px-2 m-2 transition duration-500 ease select-none hover:text-blue hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://streamerd.github.io/jekyll-timeline/" target="_blank"><b>Here </b></a>
</span>
</button>
is the current roadmap and your way to the mentioned "event-storming" event.
<br><br>
<button type="button"
class="border border-black text-gray-700 rounded-md px-2 py-2 m-2 transition duration-500 ease select-none hover:text-black hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://www.youtube.com/watch?v=7I18_VNjX3g" target="_blank"> This </a>
</span>
</button>
is so far, the best song matched to this project :]
</p>
<br><br>
<p>
<b class="italic">Here it starts shifting..</b>
</p>
<br><br>
As <br>
a process of
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 px-2 transition duration-500 ease select-none hover:text-black hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://youtu.be/e1xKUZCf7PA?t=370" target="_blank"> liberation;</a>
</span>
</button>
<br>
"efficiently effective" demand exposition/augmentation <br>in decision-making <br> can <br>
<strong style="color:orange">eventually</strong>
<strong style="color:red">stop</strong> <br><br>
the "unnecessary" activities of tech-giants in <br>
"consumer data business/advertisement" <br><br>
that have long been enforcing <br>
a bunch of "de-facto'ed" methods; <br>
as in "over-prediction and manupilation of choice", <br><br>
for "better" services and experiences <br>
that are conventionally provided, based on impressions and primarily historical data and assumptious recommendations; <br><br>
rather than opening space and enough technological facilitation <b>
of a <strong style="color: green;">sustainable and efficiently transparent</strong> producer-consumer relationships<br><br>
that welcomes and prioritise<br>
a <strong>free and opinionated</strong> consumer/audience behaviour </b>
<br><br>
and partially, their potential moderation to the stage <br>
in its highest-achievable, <br>
<strong>democratic version.</strong>
<br><br><br>
<strong>
########
<br><br>
Disclaimer:
<br><br>
########
</strong>
<br><br>
This project is <strong> not </strong> designed nor started to (only) complain about things,
and already opted for making the initial set of contemplations, designs and developments on
the potential improvements and alternations, within a balanced competition-cooperation mindset.
<br><br>
Achieving all these with new a approach, via including and informing those companies and regulatory makers as well,
along with all core participants via communicating around those problems within a timely manner and context, <br>
so that a greater cooperation is put in place from the foundations of the collaborative solution developments.
<br><br>
This manifestation is developed (and will update itself indefinitely),
to mention a few directions that existing service providers/platforms in ticketing, streaming and event announcement
would implement any part freely.
that would be potentially preferrable and positively impactful
for artists, their audiences,
related SMEs and NGOs. <br><br>
Hence, an open call and contact is being made* for those cool providers as well, so they can further care about creative people and many more.
<br> <br>
Movement and the platform intends to be the initial demander and
one of the first enablers of those technological and more importantly,
socio-economical developments. <br><br>
What matters is solving of real world problems<br>
with a transparent and cooperative approach, starting from <br>
day zero.
</div>
<blockquote class="text-center max-w-2xl mx-auto md:text-center font-headline text-3xl px-8 md:text-4xl md:mt-16 lg:mt-56 py-8 relative">
<h2>
Extending the Freedom of Expression
</h2>
with Expression of Demand
</blockquote>
<div class="max-w-lg mx-auto content md:mt-8">
<p>This umbrella project intends to propose a demand-augmented framework/concept for the enablement
of making the outputs of future decision-making processes more foreseeable, while enabling (almost)
self-promoting & incentivising activities and relationships-making, easier for
individuals and groups in the
<a href="https://soundcloud.com/atyilmaz/the-consequences-model" target="_blank">
<b>tangible nature</b></a>
of declaring or hiding intentions and actions on the future resolutions.
<div class="relative">
<div class="py-8 px-8 lg:px-8 w-max-full">
<h2>Demand-on-Air: </h2>
<img class="h-24 " src="./FutureMade_files/demand_flows/demand_on_air.png">
</div>
</div>
<br>
Project will introduce a concept, called “a time period ahead”, aka. "demand-on-air",</b>
to be able to
<u>spread the gathering of "organic", semi-promising demands in time </u> (even years, for regular/on-site art events),
and already started on <strong>experimenting and implementing an efficiently transparent and anonymous framework,
starting with creative fields to provide peace of mind and liberty to the artists, and then journalist and scientists.</strong> <br><br>
<br>
.. via incentivizing the <b>demand-ability, accessibiliy, discoverability and mobility of themselves, their intellectual properties, performances, multimedia and merchandise.</b>
<br><br>
For the betterment on the accessibility and sustainability of the <b> Arts, Culture and Knowledge.</b>
<br>
<div class="relative">
<div class="py-4 w-max-full">
<img class="h-16 " src="./FutureMade_files/culture_is_not_dead.png">
<span>
<a href="https://das-gaengeviertel.info/neues/details/article/11-gaengeviertel-geburtstag.html" target="_blank"> “11. Gängeviertel Geburtstag — Welcome to Pandemia” </a>
</span>
</div>
</div>
</p>
<p class="w-max-full">
<strong>|> </strong>
"It has to start somewhere <br>
It has to start sometime <br>
What better place than here?<br>
What better time than now?"
<strong> <|</strong>
</p>
<p>
From here on, there will be more text, and maybe more switch on the context.
Main idea will be kept along; use cases for demand exposition will be further visually elaborated and our motivations will be included.
<br><br>
Anyone that'd benefit from a summary, can read it
here,
<button type="button"
class="border border-black text-gray-700 rounded-md px-2 py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline">
<span>
<a href="https://miro.com/app/board/o9J_ldhZvuk=/" target="_blank">in the co-op model's initial writing, on a canvas. </a>
</span>
</button>
</p>
<div class="relative">
<!-- <div class="py-8 px-8 lg:px-8 w-max-full"> -->
<div class="py-16 lg:px-12 w-max-full">
<h2> From today, back to the future:</h2>
<p> Event(demand)UponStream -
is the shortest-cut-ever-found; idea-wise,
gifted away so immediate make-use-of-it hoped, made possible.
<p class="mt-4">Below is a proof of the demand-upon-stream concept;
for demanding a concert, upon streaming a song.
<br><br>
<iframe width="320" height="320" src="https://www.youtube.com/embed/sKhhBP57Tzc" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<button type="button"
class="border border-black text-gray-700 rounded-md px-2 py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline">
<span>
<a href="https://github.com/Future-Made/future-made-events-ionic" target="_blank">code @github </a>
</span>
</button>
<br><br>
Audiences will be able to demand events
upon their listens/streams for concerts,
and upon views/displays for exhibitions.
</p>
We encourage streaming service providers to facilitate such functionality to their systems, if they will.
</p>
</p>
<p> Demand-ability of future online and regular performances would probably give the currently needed relief to artists
on making their future tour plans or exhibitions with their audiences, along with other participants that are more observant.
<br><br>
As insights based on demand get clearer, and those demands happen to become more observable in clusters, there will be quite a lot of options that artists to evaluate, for the future regular/on-site events, in time, that could take years, if necessary. <br>
<br>
Audiences on the other hand, are incentivised to make decisions as early as possible, and demand flexibility around it.
<br><br>
Finding the bilateral concensus on the affordable, and multi-lateral concensus on when, where, why, how etc will be discussed and confirmed in time, in an asynchronous fashion.
<br><br>
Audiences will be enabled to demand with relative affordable and preferences, for different locations/platforms and hence enabled to express indirect costs of their attendance (explained later on the page).
<br><br>
<img class="object-cover h-48 w-full" src="./FutureMade_files/the_consequences_model.png">
<br><br>
Above is the Consequences Model, one of the theories that partially inspired this project,
encourages making decisions as early as possible, that mostly applies to nearly all participants,
that would make declarations on future,
without making a transaction or in such tightly binding way, up to some point in time. <br><br>
Our purpose is to incentivise those participants to co-imagine if they would, on future ideas, intentions for
making future festivals and tours plannable as early as possible. <br><br>
All expected to happen without feeling the urge or necessity for defining an event,
then ticketing, and in best case giving flexibility via early-bird'ing
or creating segments based on price,
that divides the audience and creates a race-condition hence ethical,
with financial, temporal, spatial aspects of the
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://link.springer.com/article/10.1007/s10824-015-9263-4" target="_blank">existing ticketing methods & schemas, inherently, are not letting that flexibility, nor will be.</a>
</span>
</button>
<br><br>
It's based on "exclusive" foundations, than standing on a basis of "inclusion".
In fact, to make it inclusive, organizers and the artists need extra efforts, by default.
<p>
Our motivation here is to support artists in where they are still likely making the most of the money from live performances. Online or offline, inside or outside.
</p>
<br><br>
<div class="relative">
<div class="py-16 lg:px-12">
<img class="object-cover h-48 w-full" src="./FutureMade_files/reasoning_of_a_person_or_group.jpg">
</div>
</div>
<br><br>
We'd like to <b class="italic">shift</b> <strong> this status-quo, made of deterministic approach, from the as-is: "first come, first served" to:
"demand of one is heard, then would be served"</strong> mentality in general; regardless of the events/ticketing proposal design, ahead.
<br><br>
With proposed long-term relations-making, and a cooperation rather than a matter of being a purchase/consumable or customer/consumer to each other;
audiences (with their identities as well) and artists are incentivised to be transparent to each other, while keeping their anonymity level on their demands as anonymous stats for the others, up to some point in time, unless they want to change this situation.
In any case, <strong>there will be no numbers or affordable whatsoever to be publicised</strong>; while applying the
<button type="button"
class="border border-black text-gray-700 rounded-md px-2 py-2 m-2 transition duration-500 ease select-none hover:text-blue hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://www.eventbrite.com.au/blog/pricing-strategy-event-ds0c/" target="_blank">
<strong>
Value-Based Pricing Model,
</strong>
</a>
</span>
</button>
all along.
<br><br>
On top, given this time period ahead (demand-on-air), scalping will more likely be prevented;
since there actually will be not that many conventional ticket to trade on, anymore and eventually, impact scope for scalping is expected to be reduced.
<br><br>
Project proposes this new scheme, where the difference between the capacity of a potential venue and number of demanded & promised
attendees would then collaborate on that event's further promotion, definition of incentives collectively as well, when it is commonly found desirable.
</div>
</div>
<div class="relative">
<div class="py-16 lg:px-12">
<img class="object-cover h-48 w-full" src="./FutureMade_files/as_is_vs_to_be.jpg">
</div>
</div>
<div class="relative">
<div class="py-16 lg:px-12">
<h2 class="text-center font-headline text-3xl md:text-4xl mb-4 justify-center">Inclusive and Productive Cooperation around Future Art Events</h2>
<p>
<button type="button"
class="border border-black text-gray-700 rounded-md px-2 py-2 m-2 transition duration-500 ease select-none hover:text-blue hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://www.nber.org/papers/w22252" target="_blank">
<strong>
Tech is not homogenously impacting/affecting all of us.
</strong>
</a>
</span>
</button>
<br><br>
A common wealth could foster from future multi-lateral cooperations that involve new
fields/sorts of jobs, that are in balance with future solution scenarios that involve tasks done via social interaction and "demanded" level of
automation, as well as "resource consumption"; as they are required by the users of those technology, rather than mandated by profit-driven strategies. <br><br>
* Here, announcing the gig-ables of our future too: "Translating movies, videos and songs, as they are demanded by anyone and published as artists and their communities confirm."
<br><br>
Hence, positive impact on sustainable and partially mutual empoyment of people and technology,
and continuity on progress via digitalisation;
via such creative tasks that people are more likely to enjoy doing and consuming(!)
from other people, rather than (only) artificial intelligence/recommendations.
<br><br>
Applies to scenarios for an Art event, collective advertisement (explained quite later) content, within concurrently achievable
outputs in organisation, curation, communication and hence enablement-related intellectual efforts of those.
</p>
<img class="object-cover h-48 w-full" src="./FutureMade_files/participants.png">
<button type="button"
class="border border-black text-gray-700 rounded-md px-2 py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline">
<span>
<a href="https://miro.com/app/board/o9J_ldhZvuk=/" target="_blank">canvas @miro board</a>
</span>
</button>
<br><br>
With the help of individually initiate-able and globally observe-able demand exposition; creating feed/timeline will be made possible for capacity and future plannings of ones around creative and cultural fields, then and "producer" outside of creative fields, on a local or global basis;
and socio-economical relations to make this happen, and do it for the .
that would then <b>fairly connect:</b> <br><br>
the artists and journalists (and scientists through journalists)
to their existing and future: <br><br>
|> creatives and intellectuals in collaboration, <br><br>
|> audiences,<br><br>
|> relate-able small-medium-enterprises (SMEs) <br><br>
|> |> hosts (places (venues, bafes, bars, art galleries) & broadcasters (radios, studios, streaming platforms) <br><br>
|> |> organisers and service providers around events and other intellectual creations in the extensible scope of the project.
|> non-gov-orgs (NGOs) of local and global causes/problems, <br><br>
|> states (taking health measurements in the future, making sure the event is allowed and safe to hold, in the scope of the on-site performances.)
<br><br>
Later on, those co-operations around local art-hubs or temporal organisations that are dedicated for achieving events' enablement (organisation, promotion etc.) can be creating
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://blockchainhub.net/dao-decentralized-autonomous-organization/" target="_blank">Decentralized Autonomous Organisations,</a>
</span>
</button>
around those future art events.
</div>
</div>
<div class="relative">
<div class="py-8 lg:px-8">
<h2> How? Just like this:</h2>
<img class="object-cover h-48~ w-full" src="./FutureMade_files/demand_flows/demand_initiation_full.png">
</div>
</div>
<p>
Software developments initially started for the enablement of demand-able and tribute-able as well, <b>art events and performances.
They will be further ideated, architected and implemented with a larger collaboration from many, including techies of the free and open-source software community.</b>
<h3>++++++++++++++++++++++++++</h3>
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://github.com/Future-Made" target="_blank">Current Development ~ code</a>
</span>
</button>
<h3>++++++++++++++++++++++++++</h3>
<br>Projects will concurrently progress on the enablement of demand-able and hence "financially & politically back-able"
<b>news topics, and participation-wise; "partially randomizable" discussions, panels and debates.</b> </p>
<p>
We have discovered that our contemplations will mostly align on their motivation & how we approach cooperation and fairness in general,
<a href="https://resonate.is/manifesto/" target="_blank">with those</a> introduced by <a href="https://resonate.is/" target="_blank">resonate.is</a>
</p>
<p class="mt-8 mb-16">
Hence, we’d like to include and extend on their motivations & methods as well, and for some, as they are. <br><br>
-- It just made sense
</p>
</p>
<div class="relative">
<div class="py-16 lg:px-12">
<h2 class="text-center font-headline text-3xl md:text-4xl mb-4 justify-center">An Optimistic Comparison</h2>
<img class="object-cover h-48 w-full" src="./FutureMade_files/comparison.png">
</div>
</div>
<blockquote class="text-center max-w-2xl mx-auto md:text-center font-headline text-2xl px-8 md:text-2xl md:mt-16 lg:mt-56 py-8 relative">
Our motivation and expectations from the future:
</blockquote>
<p class="mt-4">
- Empowering individual initiative-taking to be "effective" in the future, collective-decision making attempts and processes, <b class="italic">from now.</b> <br><br>
- Searching for (even more) meaningful interactions and larger and more effective cooperations on existing problems and observed solutions of <b class="italic">the history, now and future.</b> <br><br>
- Reducing the need for market places and required need for "prediction" that is based on historical data collection, <b class="italic">in general.</b><br><br>
- Purposefully experimenting, partially improving, or totally alternating on the existing paradigms, implementations and ways of thinkings in marketing, promotion and advertisement and demand-side-platforms and ad-networks <b class="italic">in the mid/long run.</b> <br><br>
- Removing price-tags of all kind from people, introducing the potential impact of the
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://link.springer.com/article/10.1057/rpm.2009.15" target="_blank">"relatively settable"</a>
</span>
</button>
affordable, that is combine-able with help-able<b class="italic">, from now.</b> <br><br>
- Creating opportunity for an arbitrary purchase/transaction in general,
to create impact; outside of its economical/taxational zone,
that can enable the individuals societies to be part of the change, <b class="italic">for all.</b> <br><br>
- Beyond the preset/default impact zone, eliminating <u>such a limitation</u> ,
that inherently comes via citizenship or residentship, <u>of which we tend to "be" or "made to be" proud of.</u>
<br><br>
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://www.youtube.com/watch?v=jT6yx2kTvFQ" target="_blank">
Why be less when we can be more?</a>
</span>
</button>
<br><br>
- Enabling the impact and incentivisation itself, on being initiated on micro-levels and observed at macro-levels, as a world citizen level,
via "attaching a future donation", as a deduction from the affordable. Almost as a pre-condition, <strong>in the form of a good will.</strong> </b><br><br>
- Opening a channel for expressing local/global worries and values, gathering around causes, preferences and needs; <br><br>
<br>
<strong>|> </strong>
Will not diverge to this, at this point, but..
it has been clearly acknowledged in the last years, that there still exists a fact,
that a country's posivitive contributions on the solving of global problems are
quite vulnerable to opting-out(s) from years of efforts in concensus-making;
eg. in: <br>
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://www.nature.com/articles/d41586-020-01586-0" target="_blank">health</a>
</span>
</button>
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://unfccc.int/process-and-meetings/the-paris-agreement/the-paris-agreement" target="_blank">climate change</a>
</span>
</button>
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://en.wikipedia.org/wiki/Istanbul_Convention" target="_blank">rights/inequality</a>
</span>
</button>
.. that are greater than any arbitrary politician or ideology's <strong> populist, temporary grasp and exploit on the rule of power and
mass media; still commonly through the
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://www.youtube.com/watch?v=tTBWfkE7BXU" target="_blank">"Manufacturing Consent"</a>
</span>
</button>
in the media outlets.
</strong> <br><br>
No country or politician is an exempt of staying in the reality, especially when that is observable in a form of a catastrophy. <br><br>
Expecting that new resolutions on the global betterment are to be sealed and a country cannot opt-out from them,
especially when impacting and being impacted; locally or globally, at an observable scale.
<br><br>
It's at the end of the day, still strongly depending on whether that power is given to a good person or not.
Our democracies are only strong as much as our non-manupilated nor distracted versions.
<br><br>
Even the institutions are not capable of enforcing a betterment or a "keep-as-is", at the least.
<br>
We are people, we can show and incentivize "politicians in hesitation", how planetary cooperation would be achieved in a fashion,<strong> that is borderless. </strong>
<|</strong>
<br><br>
<!--
TODO:// reasoning on arts and culture and events' power to bring
people of all kinds of backgrounds.
Mention that it's not primarily "rebels" to improve-ables on SongKick or BandsInTown etc,
"Art Events" are starting project to experiment on demand-augmentation. -->
<!--
- Making it easy for creatives and journalists to make a sustainable and less-pressured/worried fashion, with
enablement on global impact <b>with an approach, that is inclusive, participatory and accessible by its design.</b>
Enhanced insight and engagement to design their future tours & exhibitions,
be able to organise or be part of multiple events distributed to number of places in a city
and the neighbouring cities, hence artists will have more time to spend in on those cities, if they wish. <br><br>
<b class="italic">A FutuRoute?</b> Yes, that is one of the ultimate goals to give the flexibility in time and resources, more access to socio-economical relationships-making with local artists, audiences, NGOs and SMEs, create benefits of kinds for the future. <br><br>
- Enabling flexible demand exposition for different scenarios;
taking <strong>indirect costs of an event attendance</strong> into consideration for the regular events. <br> <br>
Among some would be relating connectivity, transportation, accommodation & for participants
to create "benefits" or "services" around,
even by the SMEs, audiences or artists that are not able or intend to host or attend to an event <br>
Those are not intended to promote consumerism, and combining those small bits could make meal or roadtrip that someone else that might use as full voucher, instead of a discount for ones that are in greater need. <br><br>
Project, in the long run; aims to achieve a localised and decentralise-able art events, and by the participants,
preferrable as in their lowest-possible carbon footprint and highest discoverability and mobility of
creative people, their works.
Also Relating SMEs (Cafe, Bar .. ) expected to become part of a local multimedia cluster.
That will host and serve those music, video etc by other audiences and places.
That is to increase discoverability of places and incentivise
their artistic engagement with public even there is a lockdown.
In fact, ultimate goal is to extend search-able music base with
real-time metadata of "currently playing/being broadcasted songs", from wherever they are being served.
) that can host multimedia(@PlaceRadios) and paintings (@PlaceWalls) for the artist;
could make it observable/streamable/purchase-able, through their profiles relating to their "Art Taste".
This is part of the incentivisation, and that
audiences/visitors, while achieving this by being able to co-imagine
with their existing and potential audiences;
-->
</p>
<p>
Our efforts will focus around building an initial set of co-ops enabler software and sustainable multi-lateral relations in a similar approach with
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline"
>
<span>
<a href="https://resonate.is/the-coop/" target="_blank">how resonate.is behaves</a>
</span>
</button>
</p>
<div class="relative">
<p>For any participant with their audience behaviour, effective mechanisms for “Expression of Demand” will be enabled,
hence encouraged and empowered at wherever possible; <br><br>
.. augmented via "effectively tolerable", custom levels and a good balance of transparency and anonymity between the participants,
<b>to incentivize initiative-taking on co-creation of socio-economical relations making, in a multi-lateral manner. </b> </p>
<div class="hidden lg:block absolute w-56 leading-tight" style="top: -80px; right: -250px;">
<h3 class="pl-8 mb-2">future of the art events and debates would boring and extractive, without this.</h3>
<img src="./FutureMade_files/arrow-down-left.svg" alt="An arrow pointing to the paragraph">
</div>
<p>Design propositions and implementations will start with simplistic interactions, <br>
that are initiate-able through
future-oriented demand and intention declaration with a given validity duration,<strong> aka. "Demand on Air".</strong> <br><br>
<br>
<div class="relative">
<h2> What have been our design considerations, <u>whats and nots (to be extended..)?</u> <br>
</h2>
<p>
Solutions that'll be proposed on Future, Made.:
</p>
<strong>|> Does not approach people as users. <|</strong> <br><br>
We are participants and potential co-imaginators of the future live events, news topics and debates. When something focused on the Artistic, Cultural and Social fields, We are not imagining something to consume, but something to attend, hear reliable and interesting information from that is gained, not consumed. <br><br>
|> concerts, exhibitions, theaters, films <br>
[.. & combinations (festivals) of those], <br><br>
|> news topics, documentary categories, <br><br>
|> "randomizable" panels/debates. <br><br>
</p>
<p>
<strong>|> Does not define user types/roles, not in a conventional way, and prefers not defining, at all. <|</strong> <br><br>
Instead, there is something called "behaviour", observed in a quite intersectional ground, at an individual level: <br><br>
"Audience" is a behavior: <br>
Artists are audiences of other artists, so can demand performances &
exhibitions from them and introduce to their networks and audiences.
It feels like the behaviour in general on this umbrella project, would be named as: "demander". <br><br>
"Artist" as well is a behaviour: <br>
Any individual can express their artistic side via their inner creativity, by the outer empowerment and enablement of creative communities, locally and globally.
</p>
<p><strong>|> Promotes an "effective and tolerable" level of transparency between the participants,
along with dedication on promoting the enablement of "prosumers": <|</strong> <br><br>
|> via discovery of collective demand, <br><br>
|> a unique form of demanding online & regular events <br><br>
|> while being able to create global impact
on their potential attendance &/or interest for content/knowledge.
</p>
<p><strong>|> Introduces a flexible combination of: <| </strong> <br><br>
|> affordable<br><br>
|> charitable <br><br>
|> accessible & <br><br>
|> desirable <br><br>
via opening a solid channel to communicate around "as-is" <u>deterministicly set, risk taking, non-incentivising and information obscuring/hiding approach and methods.</u>
</p>
<p>
<strong>Affordable is is extended with help-ables:</strong> <br><br>
In fact, their combined version will be what artists would benefit from: <br><br>
|> promotion<br><br>
|> equipment <br><br>
|> accommodation<br><br>
|> connectivity <br><br>
|> transportation<br><br>
|> visa support (why not?)<br><br>
</p>
</div>
</div>
<div class="font-headline px-2 md:px-0 text-xl md:w-96 mt-8 md:mt-16 justify-center">
<p>Down below is an imagined demand initiation by someone, demanding a concert <strong> with their audience behaviour and accompanying preferences for online and regular events, <strong>with a given time ahead (3 years).</strong> <br><br>
Those steps below and more will be implemented as first part of the flow, containing phases from demand side, to future interactions with the artists and collective resolutions between all required participants.</strong> </p>
<svg class="mx-auto md:ml-48 mt-8" enable-background="new 0 0 28.6 254.5" height="150" viewBox="0 0 28.6 254.5" width="28.6" xmlns="http://www.w3.org/2000/svg"><g fill="#2c2c2c"><path d="m20.5.1c-5.6-2.7-3 44.1-4.4 50-.9 26.9-2 53.8-2.7 80.8-.8 30.4-1.2 60.8-2.9 91.1.8 4.9-4.2 31 .9 30.3 4.9.5 3.2-32 4.5-37.4 2-33.2 2.4-66.4 3.5-99.6 1.4-37.5 2.9-74.9 4-112.3 0-1.6-1.3-2.9-2.9-2.9z"></path><path d="m28.6 214.4c-6.2-6.5-8.9 12.9-11.3 16.4-1.7 6.8-6.9 13.7-6.6 20.5 1.2 2.2 4.8 1.8 5.4-.7 3.6-12 11-24.1 12.5-36.2z"></path><path d="m12 249.9c-2-5-2.3-46.2-12-35.3-.1 12.2 3.8 24.9 4.8 37.2 1.2 4.7 8.5 2.7 7.2-1.9z"></path></g></svg>
</div>
<div class="relative">
<div class="py-16 lg:px-8">
<h2> 0- Discovery of Collective Demand: </h2>
<p><b class="italic">We are not</b> enoughly aware, whether people outside of our friendship zones in our neighbourhood/city as well, would be interested for a potential future concert, exhibitions of artists and their performing genres/movements, in an anonymity. </p>
<img class="object-cover h-48 w-full" src="./FutureMade_files/demand_flows/discovery_of_collective_local_demand_regular_event.png">
</div>
</div>
<div class="relative">
<div class="py-16 lg:px-8">
<h2>1- Declaration of Intention: </h2>
<p><b class="italic">We don't</b> have the means to take initiative for imagining a future,
non-yet announced, nor ticketed concerts, exhibitions or festivals,
while observing the collective demand as in meaningful statistics in an anonymity. </p>
<p><b class="italic">We are</b> mostly expected to browse or purchase only existing events, based on market-place-like approach and hence, deterministic and further communication blocking ticketing mechanisms and risky, or non-meaningful insights strategies. </p>
<img class="object-cover h-48 w-full" src="./FutureMade_files/demand_flows/intention_declaration.png">
</div>
</div>
<div class="relative">
<div class="py-16 lg:px-8">
<h2>2- Reflection around the Values: </h2>
<img class="object-cover h-48 w-full" src="./FutureMade_files/demand_flows/reflection_around_the_values.png">
</div>
</div>
<div class="relative">
<div class="py-16 lg:px-8">
<h2>3- Appreciation for the Positive Impact: </h2>
<img class="object-cover h-48 w-full" src="./FutureMade_files/demand_flows/appreciation_of_impact.png">
</div>
<div class="right-0 left-0 absolute -ml-8 lg:-ml-12 xl:-ml-16 hidden md:block" id="fist-bump"></div>
</div>
<div class="relative">
<div class="py-2 lg:px-8">
<h2> What just happened? </h2>
<p> Places and NGOs -- can observe the interactions between artists, around the art localities (neighbourhood, city);</p>
<p>Audiences -- who is also will be enabled on suggesting a place, in scope of incentive-creation, for hosting the event.</p>
<p>Artists will not necessarily have to secure a place long before an event, places will be enabled on inviting other participants. </p>
<img class="object-cover h-48 w-full" src="./FutureMade_files/demand_flows/demand_interaction_sketch.jpg">
</div>
<div class="right-0 left-0 absolute -ml-8 lg:-ml-12 xl:-ml-16 hidden md:block"></div>
</div>
<div class="relative">
<div class="py-8 lg:px-8 mt-8">
<h2>Art Events @ Demand-Augmented Framework</h2>
<img class="object-cover h-48 w-full" src="./FutureMade_files/sketches_for_future/art_events_in_demand_augmentation.jpg">
</div>
<div class="right-0 left-0 absolute -ml-8 lg:-ml-12 xl:-ml-16 hidden md:block"></div>
</div>
<div class="relative">
<div class="py-8 lg:px-8">
<h2 class="text-center">Say, all ads
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline">
<span>
<a href="https://pi-hole.net/" target="_blank">blocked on network level. </a>
</span>
</button>
<br>
.. rather than conventional app/browser level ad-blockers, at once.
Then what?
</h2>
<p> Creating a back-pressure to the
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline">
<span>
<a href="https://www.sciencedirect.com/science/article/pii/S0195925517303505" target="_blank">"forced" energy consumption </a>
</span>
</button>
across devices and apps,
<button type="button"
class="border border-black text-gray-700 rounded-md py-2 m-2 transition duration-500 ease select-none hover:text-white hover:bg-gray-800 focus:outline-none focus:shadow-outline">
<span>
<a href="https://www.apa.org/research/action/multitask" target="_blank">"and context switch" </a>
</span>
</button>
requirements on human mind;
originating from those platforms' and conventional ways of getting insights, focusing on "impressions",
rather than "intentions".</p>