<?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>Feross &#187; Music</title>
	<atom:link href="http://www.feross.org/category/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.feross.org</link>
	<description>Pure concentrated awesome.</description>
	<lastBuildDate>Thu, 26 Jan 2012 01:04:46 +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>Instant.fm Tech Stack</title>
		<link>http://www.feross.org/instant-fm-tech-stack/</link>
		<comments>http://www.feross.org/instant-fm-tech-stack/#comments</comments>
		<pubDate>Thu, 19 May 2011 18:52:52 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Startups]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=3321</guid>
		<description><![CDATA[I&#8217;ve received a lot of emails asking about the technology stack of Instant.fm, so I thought I&#8217;d share this publicly. First, what features did we want to build? Playlist Creation No login required. Build your playlist on site, or upload a .m3u, .txt, or .pls file from iTunes, Windows Media Player, or WinAmp. Each playlist gets [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve received a lot of emails asking about the technology stack of <a href="http://instant.fm">Instant.fm</a>, so I thought I&#8217;d share this publicly.</p>
<p><span id="more-3321"></span></p>
<h1>First, what features did we want to build?</h1>
<h3>Playlist Creation</h3>
<ul>
<li>No login required.</li>
<li>Build your playlist <strong>on site</strong>, or upload a .m3u, .txt, or .pls file from iTunes, Windows Media Player, or WinAmp.</li>
<li>Each playlist gets a unique, shareable, short URL.</li>
<li>Allow background image uploading. (TODO)</li>
</ul>
<h3>Playlist Editing</h3>
<ul>
<li>Drag and drop to re-order songs.</li>
<li>Buttons to Move To Top, and Kill Song.</li>
<li>Change playlist name/title with an inline edit (no refresh).</li>
</ul>
<h3>Playlist Viewing</h3>
<ul>
<li>Use YouTube as audio source.</li>
<li>Shuffle, repeat, show/hide video.</li>
<li>Suggest songs to be added to playlist. (TODO)</li>
<li>Keyboard shortcuts for power users.</li>
</ul>
<h3>Social Features</h3>
<ul>
<li>Share playlist on Facebook, Twitter.</li>
<li>See what your friends are listening to. (TODO)</li>
</ul>
<h3>Mini-browser</h3>
<ul>
<li>Pane which behaves like an iOS navigation view, with a stack of &#8216;views&#8217;.</li>
<li>Allows searching and browsing artist/album information without stopping the music.</li>
<li>Clicking links doesn&#8217;t cause user&#8217;s browser to leave the page.</li>
<li>Uses fancy animations, which look great.</li>
</ul>
<h3>Non-stop Music</h3>
<ul>
<li>On most music sites, clicking something stops the music (very jarring).</li>
<li>On Instant.fm, everything is AJAX, so nothing stops the music.</li>
<li>Even logging in/out works without a page refresh (the correct playlist edit tools are shown/hidden).</li>
</ul>
<h3>Browser Support</h3>
<ul>
<li>All modern browsers.</li>
<li>Internet Explorer 8. (TODO)</li>
</ul>
<h1>How We Built It</h1>
<h3><a href="http://html5boilerplate.com/">HTML5 Boilerplate</a></h3>
<ul>
<li>Rock-solid default for HTML5 websites.</li>
<li>Build script for minifying and hyper-optimizing JS, CSS, and HTML.</li>
<li>CSS reset, base styles, cross-browser normalization, non-semantic helper classes.</li>
<li>Server side optimization to reduce total page weight.</li>
</ul>
<h3>CSS3</h3>
<ul>
<li>1430 lines of hand-written CSS.</li>
<li>CSS3 <em>hotness</em> (transitions, box-shadow, border-radius, gradient, box-reflect, text-shadow).</li>
<li>Degrades gracefully in older browsers (&#8230;most of the time).</li>
</ul>
<h2>JavaScript Libraries</h2>
<h3><a href="http://jquery.com/">jQuery 1.6</a></h3>
<ul>
<li>The best.</li>
</ul>
<h3><a href="http://jqueryui.com/">jQuery UI 1.8</a></h3>
<ul>
<li>The only feature we used was the excellent &#8220;sortable&#8221; module.</li>
</ul>
<h3><a href="http://www.modernizr.com/">Modernizr</a></h3>
<ul>
<li>HTML5 feature detection in JS and CSS.</li>
<li>HTML5 shiv so semantic elements like &lt;header&gt; and &lt;footer&gt; work in IE.</li>
</ul>
<h3><a href="http://yepnopejs.com/">YepNope</a></h3>
<ul>
<li>Conditional JS resource loader for polyfills.</li>
<li>Asynchronous script loading.</li>
</ul>
<h2>Backend Stuff</h2>
<h3><a href="http://www.tornadoweb.org/">Tornado Web Server</a></h3>
<ul>
<li>Asynchronous non-blocking Python web server.</li>
<li>Modules (tornado.database, tornado.httpserver, tornado.web, tornado.auth, tornado.ioloop).</li>
</ul>
<h3><a href="http://nginx.org/">Nginx web server</a></h3>
<ul>
<li>We run 4 Tornado processes, and use nginx to load balance between them.</li>
</ul>
<h3><a href="http://supervisord.org/">Supervisor</a></h3>
<ul>
<li>Process control system used to daemonize the Tornado server instances.</li>
</ul>
<h3><a href="http://www.sqlalchemy.org/">SQL Alchemy</a></h3>
<ul>
<li>We were doing raw SQL for a while, then we got tired of that and decided to go with an ORM.</li>
</ul>
<h3><a href="http://www.python.org/">Python</a></h3>
<ul>
<li>Server-side image resizing.</li>
<li>Playlist file (.m3u, .txt., .pls) parsing after upload.</li>
</ul>
<h3><a href="http://ant.apache.org/">Apache Ant</a></h3>
<ul>
<li>Custom build script to deploy new code.</li>
<li>Currently, the site goes offline for about 30 seconds whenever we deploy (we think this is acceptable).</li>
</ul>
<h2>Web APIs</h2>
<h3><a href="http://www.last.fm/api">Last.fm API</a></h3>
<ul>
<li>Artist, song, album information (summaries + pictures).</li>
<li>Powers our search results.</li>
<li>Uses <strong>HTML5 Local Storage</strong> to cache search results.</li>
</ul>
<h3><a href="http://developers.facebook.com/docs/reference/api/">Facebook API</a></h3>
<ul>
<li>Facebook Connect.</li>
<li>Social plugins (Like button, Comments widget).</li>
</ul>
<h3><a href="http://code.google.com/apis/youtube/overview.html">YouTube API</a></h3>
<ul>
<li>Search API.</li>
<li>Embedded player JavaScript API.</li>
</ul>
<h2>jQuery Plugins</h2>
<h3><a href="http://api.jquery.com/category/plugins/templates/">jQuery Templates</a></h3>
<ul>
<li>Render data into a template and insert into DOM.</li>
<li>Officially supported plugin.</li>
</ul>
<h3><a href="http://www.bramstein.com/projects/jsizes/">JSizes</a></h3>
<ul>
<li>Adds support for querying and setting additional CSS properties.</li>
<li>Min-width, min-height, max-width, max-height, border-*-width, margin, padding.</li>
</ul>
<h3><a href="http://www.appelsiini.net/projects/jeditable">Jeditable</a></h3>
<ul>
<li>Adds Edit-in-place functionality to forms (no page refresh).</li>
</ul>
<h3>Auto Expanding Text Area</h3>
<ul>
<li>A la Facebook and Quora.</li>
</ul>
<h3><a href="http://colorpowered.com/colorbox/">ColorBox</a></h3>
<ul>
<li>Light-weight, customizable lightbox.</li>
</ul>
<h2>Graphics</h2>
<h3>Helveticons</h3>
<ul>
<li>High quality commercial icon package.</li>
</ul>
<h3>Photoshop</h3>
<ul>
<li>All other images, icons, logo, custom missing album/artist images are ours.</li>
</ul>
<h2>Misc Notes</h2>
<h3>InstantFM.com</h3>
<ul>
<li><strong>.com</strong> TLD redirects to our main <strong>.fm</strong> site, in case users get confused with the .fm extension.</li>
<li>Purchased from a domain squatting company (BuyDomains).</li>
</ul>
<h3><a href="http://git-scm.com/">Git</a></h3>
<ul>
<li>Commit early, commit often.</li>
<li>686 commits so far.</li>
<li>We used <a href="https://github.com/">GitHub</a>.</li>
</ul>
<h1>Conclusion</h1>
<p>As you can see, we built Instant.fm upon a solid foundation of <strong>awesome</strong>. Most of our tools are <a href="http://en.wikipedia.org/wiki/Free_software">free software</a> with great documentation and easily hackable code. <a href="http://www.quora.com/Jake-Becker">Jake</a> and I used a bunch of different tech on this project, since we wanted to try out some new things. Plus, playing with new frameworks and libraries is always fun.</p>
<p>We learned <em><strong>a ton</strong></em> during this project. I hope that this information has helped you. If you found this useful, leave a note in the comments.</p>
<p><h2>Related posts:</h2><ol>
<li><a href='http://www.feross.org/eric-riess-lean-startup-tech-talk/' rel='bookmark' title='Eric Ries&#8217;s Lean Startup &#8211; Tech Talk'>Eric Ries&#8217;s Lean Startup &#8211; Tech Talk</a></li>
</ol></p>2]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/instant-fm-tech-stack/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>San Francisco Symphony Orchestra</title>
		<link>http://www.feross.org/san-francisco-symphony-orchestra-final-fantasy/</link>
		<comments>http://www.feross.org/san-francisco-symphony-orchestra-final-fantasy/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 09:50:38 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Video Games]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=2050</guid>
		<description><![CDATA[Tonight, I listened to the San Francisco Symphony Orchestra play, and wow. What an amazing concert! It was called Distant Worlds: Music from FINAL FANTASY. All the music was composed by the Japanese video game composer Nobuo Uematsu and conducted by Grammy award-winner Arnie Roth. This was my second time attending Distant Worlds (I also [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Tonight, I listened to the San Francisco Symphony Orchestra play, and <em>wow</em>. What an amazing concert! It was called <strong>Distant Worlds: Music from FINAL FANTASY.</strong> All the music was composed by the Japanese video game composer <a href="http://en.wikipedia.org/wiki/Nobuo_Uematsu">Nobuo Uematsu</a> and conducted by Grammy award-winner <a href="http://en.wikipedia.org/wiki/Arnie_Roth">Arnie Roth</a>.</p>
<p style="text-align: left;">This was my second time attending Distant Worlds (I also went last year), and it was even better than I remembered. Nobuo Uematsu was in attendance again, and as expected, the crowd gave him an extremely warm welcome. At the end of the concert, Uematsu got a 4-minute standing ovation from everyone in the Final Fantasy fan-filled hall.</p>
<p><strong>Here&#8217;s my favorite song from their CD:</strong></p>
<p><a href="http://www.feross.org/wp-content/uploads/2010/07/05-Zanarkand-Final-Fantasy-X.mp3">Zanarkand (Final Fantasy X)</a></p>
<p style="text-align: left;"><img class="aligncenter size-large wp-image-2058" title="Final Fantasy Distant Worlds II" src="http://www.feross.org/wp-content/uploads/2010/07/DistantWorldsII550w-540x638.jpg" alt="Final Fantasy Distant Worlds II" width="540" height="638" /></p>
<div style="float: right; margin: 10px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="180" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="bgcolor" value="#ffffff" /><param name="align" value="top" /><param name="flashvars" value="emailPlaylist=artist_345240&amp;asa=true&amp;backgroundcolor=EEEEEE&amp;font_color=000000&amp;posted_by=artist_345240&amp;shuffle=&amp;autoPlay=false" /><param name="src" value="http://cache.reverbnation.com/widgets/swf/28/blog_player.swf" /><param name="wmode" value="opaque" /><param name="allowfullscreen" value="true" /><param name="quality" value="best" /><embed type="application/x-shockwave-flash" width="180" height="300" src="http://cache.reverbnation.com/widgets/swf/28/blog_player.swf" quality="best" allowfullscreen="true" wmode="opaque" flashvars="emailPlaylist=artist_345240&amp;asa=true&amp;backgroundcolor=EEEEEE&amp;font_color=000000&amp;posted_by=artist_345240&amp;shuffle=&amp;autoPlay=false" align="top" bgcolor="#ffffff"></embed></object></div>
<p><strong>Here was the evening&#8217;s setlist:<br />
</strong></p>
<ul>
<li>Opening~Bombing Mission (FINAL FANTASY VII)</li>
<li>Don&#8217;t be Afraid (FINAL FANTASY VIII)</li>
<li>Memoro de la Stono (FINAL FANTASY XI)</li>
<li>Medley 2002 (FINAL FANTASY I-III)</li>
<li>Main Theme of Final Fantasy VII (FINAL FANTASY VII)</li>
<li>Prima Vista Orchestra (FINAL FANTASY IX)</li>
<li>Kiss Me Goodbye (FINAL FANTASY XII)</li>
<li>Zanarkand (FINAL FANTASY X)</li>
<li>FINAL FANTASY series: Main Theme</li>
<li>The Man with the Machine Gun (FINAL FANTASY VIII)</li>
<li>Theme of Love (FINAL FANTASY IV)</li>
<li>JENOVA (FINAL FANTASY VII)</li>
<li>Ronfaure (FINAL FANTASY XI)</li>
<li>FINAL FANTASY XIII medley</li>
<li>FINAL FANTASY XIV medley</li>
<li>Opera &#8220;Maria and Draco&#8221; (FINAL FANTASY VI)</li>
<li>Terra’s Theme (FINAL FANTASY VI)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/san-francisco-symphony-orchestra-final-fantasy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.feross.org/wp-content/uploads/2010/07/05-Zanarkand-Final-Fantasy-X.mp3" length="10893279" type="audio/mpeg" />
		</item>
		<item>
		<title>&#8220;Empty Walls&#8221; by Serj Tankian</title>
		<link>http://www.feross.org/empty-walls-by-serj-tankian/</link>
		<comments>http://www.feross.org/empty-walls-by-serj-tankian/#comments</comments>
		<pubDate>Sat, 29 May 2010 10:55:36 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=1940</guid>
		<description><![CDATA[Beautifully crafted music video.]]></description>
			<content:encoded><![CDATA[<p>Beautifully crafted music video.</p>
<p><object width="600" height="475"><param name="movie" value="http://www.youtube.com/e/VBI_NNeBeXQ"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/VBI_NNeBeXQ" type="application/x-shockwave-flash" width="600" height="475" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/empty-walls-by-serj-tankian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Breathturn by Hammock</title>
		<link>http://www.feross.org/breathturn-by-hammock/</link>
		<comments>http://www.feross.org/breathturn-by-hammock/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 02:10:58 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=1792</guid>
		<description><![CDATA[What a stunningly beautiful music video&#8230; Hammock &#8211; Breathturn from David Altobelli on Vimeo. Related posts: Outside the Box Big Bang Big Boom 2]]></description>
			<content:encoded><![CDATA[<p>What a stunningly beautiful music video&#8230;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="309" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=9369965&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="550" height="309" src="http://vimeo.com/moogaloop.swf?clip_id=9369965&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/9369965">Hammock &#8211; Breathturn</a> from <a href="http://vimeo.com/davidaltobelli">David Altobelli</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><h2>Related posts:</h2><ol>
<li><a href='http://www.feross.org/outside-the-box/' rel='bookmark' title='Outside the Box'>Outside the Box</a></li>
<li><a href='http://www.feross.org/big-bang-big-boom/' rel='bookmark' title='Big Bang Big Boom'>Big Bang Big Boom</a></li>
</ol></p>2]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/breathturn-by-hammock/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Copying Is Not Theft</title>
		<link>http://www.feross.org/copying-is-not-theft/</link>
		<comments>http://www.feross.org/copying-is-not-theft/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 21:31:45 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Copyright]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=1740</guid>
		<description><![CDATA[When artists do work, they should be paid &#8212; no one is debating that. Musicians are paid when they perform at concerts, when they sell discs, and when they compose for someone. Artists are paid when they sell their artwork, when they are commissioned to make art, and when their art appears in art museums. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>When artists do work, they should be paid &#8212; no one is debating that.</strong> Musicians are paid when they perform at concerts, when they sell discs, and when they compose for someone. Artists are paid when they sell their artwork, when they are commissioned to make art, and when their art appears in art museums.</p>
<p>However, artists shouldn&#8217;t chase down and sue every adolescent who copies their work without advance permission. <strong>The job of artists is to create stuff</strong> &#8212; and for that they should be compensated. They should not necessarily be compensated for the <em>distribution</em> of their work, especially when computers and the Internet make it trivial to distribute bits at a near-zero cost.</p>
<p>At the end of the day, artists should be paid when they make stuff. <a href="http://www.mozilla.org">Mozilla</a> is a great example of a company that understands this. Let&#8217;s say that software engineers are artists for the sake of this example (in many ways, <a href="http://www.paulgraham.com/hp.html">we <em>are</em> artists</a>). So, Mozilla engineers get paid when they&#8217;re <em>designing, programming, and submitting patches</em> for Firefox, Thunderbird, and SeaMonkey. Yet, when the time comes for the software to be distributed, Mozilla engineers <strong>are not paid anything</strong>. All Mozilla software is free (as in freedom) and open source, as governed by the <a href="http://www.mozilla.org/MPL/">Mozilla Public License</a>.<span id="more-1740"></span></p>
<p>I can copy Firefox onto a CD, give it to my friend, and he can install Firefox on his computer &#8212; all without permission from or payment to Mozilla. In this model, it&#8217;s the actual act of authoring a new work that is compensated, and not the mere distribution.</p>
<p>Why am I ranting about this? Well, I just <a href="http://questioncopyright.org/minute_memes/copying_is_not_theft">stumbled upon</a> an awesome little song by <strong>Nina Paley</strong> about <em>copying</em> being different from <em>theft</em> which made me think about the differences between authoring something (a creative process) and distributing it (a very non-creative process).</p>
<p>Here&#8217;s the song:</p>
<h2>Nina Paley singing &#8220;Copying isn&#8217;t theft&#8221;</h2>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/gTyWS-tuoWk"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/gTyWS-tuoWk" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>And there&#8217;s a cute little cartoon that goes along with it.</p>
<h2>The original animated short</h2>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/djVaJN0f0VQ"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/djVaJN0f0VQ" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Unsurprisingly, there have been a ton of people who have <a href="http://www.feross.org/tag/remix/">remixed</a> this cartoon, adding their own creativity to the original author&#8217;s work to create something new and different. This is an awesome example of the good that can come from the <strong>freedom to remix copyrighted works</strong> (although in this case, Nina released her work under a Creative Commons license).</p>
<h2>Punk remix</h2>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/coFRLYZPvDI"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/coFRLYZPvDI" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>Jazz remix</h2>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/GU7axyrHWDQ"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/GU7axyrHWDQ" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>Piano arrangement</h2>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/Rx5ThHINfYg"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/Rx5ThHINfYg" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>8-bit remix</h2>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/O3bmP5MOwaI"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/O3bmP5MOwaI" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>Ragtime version</h2>
<p><object width="600" height="475"><param name="movie" value="http://www.youtube.com/e/H-_uxRPBydc"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/H-_uxRPBydc" type="application/x-shockwave-flash" width="600" height="475" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>In french!</h2>
<p><object width="600" height="475"><param name="movie" value="http://www.youtube.com/e/SRA8YWGe3Sk"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/SRA8YWGe3Sk" type="application/x-shockwave-flash" width="600" height="475" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>Indian remix</h2>
<p><a href="../wp-content/uploads/2010/03/subhi-gurpreet-copying-is-not-theft.mp3">Subhi   &amp; Gurpreet&#8217;s version of &#8220;Copying is not theft&#8221;</a></p>
<p><span style="color: #ff0000;"><strong>UPDATE:</strong></span> I found another cool version of the song:</p>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/IeTybKL1pM4"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/IeTybKL1pM4" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/copying-is-not-theft/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>MC Frontalot comes to Stanford!</title>
		<link>http://www.feross.org/mc-frontalot/</link>
		<comments>http://www.feross.org/mc-frontalot/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 08:04:49 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Famous People]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Stanford]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=1647</guid>
		<description><![CDATA[Last Tuesday, I got to hang out with &#8220;the world&#8217;s 579th greatest rapper,&#8221; MC Frontalot, before and after he performed at a Stanford concert! He is best-known for coining the term nerdcore and basically defining the whole nerdcore hip-hop musical genre. As you can tell by picture above, I dressed appropriately for the occasion. When [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1650" class="wp-caption aligncenter" style="width: 550px"><img class="size-large wp-image-1650" title="Nerdcore! Aww yeah!" src="http://www.feross.org/wp-content/uploads/2010/02/DSC04907-e1266652749816-540x336.jpg" alt="Nerdcore! Aww yeah!" width="540" height="336" /><p class="wp-caption-text">Nerdcore! Aww yeah!</p></div>
<p>Last Tuesday, I got to hang out with &#8220;the world&#8217;s 579th greatest rapper,&#8221; <a href="http://en.wikipedia.org/wiki/MC_Frontalot"><strong>MC Frontalot</strong></a>, before and after he performed at a Stanford concert! He is best-known for coining the term <a href="http://en.wikipedia.org/wiki/Nerdcore_hip_hop">nerdcore</a> and basically defining the whole <em>nerdcore hip-hop</em> musical genre. As you can tell by picture above, I dressed appropriately for the occasion. <img src='http://www.feross.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> <span id="more-1647"></span></p>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/4nigRT2KmCE"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/4nigRT2KmCE" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>When a visiting Stanford graduate student contacted me with his plans to host an <strong>MC Frontalot</strong> concert at <strong>Stanford</strong>, I was ecstatic! I pledged $300 on  behalf of the <a title="Stanford Association for Computing Machinery" href="http://stanfordacm.com/">Stanford  ACM</a> to help pay for the concert costs (MC Frontalot&#8217;s price was very reasonable). <strong>Nerdcore culture is computer science related, <em>right?</em></strong></p>
<p>A bunch of other  Stanford clubs also made contributions, including the IEEE, GSPB, CCRMA, Audio Engineering  Society, and Hip Hop Congress. <strong><em><br />
</em></strong></p>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/Wmx6Q0YLH8A"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/Wmx6Q0YLH8A" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>

<a href='http://www.feross.org/mc-frontalot/dsc04906/' title='Me and MC Frontalot'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2010/02/DSC04906-150x150.jpg" class="attachment-thumbnail" alt="Me and MC Frontalot" title="Me and MC Frontalot" /></a>
<a href='http://www.feross.org/mc-frontalot/mc_frontalot_pax07d_view-620x1472/' title='MC Frontalot Stanford Poster'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2010/02/mc_frontalot_pax07d_view-620x1472-150x150.jpg" class="attachment-thumbnail" alt="MC Frontalot Stanford Poster" title="MC Frontalot Stanford Poster" /></a>
<a href='http://www.feross.org/mc-frontalot/dsc04903/' title='MC Frontalot rapping at Stanford!'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2010/02/DSC04903-150x150.jpg" class="attachment-thumbnail" alt="MC Frontalot rapping at Stanford!" title="MC Frontalot rapping at Stanford!" /></a>
<a href='http://www.feross.org/mc-frontalot/dsc04897/' title='MC Frontalot taping up his shoe at the beginning of the concert'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2010/02/DSC04897-150x150.jpg" class="attachment-thumbnail" alt="MC Frontalot taping up his shoe at the beginning of the concert" title="MC Frontalot taping up his shoe at the beginning of the concert" /></a>
<a href='http://www.feross.org/mc-frontalot/dsc04904/' title='MC Frontalot doing his thing'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2010/02/DSC04904-150x150.jpg" class="attachment-thumbnail" alt="MC Frontalot doing his thing" title="MC Frontalot doing his thing" /></a>
<a href='http://www.feross.org/mc-frontalot/dsc04907/' title='Nerdcore! Aww yeah!'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2010/02/DSC04907-e1266652749816-150x150.jpg" class="attachment-thumbnail" alt="Nerdcore! Aww yeah!" title="Nerdcore! Aww yeah!" /></a>

<p>&#8220;MC Frontalot is the nerdcorest of the core.&#8221; Just a sampling:</p>
<blockquote><p>We deliver the hits that give the kids with the spectacles spectacular fits!<br />
I seen one nerd foam at the mouth in his glee.<br />
(It was me, in the mirror, rhyming, brushing my teeth.)<br />
And now the heezy we’s off don’t babble 300 baud.<br />
I get no error while compiling my rhyme.</p></blockquote>
<p><object width="600" height="363"><param name="movie" value="http://www.youtube.com/e/z8rqdEahBos"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/z8rqdEahBos" type="application/x-shockwave-flash" width="600" height="363" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><h2>Related posts:</h2><ol>
<li><a href='http://www.feross.org/immortal-technique-comes-to-stanford/' rel='bookmark' title='Immortal Technique Comes to Stanford'>Immortal Technique Comes to Stanford</a></li>
<li><a href='http://www.feross.org/dragonforce-concert/' rel='bookmark' title='DragonForce Concert!'>DragonForce Concert!</a></li>
</ol></p>2]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/mc-frontalot/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Immortal Technique Comes to Stanford</title>
		<link>http://www.feross.org/immortal-technique-comes-to-stanford/</link>
		<comments>http://www.feross.org/immortal-technique-comes-to-stanford/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 08:22:03 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Famous People]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Stanford]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=1466</guid>
		<description><![CDATA[Second famous rapper I&#8217;ve met this week: Immortal Technique &#8212; most famous for his political activism and political rap music. This guys&#8217;s a real rapper (unlike Chamillionaire, who is a commercial hip-hop artist sellout). Immortal Technique is legit &#8212; he&#8217;s turned down half-million dollar offers to sign to major music labels like Sony and Def [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1467" class="wp-caption aligncenter" style="width: 550px"><img class="size-large wp-image-1467   " title="Getting Immortal Technique's autograph for my brother." src="http://www.feross.org/wp-content/uploads/2009/11/DSC04654-540x405.jpg" alt="Getting Immortal Technique's autograph for my brother." width="540" height="405" /><p class="wp-caption-text">Getting Immortal Technique&#39;s autograph for my brother.</p></div>
<div id="attachment_1468" class="wp-caption alignright" style="width: 187px"><a href="http://www.feross.org/wp-content/uploads/2009/11/l_7f9e1c4f8d0ebcfbfefdc0c2356d1e20.jpg"><img class="size-medium wp-image-1468 " title="Immortal Technique" src="http://www.feross.org/wp-content/uploads/2009/11/l_7f9e1c4f8d0ebcfbfefdc0c2356d1e20-177x250.jpg" alt="Immortal Technique" width="177" height="250" /></a><p class="wp-caption-text">Immortal Technique</p></div>
<p>Second famous rapper I&#8217;ve met this week: <a href="http://en.wikipedia.org/wiki/Immortal_Technique"><strong>Immortal Technique</strong></a> &#8212; most famous for his <strong>political activism</strong> and <strong>political rap music</strong>. This guys&#8217;s a <em><strong>real</strong></em> <a href="http://en.wikipedia.org/wiki/Rapper">rapper</a> (unlike <strong><a href="http://www.feross.org/ridin-dirty-at-stanford/">Chamillionaire</a></strong>, who is a commercial hip-hop <span style="text-decoration: line-through;">artist</span> sellout).</p>
<p><strong>Immortal Technique</strong> is legit &#8212; he&#8217;s turned down <em>half-million dollar </em>offers to sign to major music labels like <strong>Sony</strong> and <strong>Def Jam</strong> because he doesn&#8217;t want to lose control over the content of his music. He&#8217;s often been criticized for the content of his music (listen to some and you&#8217;ll see why), but there&#8217;s more than a grain of truth to what he raps about.</p>
<p>I don&#8217;t have time right now to write a long blog post (I have 2 CS assignments due soon, 1 test on Monday, and 20 CS assignments to grade), so I&#8217;ll leave it at that. But, I encourage you to take a look at Technique if you haven&#8217;t heard of him before &#8212; he&#8217;s quite interesting.</p>
<p><h2>Related posts:</h2><ol>
<li><a href='http://www.feross.org/mc-frontalot/' rel='bookmark' title='MC Frontalot comes to Stanford!'>MC Frontalot comes to Stanford!</a></li>
<li><a href='http://www.feross.org/microsoft-ceo-steve-ballmer-is-coming-to-stanford/' rel='bookmark' title='Microsoft CEO, Steve Ballmer, is coming to Stanford'>Microsoft CEO, Steve Ballmer, is coming to Stanford</a></li>
</ol></p>2]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/immortal-technique-comes-to-stanford/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ridin&#8217; Dirty with Chamillionare &amp; Quincy Jones III</title>
		<link>http://www.feross.org/ridin-dirty-at-stanford/</link>
		<comments>http://www.feross.org/ridin-dirty-at-stanford/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 03:14:20 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Famous People]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Stanford]]></category>
		<category><![CDATA[Startups]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=1433</guid>
		<description><![CDATA[I just saw Chamillionaire and Quincy Jones III talk about entrepreneurship at Stanford! Chamillionaire is most famous for his single Ridin&#8217; Dirty and the Weird Al parody that followed it. Unfortunately, he didn&#8217;t rap for us &#8212; instead, he gave us a bit of hustlin advice. Ahhhh YEEEAH&#8230; My favorite part of the event was [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1437" class="wp-caption aligncenter" style="width: 550px"><img class="size-large wp-image-1437  " title="Ridin' Dirty with Chamillionaire" src="http://www.feross.org/wp-content/uploads/2009/11/DSC04650-540x405.jpg" alt="Ridin' Dirty with Chamillionaire" width="540" height="405" /><p class="wp-caption-text">Ridin&#39; Dirty with Chamillionaire</p></div>
<p>I just saw <strong>Chamillionaire</strong> and <strong>Quincy Jones III </strong>talk about entrepreneurship at <strong>Stanford</strong>!</p>
<p><strong>Chamillionaire</strong> is most famous for his single <strong><a href="http://www.youtube.com/watch?v=P8-UiXotuXE">Ridin&#8217; Dirty</a></strong> and the Weird Al <a href="http://www.youtube.com/watch?v=-xEzGIuY7kw">parody</a> that followed it. Unfortunately, he didn&#8217;t rap for us &#8212; instead, he gave us a bit of hustlin advice. Ahhhh YEEEAH&#8230;</p>
<p>My favorite part of the event was when Stanford president <a href="http://www.stanford.edu/dept/president/biography/">John Hennessey</a> asked the audience &#8220;How can we change the world?&#8221; and someone in the audience yelled <em><strong>&#8220;By ridin&#8217; dirty!&#8221;</strong></em> Anonymity for the win. <img src='http://www.feross.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /><br />
<span id="more-1433"></span><br />

<a href='http://www.feross.org/ridin-dirty-at-stanford/dsc04649/' title='Chamillionaire getting his award for speaking at ETL'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2009/11/DSC04649-150x150.jpg" class="attachment-thumbnail" alt="Chamillionaire getting his award for speaking at ETL" title="Chamillionaire getting his award for speaking at ETL" /></a>
<a href='http://www.feross.org/ridin-dirty-at-stanford/dsc04648/' title='Chamillionaire talked to a Stanford student&#039;s younger brother to tell him to &quot;stay in school.&quot;'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2009/11/DSC04648-150x150.jpg" class="attachment-thumbnail" alt="Chamillionaire talked to a Stanford student&#039;s younger brother to tell him to &quot;stay in school.&quot;" title="Chamillionaire talked to a Stanford student&#039;s younger brother to tell him to &quot;stay in school.&quot;" /></a>
<a href='http://www.feross.org/ridin-dirty-at-stanford/dsc04646/' title='Quincy Jones III and Chamillionaire on stage at Stanford University'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2009/11/DSC04646-150x150.jpg" class="attachment-thumbnail" alt="Quincy Jones III and Chamillionaire on stage at Stanford University" title="Quincy Jones III and Chamillionaire on stage at Stanford University" /></a>
<a href='http://www.feross.org/ridin-dirty-at-stanford/dsc04650/' title='Ridin&#039; Dirty with Chamillionaire'><img width="150" height="150" src="http://www.feross.org/wp-content/uploads/2009/11/DSC04650-150x150.jpg" class="attachment-thumbnail" alt="Ridin&#039; Dirty with Chamillionaire" title="Ridin&#039; Dirty with Chamillionaire" /></a>
</p>
<h2>Quotes from Chamillionaire and Quincy Jones III</h2>
<h3>Here are some quotes I found amusing from the event:</h3>
<blockquote><p>&#8220;All the other rappers called me a nerd for using the Internet.&#8221; &#8212; Chamillionaire (on promoting his music online)</p></blockquote>
<blockquote><p><span>&#8220;I hope that someone in this room wins the Entrepreneurship Innovation Contest &#8230;so then I can steal their idea.&#8221; &#8212; Chamillionaire (when asked to give some motivational advice to the students)<br />
</span></p></blockquote>
<blockquote><p><span>&#8220;My job was a lot easier before I was a boss.&#8221; &#8212; Chamillionaire (on </span>becoming a manager at Chamillitary<span> Entertainment)<br />
</span></p></blockquote>
<blockquote><p><span>&#8220;Why would I want to sell something with my face? I wouldn&#8217;t even wear something with my face&#8221; &#8212; Chamillionaire (on selling merchandise)<br />
</span></p></blockquote>
<blockquote><p>&#8220;<span>It&#8217;s crazy&#8230; I&#8217;m in the business of making money. But not every dollar is a good one &#8211; sometimes it&#8217;s about values &amp; authenticity&#8221; &#8212; Chamillionaire<br />
</span></p></blockquote>
<blockquote><p><span>&#8220;eHustling is available to everybody&#8221; &#8212; Quincy Jones III (</span><span>on the power of YouTube as a way to go directly to customers)</span></p></blockquote>
<p><h2>Related posts:</h2><ol>
<li><a href='http://www.feross.org/immortal-technique-comes-to-stanford/' rel='bookmark' title='Immortal Technique Comes to Stanford'>Immortal Technique Comes to Stanford</a></li>
</ol></p>2]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/ridin-dirty-at-stanford/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New projects</title>
		<link>http://www.feross.org/new-projects/</link>
		<comments>http://www.feross.org/new-projects/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 12:54:18 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Stanford]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=1413</guid>
		<description><![CDATA[Hey everyone. I&#8217;m working on a couple of cool new projects that I want to let you know about! AP Study Notes I&#8217;m planning to completely rehaul my AP notes site, APstudynotes.org, and rebuild it from the ground up. Right now, it has a bunch of awesome notes for 3 popular AP classes (US history, [...]]]></description>
			<content:encoded><![CDATA[<p>Hey everyone. I&#8217;m working on a couple of cool new projects that I want to let you know about!</p>
<h2>AP Study Notes</h2>
<p>I&#8217;m planning to completely rehaul my <a href="http://www.apstudynotes.org/">AP notes site</a>, APstudynotes.org, and <em><strong>rebuild it from the ground up</strong></em>. Right now, it has a bunch of awesome notes for 3 popular AP classes (<a title="AP US history notes" href="http://www.apstudynotes.org/us-history/">US history</a>, <a title="AP US government notes" href="http://www.apstudynotes.org/us-government/">US government</a>, and <a title="AP english notes" href="http://www.apstudynotes.org/english/">English Language/Literature</a>), but it&#8217;s still lacking in quite a few areas<strong></strong>. The site is still in development, and I&#8217;ve got a lot of work to do on it, but it&#8217;s already been extraordinarily popular. Right now, it&#8217;s getting 1,200,000 page views and 520,000 unique visitors annually! I haven&#8217;t advertised it at all, but the feedback has been overwhelming. I get emails every week from thankful students, and even some from eager students asking why the notes for a particular AP class aren&#8217;t posted yet!<br />
<span id="more-1413"></span><br />
My <em>goal</em> was to keep adding new notes (my own or purchased/donated notes from other students), and over time, slowly build up a <strong>huge database</strong> of quality notes. At some point in this process, I realized that this method simply <em><strong>doesn&#8217;t scale very well</strong></em>. There are simply <em>too many classes, too many textbooks, and too many types of notes</em> (outlines, vocabulary, unit summaries, practice quizzes, etc.) for me to create and format all by myself. So, I stopped updating the site for a while.</p>
<p>My goal in re-hauling the site is to allow users to <em><strong>add their own notes to the site</strong></em>, and let the community decide what the good stuff is. My hope is that <em><strong> </strong></em><strong>the good stuff will float to the top</strong>.</p>
<p>I have a a bunch of really neat ideas (I think!) that will make this<em><strong> the best AP notes site on the net</strong></em>. I don&#8217;t want to divulge too much here, but I believe that when it&#8217;s finished, it will be an invaluable resource to high school students taking AP classes.</p>
<h2>Music site</h2>
<p>My second project is still in the planning phase. But, for now,<span> just imagine one website that will <em><strong>satisfy ALL of your musical needs</strong></em>: MP3 downloads, online streaming, concert tickets, music videos, album art, lyrics, music suggestions, and social features. I have a vision for <em><strong>an awesome online music experience</strong></em>, and I can&#8217;t wait to start working on this one.</span></p>
<p><span>I know that there are plenty of great music sites out there right now, like Lala.com, Last.fm, iMeem.com, iLike.com, Pandora, and others, but I believe that I can build something unique that brings plenty of new ideas to the table. Plus, I think this will be <em><strong>a great way to practice a whole slew of important web dev skills</strong></em>: Javascript, web crawling, data mining, large-scale database management, and more. <strong>I can&#8217;t wait to see where this idea goes!</strong></span></p>
<h2>Blog might not be updated for a while&#8230;</h2>
<p><span>I&#8217;ll try to keep you guys updated as I work on these projects. If you don&#8217;t hear from me for a while, now you&#8217;ll know why: <em><strong>I&#8217;m coding like a madman! <img src='http://www.feross.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /><br />
</strong></em></span></p>
<p><span>If you have any ideas or suggestions for me, please let me know in the comments! <strong>Thanks a ton for your support!</strong><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/new-projects/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>DragonForce Concert!</title>
		<link>http://www.feross.org/dragonforce-concert/</link>
		<comments>http://www.feross.org/dragonforce-concert/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 11:38:16 +0000</pubDate>
		<dc:creator>Feross Aboukhadijeh</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Stanford]]></category>

		<guid isPermaLink="false">http://www.feross.org/?p=1228</guid>
		<description><![CDATA[Pictures from the DragonForce Concert I went to in San Francisco. If you&#8217;re not familiar with DragonForce, they&#8217;re an awesome power metal band from London, known for their over the top (oftentimes cheesy) fantasy lyrics. They have the fastest guitar solos I&#8217;ve ever heard and they&#8217;ve even been featured in Guitar Hero 3. If you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>Pictures from the <a href="http://www.dragonforce.com/"><strong>DragonForce</strong></a> Concert I went to in San Francisco.<br />
<a href="http://www.feross.org/wp-content/uploads/2009/09/IMG_0010.JPG"><img class="aligncenter size-large wp-image-1230" title="DragonForce In Concert In San Francisco" src="http://www.feross.org/wp-content/uploads/2009/09/IMG_0010-540x405.jpg" alt="DragonForce In Concert In San Francisco" width="540" height="405" /></a><br />
<span id="more-1228"></span><br />
<a href="http://www.feross.org/wp-content/uploads/2009/09/IMG_0003.JPG"><img class="aligncenter size-large wp-image-1229" title="DragonForce In Concert In San Francisco" src="http://www.feross.org/wp-content/uploads/2009/09/IMG_0003-540x405.jpg" alt="DragonForce In Concert In San Francisco" width="540" height="405" /></a></p>
<p><a href="http://www.feross.org/wp-content/uploads/2009/09/IMG_0011.JPG"><img class="aligncenter size-large wp-image-1231" title="DragonForce In Concert In San Francisco" src="http://www.feross.org/wp-content/uploads/2009/09/IMG_0011-540x405.jpg" alt="DragonForce In Concert In San Francisco" width="540" height="405" /></a></p>
<p>If you&#8217;re not familiar with DragonForce, they&#8217;re an <a title="DragonForce on Wikipedia" href="http://en.wikipedia.org/wiki/Dragonforce">awesome</a> power metal band from London, known for their over the top (oftentimes cheesy) fantasy lyrics. They have the <em><strong>fastest guitar solos</strong></em> I&#8217;ve ever heard and they&#8217;ve even been <a href="http://www.youtube.com/watch?v=BplIrU1Sdtc">featured in Guitar Hero 3</a>.</p>
<p><strong>If you&#8217;re unfamiliar with DragonForce, go enjoy some of their music:</strong></p>
<p><a href="http://www.roadrunnerrecords.com/video/view.aspx?songID=1260">Through the Fire and the Flames (music video)</a><br />
<a href="http://www.roadrunnerrecords.com/video/view.aspx?songID=1362">Operation Ground and Pound (music video)</a><br />
<a href="http://www.youtube.com/watch?v=QlkVK0ZVkkw">Valley of the Damned (Live)</a><br />
<a href="http://www.youtube.com/watch?v=PvquWIULIFA">Heroes of Our Time (music video from their newest album)</a></p>
<p>And just for fun&#8230;<br />
<a href="http://www.youtube.com/watch?v=hil1F2T19GY">Through the Fire and the Flames on Mario Paint</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feross.org/dragonforce-concert/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

