-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (55 loc) · 2.75 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rubber Ducking as a Service</title>
</head>
<body>
<img id="chevron" class="chevron" src="src/chevron.svg">
<div class="container fill text-center">
<div class="row text-center">
<div class="col-md-12">
<img class="duck" src="src/duck.svg">
</div>
</div>
<div class="row text-center">
<div class="col-md-12">
<h1 id="message">Have you tried using Javascript?</h1>
</div>
</div>
<div class="row">
<div class="col-md-12 twitter">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://bit.ly/1o86zy1" data-text="Finally, a fix for all your quack overflows!" data-size="large" data-count="none">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="col-md-6 col-md-offset-3">
<h3>What is rubber ducking?</h3>
<p>Rubber ducking is the technique of talking to an inanimate object (often a rubber duck) through the flow of a piece of code. This practice often ends abrubtly with an exclamation "Oh, I'm so stupid" and frantic tapping at the keyboard while the duck looks on, impassive.</p>
<h3>Who made it?</h3>
<p><a href="http://www.billytrend.com">I did.</a></p>
<h3>I have a funny quotation.</h3>
<p>Great! Here's the <a href="https://github.com/billytrend/rubber-ducking-as-a-service/">source</a>.</p>
<div class="space"></div>
</div>
</div>
</div>
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="src/style.css">
<link href='//fonts.googleapis.com/css?family=Neucha' rel='stylesheet' type='text/css'>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="src/script.js"></script>
<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-50799720-1', 'billytrend.github.io');
ga('send', 'pageview');
</script>
</body>
</html>