This repository has been archived by the owner on Sep 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.php
executable file
·128 lines (103 loc) · 3.93 KB
/
about.php
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
<!doctype html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html lang="en" class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>TwitterJelly</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="css/style.css?v=2">
<link rel="stylesheet" href="css/custom.css">
<script src="js/libs/modernizr-1.6.min.js"></script>
</head>
<body>
<div id="fb-root"></div>
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=137222446375584";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div id="container" class="container_16">
<?php include("header.html"); ?>
<div class="grid_2 spacer"></div>
<div id="main" class="grid_12 main centercol">
<div class="vert-spacer"></div>
<div id="lead">
<h1 class="lead">Meet the TwitterJelly team</h1>
</div>
<div class="content">
<div align="center">
<iframe width="420" height="315" src="http://www.youtube.com/embed/AfpyoGFJNNE" frameborder="0" allowfullscreen></iframe>
</div>
<div>
<h2>Who are we?</h2>
<p>
Hi! We're a group of software engineers based out of Seattle, WA.
We love machine learning, web design, and working on fun projects. Our other hobbies
include listening to Ween, hanging out with our favorite cats Lorie and Gus, and skiing down the streets during the snowpocalypse.
</p>
<h2>How does TwitterJelly work?</h2>
<p>
Our matches are based on an algorithm called <a href="http://en.wikipedia.org/wiki/Tfidf">TFIDF</a> that is used to identify meaningful words in a document.
We've processed the tweets of hundreds of celebrities to identify their most important terms. Once you enter your username, we run the same algorithm on a recent
selection of tweets. With your list of key terms, we then compare your key terms to those of celebrities and then find your best matches along with tweets
that showcase your use of those special terms.
</p>
<div>
</div>
</div>
</div>
</div>
<!-- end of #container -->
<!--
<footer> </footer>
-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
<script>
!window.jQuery
&& document
.write(unescape('%3Cscript src="js/libs/jquery-1.4.2.js"%3E%3C/script%3E'))
</script>
<script src="js/libs/pure_min.js"></script>
<!-- TODO: Concat and minify -->
<script src="js/plugins.js"></script>
<script src="js/animation.js"></script>
<script src="js/images.js"></script>
<script src="js/script.js"> </script>
<!--[if lt IE 7 ]>
<script src="js/libs/dd_belatedpng.js"></script>
<script> DD_belatedPNG.fix('img, .png_bg'); </script>
<![endif]-->
<!-- yui profiler and profileviewer - remove for production -->
<script src="js/profiling/yahoo-profiling.min.js"></script>
<script src="js/profiling/config.js"></script>
<!-- end profiling code -->
<!-- change the UA-XXXXX-X to be your site's ID -->
<script>
var _gaq = [ [ '_setAccount', 'UA-26514236-2' ], [ '_trackPageview' ] ];
(function(d, t) {
var g = d.createElement(t), s = d.getElementsByTagName(t)[0];
g.async = true;
g.src = ('https:' == location.protocol ? 'https://ssl'
: 'http://www')
+ '.google-analytics.com/ga.js';
s.parentNode.insertBefore(g, s);
})(document, 'script');
</script>
</body>
</html>