forked from design-futures/design-futures.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent_akshat.html
104 lines (100 loc) · 5.19 KB
/
student_akshat.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
<html>
<head>
<link rel="stylesheet" href="./info_style.css">
</head>
<body>
<header>
<div id="top_bar">
<div id="header_logo">
<canvas id="logo_image" align='center'></canvas>
</div>
<div id="header_text">
<h1 id='heading'>Design and Futures</h1>
</div>
</div>
</header>
<div id='main'>
<span id='title'>Group 2</span>
<h2>Akshat Vats</h2>
<div id='left'>
<button class='accordian'>Idea<span><img class="arrows" src="./images/down-arrow.png" id="idea"></span></button>
<div class='panel'>
<p><b>What was the origin of your enquiry? Where are you coming from on, what motivated you to take up this exploration? What are your philosophies
around the idea? What motivated you towards this? What were some assumptions and notions you had? What was the idea or thought you came across?
</b>
</p>
<p>
The rural agriculture sector and the demographic involved has been offered a lot of schemes and policies by the government for their upliftment but owing to leakages and ill-implementation and presence of power structures prompted a the exploration of a need for a systemic intervention for the prosperity of the 'farmer'.
</p>
</div>
</br></br>
<button class='accordian'>Research<span><img class="arrows" src="./images/down-arrow.png" id="research"></span></button>
<div class='panel'>
<p><b>Did any author or fiction or philosophy inspire you? How did you go about exploring the inquiry you were interested in?
How did you document the info you were coming across? How did you devise or plan an approach?
Did you crush or prove any assumptions? How did you perform research?</b></p>
<p>
The pieces of literature involved in informing the inquiry were: Speculative Everything, Everybody loves a good drought, and poverty of poor economics.
The research undertaken via the route of rabbit-holing on multiple points which were assumed to potentially inform the inquiry did alter the initial assumptions in the process.
</p>
</div>
</br></br>
<button class='accordian'>Incubation<span><img class="arrows" src="./images/down-arrow.png" id="Incubation"></span></button>
<div class='panel'>
<p><b>What were certain approaches/tools/methods you used to act on your inquiry? How was your inquiry wandering off at this point? Did you start developing a tunnel vision, or boredom around your topic? How much procastinate,
and how did you do that? How did you get out that "ZONE"? What is your motive and expectations from Making Activity ?
</b></p>
<p>
Rabbit-holing with some constraints both at the start and during the process so as not to deviate and keeping it relevant to the inquiry. The information overload was overwhelming but turns out to be a necessary evil.
</p>
</div>
</br></br>
<button class='accordian'>Making<span><img class="arrows" src="./images/down-arrow.png" id="making"></span></button>
<div class='panel'>
<p><b>What is the coolest shit you've pulled off in these 3 weeks if any? Is there some tangible outcome or output that came about (even a sketch or wireframe works!)? Is there any achievement/discovery/wow moment
you were able to find (do upload it!)? Would you like to share some graphic/visual/aural experience of your making session (hackathon)?
</b></p>
<p>
The coolest shit would be surviving Covid-19. Still in the process of recovery and recuperation but I hope that counts for something 😅
</p>
</div>
</br></br>
<button class='accordian'>Reflection<span><img class="arrows" src="./images/down-arrow.png" id="reflection"></span></button>
<div class='panel'>
<p><b>Put up your updated visual abstract and a brief summary of reflection</b></p>
<p>
</p>
</div>
</div>
<div id='right'>
<table>
<tr>
<td>
<img src="./images/akshat.jpg" id="visual_abstract">
</td>
</tr>
</table>
</div>
</div>
<div id='footer'>
<h3>Design and Futures Studio</h3>
</div>
<script>
var acc = document.getElementsByClassName("accordian");
var i;
for(i=0; i< acc.length; i++){
acc[i].addEventListener("click",function(){
this.classList.toggle("active");
var panel = this.nextElementSibling;
if(panel.style.maxHeight){
panel.style.maxHeight = null;
}else
{
panel.style.maxHeight = panel.scrollHeight + "10000px";
}
});
}
</script>
<script type="text/javascript" src="./logo.js"></script>
</body>
</html>