onebox 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/.rubocop.yml +476 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +92 -0
- data/Rakefile +22 -0
- data/lib/onebox.rb +33 -0
- data/lib/onebox/engine.rb +93 -0
- data/lib/onebox/engine/amazon_onebox.rb +25 -0
- data/lib/onebox/engine/bliptv_onebox.rb +26 -0
- data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
- data/lib/onebox/engine/college_humor_onebox.rb +26 -0
- data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
- data/lib/onebox/engine/dotsub_onebox.rb +25 -0
- data/lib/onebox/engine/example_onebox.rb +25 -0
- data/lib/onebox/engine/flickr_onebox.rb +25 -0
- data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
- data/lib/onebox/engine/html.rb +11 -0
- data/lib/onebox/engine/hulu_onebox.rb +26 -0
- data/lib/onebox/engine/nfb_onebox.rb +25 -0
- data/lib/onebox/engine/open_graph.rb +11 -0
- data/lib/onebox/engine/qik_onebox.rb +23 -0
- data/lib/onebox/engine/revision3_onebox.rb +26 -0
- data/lib/onebox/engine/slideshare_onebox.rb +25 -0
- data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
- data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
- data/lib/onebox/engine/ted_onebox.rb +25 -0
- data/lib/onebox/engine/viddler_onebox.rb +26 -0
- data/lib/onebox/engine/vimeo_onebox.rb +26 -0
- data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
- data/lib/onebox/engine/yfrog_onebox.rb +25 -0
- data/lib/onebox/matcher.rb +13 -0
- data/lib/onebox/preview.rb +31 -0
- data/lib/onebox/version.rb +3 -0
- data/onebox.gemspec +36 -0
- data/spec/fixtures/amazon.response +3098 -0
- data/spec/fixtures/android.response +138 -0
- data/spec/fixtures/apple.response +391 -0
- data/spec/fixtures/bliptv.response +724 -0
- data/spec/fixtures/clickthrough.response +1472 -0
- data/spec/fixtures/clikthrough.response +1472 -0
- data/spec/fixtures/collegehumor.response +1272 -0
- data/spec/fixtures/dailymotion.response +575 -0
- data/spec/fixtures/dotsub.response +1257 -0
- data/spec/fixtures/example.response +50 -0
- data/spec/fixtures/flickr.response +1292 -0
- data/spec/fixtures/funnyordie.response +2010 -0
- data/spec/fixtures/gist.response +282 -0
- data/spec/fixtures/github_blob.response +706 -0
- data/spec/fixtures/github_commit.response +881 -0
- data/spec/fixtures/github_pullrequest.response +1619 -0
- data/spec/fixtures/hulu.response +339 -0
- data/spec/fixtures/image.response +0 -0
- data/spec/fixtures/imgur.response +892 -0
- data/spec/fixtures/kinomap.response +299 -0
- data/spec/fixtures/nfb.response +810 -0
- data/spec/fixtures/opengraph.response +27 -0
- data/spec/fixtures/qik.response +371 -0
- data/spec/fixtures/revision3.response +985 -0
- data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
- data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
- data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
- data/spec/fixtures/slideshare.response +1745 -0
- data/spec/fixtures/soundcloud.response +1409 -0
- data/spec/fixtures/stackexchange.response +1889 -0
- data/spec/fixtures/ted.response +1341 -0
- data/spec/fixtures/twitter.response +1712 -0
- data/spec/fixtures/viddler.response +442 -0
- data/spec/fixtures/video.response +0 -0
- data/spec/fixtures/vimeo.response +571 -0
- data/spec/fixtures/wikipedia.response +1236 -0
- data/spec/fixtures/wikipedia_redirected.response +899 -0
- data/spec/fixtures/yfrog.response +464 -0
- data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
- data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
- data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
- data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
- data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
- data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
- data/spec/lib/onebox/engine/example_spec.rb +18 -0
- data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
- data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
- data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
- data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
- data/spec/lib/onebox/engine/qik_spec.rb +35 -0
- data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
- data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
- data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
- data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
- data/spec/lib/onebox/engine/ted_spec.rb +30 -0
- data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
- data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
- data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
- data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
- data/spec/lib/onebox/engine_spec.rb +78 -0
- data/spec/lib/onebox/matcher_spec.rb +20 -0
- data/spec/lib/onebox/preview_spec.rb +21 -0
- data/spec/lib/onebox_spec.rb +49 -0
- data/spec/spec_helper.rb +26 -0
- data/spec/support/html_spec_helper.rb +17 -0
- data/templates/amazon.handlebars +9 -0
- data/templates/bliptv.handlebars +10 -0
- data/templates/clickthrough.handlebars +8 -0
- data/templates/clikthrough.handlebars +8 -0
- data/templates/collegehumor.handlebars +9 -0
- data/templates/dailymotion.handlebars +9 -0
- data/templates/dotsub.handlebars +9 -0
- data/templates/flickr.handlebars +8 -0
- data/templates/funnyordie.handlebars +9 -0
- data/templates/hulu.handlebars +9 -0
- data/templates/nfb.handlebars +8 -0
- data/templates/qik.handlebars +7 -0
- data/templates/revision3.handlebars +9 -0
- data/templates/slideshare.handlebars +8 -0
- data/templates/soundcloud.handlebars +9 -0
- data/templates/stackexchange.handlebars +7 -0
- data/templates/ted.handlebars +8 -0
- data/templates/viddler.handlebars +9 -0
- data/templates/vimeo.handlebars +9 -0
- data/templates/wikipedia.handlebars +8 -0
- data/templates/yfrog.handlebars +8 -0
- metadata +447 -0
@@ -0,0 +1,724 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<!--[if IE 7]> <html class="ie7" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <![endif]-->
|
4
|
+
<!--[if IE 8]> <html class="ie8" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <![endif]-->
|
5
|
+
<!--[if IE 9]> <html class="ie9" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <![endif]-->
|
6
|
+
<!--[if gt IE 9]><!--> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml" class="standards"> <!--<![endif]-->
|
7
|
+
<head prefix="og: http://ogp.me/ns# bliptvviewer: http://ogp.me/ns/apps/bliptvviewer#">
|
8
|
+
<!--startup timer-->
|
9
|
+
<script type="text/javascript">var _BLIP_loadtimer=(new Date()).getTime()</script>
|
10
|
+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
|
11
|
+
<!-- rss-->
|
12
|
+
<link rel="alternate" type="application/rss+xml" title="RSS Feed for SC2L Week 3 - Axiom vs Acer G6" href="/rss/flash/6623829" />
|
13
|
+
<link rel="stylesheet" type="text/css" href="http://a.blip.tv/skin/smooth/common.a97ff71.css" />
|
14
|
+
<link rel="stylesheet" type="text/css" href="http://a.blip.tv/skin/smooth/episodePage.a97ff71.css" />
|
15
|
+
<link rel="stylesheet" type="text/css" href="http://a.blip.tv/skin/smooth/endcap.a97ff71.css" />
|
16
|
+
<!-- Meta Tags -->
|
17
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
18
|
+
<title>Watch SC2L Week 3 - Axiom vs Acer G6 | Day[9]® Episodes | Videogames Videos | Blip</title>
|
19
|
+
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
|
20
|
+
<meta name="description" content="Acer and Axiom go head to head in week 3!"/>
|
21
|
+
<meta name="keywords" content="Day[9]®"/>
|
22
|
+
<meta name="keywords" content="Day[9]® blip"/>
|
23
|
+
<meta name="keywords" content="day[9]"/>
|
24
|
+
<meta name="keywords" content="sean plott"/>
|
25
|
+
<meta name="keywords" content="gaming"/>
|
26
|
+
<meta name="twitter:card" value="summary"/>
|
27
|
+
<meta name="twitter:site" value="@blip"/>
|
28
|
+
<meta name="twitter:creator" value="@day9tv"/>
|
29
|
+
<meta name="twitter:image" value="http://4.i.blip.tv/g?src=Striderdoom-SC2LWeek3AxiomVsAcerG6178-416.jpg&w=120&h=120&fmt=png&bc=FFFFFF&ac=0"/>
|
30
|
+
<!-- FB Open Graph Tags -->
|
31
|
+
<meta property="fb:app_id" content="136482209767138"/>
|
32
|
+
<meta property="og:type" content="video.episode"/>
|
33
|
+
<meta property="og:title" content="SC2L Week 3 - Axiom vs Acer G6"/>
|
34
|
+
<meta property="og:image" content="http://a.images.blip.tv/Striderdoom-SC2LWeek3AxiomVsAcerG6178-416.jpg"/>
|
35
|
+
<meta property="og:description" content="Acer and Axiom go head to head in week 3!"/>
|
36
|
+
<meta property="og:video" content="http://blip.tv/day9tv/sc2l-week-3-axiom-vs-acer-g6-6623829" />
|
37
|
+
<meta property="og:video:type" content="text/html" />
|
38
|
+
<!--
|
39
|
+
<meta property="bliptvviewer:category" content="Videogames"/>
|
40
|
+
<meta property="bliptvviewer:show_page" content="http://blip.tv/day9tv"/>
|
41
|
+
-->
|
42
|
+
<meta property="video:release_date" content="2013-08-01"/>
|
43
|
+
<meta property="video:duration" content="1692"/>
|
44
|
+
<meta property="video:series" content="http://blip.tv/day9tv"/>
|
45
|
+
<meta property="og:url" content="http://blip.tv/day9tv/sc2l-week-3-axiom-vs-acer-g6-6623829" />
|
46
|
+
<meta property="og:site_name" content="Blip"/>
|
47
|
+
<meta property="video:tag" content="web series episode" />
|
48
|
+
<meta property="video:tag" content="Videogames" />
|
49
|
+
<meta name="robots" content="all" />
|
50
|
+
<link rel="apple-touch-icon" href="http://a.blip.tv/images/apple-touch-icon-iphone.png" />
|
51
|
+
<link rel="apple-touch-icon" sizes="72x72" href="http://a.blip.tv/images/apple-touch-icon-ipad.png" />
|
52
|
+
<link rel="apple-touch-icon" sizes="114x114" href="http://a.blip.tv/images/apple-touch-icon-iphone4.png" />
|
53
|
+
<meta name="apple-itunes-app" content="app-id=580646903">
|
54
|
+
<meta name="google-play-app" content="app-id=com.blip.android.blip">
|
55
|
+
<meta name="fb_channel_url" value="http://a.blip.tv/channel.html" />
|
56
|
+
<script type="text/javascript" src="http://a.blip.tv/scripts/BLIP/DestinationAnalytics.a97ff71.js"></script>
|
57
|
+
<script type="text/javascript">
|
58
|
+
var _gaq = _gaq || [];
|
59
|
+
_gaq.push(['_setAccount', 'UA-713068-1']);
|
60
|
+
_Analytics.addVariables({"analytics":[[1,"template","episode",3],[2,"series name","Day[9]®",3],[3,"QR","9",3]]});
|
61
|
+
_gaq.push(['_trackPageview']);
|
62
|
+
(function() {
|
63
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
64
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
65
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
66
|
+
})();
|
67
|
+
</script>
|
68
|
+
<script type="text/javascript" src="http://a.blip.tv/scripts/BLIP/DestinationCommon.a97ff71.js"></script>
|
69
|
+
<script type="text/javascript" src="http://a.blip.tv/scripts/BLIP/DestinationEpisode.a97ff71.js"></script>
|
70
|
+
<script>
|
71
|
+
var loaded = (new Date()).valueOf();
|
72
|
+
</script>
|
73
|
+
</head>
|
74
|
+
<body>
|
75
|
+
<div id="Header">
|
76
|
+
<div id="HeaderContents">
|
77
|
+
<a href="/" class="Logo" alt="Blip" title="Blip Home" data-link-text="blip logo"></a>
|
78
|
+
<div class="Tagline"><p><a href="/discover"><span>Discover Your Blip</span>.</a> What do you want to watch?</p></div>
|
79
|
+
<div class="ButtonContainer">
|
80
|
+
<a href="#" class="CategoryMenuButton MastheadButton"><span>Categories <i class="base">V</i><i class="active">x</i></span></a>
|
81
|
+
<a href="#" class="SearchButton MastheadButton"><i>q</i></a>
|
82
|
+
</div>
|
83
|
+
<form class="SearchHeader clearfix" method="get" action="/search">
|
84
|
+
<input type="text" name="q" class="SearchTerms" autocomplete="off" placeholder="Search for series, episodes"/>
|
85
|
+
<div class="AutoComplete">
|
86
|
+
<div class="SearchResults"></div>
|
87
|
+
</div>
|
88
|
+
</form>
|
89
|
+
<div class="LogIn FacebookLogin">
|
90
|
+
<a id="" class="FacebookLoginButton" href="#">Love Blip?<br />Make it yours.</a>
|
91
|
+
</div>
|
92
|
+
<a href="/latest" alt="latest"><img src="http://a.blip.tv/images/blank.gif"/></a>
|
93
|
+
</div> <!-- end #HeaderContents -->
|
94
|
+
<div class="Nav">
|
95
|
+
<div class="NavContents">
|
96
|
+
<a href="http://videos.thepetcollective.tv?utm_source=blip_site&utm_medium=referral&utm_campaign=tpc_site_20130722" data-link-text="the pet collective" class="tpc_MainNavLink" target="_blank">Pets</a>
|
97
|
+
<a href="/animation-and-comics-videos" data-link-text="animation">Animation</a>
|
98
|
+
<a href="/comedy-videos" data-link-text="comedy">Comedy</a>
|
99
|
+
<a href="/drama-videos" data-link-text="drama">Drama</a>
|
100
|
+
<a href="/celebrity-entertainment-news-videos" data-link-text="entertainment">Entertainment</a>
|
101
|
+
<a href="/food-drink-and-travel-videos" data-link-text="food">Food</a>
|
102
|
+
<a href="/music-videos" data-link-text="music">Music</a>
|
103
|
+
<a href="/videogames-videos" data-link-text="video games">Video Games</a>
|
104
|
+
<div class="MoreNavContainer HoverDropDown">
|
105
|
+
<a href="#" class="MoreNav HeaderCaption">More</a>
|
106
|
+
<div class="extendedNavContents">
|
107
|
+
<a href="/apps-tech-and-gadgets-videos" data-link-text="tech gadgets">Tech & Gadgets</a>
|
108
|
+
<a href="/fashion-and-beauty-videos" data-link-text="fashion">Fashion</a>
|
109
|
+
<a href="/health-and-fitness-videos" data-link-text="health">Health</a>
|
110
|
+
<a href="/home-and-family-videos" data-link-text="home family">Home & Family</a>
|
111
|
+
<a href="/news-money-and-politics-videos" data-link-text="news politics">News & Politics</a>
|
112
|
+
<a href="/sports-and-cars-videos" data-link-text="sports cars">Sports & Cars</a>
|
113
|
+
<a href="/talk-and-interview-shows-videos" data-link-text="interview">Interview</a>
|
114
|
+
<a href="/diy-how-to-videos" data-link-text="how to">How To</a>
|
115
|
+
<a href="/education-documentary-videos" data-link-text="learning">Learning</a>
|
116
|
+
</div>
|
117
|
+
</div>
|
118
|
+
</div>
|
119
|
+
<div class="smallScreenLinks">
|
120
|
+
<div class="Column">
|
121
|
+
<a href="/animation-and-comics-videos" data-link-text="animation">Animation</a>
|
122
|
+
<a href="/comedy-videos" data-link-text="comedy">Comedy</a>
|
123
|
+
<a href="/drama-videos" data-link-text="drama">Drama</a>
|
124
|
+
<a href="/celebrity-entertainment-news-videos" data-link-text="entertainment">Entertainment</a>
|
125
|
+
<a href="/food-drink-and-travel-videos" data-link-text="food">Food</a>
|
126
|
+
<a href="/music-videos" data-link-text="music">Music</a>
|
127
|
+
<a href="/apps-tech-and-gadgets-videos" data-link-text="tech gadgets">Tech & Gadgets</a>
|
128
|
+
<a href="/videogames-videos" data-link-text="video games">Video Games</a>
|
129
|
+
<a href="/education-documentary-videos" data-link-text="learning">Learning</a>
|
130
|
+
</div>
|
131
|
+
<div class="Column">
|
132
|
+
<a href="http://videos.thepetcollective.tv?utm_source=blip_site&utm_medium=referral&utm_campaign=tpc_site_20130722" data-link-text="the pet collective" class="tpc_MainNavLink" target="_blank">Pets</a>
|
133
|
+
<a href="/fashion-and-beauty-videos" data-link-text="fashion">Fashion</a>
|
134
|
+
<a href="/health-and-fitness-videos" data-link-text="health">Health</a>
|
135
|
+
<a href="/home-and-family-videos" data-link-text="home family">Home & Family</a>
|
136
|
+
<a href="/news-money-and-politics-videos" data-link-text="news politics">News & Politics</a>
|
137
|
+
<a href="/sports-and-cars-videos" data-link-text="sports cars">Sports & Cars</a>
|
138
|
+
<a href="/talk-and-interview-shows-videos" data-link-text="interview">Interview</a>
|
139
|
+
<a href="/diy-how-to-videos" data-link-text="how to">How To</a>
|
140
|
+
</div>
|
141
|
+
</div>
|
142
|
+
</div>
|
143
|
+
</div>
|
144
|
+
<style type="text/css">
|
145
|
+
@import url("http://a.blip.tv/skin/smooth/compiled/modal.a97ff71.css");
|
146
|
+
</style>
|
147
|
+
<div id="PageInfo"
|
148
|
+
data-posts-id="6623829"
|
149
|
+
data-users-id="570336"
|
150
|
+
data-ad-sales-categories="Videogames,Men"
|
151
|
+
data-channels-list="Videogames"
|
152
|
+
data-content-categories="video gaming"
|
153
|
+
data-core-value="9"
|
154
|
+
data-admin-rating="2"
|
155
|
+
data-lock="0"
|
156
|
+
data-build="a97ff71"
|
157
|
+
data-static-files="http://a.blip.tv"
|
158
|
+
data-episode-title="SC2L Week 3 - Axiom vs Acer G6"
|
159
|
+
data-show-name="Day[9]®"
|
160
|
+
style="display:none !important;">
|
161
|
+
</div>
|
162
|
+
<div class="Episode" id="Content" itemscope itemtype="http://schema.org/TVEpisode">
|
163
|
+
<link itemprop="url" content="http://blip.tv/day9tv/sc2l-week-3-axiom-vs-acer-g6-6623829" />
|
164
|
+
<meta itemprop="contentRating" content="TV-UN" />
|
165
|
+
<meta itemprop="genre" content="Videogames" />
|
166
|
+
<meta itemprop="inLanguage" content="English" />
|
167
|
+
<meta itemprop="datePublished" content="2013-08-01" />
|
168
|
+
<meta itemprop="keywords" content="day[9],sean plott,gaming,starcraft ii,sc2l,acer,axiom,d-link,incontrol" />
|
169
|
+
<link itemprop="partOfTVSeries" href="http://blip.tv/day9tv" />
|
170
|
+
<div class="Theater" >
|
171
|
+
<div class="TheaterContent">
|
172
|
+
<div class="EpisodePlayer">
|
173
|
+
<iframe id="PlayeriFrame"
|
174
|
+
frameborder="0"
|
175
|
+
scrolling="no"
|
176
|
+
marginheight="0"
|
177
|
+
marginwidth="0"
|
178
|
+
height="100%"
|
179
|
+
width="100%"
|
180
|
+
style="height:100%;*height:565px;width:100%;display:block;"
|
181
|
+
src="http://blip.tv/players/standard?no_wrap=1&id=6623829&autoplay=true&onsite=true&&no_postroll=true&data_url=http://blip.tv/players/xplayer&utm_campaign=&swf_location=http://a.blip.tv/scripts/flash/stratos.swf&site_url=http://blip.tv"
|
182
|
+
allowfullscreen></iframe>
|
183
|
+
<div class="StandardEpisodeEndcap " data-src="/episode/get_endcap?users_id=570336&posts_id=6623829&no_wrap=1&esi=1&"></div>
|
184
|
+
</div>
|
185
|
+
<div class="TheaterDescription">
|
186
|
+
<div class="DescContainer">
|
187
|
+
<h3>SC2L Week 3 - Axiom vs Acer G6</h3>
|
188
|
+
<p>Acer and Axiom go head to head in week 3!</p>
|
189
|
+
</div>
|
190
|
+
<div class="SocialMedia">
|
191
|
+
<div class="SharingOptions">
|
192
|
+
<div class="Heading">
|
193
|
+
<span class="Label">Share</span>
|
194
|
+
</div>
|
195
|
+
<div class="Sharing">
|
196
|
+
<div class="fb-like" data-send="false" data-layout="button_count" data-colorscheme="dark" data-show-faces="false"></div>
|
197
|
+
<a id="TumblrShare" data-href="//tumblr.com/share/video?embed=%3Ciframe%20src%3D%22http%3A%2F%2Fblip.tv%2Fplay%2Fhdljg5SlOQI.x%3Fp%3D1%22%20width%3D%22720%22%20height%3D%22433%22%20frameborder%3D%220%22%20allowfullscreen%3E%3C%2Fiframe%3E%3Cembed%20type%3D%22application%2Fx-shockwave-flash%22%20src%3D%22http%3A%2F%2Fa.blip.tv%2Fapi.swf%23hdljg5SlOQI%22%20style%3D%22display%3Anone%22%3E%3C%2Fembed%3E&caption=%3Ca%20href%3D%22http%3A%2F%2Fblip.tv%2Fday9tv%2Fsc2l-week-3-axiom-vs-acer-g6-6623829%22%3EDay%5B9%5D%C2%AE%3A%20SC2L%20Week%203%20-%20Axiom%20vs%20Acer%20G6%3C%2Fa%3E"><i>T</i>Tumblr</a>
|
198
|
+
<a id="TwitterShare" data-href="//twitter.com/intent/tweet?url=http%3A%2F%2Fblip.tv%2Fday9tv%2Fsc2l-week-3-axiom-vs-acer-g6-6623829"><i>t</i>Tweet</a>
|
199
|
+
</div>
|
200
|
+
<div class="Copying">
|
201
|
+
<div id="PermalinkCopyLayout">
|
202
|
+
<a class="CopyLink"
|
203
|
+
id="PermalinkCopy"
|
204
|
+
data-analytics="embed"
|
205
|
+
data-notetext="The embed code has been copied to your clipboard."
|
206
|
+
data-cliptext="<iframe src="http://blip.tv/play/hdljg5SlOQI.x?p=1" width="720" height="433" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#hdljg5SlOQI" style="display:none"></embed>">Copy Embed</a>
|
207
|
+
<div class="ZClip"></div>
|
208
|
+
</div>
|
209
|
+
<div id="EmbedCopyLayout">
|
210
|
+
<a class="CopyLink"
|
211
|
+
id="EmbedCopy"
|
212
|
+
data-analytics="link"
|
213
|
+
data-notetext="The episode URL has been copied to your clipboard."
|
214
|
+
data-cliptext="http://blip.tv/day9tv/sc2l-week-3-axiom-vs-acer-g6-6623829">Copy Link</a>
|
215
|
+
<div class="ZClip"></div>
|
216
|
+
</div>
|
217
|
+
</div>
|
218
|
+
</div>
|
219
|
+
</div>
|
220
|
+
</div>
|
221
|
+
</div>
|
222
|
+
</div> <!-- end Theater -->
|
223
|
+
<div class="EpisodeListWrapper">
|
224
|
+
<div class="EpisodesUpNext">
|
225
|
+
<div data-placement="more from series">
|
226
|
+
<h3>More episodes of
|
227
|
+
<a
|
228
|
+
data-link-text="Day[9]®"
|
229
|
+
href="http://blip.tv/day9tv">
|
230
|
+
Day[9]®
|
231
|
+
</a>
|
232
|
+
</h3>
|
233
|
+
<div class="Episodes" data-analytics-context="SameShow">
|
234
|
+
<div class="Episode First" data-position="0">
|
235
|
+
<div class="MyBlipEpisodeCardWrap"
|
236
|
+
data-episode-title="Day[9] Daily #1 - Flash vs Hero"
|
237
|
+
data-series-title="Day[9]®"
|
238
|
+
data-channels-list="Videogames"
|
239
|
+
data-linkname="myblip episode card for Day[9] Daily #1 - Flash vs Hero">
|
240
|
+
<img
|
241
|
+
class="Thumb"
|
242
|
+
src="http://5.i.blip.tv/g?src=Striderdoom-Day9Daily1FlashVsHero193-243.jpg&w=230&h=128&fmt=jpg"
|
243
|
+
alt="Day[9]® - Day[9] Daily #1 - Flash vs Hero" />
|
244
|
+
<div class="MyBlipEpisodeCard">
|
245
|
+
<a href="/day9tv/day-9-daily-1-flash-vs-hero-3515432" class="EpisodeCardLink">
|
246
|
+
<span class="PlayIcon">
|
247
|
+
<i>p</i>
|
248
|
+
</span>
|
249
|
+
<div class="Description">
|
250
|
+
My very first Day[9] Daily!
|
251
|
+
</div>
|
252
|
+
<div class="Titles">
|
253
|
+
<span class="EpisodeTitle">Day[9] Daily #1 - Flash vs Hero</span>
|
254
|
+
<span class="ShowTitle">Day[9]®</span>
|
255
|
+
</div>
|
256
|
+
</a>
|
257
|
+
<div class="ActionTab" data-episode-id="3515432">
|
258
|
+
<ul class="ActionTabMenu">
|
259
|
+
<li class="Love">
|
260
|
+
<span class="ActionLabel">Love</span>
|
261
|
+
<i>l</i>
|
262
|
+
<i class="X">x</i>
|
263
|
+
</li>
|
264
|
+
<li class="SocialActions" rel="ShareModal" data-modal-href="/episode/get_share_actions/3515432?no_wrap=1">
|
265
|
+
<span class="ActionLabel">Share</span>
|
266
|
+
<i>s</i>
|
267
|
+
</li>
|
268
|
+
</ul>
|
269
|
+
</div>
|
270
|
+
</div>
|
271
|
+
</div>
|
272
|
+
<div class="UpNext">Playing Next</div>
|
273
|
+
</div>
|
274
|
+
<div class="Episode" data-position="1">
|
275
|
+
<div class="MyBlipEpisodeCardWrap"
|
276
|
+
data-episode-title="Day[9] Daily #2 - Stork vs ForGG"
|
277
|
+
data-series-title="Day[9]®"
|
278
|
+
data-channels-list="Videogames"
|
279
|
+
data-linkname="myblip episode card for Day[9] Daily #2 - Stork vs ForGG">
|
280
|
+
<img
|
281
|
+
class="Thumb"
|
282
|
+
src="http://8.i.blip.tv/g?src=Striderdoom-D9D0002Stork_ForGG220-654.jpg&w=230&h=128&fmt=jpg"
|
283
|
+
alt="Day[9]® - Day[9] Daily #2 - Stork vs ForGG" />
|
284
|
+
<div class="MyBlipEpisodeCard">
|
285
|
+
<a href="/day9tv/day-9-daily-2-stork-vs-forgg-3517308" class="EpisodeCardLink">
|
286
|
+
<span class="PlayIcon">
|
287
|
+
<i>p</i>
|
288
|
+
</span>
|
289
|
+
<div class="Description">
|
290
|
+
A cool macro TvP from two of the finest. Stork is known for his phenomenally solid play, and ForGG for his timing pushes.
|
291
|
+
</div>
|
292
|
+
<div class="Titles">
|
293
|
+
<span class="EpisodeTitle">Day[9] Daily #2 - Stork vs ForGG</span>
|
294
|
+
<span class="ShowTitle">Day[9]®</span>
|
295
|
+
</div>
|
296
|
+
</a>
|
297
|
+
<div class="ActionTab" data-episode-id="3517308">
|
298
|
+
<ul class="ActionTabMenu">
|
299
|
+
<li class="Love">
|
300
|
+
<span class="ActionLabel">Love</span>
|
301
|
+
<i>l</i>
|
302
|
+
<i class="X">x</i>
|
303
|
+
</li>
|
304
|
+
<li class="SocialActions" rel="ShareModal" data-modal-href="/episode/get_share_actions/3517308?no_wrap=1">
|
305
|
+
<span class="ActionLabel">Share</span>
|
306
|
+
<i>s</i>
|
307
|
+
</li>
|
308
|
+
</ul>
|
309
|
+
</div>
|
310
|
+
</div>
|
311
|
+
</div>
|
312
|
+
</div>
|
313
|
+
<div class="Episode" data-position="2">
|
314
|
+
<div class="MyBlipEpisodeCardWrap"
|
315
|
+
data-episode-title="Day[9] Daily #3 - Flash vs Firebathero"
|
316
|
+
data-series-title="Day[9]®"
|
317
|
+
data-channels-list="Videogames"
|
318
|
+
data-linkname="myblip episode card for Day[9] Daily #3 - Flash vs Firebathero">
|
319
|
+
<img
|
320
|
+
class="Thumb"
|
321
|
+
src="http://4.i.blip.tv/g?src=Striderdoom-D9D0003Flash_FBH852-762.jpg&w=230&h=128&fmt=jpg"
|
322
|
+
alt="Day[9]® - Day[9] Daily #3 - Flash vs Firebathero" />
|
323
|
+
<div class="MyBlipEpisodeCard">
|
324
|
+
<a href="/day9tv/day-9-daily-3-flash-vs-firebathero-3517274" class="EpisodeCardLink">
|
325
|
+
<span class="PlayIcon">
|
326
|
+
<i>p</i>
|
327
|
+
</span>
|
328
|
+
<div class="Description">
|
329
|
+
An incredible game between two of the finest TvT players ever to live!
|
330
|
+
</div>
|
331
|
+
<div class="Titles">
|
332
|
+
<span class="EpisodeTitle">Day[9] Daily #3 - Flash vs Firebathero</span>
|
333
|
+
<span class="ShowTitle">Day[9]®</span>
|
334
|
+
</div>
|
335
|
+
</a>
|
336
|
+
<div class="ActionTab" data-episode-id="3517274">
|
337
|
+
<ul class="ActionTabMenu">
|
338
|
+
<li class="Love">
|
339
|
+
<span class="ActionLabel">Love</span>
|
340
|
+
<i>l</i>
|
341
|
+
<i class="X">x</i>
|
342
|
+
</li>
|
343
|
+
<li class="SocialActions" rel="ShareModal" data-modal-href="/episode/get_share_actions/3517274?no_wrap=1">
|
344
|
+
<span class="ActionLabel">Share</span>
|
345
|
+
<i>s</i>
|
346
|
+
</li>
|
347
|
+
</ul>
|
348
|
+
</div>
|
349
|
+
</div>
|
350
|
+
</div>
|
351
|
+
</div>
|
352
|
+
<div class="Episode" data-position="3">
|
353
|
+
<div class="MyBlipEpisodeCardWrap"
|
354
|
+
data-episode-title="Day[9] Daily #4 - Bisu vs Jaedong 1"
|
355
|
+
data-series-title="Day[9]®"
|
356
|
+
data-channels-list="Videogames"
|
357
|
+
data-linkname="myblip episode card for Day[9] Daily #4 - Bisu vs Jaedong 1">
|
358
|
+
<img
|
359
|
+
class="Thumb"
|
360
|
+
src="http://1.i.blip.tv/g?src=Striderdoom-D9D0004Bisu_Jaedong1727-347.jpg&w=230&h=128&fmt=jpg"
|
361
|
+
alt="Day[9]® - Day[9] Daily #4 - Bisu vs Jaedong 1" />
|
362
|
+
<div class="MyBlipEpisodeCard">
|
363
|
+
<a href="/day9tv/day-9-daily-4-bisu-vs-jaedong-1-3517306" class="EpisodeCardLink">
|
364
|
+
<span class="PlayIcon">
|
365
|
+
<i>p</i>
|
366
|
+
</span>
|
367
|
+
<div class="Description">
|
368
|
+
Rarely do you get to see two players play against one another in two different individual matches, let alone on the same ma...
|
369
|
+
</div>
|
370
|
+
<div class="Titles">
|
371
|
+
<span class="EpisodeTitle">Day[9] Daily #4 - Bisu vs Jaedong 1</span>
|
372
|
+
<span class="ShowTitle">Day[9]®</span>
|
373
|
+
</div>
|
374
|
+
</a>
|
375
|
+
<div class="ActionTab" data-episode-id="3517306">
|
376
|
+
<ul class="ActionTabMenu">
|
377
|
+
<li class="Love">
|
378
|
+
<span class="ActionLabel">Love</span>
|
379
|
+
<i>l</i>
|
380
|
+
<i class="X">x</i>
|
381
|
+
</li>
|
382
|
+
<li class="SocialActions" rel="ShareModal" data-modal-href="/episode/get_share_actions/3517306?no_wrap=1">
|
383
|
+
<span class="ActionLabel">Share</span>
|
384
|
+
<i>s</i>
|
385
|
+
</li>
|
386
|
+
</ul>
|
387
|
+
</div>
|
388
|
+
</div>
|
389
|
+
</div>
|
390
|
+
</div>
|
391
|
+
</div>
|
392
|
+
</div>
|
393
|
+
<div data-placement="more from category">
|
394
|
+
<h3>Featured episodes in
|
395
|
+
<a href="/videogames-videos" data-link-text="Videogames">
|
396
|
+
Videogames
|
397
|
+
</a>
|
398
|
+
</h3>
|
399
|
+
<div class="Episodes" data-analytics-context="SameChannel">
|
400
|
+
<div class="Episode" data-position="0">
|
401
|
+
<div class="MyBlipEpisodeCardWrap"
|
402
|
+
data-episode-title="Video Game Confessions: Simon Belmont"
|
403
|
+
data-series-title="Video Game Confessions"
|
404
|
+
data-channels-list="Comedy,Videogames"
|
405
|
+
data-linkname="myblip episode card for Video Game Confessions: Simon Belmont">
|
406
|
+
<img
|
407
|
+
class="Thumb"
|
408
|
+
src="http://9.i.blip.tv/g?src=Tgwtgvcons-VideoGameConfessionsSimonBelmont805.jpg&w=230&h=128&fmt=jpg"
|
409
|
+
alt="Video Game Confessions - Video Game Confessions: Simon Belmont" />
|
410
|
+
<div class="MyBlipEpisodeCard">
|
411
|
+
<a href="/video-game-confessions/video-game-confessions-simon-belmont-6552444" class="EpisodeCardLink">
|
412
|
+
<span class="PlayIcon">
|
413
|
+
<i>p</i>
|
414
|
+
</span>
|
415
|
+
<div class="Description">
|
416
|
+
How dead ARE vampires?
|
417
|
+
</div>
|
418
|
+
<div class="Titles">
|
419
|
+
<span class="EpisodeTitle">Video Game Confessions: Simon Belmont</span>
|
420
|
+
<span class="ShowTitle">Video Game Confessions</span>
|
421
|
+
</div>
|
422
|
+
</a>
|
423
|
+
<div class="ActionTab" data-episode-id="6552444">
|
424
|
+
<ul class="ActionTabMenu">
|
425
|
+
<li class="Love">
|
426
|
+
<span class="ActionLabel">Love</span>
|
427
|
+
<i>l</i>
|
428
|
+
<i class="X">x</i>
|
429
|
+
</li>
|
430
|
+
<li class="SocialActions" rel="ShareModal" data-modal-href="/episode/get_share_actions/6552444?no_wrap=1">
|
431
|
+
<span class="ActionLabel">Share</span>
|
432
|
+
<i>s</i>
|
433
|
+
</li>
|
434
|
+
</ul>
|
435
|
+
</div>
|
436
|
+
</div>
|
437
|
+
</div>
|
438
|
+
</div>
|
439
|
+
<div class="Episode" data-position="1">
|
440
|
+
<div class="MyBlipEpisodeCardWrap"
|
441
|
+
data-episode-title="Power Rangers (20th Anniversary Overview) - Basics, Fun Facts and More - Geek Crash Course"
|
442
|
+
data-series-title="Geek Crash Course"
|
443
|
+
data-channels-list="Animation & Comics,Entertainment,Videogames"
|
444
|
+
data-linkname="myblip episode card for Power Rangers (20th Anniversary Overview) - Basics, Fun Facts and More - Geek Crash Course">
|
445
|
+
<img
|
446
|
+
class="Thumb"
|
447
|
+
src="http://1.i.blip.tv/g?src=GeekCrashCourse-PowerRangers20thAnniversaryOverviewBasicsNeedToKnowFun645.png&w=230&h=128&fmt=jpg"
|
448
|
+
alt="Geek Crash Course - Power Rangers (20th Anniversary Overview) - Basics, Fun Facts and More - Geek Crash Course" />
|
449
|
+
<div class="MyBlipEpisodeCard">
|
450
|
+
<a href="/geekcrashcourse/power-rangers-20th-anniversary-overview-basics-need-to-know-fun-facts-and-more-geek-crash-course-6620214" class="EpisodeCardLink">
|
451
|
+
<span class="PlayIcon">
|
452
|
+
<i>p</i>
|
453
|
+
</span>
|
454
|
+
<div class="Description">
|
455
|
+
With the 20th Anniversary of Power Rangers, it's morphin' time for a Geek Crash Course on a much-requested set of spandex-c...
|
456
|
+
</div>
|
457
|
+
<div class="Titles">
|
458
|
+
<span class="EpisodeTitle">Power Rangers (20th Anniversary Overview) - Basics, Fun Facts and More - Geek Crash Course</span>
|
459
|
+
<span class="ShowTitle">Geek Crash Course</span>
|
460
|
+
</div>
|
461
|
+
</a>
|
462
|
+
<div class="ActionTab" data-episode-id="6620214">
|
463
|
+
<ul class="ActionTabMenu">
|
464
|
+
<li class="Love">
|
465
|
+
<span class="ActionLabel">Love</span>
|
466
|
+
<i>l</i>
|
467
|
+
<i class="X">x</i>
|
468
|
+
</li>
|
469
|
+
<li class="SocialActions" rel="ShareModal" data-modal-href="/episode/get_share_actions/6620214?no_wrap=1">
|
470
|
+
<span class="ActionLabel">Share</span>
|
471
|
+
<i>s</i>
|
472
|
+
</li>
|
473
|
+
</ul>
|
474
|
+
</div>
|
475
|
+
</div>
|
476
|
+
</div>
|
477
|
+
</div>
|
478
|
+
<div class="Episode" data-position="2">
|
479
|
+
<div class="MyBlipEpisodeCardWrap"
|
480
|
+
data-episode-title="FamiComplex Video Reviews - Make My Video"
|
481
|
+
data-series-title="Famicomplex TV"
|
482
|
+
data-channels-list="Videogames"
|
483
|
+
data-linkname="myblip episode card for FamiComplex Video Reviews - Make My Video">
|
484
|
+
<img
|
485
|
+
class="Thumb"
|
486
|
+
src="http://5.i.blip.tv/g?src=Famicomplex-FamiComplexVideoReviewsMakeMyVideo697.jpg&w=230&h=128&fmt=jpg"
|
487
|
+
alt="Famicomplex TV - FamiComplex Video Reviews - Make My Video" />
|
488
|
+
<div class="MyBlipEpisodeCard">
|
489
|
+
<a href="/famicomplex/famicomplex-video-reviews-make-my-video-6518190" class="EpisodeCardLink">
|
490
|
+
<span class="PlayIcon">
|
491
|
+
<i>p</i>
|
492
|
+
</span>
|
493
|
+
<div class="Description">
|
494
|
+
FamiComplex tackles the Make My Video series for the Sega CD. Spoiler alert: They're absolutely awful. Attributions, as pro...
|
495
|
+
</div>
|
496
|
+
<div class="Titles">
|
497
|
+
<span class="EpisodeTitle">FamiComplex Video Reviews - Make My Video</span>
|
498
|
+
<span class="ShowTitle">Famicomplex TV</span>
|
499
|
+
</div>
|
500
|
+
</a>
|
501
|
+
<div class="ActionTab" data-episode-id="6518190">
|
502
|
+
<ul class="ActionTabMenu">
|
503
|
+
<li class="Love">
|
504
|
+
<span class="ActionLabel">Love</span>
|
505
|
+
<i>l</i>
|
506
|
+
<i class="X">x</i>
|
507
|
+
</li>
|
508
|
+
<li class="SocialActions" rel="ShareModal" data-modal-href="/episode/get_share_actions/6518190?no_wrap=1">
|
509
|
+
<span class="ActionLabel">Share</span>
|
510
|
+
<i>s</i>
|
511
|
+
</li>
|
512
|
+
</ul>
|
513
|
+
</div>
|
514
|
+
</div>
|
515
|
+
</div>
|
516
|
+
</div>
|
517
|
+
<div class="Episode" data-position="3">
|
518
|
+
<div class="MyBlipEpisodeCardWrap"
|
519
|
+
data-episode-title="Meet Paul Sullivan from SCEA with Doc"
|
520
|
+
data-series-title="Urgent Frequency Television"
|
521
|
+
data-channels-list="Videogames"
|
522
|
+
data-linkname="myblip episode card for Meet Paul Sullivan from SCEA with Doc">
|
523
|
+
<img
|
524
|
+
class="Thumb"
|
525
|
+
src="http://3.i.blip.tv/g?src=Urgentfury-22663407.png&w=230&h=128&fmt=jpg"
|
526
|
+
alt="Urgent Frequency Television - Meet Paul Sullivan from SCEA with Doc" />
|
527
|
+
<div class="MyBlipEpisodeCard">
|
528
|
+
<a href="/ufreqtv/meet-paul-sullivan-from-scea-with-doc-6311247" class="EpisodeCardLink">
|
529
|
+
<span class="PlayIcon">
|
530
|
+
<i>p</i>
|
531
|
+
</span>
|
532
|
+
<div class="Description">
|
533
|
+
Recovered from the lost files of E32012, Doc from the Tester season one (@Doc_Gamer) sits down with Paul Sullivan of Sony C...
|
534
|
+
</div>
|
535
|
+
<div class="Titles">
|
536
|
+
<span class="EpisodeTitle">Meet Paul Sullivan from SCEA with Doc</span>
|
537
|
+
<span class="ShowTitle">Urgent Frequency Television</span>
|
538
|
+
</div>
|
539
|
+
</a>
|
540
|
+
<div class="ActionTab" data-episode-id="6311247">
|
541
|
+
<ul class="ActionTabMenu">
|
542
|
+
<li class="Love">
|
543
|
+
<span class="ActionLabel">Love</span>
|
544
|
+
<i>l</i>
|
545
|
+
<i class="X">x</i>
|
546
|
+
</li>
|
547
|
+
<li class="SocialActions" rel="ShareModal" data-modal-href="/episode/get_share_actions/6311247?no_wrap=1">
|
548
|
+
<span class="ActionLabel">Share</span>
|
549
|
+
<i>s</i>
|
550
|
+
</li>
|
551
|
+
</ul>
|
552
|
+
</div>
|
553
|
+
</div>
|
554
|
+
</div>
|
555
|
+
</div>
|
556
|
+
</div>
|
557
|
+
</div>
|
558
|
+
</div>
|
559
|
+
</div>
|
560
|
+
<div class="EpisodeInfoWrapper">
|
561
|
+
<div class="EpisodeInfoContainer">
|
562
|
+
<div class="InfoColumn">
|
563
|
+
<div class="ShowInfoContainer" data-placement="series info" data-series-title="Day[9]®">
|
564
|
+
<div class="ShowInfoPoster">
|
565
|
+
<a href="http://blip.tv/day9tv" class="ShowPosterLink" data-link-text="series poster">
|
566
|
+
<img
|
567
|
+
src="http://7.i.blip.tv/g?src=Striderdoom-poster_image293.png&w=140&h=208&fmt=jpg"
|
568
|
+
alt="Day[9]®" />
|
569
|
+
</a>
|
570
|
+
<a
|
571
|
+
data-show-id="570336"
|
572
|
+
data-show-name="Day[9]®"
|
573
|
+
data-path="day9tv"
|
574
|
+
onclick="this.className = this.className + ' FirstTimeWorking'"
|
575
|
+
class="FollowButton NotFollowing"
|
576
|
+
>
|
577
|
+
<span class="Sub"><i>c</i> Follow</span>
|
578
|
+
<span class="Un"><i>c</i> Following</span>
|
579
|
+
<span class="UnHover"><i>x</i> Unfollow</span>
|
580
|
+
</a>
|
581
|
+
</div>
|
582
|
+
<div class="ShowInfo">
|
583
|
+
<h3>
|
584
|
+
<a href="/show/570336" class="ShowTitleLink" data-link-text="Day[9]®">
|
585
|
+
Day[9]®
|
586
|
+
</a>
|
587
|
+
</h3>
|
588
|
+
<div class="ShowChannel">
|
589
|
+
<a href="/show/570336#EpisodeArchive" data-link-text="episode archive">
|
590
|
+
2810 episodes
|
591
|
+
</a>
|
592
|
+
in
|
593
|
+
<a href="/videogames-videos" data-link-text="Videogames">
|
594
|
+
Videogames
|
595
|
+
</a>
|
596
|
+
</div>
|
597
|
+
<div class="ShowInfoDescription">
|
598
|
+
<p>
|
599
|
+
Professional StarCraft player, shoutcaster, and stand-up comedian Sean Day[9] Plott offers his own whimsical mix of strategy, analysis, humor and life instruction 5 days a week on his live internet television show focused on video games.
|
600
|
+
</p>
|
601
|
+
</div>
|
602
|
+
</div>
|
603
|
+
</div>
|
604
|
+
<div id="fw_showAdBlock">
|
605
|
+
<script src="http://31a2.v.fwmrm.net/ad/g/1?nw=10274&pvrn=12345&csid=videogames-videos&resp=ad;showname=day9tv&postsId=6623829&pagetype=episode;slau=300x250_destination_display&ptgt=s&envp=g_js&slid=fw_showAdBlock&w=300&h=250" language="javascript"> </script>
|
606
|
+
</div>
|
607
|
+
</div>
|
608
|
+
<div id="Comments" class="CommentsColumn">
|
609
|
+
<div class="Comments">
|
610
|
+
<div class="fb-comments"
|
611
|
+
data-num-posts="3"
|
612
|
+
data-href="http://blip.tv/day9tv/sc2l-week-3-axiom-vs-acer-g6-6623829"
|
613
|
+
mobile="false"
|
614
|
+
>
|
615
|
+
</div>
|
616
|
+
</div>
|
617
|
+
</div>
|
618
|
+
</div>
|
619
|
+
</div> <!-- end .EpisodeInfoWrapper -->
|
620
|
+
</div>
|
621
|
+
<div id="FooterWrap">
|
622
|
+
<div id="Footer">
|
623
|
+
<div class="centerList">
|
624
|
+
<ul class="Links">
|
625
|
+
<li><a href="/about" data-link-text="about blip">About Blip</a></li>
|
626
|
+
<li><a href="/people" data-link-text="people">People</a></li>
|
627
|
+
<li><a href="/principles" data-link-text="principles">Principles</a></li>
|
628
|
+
<li><a href="/advertise" data-link-text="advertisers">Advertisers</a></li>
|
629
|
+
<li><a href="http://blog.blip.com" target="_blank" data-link-text="blog">Blog</a></li>
|
630
|
+
<li><a href="/contact" data-link-text="contact">Contact</a></li>
|
631
|
+
<li><a href="/careers" data-link-text="careers">Careers</a></li>
|
632
|
+
<li><a href="http://press.blip.com" target="_blank" data-link-text="press">Press</a></li>
|
633
|
+
<li><a href="/privacy" data-link-text="privacy policy">Privacy Policy</a></li>
|
634
|
+
<li><a href="/copyright" data-link-text="copyright">Copyright</a></li>
|
635
|
+
<li><a href="/terms" data-link-text="terms">Terms</a></li>
|
636
|
+
</ul>
|
637
|
+
</div>
|
638
|
+
<div class="Producers">
|
639
|
+
<div class="title">Blip Producers:</div>
|
640
|
+
<div class="description">Need to access your dashboard?</div>
|
641
|
+
<div class="LoggedOut">
|
642
|
+
<a class="button" href="/users/login" data-link-text="producers logout">Producer Login</a>
|
643
|
+
</div>
|
644
|
+
</div>
|
645
|
+
<div class="Connect">
|
646
|
+
<div class="title">Connect With Us:</div>
|
647
|
+
<div class="description">Get Blip updates</div>
|
648
|
+
<a class="button" alt="Facebook" href="http://facebook.com/blip" target="_blank" data-link-text="facebook"><i>f</i></a>
|
649
|
+
<a class="button twitter" alt="Twitter" href="http://twitter.com/blip" target="_blank" data-link-text="twitter"><i>t</i></a>
|
650
|
+
<a class="button tumblr" alt="Tumblr" href="http://blog.blip.com/" target="_blank" data-link-text="tumblr"><i>T</i></a>
|
651
|
+
</div>
|
652
|
+
<div class="Copyright">
|
653
|
+
<p class="Tagline">Discover the best in original web series.</p>
|
654
|
+
<p class="CopyrightText">© 2013 Blip Networks, Inc. All Rights Reserved.</p>
|
655
|
+
<a href="http://nytm.org/made" data-link-text="made in ny">Made in NY ♥</a>
|
656
|
+
</p>
|
657
|
+
</div> <!-- end #Footer -->
|
658
|
+
</div> <!-- end #FooterWrap -->
|
659
|
+
<!-- Tumblr share code -->
|
660
|
+
<script type="text/javascript" src="http://platform.tumblr.com/v1/share.js"></script>
|
661
|
+
<!-- Begin comScore Tag -->
|
662
|
+
<script>
|
663
|
+
var _comscore = _comscore || [];
|
664
|
+
(function() {
|
665
|
+
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
|
666
|
+
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
|
667
|
+
el.parentNode.insertBefore(s, el);
|
668
|
+
})();
|
669
|
+
</script>
|
670
|
+
<noscript>
|
671
|
+
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6708843&cv=2.0&cj=1" />
|
672
|
+
</noscript>
|
673
|
+
<!-- End comScore Tag -->
|
674
|
+
<!-- Start Quantcast tag -->
|
675
|
+
<script type="text/javascript">
|
676
|
+
_qoptions={
|
677
|
+
qacct:"p-74vRiZ03u2gFw"
|
678
|
+
};
|
679
|
+
</script>
|
680
|
+
<script type="text/javascript" async src="http://edge.quantserve.com/quant.js"></script>
|
681
|
+
<noscript>
|
682
|
+
<img src="http://pixel.quantserve.com/pixel/p-74vRiZ03u2gFw.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>
|
683
|
+
</noscript>
|
684
|
+
<!-- End Quantcast tag -->
|
685
|
+
<!--[if lt IE 9]>
|
686
|
+
<div style="display:none;" id="UnsupportedBrowser"></div>
|
687
|
+
<![endif]-->
|
688
|
+
<script type="text/javascript">
|
689
|
+
var google_conversion_id = 982321131;
|
690
|
+
var google_conversion_label = "FrdCCNWm4gkQ64-01AM";
|
691
|
+
var google_custom_params = window.google_tag_params;
|
692
|
+
var google_remarketing_only = true;
|
693
|
+
</script>
|
694
|
+
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js"></script>
|
695
|
+
<noscript>
|
696
|
+
<div style="display:inline;">
|
697
|
+
<img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/982321131/?value=0&label=FrdCCNWm4gkQ64-01AM&guid=ON&script=0"/>
|
698
|
+
</div>
|
699
|
+
</noscript>
|
700
|
+
<script type="text/javascript">
|
701
|
+
var s_account = "blipprod";
|
702
|
+
</script>
|
703
|
+
<!-- SiteCatalyst code version: H.25.4.
|
704
|
+
Copyright 1996-2013 Adobe, Inc. All Rights Reserved
|
705
|
+
More info available at http://www.omniture.com -->
|
706
|
+
<script language="JavaScript" type="text/javascript" src="/scripts/contrib/s_code.js"></script>
|
707
|
+
<script language="JavaScript" type="text/javascript"><!--
|
708
|
+
/* Conversion Variables */
|
709
|
+
s.events="event1"
|
710
|
+
s[O.EVAR.PAGE_NAME]=O.getPageName();
|
711
|
+
s[O.EVAR.SITE_SECTION]=O.getSiteSection();
|
712
|
+
s[O.EVAR.FACEBOOK_CONNECT_STATUS]=O.getSubscriberStatus();
|
713
|
+
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
|
714
|
+
var s_code=s.t();if(s_code)document.write(s_code)//--></script>
|
715
|
+
<script language="JavaScript" type="text/javascript"><!--
|
716
|
+
if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
|
717
|
+
//--></script>
|
718
|
+
<noscript>
|
719
|
+
<img src="http://blip.d2.sc.omtrdc.net/b/ss/blipprod/1/H.25.4--NS/0" height="1" width="1" border="0" alt="" />
|
720
|
+
</noscript><!--/DO NOT REMOVE/-->
|
721
|
+
<!--/DO NOT REMOVE/-->
|
722
|
+
<!-- End SiteCatalyst code version: H.25.4. -->
|
723
|
+
</body>
|
724
|
+
</html>
|