<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>American Butifarra &#187; Video</title> <atom:link href="http://claude.betancourt.us/tag/video/feed/" rel="self" type="application/rss+xml" /><link>http://claude.betancourt.us</link> <description>Claude Betancourt&#039;s Personal Blog</description> <lastBuildDate>Fri, 16 Dec 2011 02:43:25 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>YouTube HD-fier Script</title><link>http://claude.betancourt.us/youtube-hd-fier-greasemonkey-script/</link> <comments>http://claude.betancourt.us/youtube-hd-fier-greasemonkey-script/#comments</comments> <pubDate>Tue, 02 Jun 2009 14:44:33 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[JavaScript]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[Video]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[greasemonkey]]></category> <category><![CDATA[YouTube]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=607</guid> <description><![CDATA[This grease monkey script enables HD, when available, for any links on the YouTube Homepage, My Videos &#038; My Favorites. <a href="http://claude.betancourt.us/youtube-hd-fier-greasemonkey-script/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">I</span> wasn&#8217;t too happy having to click on the HD button of a video in order to view it in high resolution, so I whipped up <a href="http://userscripts.org/scripts/show/50711"><strong>this little grease monkey script</strong></a>. It simply enables HD, when available, for any links on the YouTube Homepage, My Videos &#038; My Favorites.</p><p><span id="more-607"></span></p><p>Feel free to improve it, and leave a comment if you find it useful.</p><p><a href="http://userscripts.org/scripts/show/50711"><strong>Install</strong></a></p><pre class="brush: jscript; title: ; notranslate">
// ==UserScript==
// @name			YouTube HD-fier
// @version			1.0.0
// @namespace		http://claude.betancourt.us/greasemonkey/youtube/hdfier/1.0.0
// @description		Modifies links to enable HD, when available.
// @include			http://www.youtube.com/*
// @license			(CC) Attribution Non-Commercial Share Alike; http://creativecommons.org/licenses/by-nc-sa/3.0/
// ==/UserScript==

// Add jQuery
var GM_jQuery = document.createElement('script');
GM_jQuery.src = 'http://jqueryjs.googlecode.com/files/jquery-1.2.6.pack.js';
GM_jQuery.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_jQuery);

// Wait until jQuery has loaded
function GM_wait() {
    if( typeof unsafeWindow.jQuery == 'undefined' ) {
        window.setTimeout(GM_wait,100);
    } else {
        $ = unsafeWindow.jQuery;
        GM_ready();
    }
}
GM_wait();

// Once document and jQuery are loaded
function GM_ready() {

	var selectors = [
		'.video-short-title a',
		'.video-mini-title a',
		'.clipper a'
	];

	HDify(selectors);

}

