-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprocess.html
More file actions
230 lines (184 loc) · 12.9 KB
/
process.html
File metadata and controls
230 lines (184 loc) · 12.9 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-68883515-1', 'auto');
ga('send', 'pageview');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>SkipQueues - Design Process: Theoretical Foundations</title>
<link rel="shortcut icon" type="image/x-icon" href="./img/coffee.ico" />
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/landing-page.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/grayscale.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="index.html">
<i class="fa fa-coffee"></i> <span class="light">Skip</span>Queues
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<li >
<a href="./index.html">Home</a>
</li>
<li>
<a href="./service-design.html">Service design</a>
</li>
<li>
<a href="./product-design.html">Product design</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Header -->
<a name="about"></a>
<div class="intro-header3">
<div class="container" id="containerHeader2">
<div class="row">
<div class="col-lg-12">
<div class="intro-message">
<h1 id="processTitle">Designing an Interactive System</h1>
<h3>Just a Little Theory</h3>
<hr class="intro-divider">
<div class="row">
<a href="#content" class="btn btn-circle page-scroll">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.intro-header -->
<!-- Page Content -->
<a name="services"></a>
<div class="content-section-a" id="content">
<div class="container">
<div class="row" >
<div class="col-lg-5 col-sm-6" >
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading" style="color:rgb(51,51,51);">The Development Design Process</h2>
<p class="lead" style="color:black;">Traditionally, the development design process has been depicted as a series of steps that designers follow to come up with an appropriate solution to a problem. However, the application of design thinking to new kind of problems has proven that this interpretation of design presents several and substantial misconceptions.</p>
<p class="lead" style="color:black;">First of all, there is not a unique, simple and optimal solution that must be applied to solve a specific problem. On the contrary, there is a space of solutions that should be explored to find out a meaningful solution. Secondly, there is not a single sequence of steps to solve a problem; design is not a deterministic (systematic) activity but a stochastic (heuristic) labor. Finally, designers do not always face with “well-structured problems”. The classical view of design considers that “ill-structured problems” are only so at first analysis: thanks to problem-solvers applying certain problem-solving strategies, these problems rapidly acquire structure. Unfortunately, the experience has shown the incorrectness of this approach. More of the design problems are wicked to solve.</p>
<p class="lead" style="color:black;">As a result, the shape of the development design process has changed markedly over the last ten years. Currently, the development design process is mainly conceived as an iterative and incremental process that allows ongoing adaptation and improvement.</p>
</div>
<div class="col-lg-5 col-lg-offset-2 col-sm-6" >
<img class="img-responsive" src="img/process.png" alt="">
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-a -->
<div class="content-section-b">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-1 col-sm-push-6 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">The Fuzzy Front End</h2>
<p class="lead" style="color:white;">As Sanders highlighted, the front end of the design process has been growing as designers move closer to future user of what they design. Formerly called “pre-design”, the front end describes “the many activities that take place in order to inform and inspire the exploration of open-ended questions such as <i>"how can we improve the quality of life for people living with a chronic illness?</i>" or <i>"what is the next big thing in family leisure time?"</i>” [1].</p>
<p class="lead" style="color:white;">The front end that has emerged is often referred to as the “fuzzy front end” because of its messy and chaotic nature. It is here that generative activities take place to inform and inspire the exploration of open-ended questions. The goal of the explorations in the front end is to determine what is to be designed and sometimes what should not be designed and manufactured. The fuzzy front end is followed by the traditional design process where the resulting ideas for product, components, interface, and so on are developed first into concepts, and then into prototypes that are refined on the basis of the feedback of future users.</p>
<p class="lead" style="font-size:12px;color:white;">[1] Elizabeth B.-N. Sanders & Pieter Jan Stappers (2008) “Co-creation and the new landscapes of design”, CoDesign: International Journal of CoCreation in Design and the Arts, 4:1, 5-18, DOI: 10.1080/15710880701875068</p>
</div>
<div class="col-lg-5 col-sm-pull-6 col-sm-6">
<img class="img-responsive" src="img/sanders.png" alt="">
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-b -->
<div class="content-section-a" id="content">
<div class="container">
<div class="row" >
<div class="col-lg-5 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading" style="color:rgb(51,51,51);">Lean Software Development</h2>
<p class="lead" style="color:black;">Lean Software Development is a translation of lean manufacturing and lean IT principles and practices to the software development domain.</p>
<p class="lead" style="color:black;">Defining Lean Software Development is challenging because there is no specific Lean Software Development method or process. A software development lifecycle process or a project management process could be said to be “lean” if it was observed to be aligned with the values of the Lean Software Development movement and the principles of Lean Software Development. Some of those principles are accept the human condition, accept that complexity and uncertainty are natural to knowledge work, or work towards a better economic outcome (see the credo published by the Lean Systems Society).</p>
<p class="lead" style="color:black;">Lean literature emphasizes the idea of “optimize the whole,” which implies that it is the output from the entire system (or process) that we desire to optimize, and we shouldn’t mistakenly optimize parts in the hope that it will magically optimize the whole. This approach requires that we follow the Build-Measure-Learn approach to process design and improvement.</p>
</div>
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<img class="img-responsive" src="img/lean.png" alt="">
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-a -->
<div class="banner2">
<div class="container" style="text-align:center;">
<div class="row">
<div class="col-lg-12">
<h2 style="font-size:36px; margin-bottom:10px; text-shadow: 2px 2px 50px rgba(0, 0, 0, 1);">Service design</h2>
</div>
</div>
<div class="row">
<div class ="col-lg-12">
<p style="text-shadow: 2px 2px 50px rgba(0, 0, 0, 1); margin-bottom:10px;">Discover how we redefine the food & beverage service at Universidad Carlos III de Madrid (UC3M).</p>
</div>
</div>
<div class="col-lg-12">
<a href="service-design.html" class="btn btn-circle page-scroll" id="buttonRight">
<i class="fa fa-angle-double-right animated"></i>
</a>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.banner -->
<!-- Footer -->
<footer>
<div class="container text-center">
<p id="footerText">© 2015 SkipQueues</p>
</div>
</footer>
<!-- jQuery -->
<script defer src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script defer src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script defer src="js/jquery.easing.min.js"></script>
<!-- Google Maps API Key - Use your own API key to enable the map feature. More information on the Google Maps API can be found at https://developers.google.com/maps/ -->
<!--<script defer type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCRngKslUGJTlibkQ3FkfTxj3Xss1UlZDA&sensor=false"></script>-->
<!-- Custom Theme JavaScript -->
<script defer src="js/grayscale.js"></script>
</body>
</html>