-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
458 lines (394 loc) · 14.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>patrick_pagano</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="bootstrap.css" rel="stylesheet">
<link href="bootstrap-responsive.css" rel="stylesheet">
<script src="graph.js"></script>
<script>
function spring() {
SHADOW = 0.65 // slow...
g = new Graph(document.getElementById("_ctx"));
// Random nodes.
for (var i=0; i < 50; i++) {
g.addNode(i+1);
}
// Random edges.
for (var j=0; j < 75; j++) {
var n1 = choice(g.nodes);
var n2 = choice(g.nodes);
g.addEdge(n1, n2, {weight: Math.random()});
}
g.prune(0);
g.betweennessCentrality();
g.eigenvectorCentrality();
g.loop({frames:500, fps:30, ipf:2, weighted:0.5, directed:true});
}
</script>
<style>
body {
padding-bottom: 20px;
color: #383723;
background-color: #DEDACB
}
.navbar-wrapper {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 10;
margin-top: 20px;
margin-bottom: -90px; /* Negative margin to pull up carousel. 90px is roughly margins and height of navbar. */
}
.navbar-wrapper .navbar {
}
/* Remove border and change up box shadow for more contrast */
.navbar .navbar-inner {
border: 0;
-webkit-box-shadow: 0 2px 10px rgba(0,0,0,.25);
-moz-box-shadow: 0 2px 10px rgba(0,0,0,.25);
box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
/* Downsize the brand/project name a bit */
.navbar .brand {
padding: 14px 20px 16px; /* Increase vertical padding to match navbar links */
font-size: 16px;
font-weight: bold;
text-shadow: 0 -1px 0 rgba(0,0,0,.95);
}
/* Navbar links: increase padding for taller navbar */
.navbar .nav > li > a {
padding: 15px 20px;
}
/* Offset the responsive button for proper vertical alignment */
.navbar .btn-navbar {
margin-top: 10px;
}
.carousel {
margin-bottom: 60px;
}
.carousel .container {
position: relative;
z-index: 9;
}
.carousel-control {
height: 80px;
margin-top: 0;
font-size: 120px;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
background-color: transparent;
border: 0;
z-index: 10;
}
.carousel .item {
height: 350px;
}
.carousel img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 500px;
}
.carousel-caption {
background-color: transparent;
position: static;
max-width: 550px;
padding: 0 20px;
margin-top: 130px;
}
.carousel-caption h1,
.carousel-caption .lead {
margin: 0;
line-height: 1.25;
color: #DEDACB;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
}
.carousel-caption .btn {
margin-top: 10px;
color: #DEDACB;
}
/* MARKETING CONTENT
-------------------------------------------------- */
/* Center align the text within the three columns below the carousel */
.marketing .span4 {
text-align: center;
}
.marketing h2 {
font-weight: normal;
}
.marketing .span4 p {
margin-left: 10px;
margin-right: 10px;
}
.featurette-divider {
margin: 20px 0; /* Space out the Bootstrap <hr> more */
}
.featurette {
padding-top: 30px; /* Vertically center images part 1: add padding above and below text. */
overflow: hidden; /* Vertically center images part 2: clear their floats. */
}
.featurette-image {
margin-top: -120px; /* Vertically center images part 3: negative margin up the image the same amount of the padding to center it. */
}
/* Give some space on the sides of the floated elements so text doesn't run right into it. */
.featurette-image.pull-left {
margin-right: 40px;
}
.featurette-image.pull-right {
margin-left: 40px;
}
/* Thin out the marketing headings */
.featurette-heading {
font-size: 50px;
font-weight: 300;
line-height: 1;
letter-spacing: -1px;
}
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (max-width: 979px) {
.container.navbar-wrapper {
margin-bottom: 0;
width: auto;
}
.navbar-inner {
border-radius: 0;
margin: -20px 0;
}
.carousel .item {
height: 500px;
}
.carousel img {
width: auto;
height: 300px;
}
.featurette {
height: auto;
padding: 0;
}
.featurette-image.pull-left,
.featurette-image.pull-right {
display: block;
float: none;
max-width: 30%;
margin: 0 auto 0px;
}
}
@media (max-width: 767px) {
.navbar-inner {
margin: -20px;
}
.carousel {
margin-left: -20px;
margin-right: -20px;
}
.carousel .container {
}
.carousel .item {
height: 300px;
}
.carousel img {
height: 300px;
}
.carousel-caption {
width: 65%;
padding: 0 70px;
margin-top: 100px;
}
.carousel-caption h1 {
font-size: 30px;
}
.carousel-caption .lead,
.carousel-caption .btn {
font-size: 18px;
}
.marketing .span4 + .span4 {
margin-top: 40px;
}
.featurette-heading {
font-size: 30px;
}
.featurette .lead {
font-size: 18px;
line-height: 1.5;
}
}
#graph { display: block; position: absolute; overflow: visible; }
#graph .node-label { font: 11px sans-serif; }
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/ph.jpg">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="../assets/ico/favicon.png">
</head>
<body onload="spring();">
<!-- NAVBAR
================================================== -->
<div class="navbar-wrapper">
<!-- Wrap the .navbar in .container to center it within the absolutely positioned parent. -->
<div class="container">
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<!-- Responsive Navbar Part 1: Button for triggering responsive navbar (not covered in tutorial). Include responsive CSS to utilize. -->
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="#">shreeswifty</a>
<!-- Responsive Navbar Part 2: Place all navbar contents you want collapsed withing .navbar-collapse.collapse. -->
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="https://patrickrpagano.wordpress.com">Educator</a></li>
<li><a href="UPL_pagano.pdf">Projection Designer</a></li>
<!-- Read about Bootstrap dropdowns at http://twbs.github.com/bootstrap/javascript.html#dropdowns -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Portfolios<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="https://soundcloud.com/shreeswifty">Sound Design</a></li>
<li><a href="http://digitalprojectiondesign.blogspot.com/">Graphics Research</a></li>
<li><a href="http://plaza.ufl.edu/bigswift/">Projections for Theatre</a></li>
<li><a href="https://vimeo.com/user15865380">Installation</a></li>
<li class="divider"></li>
<li class="nav-header">other_stuff</li>
<li><a href="https://www.flickr.com/people/shreeswifty/">Still Portfolio</a></li>
<li><a href="https://patrickrpagano.wordpress.com/projection-design-2010/">AVCLUB:Projection Design</a></li>
<li><a href="https://www.flickr.com/photos/88028060@N00/">Student Work</a></li>
<li><a href="http://shreeswifty-archipelago.tumblr.com/">Media Posts on Tumblr</a></li>
<li><a href="https://patrickrpagano.wordpress.com/curriculum-vitae/">CV</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div><!-- /.navbar-inner -->
</div><!-- /.navbar -->
</div> <!-- /.container -->
</div><!-- /.navbar-wrapper -->
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="item active">
<img src="slide1b.png" alt="slide1b">
<div class="container">
<div class="carousel-caption">
<h1>interactive.</h1>
<p class="lead">"It's clever, but is it Art? --Rudyard Kipling</p>
<a class="btn btn-large btn-primary" href="https://vimeo.com/channels/1016944">ctrl_space</a>
</div>
</div>
</div>
<div class="item">
<img src="slide2b.png" alt="">
<div class="container">
<div class="carousel-caption">
<h1>immersion.</h1>
<p class="lead">The artist is the medium between his fantasies and the rest of the world. --Federico Fellini.</p>
<a class="btn btn-large btn-primary" href="https://patrickrpagano.wordpress.com/">BIO</a>
</div>
</div>
</div>
<div class="item">
<img src="slide3.png" alt="">
<div class="container">
<div class="carousel-caption">
<h1>magic.</h1>
<p class="lead">"Any sufficiently advanced technology is indistinguishable from magic." --Arthur C. Clarke</p>
<a class="btn btn-large btn-primary" href="http://shreeswifty-archipelago.tumblr.com/">check_it</a>
</div>
</div>
</div>
<div class="item">
<img src="slide2b.png" alt="">
<div class="container">
<div class="carousel-caption">
<h1>immersion.</h1>
<p class="lead">The artist is the medium between his fantasies and the rest of the world. --Federico Fellini.</p>
<a class="btn btn-large btn-primary" href="https://patrickrpagano.wordpress.com/">BIO</a>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">‹</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">›</a>
</div><!-- /.carousel -->
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container marketing">
<!-- Three columns of text below the carousel -->
<div class="row">
<div class="span3">
<img class="img-circle" src="howard.png" data-src="holder.js/140x140">
<h2>education <span class="muted">EDU</span></h2>
<p>Associate Professor Entertainment Technology & AVMP Coordinator at Howard Community College</p>
<p><a class="btn" href="avmp.html">View details »</a></p>
</div><!-- /.span4 -->
<div class="span3">
<img class="img-circle" src="pd.png" data-src="holder.js/140x140">
<h2>research <span class="muted">RES</span></h2>
<p>Forthcoming Book-"Share the Patch-25 years of Pure Data"</p>
<p><a class="btn" href="https://www.patreon.com/shreeswifty">View details »</a></p>
</div><!-- /.span4 -->
<div class="span3">
<img class="img-circle" src="b1.png" data-src="holder.js/140x140">
<h2>pisound <span class="muted">WAV</span></h2>
<p>Interactive Media & Projection Design Demos & Research for Education, Training and Performing Arts</p>
<p><a class="btn" href="http://blokas.io">View details »</a></p>
</div><!-- /.span4 -->
<div class="span3">
<img class="img-circle" src="org.png" data-src="img/org.jpg">
<h2>organelle <span class="muted">BLU</span></h2>
<p>Premium audio patches for every operating system + Critter & Guitari's "Organelle" </p>
<p><a class="btn" href="https://www.critterandguitari.com/">View details »</a></p>
</div><!-- /.span4 -->
</div><!-- /.row -->
<div id="graph" style="width:700px; height:500px;">
<canvas id="_ctx" width="700" height="500"></canvas>
</div>
<hr class="featurette-divider">
<div class="featurette">
<img class="featurette-image pull-right" src="ph.png">
<h2 class="featurette-heading">interactive_media. <span class="muted">IXD</span></h2>
<p class="lead"> Media Solutions, Artificial Intelligence, Embedded Systems, Digital Signal Processing, Live Performance Design, Virtual Reality, Augmented Reality, Media Production and Games</p>
<hr class="featurette-divider">
<!-- FOOTER -->
<footer>
<p>© humansneedlumens, Inc. · <a href="#">Privacy</a> · <a href="#">Terms</a></p>
</footer>
</div><!-- /.container -->
<script src="jquery-slim.min.js"></script>
<script src="transition.js"></script>
<script src="alert.js"></script>
<script src="modal.js"></script>
<script src="dropdown.js"></script>
<script src="scrollspy.js"></script>
<script src="tab.js"></script>
<script src="tooltip.js"></script>
<script src="popover.js"></script>
<script src="button.js"></script>
<script src="collapse.js"></script>
<script src="carousel.js"></script>
<script src="typeahead.js"></script>
<script>
!function ($) {
$(function(){
// carousel demo
$('#myCarousel').carousel()
})
}(window.jQuery)
</script>
<script src="holder.min.js"></script>
</body>
</html>