function HDify(selectors) {
	try {
		$.each(selectors,function(i,s){
			var l = $(s);
			$.each(l, function(i,a){
				a.href += '&amp;amp;fmt=18';
			});
		});
	} catch(e){}
}
</pre>]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/youtube-hd-fier-greasemonkey-script/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Intro to jQuery by John Resig</title><link>http://claude.betancourt.us/intro-to-jquery-by-john-resig/</link> <comments>http://claude.betancourt.us/intro-to-jquery-by-john-resig/#comments</comments> <pubDate>Wed, 12 Nov 2008 18:07:54 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Framework]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[Presentation]]></category> <category><![CDATA[Screencast]]></category> <category><![CDATA[Video]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=224</guid> <description><![CDATA[Here is John Resig&#8217;s presentation of jQuery from this year&#8217;s The Ajax Experience. Learn how to develop a number of common-case widgets, handle DOM, event, animations and Ajax interactions.]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">H</span>ere is John Resig&#8217;s presentation of jQuery from this year&#8217;s The Ajax Experience. Learn how to develop a number of common-case widgets, handle DOM, event, animations and Ajax interactions.</p><p><span id="more-224"></span></p><div align="center"><embed src="http://services.brightcove.com/services/viewer/federated_f8/1596744118" bgcolor="#FFFFFF" flashVars="videoId=1827940073&#038;playerId=1596744118&#038;viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&#038;servicesURL=http://services.brightcove.com/services&#038;cdnURL=http://admin.brightcove.com&#038;domain=embed&#038;autoStart=false&#038;" base="http://admin.brightcove.com" name="flashObj" width="486" height="412" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></div> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/intro-to-jquery-by-john-resig/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Wii Remote Hacks: Johnny Lee on TED.com</title><link>http://claude.betancourt.us/wii-remote-hacks-johnny-lee-on-tedcom/</link> <comments>http://claude.betancourt.us/wii-remote-hacks-johnny-lee-on-tedcom/#comments</comments> <pubDate>Sat, 12 Apr 2008 12:43:39 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Research]]></category> <category><![CDATA[Creative]]></category> <category><![CDATA[Education]]></category> <category><![CDATA[Video]]></category><guid isPermaLink="false">http://claude.betancourt.us/blog/?p=65</guid> <description><![CDATA[Researcher Johnny Lee became a YouTube star with his demo of Wii Remote hacks &#8212; bending the low-cost game piece to power an interactive whiteboard, a multitouch surface, a head-mounted display. A multi-ovation demo from TED2008. (Recorded March 2008 in &#8230; <a href="http://claude.betancourt.us/wii-remote-hacks-johnny-lee-on-tedcom/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">R</span>esearcher Johnny Lee became a YouTube star with his demo of Wii Remote hacks &#8212; bending the low-cost game piece to power an interactive whiteboard, a multitouch surface, a head-mounted display.</p><p>A multi-ovation demo from TED2008. (Recorded March 2008 in Monterey, California. Duration: 05:40.)</p><p align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="432" height="285" id="VE_Player" align="middle"><param name="movie" value="http://static.videoegg.com/ted2/flash/loader.swf"></param><param NAME="FlashVars" VALUE="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/JOHNNYLEE-2008_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true"></param><param name="quality" value="high"></param><param name="allowScriptAccess" value="always"></param><param name="bgcolor" value="#FFFFFF"></param><param name="scale" value="noscale"></param><param name="wmode" value="window"><embed src="http://static.videoegg.com/ted2/flash/loader.swf" FlashVars="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/JOHNNYLEE-2008_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true" quality="high" allowScriptAccess="always" bgcolor="#FFFFFF" scale="noscale" wmode="window" width="432" height="285" name="VE_Player" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></param></object></p> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/wii-remote-hacks-johnny-lee-on-tedcom/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>J.J. Abrams Mistery Box</title><link>http://claude.betancourt.us/jj-abrams-mistery-box/</link> <comments>http://claude.betancourt.us/jj-abrams-mistery-box/#comments</comments> <pubDate>Sun, 13 Jan 2008 01:33:54 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Presentation]]></category> <category><![CDATA[Video]]></category> <category><![CDATA[Creative]]></category> <category><![CDATA[Film]]></category> <category><![CDATA[Magic]]></category><guid isPermaLink="false">http://claude.betancourt.us/blog/?p=116</guid> <description><![CDATA[In this 18 minute video J.J. Abrams, the producer of TV shows Alias and Lost and the upcoming film Cloverfield, speaks to a TED audience.]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">I</span>n this 18 minute video J.J. Abrams, the producer of TV shows Alias and Lost and the upcoming film Cloverfield, speaks to a <a href="http://ted.com/">TED</a> audience.</p><div align="center"><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/embed/JJAbrams_2007-embed_high.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/JJAbrams-2007.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=205" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/JJAbrams_2007-embed_high.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/JJAbrams-2007.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=205"></embed></object></div> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/jj-abrams-mistery-box/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Douglas Crockford: &#8220;The State of Ajax&#8221; Talk</title><link>http://claude.betancourt.us/yahoo-user-interface-blog/</link> <comments>http://claude.betancourt.us/yahoo-user-interface-blog/#comments</comments> <pubDate>Mon, 05 Nov 2007 21:06:18 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Presentation]]></category> <category><![CDATA[Ajax]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[Video]]></category><guid isPermaLink="false">http://claude.betancourt.us/blog/?p=102</guid> <description><![CDATA[Watch this video of Douglas Crockford&#8217;s &#8220;The State of Ajax&#8221; talk on Yahoo Developer Network theater.]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">W</span>atch this video of <a href="http://yuiblog.com/blog/2007/11/06/video-crockford/">Douglas Crockford&#8217;s &#8220;The State of Ajax&#8221; talk</a> on Yahoo Developer Network theater.</p> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/yahoo-user-interface-blog/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: claude.betancourt.us @ 2012-02-07 14:28:54 by W3 Total Cache -->
