File tree Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,25 @@ This is the demo application that will be built during [Jason Lengtorf][1]'s wor
5
5
[ Future Insights Live] [ 2 ] . It reads photos with the tag #selfie and displays them instantly
6
6
using [ Instagram's API] [ 3 ] and [ Pusher] [ 4 ] .
7
7
8
+
9
+ Copyright and license
10
+ ---------------------
11
+
12
+ Copyright (c) 2013 Jason Lengstorf
13
+
14
+ Licensed under the MIT License (the "License"); you may not use this work
15
+ except in compliance with the License. You may obtain a copy of the License in
16
+ the LICENSE file, or at:
17
+
18
+ http://opensource.org/licenses/mit-license.php
19
+
20
+ Unless required by applicable law or agreed to in writing, software
21
+ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
22
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
23
+ License for the specific language governing permissions and limitations under
24
+ the License.
25
+
26
+
8
27
[ 1 ] : http://github.com/jlengstorf
9
28
[ 2 ] : http://futureinsightslive.com/las-vegas-2013/
10
29
[ 3 ] : http://instagram.com/developer/
Original file line number Diff line number Diff line change 33
33
34
34
<meta charset="utf-8" />
35
35
36
- <title></title>
36
+ <title>Realtime Workshop by Jason Lengstorf — Future Insights Live </title>
37
37
38
38
</head>
39
39
45
45
<li class="loading">No selfies yet… #sadface</li>
46
46
</ul><!--/#selfies-->
47
47
48
+ <footer>
49
+ <p>
50
+ This demo was created by
51
+ <a href="http://www.lengstorf.com/">Jason Lengstorf</a> for use at the
52
+ realtime workshop at Future Insights Live 2013. It is released under the
53
+ MIT License.
54
+ </p>
55
+ </footer>
56
+
48
57
<script src="http://js.pusher.com/2.0/pusher.min.js"></script>
49
58
<script>
50
59
60
+ // Enable pusher logging - don't include this in production
61
+ Pusher.log = function(message) {
62
+ if (window.console && window.console.log) window.console.log(message);
63
+ };
64
+
65
+ // Flash fallback logging - don't include this in production
66
+ WEB_SOCKET_DEBUG = true;
67
+
51
68
var pusher = new Pusher('867d60a8d5de3996dd25'),
52
69
channel = pusher.subscribe('selfies'),
53
70
selfies = document.getElementById('selfies');
You can’t perform that action at this time.
0 commit comments