<?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>Andrew Marconi &#187; Andrew Marconi</title>
	<atom:link href="http://andrewmarconi.com/author/andrew-marconi/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewmarconi.com</link>
	<description>UX-Focused Technical Project Manager, Developer and Digital Producer</description>
	<lastBuildDate>Fri, 18 May 2012 19:24:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Getting Started with iOS Web Applications:  Block Best Practices</title>
		<link>http://andrewmarconi.com/2010/09/getting-started-iphone-ipad-web-apps-best-practices/</link>
		<comments>http://andrewmarconi.com/2010/09/getting-started-iphone-ipad-web-apps-best-practices/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 14:56:34 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Web apps]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=295</guid>
		<description><![CDATA[Being relatively new to building Web applications for iPhone, iPad and other Webkit/iOS browsers, I’ve been spending more and more time searching through the Apple Developer Safari Reference Library. <a href="http://andrewmarconi.com/2010/09/getting-started-iphone-ipad-web-apps-best-practices/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Being relatively new to building Web applications for iPhone, iPad and other Webkit/iOS browsers, I&#8217;ve been spending more and more time searching through the Apple Developer <a href="http://developer.apple.com/library/safari/navigation/" target="_blank">Safari Reference Library</a>.</p>
<p>It&#8217;s a very complete resource, but so far, I&#8217;ve found it to be mildly frustrating for the beginner. For instance, constructing a basic &lt;head&gt; block requires referencing about 3-5 different pages in the Apple documentation (that don&#8217;t link together in a meaningful way), as well as a variety of third-party developers&#8217; sites.<br />
<span id="more-295"></span><br />
So, I&#8217;ll step through what I typically do, explaining it line by line. Hopefully it will help someone who might otherwise go through the same problems I experienced when I was first getting started with Web app development for iOS mobiles and Webkit. I&#8217;m not saying that this is the 100% best way to do it; it is the way that seems to work best for me. If you have any suggestions to improve it (or refute some of my thinking), please feel free to comment on this post or contact me directly.</p>
<h3>What Character Set?</h3>
<p>First up, the http-equiv meta tag. I <strong>always</strong> encode my pages for UTF-8 because I typically deal with users around the world who have Web browsers that may render local characters incorrectly. UTF-8 allows for a large character set. <a href="http://www.utf8.com/" target="_blank">Learn more about UTF-8 at UTF8.com</a>.</p>
<p><code>&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;</code></p>
<h3>This Really is a Safari Web App</h3>
<p>Setting the <a href="http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safarihtmlref/articles/metatags.html" target="_blank">apple-mobile-web-app-capable</a> meta tag to <strong>yes</strong> means that the page can be added as a full-screen app, and run &#8220;outside&#8221; of Safari. I say outside in quotes, because really it is still running using the Webkit rendering engine, but the user isn&#8217;t presented with the URL bar, or other chrome that, while useful when browsing the Web, only gets in the way when he or she is using your Web app.</p>
<p><code>&lt;meta name="apple-mobile-web-app-capable" content="yes" /&gt;</code></p>
<h3>The Status Bar</h3>
<p>Next, we define how the top bar looks (the bit that has the carrier, time and other system-wide icons). By default, this value is <strong>default</strong>, meaning, a grey chrome finish and completely opaque. Lately, I&#8217;ve been going with setting this to <strong>black</strong> which is how it sounds. The other option available is <strong>translucent-black</strong>. This lets your app &#8220;bleed through,&#8221; which sounds like a good idea, and can look nice if you take this into consideration when you build your mobile Web app&#8230; but in practice can end up looking a little sloppy in my opinion.</p>
<p><code>&lt;meta name="apple-mobile-web-app-status-bar-style" content="black" /&gt;</code></p>
<h3>Viewport vs. Window</h3>
<p>The <a href="http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.html#//apple_ref/doc/uid/TP40006509-SW1" target="_blank">viewport</a> is one of the tricker concepts to understand. By default, iOS Safari renders content in a window with a 1024 pixel width. It then scales things down using it&#8217;s own logic to fit what it can on your screen (the viewport). The basic idea is that the <strong>viewport</strong> is inside of the <strong>window</strong>. On the desktop version of Safari, the two are set to the exact same size.</p>
<p>What I&#8217;ve found to work best for the iOS devices is the following. Basically, I&#8217;m saying, set the scale to 1:1 (make the viewport the same size as the window); the width should be the device&#8217;s width (this is a constant that changes based on rotation of the device &#8212; better to set it to this than to give a static width); and don&#8217;t let the user scale anything (again, because I&#8217;ve designed this as a Web app, specifically for iOS, there should be no need to scale).</p>
<p><code>&lt;meta name="viewport" content="initial-scale=1.0, width=device-width, user-scalable=no" /&gt;</code></p>
<h3>Auto-Detect Phone Numbers</h3>
<p>Many of the Web apps that I work with extend digital asset management systems, and so they include things like identification numbers for TV commercials, print job numbers, etc.; rarely do I use telephone numbers in my Web apps. So, I turn off automatic detection of telephone numbers to prevent bad links. Your Web app may be different, and you might want this behavior&#8230; if so, then by all means, skip over this line.</p>
<p>For me, I start with no phone number detection, and then flag items manually that should be sent to the phone (for instance, a technical support phone number in the footer). For this type of scenario, I&#8217;ll use a tag like <strong>&lt;a href=&#8221;tel:212-555-1212&#8243;&gt;Support by Phone&lt;/a&gt;</strong>. Using &#8220;tel:&#8221; as the first part of the href let&#8217;s Safari know that the link is be sent to the phone app rather than as a Web link.</p>
<p><code>&lt;meta name="format-detection" content="telephone=no" /&gt;</code></p>
<h3>Default Home Screen Icon</h3>
<p>By default when you click the &#8220;+&#8221; icon in Safari to add a Web app to your home page, Safari will take a screenshot and use it as the icon. Generally, this isn&#8217;t very pretty. You can supply a more user-friendly design by uploading a 57&#215;57 pixel PNG (<strong>not</strong> GIF or JPG), and pointing <a href="http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html" target="_blank">apple-touch-icon</a> to it. Don&#8217;t include any rounded corners, or the glass/glow art &#8212; Safari takes care of this for you. There is an alternate meta tag that allows you to supply a pre-composed image instead, but generally, I don&#8217;t go that route.</p>
<p><code>&lt;link rel="apple-touch-icon" href="/lib/media/apple/icon.png" /&gt;</code></p>
<h3>Startup Image</h3>
<p>Similarly, you can provide a &#8220;startup image&#8221; that displays before your Web app runs (actually, it displays while the device compares its cached version of your Web app to the live version on your server, and if there are differences it downloads them). This should be a 320&#215;460 pixels in size, again in PNG format. Remember, this will only appear when your Web app is running full-screen (i.e., when you click on it from your device&#8217;s home screen); it doesn&#8217;t display when browsing to it in Safari.</p>
<p><code>&lt;link rel="apple-touch-startup-image" href="/lib/media/apple/splash.png" /&gt;</code></p>
<h3>Localized CSS</h3>
<p>Lastly, I link to my stylesheet that defines styles specific to the Web app. If you&#8217;ve used any third-party libraries to help with layout, they would appear before this link so that you can override any styles locally. Some examples of these libraries are <a href="http://code.google.com/p/iui/" target="_blank">iUI</a> and <a href="http://iwebkit.net/" target="_blank">iWebKit</a>.</p>
<p><code>&lt;link rel="stylesheet" type="text/css" href="/lib/css/ios-common.css" /&gt;</code></p>
<h3>Does Order Matter?</h3>
<p>I don&#8217;t really know. Typically, I organize my &lt;head&gt; block by placing any &lt;meta&gt; tags first, then &lt;link&gt; tags, and then the &lt;title&gt; tag. I really don&#8217;t think that this matters much, but I&#8217;m a fairly visual person, and having things grouped this way makes it easier for me to browse my source code.</p>
<h3>In Summary</h3>
<p>In summary, here is the completed &lt;head&gt; block:</p>
<div style="background: #ebebeb;"><code>&lt;head&gt;<br />
&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;<br />
&lt;meta name="apple-mobile-web-app-capable" content="yes" /&gt;<br />
&lt;meta name="apple-mobile-web-app-status-bar-style" content="black" /&gt;<br />
&lt;meta name="viewport"<br />
content="initial-scale=1.0, width=device-width, user-scalable=no" /&gt;<br />
&lt;meta name="format-detection" content="telephone=no" /&gt;<br />
&lt;link rel="apple-touch-icon" href="/lib/media/apple/icon.png" /&gt;<br />
&lt;link rel="apple-touch-startup-image" href="/lib/media/apple/splash.png" /&gt;<br />
&lt;link rel="stylesheet" type="text/css" href="/lib/css/ios-common.css" /&gt;<br />
&lt;title&gt;Name of Your App Here&lt;/title&gt;<br />
&lt;/head&gt;</code></div>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2010/09/getting-started-iphone-ipad-web-apps-best-practices/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting More Done, Mac Edition</title>
		<link>http://andrewmarconi.com/2010/03/getting-more-done-mac-edition/</link>
		<comments>http://andrewmarconi.com/2010/03/getting-more-done-mac-edition/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 16:00:18 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Lifehacking]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[organizing]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=242</guid>
		<description><![CDATA[Lately, I&#8217;ve started implementing David Allen&#8217;s GTD framework for &#8220;Getting Things Done.&#8221; I&#8217;ve never been a huge fan of life coaches, &#8220;creative visualization to get what you want in life,&#8221; and all the touchy-feely &#8220;my parents didn&#8217;t give me ice cream &#8230; <a href="http://andrewmarconi.com/2010/03/getting-more-done-mac-edition/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Lately, I&#8217;ve started implementing <a href="http://www.davidco.com/" target="_blank">David Allen&#8217;s GTD</a> framework for &#8220;Getting Things Done.&#8221;</p>
<p>I&#8217;ve never been a huge fan of life coaches, &#8220;creative visualization to get what you want in life,&#8221; and all the touchy-feely &#8220;my parents didn&#8217;t give me ice cream once when I was five, so now I can&#8217;t have a serious relationship&#8221; communities led by &#8220;life gurus.&#8221; Mostly, I think they&#8217;re frauds that prey on the weak and vulnerable.<br />
<span id="more-242"></span><br />
However, David&#8217;s GTD framework is rooted in practicalities, simple ideas and easy ways to think about getting what you need done, done. I highly recommend reading his book, <a href="http://www.amazon.com/gp/product/0142000280?ie=UTF8&amp;tag=andrewmacom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0142000280">Getting Things Done: The Art of Stress-Free Productivity</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=andrewmacom-20&amp;l=as2&amp;o=1&amp;a=0142000280" alt="" width="1" height="1" border="0" /> (available from <a href="http://www.amazon.com/gp/product/0142000280?ie=UTF8&amp;tag=andrewmacom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0142000280">Amazon</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=andrewmacom-20&amp;l=as2&amp;o=1&amp;a=0142000280" alt="" width="1" height="1" border="0" />) for an introduction to his work. Of course, his company offers workshops, personal coaching services, etc. &#8212; but just give the book a try first to see if it is a good fit for you. After all, it&#8217;s less than an $11 investment.</p>
<p>Although I&#8217;ve just got started using the organizational thinking and processes, I&#8217;ve found a couple of software tools that really help me stay focused on &#8220;what&#8217;s next.&#8221;</p>
<p>Click through to the following pages below to see how I&#8217;ve set up my system.</p>
<ul>
<li>Introduction</li>
<li><a href="http://andrewmarconi.com/2010/03/getting-more-done-mac-edition/2/" target="_self">Calendar, E-Mail &amp; Address Book &#8211; Microsoft Entourage</a></li>
<li><a href="http://andrewmarconi.com/2010/03/getting-more-done-mac-edition/3/" target="_self">&#8220;Task&#8221; and &#8220;What&#8217;s Next&#8221; Tracking &#8211; OmniFocus &amp; OmniFocus for iPhone</a></li>
<li><a href="http://andrewmarconi.com/2010/03/getting-more-done-mac-edition/4/" target="_self">Lists, Notes &amp; Files &#8211; Evernote, Google Docs &amp; Dropbox</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2010/03/getting-more-done-mac-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Boxee and XBMC Back after the Apple TV 3.0.1 Update</title>
		<link>http://andrewmarconi.com/2009/12/getting-boxee-and-xbmc-back-after-the-apple-tv-3-0-1-update/</link>
		<comments>http://andrewmarconi.com/2009/12/getting-boxee-and-xbmc-back-after-the-apple-tv-3-0-1-update/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 05:17:30 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Usability & Experience]]></category>
		<category><![CDATA[Apple TV]]></category>
		<category><![CDATA[Boxee]]></category>
		<category><![CDATA[fixes]]></category>
		<category><![CDATA[HTPC]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Patchstick.ca]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=200</guid>
		<description><![CDATA[The Apple TV has a lot of potential. Unfortunately, it has some "features" that limit its usefulness out of the box. Thankfully, some really smart people have stepped in to leverage  third-party components, extending its capabilities that bring it one step closer to being a fantastic HTPC. <a href="http://andrewmarconi.com/2009/12/getting-boxee-and-xbmc-back-after-the-apple-tv-3-0-1-update/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Apple TV has a lot of potential. Unfortunately, it has some &#8220;features&#8221; that limit its usefulness out of the box. Thankfully, some really smart people have stepped in to leverage  third-party components, extending its capabilities that bring it one step closer to being a fantastic <a href="http://en.wikipedia.org/wiki/Home_theater_PC" target="_blank">HTPC</a>.<br />
<span id="more-200"></span><br />
Please Note: These instructions will wipe your Apple TV completely clean. <strong>Anything you have stored previously on it will be erased. </strong>Be sure to backup before playing. You have been warned.</p>
<p>Be sure to read everything (including the disclaimer at the bottom) before doing anything with your Apple TV.</p>
<p><!--more--></p>
<h3>Chapter One. Patchstick Your Apple TV</h3>
<p>To start&#8230; you need a 1GB USB flash drive that doesn&#8217;t have any files on it. Some work, some don&#8217;t. Its a bit of a crap-shoot.</p>
<ul>
<li>1. Factory Reset your Apple TV. (Go to: General &gt; Reset Settings &gt; Factory Restore).</li>
<li>2. Update Software to 3.0.1 on Apple TV (Go to: General &gt;  Update Software).</li>
<li>3. Go to <a href="http://patchstick.wikispaces.com/PatchStickBuilder" target="_blank">http://patchstick.wikispaces.com/PatchStickBuilder</a> and click &#8220;download location&#8221;.</li>
<li>4. You will now be on a &#8220;Data File Host&#8221; page to download a file called &#8220;PSB3.0.zip&#8221; click on &#8220;Click Here&#8221; to download.</li>
<li>5. It will download the <strong>ATV&amp;More</strong> application in a zip file to your desktop. Unzip it.</li>
<li>6. Plug in your blank USB flash drive. If you have any other USB storage devices plugged in to your computer, <strong>UNPLUG THEM NOW</strong> to avoid accidentally erasing something important. This includes any external hard drives.</li>
</ul>
<blockquote><p><em><strong><br />
UPDATE</strong> (from <a href="http://twitter.com/patchstick" target="_blank">@patchstick</a>) &#8211; They tell me that you don&#8217;t have to do this because the software won&#8217;t write to any device over 16GB as a safety precaution – so there&#8217;s little chance in losing data on existing drives. Personally, I&#8217;m paranoid, so I&#8217;d still unmount/disconnect any other drives to avoid even a 0.0000001% chance.</em></p></blockquote>
<ul>
<li>7. Go into the PSB3.0 folder and double click on &#8220;PatchStick Builder&#8221; &#8212; this will launch the application.</li>
<li>8. Once the application is running, click on &#8220;Download Firmware Image&#8221; &#8211; this will get a required file from Apple&#8217;s update site. This could take some time, depending on the speed of your internet connection. When it is done, you should see a file name in bright green at the top left of the window, and it should say, &#8220;&#8230;ok&#8221; at the end.</li>
<li>9. Your USB drive should be listed in the drop-down box. Make sure it is selected and then click on the &#8220;Create Patchstick&#8221; button at the bottom. The program will spend some time organizing files and writing everything to the patchstick. Once it is done, it will let you know.</li>
<li>10. Quit the program and eject your new USB patchstick.</li>
<li>11. Unplug your Apple TV. Plug USB patchstick into the back of the Apple TV. Plug in your Apple TV. (NOTE: With some USB hardware, it sometimes works better if you plug in the Apple TV, and then within 2 seconds plug in the USB patchstick.)</li>
<li>12. You should see a hand holding a green apple come up on the screen, and then a bunch of little text scrolling down. When the process is done, you&#8217;ll see a note (in the small text) to unplug the USB patchstick.</li>
<li>13. In 30 seconds, the Apple TV will reboot &#8211; this will take a few moments. A big hand holding a green apple will animate, and then you&#8217;ll be taken to the 3.0.1 home screen.</li>
<li>14. Scroll to the right to &#8220;Launch More,&#8221; and then select Scripts &gt; Load Free Base Configuration.</li>
<li>15. You will see a screen that says &#8220;Running Script &#8220;Load Free Base Configuration&#8221; and it will be doing some work. When it is done, it will take you back to the home screen.</li>
<li>16. Go to &#8220;Launch More&#8221; &gt; &#8220;Scripts&#8221; &gt; &#8220;Hide TV Shows Menu Entry&#8221; (provided you never use this option &#8212; if you do rent/purchase TV Shows from iTunes, then don&#8217;t do this.</li>
</ul>
<p>Your Apple TV has been unlocked and is now ready to run third-party software.</p>
<h3>Chapter Two. Install Launcher 3.2 Beta 3</h3>
<p>This chapter downloads the program that will let you install <a href="http://www.boxee.tv/homepage/" target="_blank">Boxee</a> and <a href="http://xbmc.org/" target="_blank">XBMC</a>. Using your favorite SSH client (Terminal on a Mac, or <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">PuTTY</a> on Windows), you need to get your hands dirty for a few minutes&#8230;</p>
<ul>
<li>1. On the Mac, open Terminal and type: &#8220;ssh frontrow@appletv.local&#8221; and press enter. If you get an error saying that the &#8220;remote host identification has changed!&#8221; then you need to delete your known_hosts file. If you&#8217;ve never ssh&#8217;d into your ATV before, this probably won&#8217;t happen. Otherwise, you may be prompted to confirm you want to connect, even though &#8220;the authenticity of host can&#8217;t be established.&#8221; This is ok. Just type Yes. If you are on a Windows PC, run PuTTY, and create a connection to &#8220;appletv.local&#8221; over SSH with the username &#8220;frontrow&#8221;.</li>
<li>2. You are now prompted for a password. This is &#8220;frontrow&#8221;. Type it, and press enter.</li>
<li>3. You are now at the command prompt (you&#8217;ll see a prompt that says &#8220;-bash-2.05b$&#8221; most likely. Type the following commands, pressing enter after each line, and waiting for the command to finish. After you type the first command, you will probably be prompted for a password. Again, the password is &#8220;frontrow&#8221;.<br />
<code><br />
<strong>sudo mount -uw /<br />
cd /users/frontrow/<br />
wget http://dl.getdropbox.com/u/858897/XBMC/Launcher-3.2.beta3-debug.run</strong><br />
</code><br />
(This will take a few moments &#8212; it is downloading software from the internet.)<br />
<code><br />
<strong>chmod +x Launcher-3.2.beta3-debug.run<br />
./Launcher-3.2.beta3-debug.run</strong><br />
</code><br />
(You will be asked whether you&#8217;d like to restart the Finder. Type the letter &#8216;Y&#8217;. Your ATV will flash and it will go back to the 3.0.1 home screen.)<br />
<code><br />
<strong>sudo mount -ur /<br />
exit</strong></code></li>
<li>4. You can now close out your Terminal or PuTTY window on your computer.</li>
</ul>
<h3>Chapter Three. Install Boxee &amp; XBMC</h3>
<ul>
<li>1. On your Apple TV, go to the new &#8220;Launcher&#8221; menu. Choose &#8220;Downloads.&#8221;</li>
<li>2. Click on &#8220;Boxee alpha 0.9.14.6992&#8243;. Your ATV will download Boxee and run the installation script. This will take a few moments. When it&#8217;s done, it will say, &#8220;Update finished successfully! Hit menu to return.&#8221; Do so, and you&#8217;re back to the download screen.</li>
<li>3. Click on &#8220;XBMC 9.11 (beta1)&#8221;. Your Apple TV will download XBMC and run the installation script. This will take a few moments. When it&#8217;s done, it will say, &#8220;Update finished successfully!! Hit menu to return.&#8221; Do so, and you&#8217;re back to the download screen.</li>
<li>4. Hit the &#8220;menu&#8221; to get back to the Apple TV home screen.</li>
</ul>
<p>You should now have both Boxee and XBMC available!</p>
<h3>Credits &amp; Disclaimer</h3>
<p>These steps are an assemblage of instructions from many different sources on the net, including from various forums and third-party Web sites. I&#8217;ve tried to put them together in a way that is easy to follow, even for the &#8220;newbie.&#8221; I do not condone breaking any warranty or law, or hacking of any technologies here &#8212; I&#8217;m just presenting instructions as found throughout the Web in an organized manner.</p>
<p><a href="http://Patchstick.ca/" target="_blank">Patchstick.ca</a> is a great resource for extending the AppleTV. They offer additional services through a paid subscription model. Check them out.</p>
<p><strong>Software versions and files. </strong>These instructions should work as of the date of this post. Like any evolving software, they may not work tomorrow. New software versions come out; incompatibilities happen. No warranty is made or suggested by being listed here. I cannot be held responsible if you manage to blow up (or otherwise damage) your property or the property of others.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2009/12/getting-boxee-and-xbmc-back-after-the-apple-tv-3-0-1-update/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Usability &amp; the NYC MTA MetroCard</title>
		<link>http://andrewmarconi.com/2009/06/usability-the-nyc-mta-metrocard/</link>
		<comments>http://andrewmarconi.com/2009/06/usability-the-nyc-mta-metrocard/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 16:04:01 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Usability & Experience]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=158</guid>
		<description><![CDATA[Not that the MTA is known for providing a good experience&#8230; but&#8230; I purchase a pre-tax monthly MTA MetroCard through a program at work, and I&#8217;ve noticed something inconsistent. When I drop my card in the machine on an MTA &#8230; <a href="http://andrewmarconi.com/2009/06/usability-the-nyc-mta-metrocard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Not that the MTA is known for providing a good experience&#8230; but&#8230;</p>
<p>I purchase a pre-tax monthly <a href="http://www.mta.info/metrocard/" target="_blank">MTA MetroCard</a> through a program at work, and I&#8217;ve noticed something inconsistent. When I drop my card in the machine on an MTA bus, it let&#8217;s me know the date that my card will expire. However, when I swipe my card in the subway, it just says &#8220;Go.&#8221;</p>
<p><span id="more-158"></span>Wouldn&#8217;t it make sense to make these two experiences consistent? The great thing about being reminded of the expiration date on the bus is that I&#8217;m prompted to bring my new card on the day after the old one expires. This prevents me (most of the time) from holding up the line swiping the expired one, waiting for it to tell me it is expired, and then fishing around in my wallet for the new card.</p>
<p>One would think that the difference in software would be a simple one. After all, both systems are able to tell you your balance on a non-unlimited card when you swipe it.</p>
<p>Though minor, it would be a vast improvement on the subway where, in the heat of catching the next train  waiting behind someone to swipe a second card through the turnstiles is a huge, frustrating length of time (says something about perception over reality, doesn&#8217;t it?).</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2009/06/usability-the-nyc-mta-metrocard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling Flash Video (FLV) Playback on Windows IIS</title>
		<link>http://andrewmarconi.com/2009/06/enabling-flash-video-flv-playback-on-windows-iis/</link>
		<comments>http://andrewmarconi.com/2009/06/enabling-flash-video-flv-playback-on-windows-iis/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 15:11:21 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=155</guid>
		<description><![CDATA[Here&#8217;s another &#8220;gotcha&#8221; courtesy of Microsoft: by default, IIS doesn&#8217;t include a MIME type for Flash Video (FLV) files, resulting in a 404 Not Found error whenever you try to access the file. One would think that they would deliver &#8230; <a href="http://andrewmarconi.com/2009/06/enabling-flash-video-flv-playback-on-windows-iis/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another &#8220;gotcha&#8221; courtesy of Microsoft: by default, IIS doesn&#8217;t include a MIME type for Flash Video (FLV) files, resulting in a 404 Not Found error whenever you try to access the file. One would think that they would deliver a 401 Unauthorized error, but hey&#8230; what do I know?</p>
<p><span id="more-155"></span>Right click on either the individual site or the full server, and then click &#8220;Properties.&#8221;</p>
<ol>
<li>Click on the &#8220;HTTP Headers&#8221; tab.</li>
<li>Choose &#8220;File Types&#8221; and click &#8220;New Type.&#8221;</li>
<li>Add &#8220;.flv&#8221; for the associated extension, and &#8220;video/x-flv&#8221; as the content-type.</li>
<li>Click OK to save the addition, and close out.</li>
</ol>
<p>Like everything with IIS, you may need to restart the service to see the change.</p>
<p>This is just one more reason to use Apache on Linux.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2009/06/enabling-flash-video-flv-playback-on-windows-iis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opt-Out of &#8220;Interest Based Ads&#8221; from Google and Other Ad Networks</title>
		<link>http://andrewmarconi.com/2009/06/opt-out-of-interest-based-ads-from-google-and-other-ad-networks/</link>
		<comments>http://andrewmarconi.com/2009/06/opt-out-of-interest-based-ads-from-google-and-other-ad-networks/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 03:40:05 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[trust]]></category>
		<category><![CDATA[Web browser]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=146</guid>
		<description><![CDATA[While I don&#8217;t consider myself to be paranoid about being tracked around the Web, I still value my privacy. I also don&#8217;t like companies making money off of me (unless I&#8217;m getting a cut, of course) &#8212; and behaviorally-targeted ads &#8230; <a href="http://andrewmarconi.com/2009/06/opt-out-of-interest-based-ads-from-google-and-other-ad-networks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While I don&#8217;t consider myself to be paranoid about being tracked around the Web, I still value my privacy. I also don&#8217;t like companies making money off of me (unless I&#8217;m getting a cut, of course) &#8212; and behaviorally-targeted ads have a higher value to advertisers, so DoubleClick (Google&#8217;s ad serving platform) and the other networks can charge more money.</p>
<p><span id="more-146"></span>So, this is why I &#8220;opt-out&#8221; of <a href="http://www.google.com/ads/preferences/" target="_blank">Google&#8217;s &#8220;Interest-Based Ads&#8221;</a> and 28 other ad networks that are members of the <a href="http://www.networkadvertising.org/" target="_blank">Network Advertising Initiative</a>. Conveniently, they have a tool online that allows you to do this fairly easily.</p>
<p>According to NAI:</p>
<blockquote><p>&#8220;The NAI Opt-out Tool replaces a network advertiser&#8217;s unique online preference marketing cookie on your browser with a general opt-out cookie. It does <strong>not</strong> delete individual cookies nor does it necessarily replace other cookies delivered by network advertisers, such as those that are used for aggregate ad reporting or mere ad serving purposes. Such cookies allow network advertisers to change the sequence of ad banners, as well as track the aggregate number of ads delivered (impressions).&#8221;</p></blockquote>
<p>Currently, you can opt-out of the following networks via NAI&#8217;s tool: <em>aCerno, Advertising.com, Akamai, AlmondNet, Atlas, AudienceScience, BlueKai, BlueLithium, Collective Media, Dedicated Networks, eXelate Media, FetchBack, Fox Audience Network, Google, interCLICK, Lotame, Media6degrees, Mindset Media, NextAction, Safecount, SpecificMEDIA, Traffic Marketplace, Turn, 24/7 Real Media, Undertone Networks, [x+1] (formerly Poindexter Systems), Yahoo! Ad Network, TACODA Audience Networks, &amp; Tribal Fusion.</em></p>
<p>You will still see ads wherever ads are served, but you won&#8217;t be tracked (usually, &#8220;anonymously,&#8221; which to me is a bit of an oxymoron). You will need to use this tool anytime you clear the cookies from your browser (you do this occassionally, don&#8217;t you?). You also need to do this for every Web browser that you may use. Just because you opt-out in Internet Explorer doesn&#8217;t mean that you&#8217;ve opted out in Firefox.</p>
<p><a href="http://www.networkadvertising.org/managing/opt_out.asp" target="_blank">Opt-Out with the NAI Tool</a>. There is a security issue that prevents Safari and IE7 users from being able to use the tool in some cases (it deals with third-party cookie permissions). <a href="http://www.networkadvertising.org/managing/faqs.asp" target="_blank">View their FAQ</a> for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2009/06/opt-out-of-interest-based-ads-from-google-and-other-ad-networks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting jQuery in WordPress Themes</title>
		<link>http://andrewmarconi.com/2009/05/troubleshooting-jquery-in-wordpress-themes/</link>
		<comments>http://andrewmarconi.com/2009/05/troubleshooting-jquery-in-wordpress-themes/#comments</comments>
		<pubDate>Fri, 29 May 2009 04:29:03 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=128</guid>
		<description><![CDATA[Here&#8217;s another &#8220;oh yeah, I always forget about that&#8221; geek item. I spent a few hours today going nuts trying to figure out why the jQuery Cycle plug-in wasn&#8217;t working in a new theme I&#8217;m working on. The code ran &#8230; <a href="http://andrewmarconi.com/2009/05/troubleshooting-jquery-in-wordpress-themes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another &#8220;oh yeah, I always forget about that&#8221; geek item.</p>
<p>I spent a few hours today going nuts trying to figure out why the <a href="http://www.malsup.com/jquery/cycle/" target="_blank">jQuery Cycle plug-in</a> wasn&#8217;t working in a new theme I&#8217;m working on. The code ran great outside of WordPress, but the minute I placed it inside the theme, it broke.</p>
<p>Then I realized: when using <a href="http://jquery.com/" target="_blank">jQuery</a> in <a href="http://www.wordpress.org/" target="_blank">WordPress</a> you always have to remember to explicitly call it by name rather than use the handy-dandy $(&#8220;#identifier&#8221;) short-cut that every example and demo online uses. The long-winded reasoning (as I discovered thanks to <a href="http://techxplorer.com/2008/02/25/using-jquery-with-wordpress/" target="_blank">Techxplorer&#8217;s blog entry</a>) is that the bundled version of jQuery built into WordPress since version 2.2 is initialized with <a href="http://docs.jquery.com/Core/jQuery.noConflict" target="_blank">jQuery.noConflict</a>. The upside is that this keeps the jQuery library from crashing into other bundled libraries (like <a href="http://www.prototypejs.org/" target="_blank">Prototype</a>). The bad news is that it breaks support for the $ shortcut.<br />
<span id="more-128"></span><br />
I came across an simple solution via <a href="http://chrismeller.com/2007/07/using-jquery-in-wordpress" target="_blank">Chris Mellon</a>:</p>
<blockquote><p>Instead, for interoperability, be sure to use <code>jQuery()</code> instead, which should accomplish the same thing.</p>
<p>A bad example:</p>
<pre class="javascript geshicode" style="font-family: monospace;"><span style="color: #003366; font-weight: bold;">var</span> username <span style="color: #339933;">=</span> $<span style="color: #009900;">(</span><span style="color: #3366cc;">'#username'</span><span style="color: #009900;">)</span>.<span style="color: #660066;">val</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span></pre>
<p>If Prototype were to be loaded on the page this snippet of <acronym title="JavaScript"><span class="caps">JS</span></acronym> is running on, it would throw an error, since it uses a different pattern for selecting <acronym title="Document Object Model"><span class="caps">DOM</span></acronym> elements.</p>
<p>A good example:</p>
<pre class="javascript geshicode" style="font-family: monospace;"><span style="color: #003366; font-weight: bold;">var</span> username <span style="color: #339933;">=</span> jQuery<span style="color: #009900;">(</span><span style="color: #3366cc;">'#username'</span><span style="color: #009900;">)</span>.<span style="color: #660066;">val</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span></pre>
<p>This line should work on any page, regardless of library conflicts. It’s a couple extra characters to type, but in the end it’s really for the best &#8211; you get portability, and it’s more self-explanatory which library is being used when you go back to look at this code in 6 months.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2009/05/troubleshooting-jquery-in-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Theme Check List/Cheat Sheet</title>
		<link>http://andrewmarconi.com/2009/05/wordpress-theme-check-listcheat-sheet/</link>
		<comments>http://andrewmarconi.com/2009/05/wordpress-theme-check-listcheat-sheet/#comments</comments>
		<pubDate>Thu, 14 May 2009 16:06:12 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Content Publishing]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=115</guid>
		<description><![CDATA[Stefan Vervoort over at WPToy.com has published a great cheat sheet for developing WordPress themes. It's available in PDF format, so as he suggests, if you build themes print it out and put it on your wall. When I'm building a WordPress theme, I always forget something along the line (when I go into "programmer mode" I get a little lazy sometimes, alright?) -- this makes sure I cover off on all the elements. <a href="http://andrewmarconi.com/2009/05/wordpress-theme-check-listcheat-sheet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Stefan Vervoort over at WPToy.com has published a great <a href="http://wptoy.com/resources/wordpress-theme-development-check-list-pdf-version/" target="_blank">cheat sheet for developing WordPress themes</a>. It&#8217;s available in PDF format, so as he suggests, if you build themes print it out and put it on your wall. When I&#8217;m building a WordPress theme, I always forget something along the line (when I go into &#8220;programmer mode&#8221; I get a little lazy sometimes, alright?) &#8212; this makes sure I cover off on all the elements.<br />
<span id="more-115"></span></p>
<blockquote><p>Back in 2008, I announced the WordPress Theme Development Checklist on DivitoDesign. The Checklist with many small tips, code snippets and checkpoints you usually forget about was a success.</p>
<p>Today it is time to release an improved official PDF version of the Checklist for the WordPress crowd. This PDF version is clean and easy to print, which makes it an excellent checklist when you are developing your new WordPress Theme.</p></blockquote>
<p>Great work, Stefan!</p>
<p>[Via <a href="http://wptoy.com/resources/wordpress-theme-development-check-list-pdf-version/" target="_blank">WPToy.com</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2009/05/wordpress-theme-check-listcheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Best Practices for the Newbie &#8211; Part 1: Before the Blog</title>
		<link>http://andrewmarconi.com/2009/05/wordpress-best-practices-for-the-newbie-part-1-before-the-blog/</link>
		<comments>http://andrewmarconi.com/2009/05/wordpress-best-practices-for-the-newbie-part-1-before-the-blog/#comments</comments>
		<pubDate>Mon, 11 May 2009 05:26:28 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Content Publishing]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[publishing]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=44</guid>
		<description><![CDATA[After performing countless installs of WordPress, I've learned a few things about how to make it work more effectively, and how to avoid some common pitfalls that I've never seen in any of the documentation. This is part one of three; it deals primarily with the decisions you need to make before you write your first post. Subsequent posts will discuss different aspects of WordPress and the "Best Practices for Non-Geeks." <a href="http://andrewmarconi.com/2009/05/wordpress-best-practices-for-the-newbie-part-1-before-the-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Introduction</h2>
<p>After performing countless installs of WordPress, I&#8217;ve learned a few things about how to make it work more effectively, and how to avoid some common pitfalls that I&#8217;ve never seen in any of the documentation. This is part one of three; it deals primarily with the decisions you need to make before you write your first post. Subsequent posts will discuss different aspects of WordPress and the &#8220;Best Practices for Non-Geeks.&#8221;</p>
<p><span id="more-44"></span>So, getting started&#8230; the first question when you decide to start publishing on the Web is:</p>
<h2>To Use a Blogging Service or Self-Host</h2>
<p><img class="alignright size-medium wp-image-56" title="wordpress-versus" src="http://andrewmarconi.com/wp-content/uploads/2009/05/wordpress-versus-300x146.gif" alt="wordpress-versus" width="300" height="146" />There are many articles on the Web that argue one way or the other. On the one hand, with <a href="http://WordPress.com/" target="_blank">WordPress.com</a>, <a href="http://Blogspot.com/" target="_blank">Blogspot.com</a>, or any other online blogging services (although, I strongly recommend WordPress) you can be up and running fairly quickly with a minimum of effort or technical acumen.</p>
<p><strong>WordPress.com or Other Blogging Service</strong></p>
<ul>
<li><strong>Pros</strong>: Easy to install/maintain; your blog lives on a fairly reliable, commercial farm of servers; usually free (more on this in a moment). WordPress lists many of their pros on the <a href="http://en.wordpress.com/features/" target="_blank">WordPress.com Features page</a>.</li>
<li><strong>Cons</strong>: Limited customization ability; you are giving up data to the host; they may add advertisements to your blog (unless you pay a fee to have them removed); using a domain name (rather than a x.wordpress.com address) costs extra.</li>
</ul>
<p><strong>Self-Hosting WordPress</strong></p>
<ul>
<li><strong>Pros</strong>: Completely customizable; you have complete control over your installation; you don&#8217;t give up or share any monetization (unless you want to).</li>
<li><strong>Cons</strong>: Occasionally requires some technical expertise.</li>
</ul>
<p>For me, the decision was easy &#8212; I&#8217;m a bit of a geek, and I like to play around with the guts of my site &#8212; so I went the self-hosting route. If getting your hands a little dirty scares you, then you may want to start with <a href="http://WordPress.com/" target="_blank">WordPress.com</a>. One of the great features of <a href="http://WordPress.com/" target="_blank">WordPress.com</a> is that you aren&#8217;t locked in; you can pretty easily export your content and install it on your own server at any time. The caveat to this is that if your URL changes, any Google rankings will probably be lost.</p>
<p>Quite honestly, even if you aren&#8217;t especially technically-savvy, self-hosting isn&#8217;t too difficult.</p>
<h2>Choose the Right Web Host</h2>
<p>Once you decide to self-host your WordPress-powered Web site, the next important decision is: who are you going to use as your Web hosting provider? The folks at Automattic (the creators of WordPress) have a <a href="http://wordpress.org/hosting/" target="_blank">list of companies that they suggest</a>. The only ones I&#8217;ve worked with and had positive experiences with are <a href="http://dreamhost.com/" target="_blank">DreamHost</a> and <a href="http://mediatemple.net/" target="_blank">Media Temple</a>. I had bad experiences with GoDaddy, but that was several years ago, so I hesitate to dissuade considering them.</p>
<p><a href="http://www.1and1.com/?affiliate_id=95326" target="_blank"><img class="alignright" style="border: 0 none;" src="http://www.1and1affiliate.com/uploads/pics/125x125_01.gif?aid=95326" alt="" /></a>The one I suggest, actually is <a href="http://www.1and1.com/?affiliate_id=95326 " target="_blank">1&amp;1 Hosting</a>. True, they don&#8217;t offer the 1-click install that some other hosting providers have, but they offer a bunch of features that I actually use, and are a fraction of the cost. For instance, with my <a href="http://order.1and1.com/xml/order/Hosting?affiliate_id=95326" target="_blank">shared hosting account</a> (I use their &#8220;Business Shared Hosting&#8221;) I pay $5/month (this has now gone up in price to $9.99/mo, but they&#8217;re also running a 50% off sale &#8212; which effectively means $5/month). This includes <strong>three free domain registrations</strong> for as long as you have your account, and let&#8217;s me host an unlimited number of domain names registered through them within my one account (or up to 100 externally-registered domain names).  I can have up to 2,500 POP3/IMAP email addresses, and includes a $50 voucher for Google AdWords. For my particular needs, this is perfect.</p>
<p>One mistake I frequently see people do is to buy too much Web hosting &#8212; this is why usage tracking is important. If you have fewer than 5,000 visits/day, shared hosting may be your best bet. When your traffic scales, that&#8217;s when you should scale up to <a href="http://www.1and1.com/?affiliate_id=95326 " target="_blank">VPS (virtual private server)</a> or <a href="http://www.1and1.com/?affiliate_id=95326 " target="_blank">dedicated hosting</a>. These types of services give you much more control, bandwidth and capabilities, but also require much more technical knowledge. This makes sense &#8212; to put it in perspective think of it this way: &#8220;just because I can drive a car doesn&#8217;t mean I can fly a 767 aircraft.&#8221; The plane can do a lot more than a car can, but most of my transportation needs don&#8217;t require jet fuel (actually since I live in NYC, I rely on the subway more than cars).</p>
<p>On the flip side, if you know you are going to have tons of traffic right out of the gate (for instance, if you have paid AdWords traffic that will be hitting your Web site), or a major public relations push &#8212; you may need to start out with more powerful hosting&#8230; but that is beyond the scope of this article.</p>
<p>In Part 2, I&#8217;ll guide you through the installation and first steps of setting up WordPress in your self-hosting environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2009/05/wordpress-best-practices-for-the-newbie-part-1-before-the-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>White House to Ask for $50M for Social Innovation Fund</title>
		<link>http://andrewmarconi.com/2009/05/white-house-social-innovation-fund/</link>
		<comments>http://andrewmarconi.com/2009/05/white-house-social-innovation-fund/#comments</comments>
		<pubDate>Sat, 09 May 2009 22:37:13 +0000</pubDate>
		<dc:creator>Andrew Marconi</dc:creator>
				<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[non-profit]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://andrewmarconi.com/?p=36</guid>
		<description><![CDATA[This past Tuesday, the White House announced it&#8217;s intention to ask Congress for $50 million for seed capital for the Social Innovation Fund. At the TIME 100 Most Influential People event in New York, First Lady, Michelle Obama described it &#8230; <a href="http://andrewmarconi.com/2009/05/white-house-social-innovation-fund/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This past Tuesday, the White House announced it&#8217;s intention to ask Congress for $50 million for seed capital for the Social Innovation Fund. <span id="more-36"></span>At the TIME 100 Most Influential People event in New York, First Lady, Michelle Obama described it as:</p>
<blockquote><p>The idea is simple: to find the most effective programs out there and then provide the capital needed to replicate their success in communities around the country that are facing similar challenges. By focusing on high-impact, result-oriented non-profits, we will ensure that government dollars are spent in a way that is effective, accountable and worthy of the public trust.</p></blockquote>
<p>I&#8217;ll be interested to see who ends up leading the pack here. Who has been the most innovative? The larger, more established non-profits or the smaller under-funded ones like the <a href="http://www.medicarerights.org/" target="_blank">Medicare Rights Center</a>? Although organizations such as Habitat do some great work, my money is on the smaller non-profits and individual entrepreneurs.</p>
<ul>
<li>Read the <a href="http://www.whitehouse.gov/blog/What-Is-the-Social-Innovation-Fund/" target="_blank">White House Blog Post &#8220;What is the Social Innovation Fund?&#8221;</a></li>
<li>Read the <a href="http://www.whitehouse.gov/the_press_office/President-Obama-to-Request-50-Million-to-Identify-and-Expand-Effective-Innovative-Non-Profits/" target="_blank">White House Briefing</a></li>
<li>More Details via <a href="http://www.americaforward.org/2009/05/details-on-the-social-innovation-fund-from-the-serve-america-act/" target="_blank">AmericaForward.org</a></li>
</ul>
<p>[Via <a href="http://designmind.frogdesign.com/blog/white-house-launches-social-innovation-fund.html" target="_blank">DesignMind</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmarconi.com/2009/05/white-house-social-innovation-fund/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

