-
Notifications
You must be signed in to change notification settings - Fork 1
/
mains.html
488 lines (369 loc) · 22.2 KB
/
mains.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSFest</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1.0, user-scalable=0">
<meta name="description" content="JSFest, JavaScript Festival">
<meta name="author" content="Mikeal Rogers">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<!-- Le styles -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<!-- Optional theme -->
<!-- <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css"> -->
<link href='http://fonts.googleapis.com/css?family=Averia+Sans+Libre:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Libre+Baskerville' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Playball' rel='stylesheet' type='text/css'>
<script>
var themes = [ 'beanbags'
, 'mikeal-eu'
, 'eu'
, 'micheil'
, 'harth'
, 'aaron'
]
var i = parseInt(localStorage.themeIndex)
if (isNaN(i)) i = 0
if (i > (themes.length - 1)) i = 0
localStorage.themeIndex = i + 1
var theme = themes[i]
var style = document.createElement('link')
style.setAttribute('href', 'themes/'+theme+'.css')
style.setAttribute('rel', 'stylesheet')
var url = 'themes/'+theme+'.jpg'
var bkg = document.createElement('style')
bkg.setAttribute('type', 'text/css')
bkg.innerHTML = ".jumbotron { background-image: url('"+url+"'); }"
document.getElementsByTagName('head')[0].appendChild(style)
document.getElementsByTagName('head')[0].appendChild(bkg)
</script>
<style type="text/css">
body {
font-family: 'Libre Baskerville', serif;
padding-top: 20px;
padding-bottom: 40px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: 'Playball', cursive;
}
/* Custom container */
.container-narrow {
margin: 0 auto;
max-width: 700px;
}
.container-narrow > hr {
margin: 10px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
text-align: center;
color:white;
text-shadow: #303030 -1px 0, #303030 0 -1px,
rgba(255,255,255,0.1) 1px 0, rgba(255,255,255,0.1) 0 1px,
#303030 -1px -1px, rgba(255,255,255,0.1) 1px 1px;
}
.jumbotron h1 {
font-size: 72px;
line-height: 1;
text-shadow: #303030 -1px 0, #303030 0 -1px,
rgba(255,255,255,0.1) 1px 0, rgba(255,255,255,0.1) 0 1px,
#303030 -1px -1px, rgba(255,255,255,0.1) 1px 1px;
}
.main {
display:block;
position: relative;
}
.ticket-buy {
text-align: center;
}
.speaker-pic {
/* max-width: 90px;
max-height: 90px;*/
border-radius: 150px;
-webkit-border-radius: 150px;
-moz-border-radius: 150px;
box-shadow: 0 0 3px rgba(0, 0, 0, .8);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .8);
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .8);
}
.speakers-row {
text-align: center;
}
.speakers-row p {
text-align: left;
}
.dates {
text-align:center;
}
.clock {
max-height:21px;
padding-bottom:6px;
}
.spns-needed {
font-size:80%;
}
.social {
padding-bottom:9px;
}
p {
font-size:90%;
}
div.talk-info h3 {
text-align:left;
}
div.talk {
padding-top:15px;
}
</style>
<!-- <link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet"> -->
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="bootstrap/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="bootstrap/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="bootstrap/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="bootstrap/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="bootstrap/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="bootstrap/ico/favicon.png">
</head>
<body>
<div class="container-narrow">
<div class="container">
<div class="jumbotron">
<h1>JSFest</h1>
<p class="lead">A JavaScript celebration, presented by the Community.</p>
</div>
</div>
<div class="container dates">
<h1>Main Events</h1>
</div>
<div class="container speakers-row">
<br/>
<div class="row-fluid">
<h2 style="padding-bottom:20px">March 9th, Evolution of Experience</h2>
<div class="talk">
<div id="brianloveswords" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/b3898d14200a393d1410d663758b6edb?d=https%3A%2F%2Fidenticons.github.com%2Fc3c849780e0fa022b48c01a2514ed747.png&r=x&s=420"></img>
<h3><a href="http://github.com/brianloveswords">Brian Brennan</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Building a pirate radio station with WebRTC</h3>
<p class="talk-desc">Do you remember pirate radio? No, ok, that's cool, you can just watch <a href="http://www.youtube.com/watch?v=ZRD_MoqomKE">this film from 1990</a> to find out how awesome it was.</p>
<p>Brian "Saber" Brennan is going to bring back the essence of pirate ratio with WebRTC, the latest Peer-to-Peer web technology. This is one of the few talks in the history of JavaScript guaranteed to <em>literally</em> rock.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="emkay" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/cb1bf19df48b9ff749fb4f71bed7e8eb?d=https%3A%2F%2Fidenticons.github.com%2F17fafe5f6ce2f1904eb09d2e80a4cbf6.png&r=x&s=420"></img>
<h3><a href="http://github.com/emkay">Michael Matuzak</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Taking over the NES with JavaScript</h3>
<p class="talk-desc">The 8-bit classic that started the home video game revolution, now hackable with JavaScript. Learn how to write text to the screen, load sprites and more.</p>
<p class="talk-desc">Of course, Michael will present this talk on NES hardware using a Power Glove.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="foldi" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/95b860900b64b35aa97507413a878b6c?d=https%3A%2F%2Fidenticons.github.com%2Fd5dbe514e384085f53c8deb10b8bf36f.png&r=x&s=420"></img>
<h3><a href="https://github.com/foldi">Vince Allen</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Pixel Art On The Wall</h3>
<p class="talk-desc">Pixel art is a matrix of items arranged via a pre-determined design. The items themselves need only a 2D location, 2D scale and color. Even the earliest web browsers could handle such a task.</p>
<p class="talk-desc">Vince will tell you his story, show you his code, and give you a chance to experience his art.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="anvaka" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://2.gravatar.com/avatar/91bad8ceeec43ae303790f8fe238164b?d=https%3A%2F%2Fidenticons.github.com%2F6b448f77db4c5808a6c4916772e8fe52.png&r=x&s=420"></img>
<h3><a href="https://github.com/anvaka">Andrei Kashcha</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Evolution of a Graph</h3>
<p class="talk-desc"><a href="https://github.com/anvaka/VivaGraphJS">vivagraph.js</a> is one the fastest graphing libraries available. This talk will walk through the process of creating vivagraph while learning JavaScript by re-inventing the wheel.</p>
<!-- <p class="talk-desc"></p> -->
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="substack" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://2.gravatar.com/avatar/d4a2f12ceae3b7f211b661576d22bfb9?d=https%3A%2F%2Fidenticons.github.com%2F84adf1b967670705085ec0ca0cf48e31.png&r=x&s=420"></img>
<h3><a href="https://github.com/substack">Substack</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Testing for the Browser and the Server</h3>
<p class="talk-desc">Node.js legend Substack will walk through what it takes to write simple tests that run in node.js and in the browser.</p>
<!-- <p class="talk-desc"></p> -->
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/4c1f7ad0026132535ddc7af0a48ca8be?d=https%3A%2F%2Fidenticons.github.com%2Fe2f6a73bf5135a7fc2d088aa20273706.png&r=x&s=440"></img>
<h3><a href="https://github.com/maboa">Mark Boas</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Hyperaudio - Weaving Audio into the Fabric of the Web</h3>
<p class="talk-desc">Hyperaudio! What does that even mean? You can't just invent words in a vain attempt to sound cool. Or can you? Hyperaudio is about using words to remix media and that's kinda cool - and it really does exist!</p>
<p class="talk-desc">Mark will talk about his struggle to make Hyperaudio a real thing, on the way we'll be looking at Hyperaudio.js, the API and the Hyperaudio service itself. What happens next is up to you.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://2.gravatar.com/avatar/2893bc1693002e652210b3705f74b5dd?d=https%3A%2F%2Fidenticons.github.com%2F2b4a70dc918fea2c26d42edc6dbadc46.png&r=x&s=420"></img>
<h3><a href="https://github.com/tmpvar">Elijah Insua</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Cut your way to the future</h3>
<p class="talk-desc">Elijah Insua has spent the last few years building a CNC. Well, actually, he's been building several CNCs, from scratch, programming it in node.js, and building new open source tools for drawing and creating cut paths.</p>
<!-- <p class="talk-desc"></p> -->
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="rockbot" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/4724c777bb5f3e6c131a9fa2cf656b44?d=https%3A%2F%2Fidenticons.github.com%2F6cb98afd885c22cb2b3ee2d45bd7734a.png&r=x&s=420"></img>
<h3><a href="https://github.com/rockbot">Raquel Vélez</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Keynote</h3>
<p class="talk-desc">Secret Surprise!</p>
</div>
</div>
<div class="clearfix"></div>
<!-- DAY 2 -->
<div class="clearfix"></div>
<h2 style="padding-bottom:20px">March 10th, Scaling Up and Down</h2>
<div class="talk">
<div id="jlord" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://2.gravatar.com/avatar/e26a281b6bd0c2145e8d0fcc834a56fb?d=https%3A%2F%2Fidenticons.github.com%2Fade5e2465252b6db5f8068257de2c41f.png&s=420"></img>
<h3><a href="https://github.com/jlord/">Jessica Lord</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Sheetsee.js</h3>
<p class="talk-desc">Google Spreadsheets can be an awesome resource for lightweight data driven projects. They even reduce the barrier to getting started and encourage collaboration.</p>
<p class="talk-desc">Sheetsee.js is a library that makes it easy to map, organize and chart your spreadsheet data. Even cooler, Sheetsee projects are perfect for fork-n-go easy-peasiness making new projects a click away.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="vjeux" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://1.gravatar.com/avatar/48a313e2ad9f47036b3a4d073cef3e54?d=https%3A%2F%2Fidenticons.github.com%2F5c99ee955837b8c45a74411faca09f4a.png&r=x&s=420"></img>
<h3><a href="http://github.com/vjeux">Christopher Chedeau</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Understanding React</h3>
<p class="talk-desc">React is a library for building user interfaces developed by Facebook. What sets it apart is its ability to diff and apply large numbers of UI updates in to a minimum number of batched DOM operations.</p>
<p class="talk-desc">Christopher will explain the problems React is designed to solve and take you under the hood to see the techniques employed to solve them.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="raynos" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/d840cb1fb7e828284011cc08f40a1015?d=https%3A%2F%2Fidenticons.github.com%2Fde418baf42bdd628b8c46fbc140098a5.png&r=x&s=420"></img>
<h3><a href="https://github.com/raynos">Jake Verbaten</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3><code style="font-size:70%">require('http')</code> -- The Web Framework</h3>
<p class="talk-desc">How much abstraction do you really need to quick build a webapp? Given all the small modules in npm is node core's <code>http</code> library enough "framework?" Jake Verbaten thinks so.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="isaacs" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://1.gravatar.com/avatar/73a2b24daecb976af81e010b7a3ce3c6?d=https%3A%2F%2Fidenticons.github.com%2F903cc7be42d6fae3ae8c8be791ceeb74.png&r=x&s=440"></img>
<h3><a href="http://github.com/isaacs">Isaac Schlueter</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>NPM Up and Down</h3>
<p class="talk-desc">Node's package manager, npm, is for more than just node.js packages.</p>
<p class="talk-desc">Isaac, author of npm and head of the node.js project, will talk about the design decisions that have made npm easy for newcomers and scalable for large companies like Yahoo and Joyent.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="matthiasak" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/c22d4247268eca3508ac65d55bfb261e?d=https%3A%2F%2Fidenticons.github.com%2Fed73607a07be969c1af504716e5443a4.png&r=x&s=420"></img>
<h3><a href="https://github.com/matthiasak">Matt Keas</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Let's build a 3D engine</h3>
<p class="talk-desc">3D engines are mystical unicorns – but they don't have to be shrouded in mystery. Discover the "DIY" beginners' magic behind 3D so that you can create your own unicorns and rainbows with SVG.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="jkleinsc" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://1.gravatar.com/avatar/010ed710a2ae99fe5fbeee46cff4d94b?d=https%3A%2F%2Fidenticons.github.com%2Fcf4270794bcb4ade65e91e99d0f1aab1.png&r=x&s=420"></img>
<h3><a href="https://github.com/jkleinsc">John Kleinschmidt</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Building Offline First</h3>
<p class="talk-desc">The time has come to build offline first applications. As developers we have no excuse for our applications performing poorly or not at all when a data connection is unavailable. We can build applications that take offline as a primary design consideration. We can provide our users with robust applications regardless of connectivity and we can do it <i>today</i>.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="mikemaccana" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/23fc4556be14017796d38579dd4778ab?d=https%3A%2F%2Fidenticons.github.com%2F62036a5bb8d52913107c581212c4c53e.png&r=x&s=420"></img>
<h3><a href="https://github.com/mikemaccana">Mike MacCana</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Browse Like Xerces, God-King of the Persians</h3>
<p class="talk-desc">Historical fact: 2500 years ago Xerces, the God-King of the Persians, built an empire based entirely on Chrome Extensions. In this talk, we recreate history.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="pchristensen" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/40696bc398dddd8d404db51c437b4a3d?d=https%3A%2F%2Fidenticons.github.com%2Fed659fe659acd7154f94953328f5c96d.png&r=x&s=420"></img>
<h3><a href="https://github.com/pchristensen">Peter Christensen</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>JavaScript Below the Sea</h3>
<p class="talk-desc">Node.js is promoted for using the same language on the server and client, reducing the number of platforms to maintain and encouraging code reuse. The OpenROV project takes this a step further using Javascript to control the hardware of a miniature submersible.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="ianb" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://2.gravatar.com/avatar/cc8334869c9d2a9e603017f2da805eb3?d=https%3A%2F%2Fidenticons.github.com%2F58caf27a48e7930aefd5437298d64a70.png&r=x&s=420"></img>
<h3><a href="https://github.com/ianb">Ian Bicking</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>TogetherJS</h3>
<p class="talk-desc">Ever wanted to add realtime collaboration to your site? <a href="https://togetherjs.com/">TogetherJS</a> is an open source JavaScript library that adds realtime collaboration via WebRTC to any website.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="talk">
<div id="ednapiranha" class="speaker-info col-lg-3 col-md-3 col-sm-3 col-xs-12">
<img class="speaker-pic img-responsive" src="https://0.gravatar.com/avatar/31392c0cfe437f9f2d72d0448e9875ea?d=https%3A%2F%2Fidenticons.github.com%2F30881683e09f96388d33973efff73b86.png&r=x&s=420"></img>
<h3><a href="https://github.com/ednapiranha">Jen Fong-Adwent</a></h3>
</div>
<div class="talk-info col-lg-9 col-md-9 col-sm-9 col-xs-12">
<h3>Keynote</h3>
<p class="talk-desc">Secret Surprise!</p>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="clearfix">
</div>
<hr />
<div class="container">
<p>Refresh this page to see different themes :)</p>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
</body>
</html>