<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>AndrewDyck.com</title>
	
	<link>http://www.andrewdyck.com</link>
	<description>My thoughts on computing, economics and life</description>
	<lastBuildDate>Sat, 27 Nov 2010 00:15:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
		<feedburner:info uri="techonomist" /><creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.0/</creativeCommons:license><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><feedburner:info uri="techonomist" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/techonomist" /><feedburner:info uri="techonomist" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Download and unzip data files from Stata (Linux/Windows)</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/ARZQ0aKETds/</link>
		<comments>http://www.andrewdyck.com/download-and-unzip-data-files-from-stata/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 07:54:18 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Stata]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=835</guid>
		<description><![CDATA[Recently, I&#8217;ve been using Stata&#8217;s -shp2dta- command to convert some shapefiles to stata format, grabbing Lat/Lon data and merging into another dataset. There were several compressed shapefiles I wanted to download contained in a directory from the web. I could manually download each file and uncompress each one but that would be time consuming. Also, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I&#8217;ve been using Stata&#8217;s -shp2dta- command to convert some shapefiles to stata format, grabbing Lat/Lon data and merging into another dataset. There were several compressed shapefiles I wanted to download contained in a directory from the web. I could manually download each file and uncompress each one but that would be time consuming. Also, when the maps are updated, I&#8217;d have to do the download/uncompress all over again. I&#8217;ve found that the process can be automated from within Stata by using a combination of -shell- and some handy terminal commands. If you are using Windows, you&#8217;ll need an additional set of command-line utilities called <a href="http://sourceforge.net/projects/unxutils/">Unix Utils</a>.</p>
<p>Steps to download and start using compressed data are outlined below.</p>
<p><strong>step one (skip if Linux user): </strong></p>
<ol>
<li><a href="http://sourceforge.net/projects/unxutils/">Download Unix Utilities for Windows</a></li>
<li>Unzip Unix tools to a directory of your choice. I put them in my &#8220;Program Files&#8221; directory.</li>
<li>Browse through the directory you just created to find the folder where the executable files are. After extracting the files the executables were in:
<pre class="brush: bash; title: ;">
C:\Program Files\usr\local\wbin\
</pre>
</li>
<li>Add this directory to your system PATH variable. You do this so that you can call these commands from the terminal from any folder on your hard drive. In my case I right clicked My Computer, selected properties > Advanced settings > Environment Variables, then edit the &#8220;path&#8221; variable adding the text &#8220;;C:\Program Files\usr\local\wbin\&#8221; without quotation marks. Be careful not to add a space between the semi-colon and the directory name.</li>
</ol>
<p><strong>Step two:</strong></p>
<p>Open Stata and run the following commands or add them to a do-file.</p>
<p>Change to a working directory (e.g. cd &#8220;C:\Temp&#8221;)</p>
<p>Download the file to a file called download.zip by issuing the command:</p>
<pre class="brush: perl; title: ;">
shell wget -Odownload.zip &quot;http://example.com/download.zip&quot;
</pre>
<p>This command will use Stata&#8217;s -shell- command to send the text following to your operating system&#8217;s shell. For the command above this will use the unix utility wget to download a compressed file.</p>
<p>Now that the file is downloaded we need to unzip the compressed archive. On Windows I prefer to use 7zip for compression, but you could also use gzip from the Unix Utils package or unzip if you&#8217;re on Linux. I&#8217;ve included all three of these options below so choose one. Again, we submit the commands to Stata with the prefix -shell- so it sends the command to the OS shell.</p>
<pre class="brush: perl; title: ;">
shell 7z x -o.\unZipped download.zip
shell gzip -d download.zip
shell unzip download.zip
</pre>
<p>Including these in a do-file is extra useful as it automates the download and unzipping process. Be careful using wget in a do-file though, especially if you are trying to debug a your code. Some webmasters won&#8217;t like you downloading files multiple times and using up their bandwidth and this can get you blocked.</p>
<p>I haven&#8217;t tried it yet, but, I imagine that -shell- could be used to call other handy command line tools like Python scripts or maybe even leverage some useful R packages. I&#8217;ll post again if I have any luck with these options.</p>
<p>Now it&#8217;s time to dive into the data contained in those compressed archives and unlock their secrets. Good luck!!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=SGkb4fhaKpk:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=SGkb4fhaKpk:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=SGkb4fhaKpk:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=SGkb4fhaKpk:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=SGkb4fhaKpk:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=SGkb4fhaKpk:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=SGkb4fhaKpk:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=SGkb4fhaKpk:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/SGkb4fhaKpk" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=wNybpnRMPwQ:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=wNybpnRMPwQ:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=wNybpnRMPwQ:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=wNybpnRMPwQ:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=wNybpnRMPwQ:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=wNybpnRMPwQ:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=wNybpnRMPwQ:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=wNybpnRMPwQ:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/wNybpnRMPwQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=ZPqT_H70gBs:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ZPqT_H70gBs:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ZPqT_H70gBs:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ZPqT_H70gBs:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ZPqT_H70gBs:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ZPqT_H70gBs:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ZPqT_H70gBs:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ZPqT_H70gBs:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/ZPqT_H70gBs" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=avQA4D6snCw:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=avQA4D6snCw:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=avQA4D6snCw:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=avQA4D6snCw:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=avQA4D6snCw:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=avQA4D6snCw:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=avQA4D6snCw:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=avQA4D6snCw:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/avQA4D6snCw" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=OwQBYZRX5R4:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=OwQBYZRX5R4:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=OwQBYZRX5R4:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=OwQBYZRX5R4:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=OwQBYZRX5R4:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=OwQBYZRX5R4:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=OwQBYZRX5R4:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=OwQBYZRX5R4:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/OwQBYZRX5R4" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=AuAZvEhMOlY:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=AuAZvEhMOlY:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=AuAZvEhMOlY:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=AuAZvEhMOlY:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=AuAZvEhMOlY:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=AuAZvEhMOlY:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=AuAZvEhMOlY:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=AuAZvEhMOlY:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/AuAZvEhMOlY" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=HwMLZNs6dqs:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=HwMLZNs6dqs:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=HwMLZNs6dqs:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=HwMLZNs6dqs:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=HwMLZNs6dqs:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=HwMLZNs6dqs:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=HwMLZNs6dqs:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=HwMLZNs6dqs:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/HwMLZNs6dqs" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=zbj8lxfireE:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=zbj8lxfireE:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=zbj8lxfireE:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=zbj8lxfireE:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=zbj8lxfireE:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=zbj8lxfireE:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=zbj8lxfireE:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=zbj8lxfireE:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/zbj8lxfireE" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=WJcsbM3O44I:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WJcsbM3O44I:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=WJcsbM3O44I:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WJcsbM3O44I:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=WJcsbM3O44I:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WJcsbM3O44I:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=WJcsbM3O44I:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WJcsbM3O44I:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/WJcsbM3O44I" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=W0jWsLYfkgI:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=W0jWsLYfkgI:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=W0jWsLYfkgI:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=W0jWsLYfkgI:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=W0jWsLYfkgI:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=W0jWsLYfkgI:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=W0jWsLYfkgI:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=W0jWsLYfkgI:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/W0jWsLYfkgI" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=WjkX_d3RD8M:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WjkX_d3RD8M:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=WjkX_d3RD8M:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WjkX_d3RD8M:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=WjkX_d3RD8M:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WjkX_d3RD8M:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=WjkX_d3RD8M:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WjkX_d3RD8M:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/WjkX_d3RD8M" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Cvcj-UVANvA:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Cvcj-UVANvA:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Cvcj-UVANvA:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Cvcj-UVANvA:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Cvcj-UVANvA:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Cvcj-UVANvA:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Cvcj-UVANvA:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Cvcj-UVANvA:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Cvcj-UVANvA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=O0uPeQ-Nf2k:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=O0uPeQ-Nf2k:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=O0uPeQ-Nf2k:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=O0uPeQ-Nf2k:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=O0uPeQ-Nf2k:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=O0uPeQ-Nf2k:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=O0uPeQ-Nf2k:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=O0uPeQ-Nf2k:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/O0uPeQ-Nf2k" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Be6BJ30V4Cg:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Be6BJ30V4Cg:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Be6BJ30V4Cg:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Be6BJ30V4Cg:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Be6BJ30V4Cg:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Be6BJ30V4Cg:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Be6BJ30V4Cg:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Be6BJ30V4Cg:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Be6BJ30V4Cg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=c1C4fiMckPg:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=c1C4fiMckPg:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=c1C4fiMckPg:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=c1C4fiMckPg:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=c1C4fiMckPg:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=c1C4fiMckPg:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=c1C4fiMckPg:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=c1C4fiMckPg:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/c1C4fiMckPg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=ARZQ0aKETds:wB3IWF1_sI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ARZQ0aKETds:wB3IWF1_sI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ARZQ0aKETds:wB3IWF1_sI4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ARZQ0aKETds:wB3IWF1_sI4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ARZQ0aKETds:wB3IWF1_sI4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ARZQ0aKETds:wB3IWF1_sI4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ARZQ0aKETds:wB3IWF1_sI4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ARZQ0aKETds:wB3IWF1_sI4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/ARZQ0aKETds" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/download-and-unzip-data-files-from-stata/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/download-and-unzip-data-files-from-stata/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/SGkb4fhaKpk/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/wNybpnRMPwQ/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/ZPqT_H70gBs/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/avQA4D6snCw/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/OwQBYZRX5R4/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/AuAZvEhMOlY/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/HwMLZNs6dqs/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/zbj8lxfireE/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/WJcsbM3O44I/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/W0jWsLYfkgI/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/WjkX_d3RD8M/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Cvcj-UVANvA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/O0uPeQ-Nf2k/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Be6BJ30V4Cg/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/c1C4fiMckPg/</feedburner:origLink></item>
		<item>
		<title>Why piracy works in one image and a quote</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/KPWgU0jqUbo/</link>
		<comments>http://www.andrewdyck.com/why-piracy-works-in-one-image-and-a-quote/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 07:33:22 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Economics]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[piracy]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=502</guid>
		<description><![CDATA[I rented a movie from Blockbuster the other day (Clash of the Titans, which I&#8217;d give 3 stars) and I was reminded of this image below that I originally saw on the web here. Click the image to see the full version. I also overheard the following conversation by a couple of teens in the [...]]]></description>
			<content:encoded><![CDATA[<p>I rented a movie from Blockbuster the other day (Clash of the Titans, which I&#8217;d give 3 stars) and I was reminded of this image below that I originally saw on <a href="http://lifehacker.com/5475113/remains-of-the-day-why-piracy-works-edition">the web here</a>. Click the image to see the full version.</p>
<p><a href="http://www.andrewdyck.com/blog/wp-content/uploads/2010/11/GxzeV.jpg"><img src="http://www.andrewdyck.com/blog/wp-content/uploads/2010/11/GxzeV-290x300.jpg" alt="" title="Why piracy works" width="290" height="300" class="size-medium wp-image-855" /></a></p>
<p>I also overheard the following conversation by a couple of teens in the store:</p>
<blockquote><p>
&#8220;This movie looks cool.&#8221;<br />
&#8220;Yeah, but I was looking for something else.&#8221;<br />
&#8220;Let&#8217;s just go home and watch something on the net. There&#8217;s more selection and we don&#8217;t have to return it.&#8221;
</p></blockquote>
<p>The movie industry seems to have an uphill battle if it continues with it&#8217;s current business model.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=IEKbwtVz6tc:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=IEKbwtVz6tc:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=IEKbwtVz6tc:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=IEKbwtVz6tc:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=IEKbwtVz6tc:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=IEKbwtVz6tc:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=IEKbwtVz6tc:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=IEKbwtVz6tc:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/IEKbwtVz6tc" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=hZiGHpORZ44:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hZiGHpORZ44:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=hZiGHpORZ44:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hZiGHpORZ44:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=hZiGHpORZ44:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hZiGHpORZ44:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=hZiGHpORZ44:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hZiGHpORZ44:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/hZiGHpORZ44" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=p5u_2PJ1zcE:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=p5u_2PJ1zcE:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=p5u_2PJ1zcE:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=p5u_2PJ1zcE:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=p5u_2PJ1zcE:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=p5u_2PJ1zcE:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=p5u_2PJ1zcE:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=p5u_2PJ1zcE:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/p5u_2PJ1zcE" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=gnP0GNA_dhE:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gnP0GNA_dhE:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=gnP0GNA_dhE:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gnP0GNA_dhE:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=gnP0GNA_dhE:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gnP0GNA_dhE:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=gnP0GNA_dhE:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gnP0GNA_dhE:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/gnP0GNA_dhE" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=G8bStrYHr6E:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=G8bStrYHr6E:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=G8bStrYHr6E:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=G8bStrYHr6E:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=G8bStrYHr6E:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=G8bStrYHr6E:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=G8bStrYHr6E:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=G8bStrYHr6E:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/G8bStrYHr6E" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=qq59HKd_ne0:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=qq59HKd_ne0:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=qq59HKd_ne0:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=qq59HKd_ne0:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=qq59HKd_ne0:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=qq59HKd_ne0:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=qq59HKd_ne0:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=qq59HKd_ne0:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/qq59HKd_ne0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=ft4eHHy0jcA:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ft4eHHy0jcA:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ft4eHHy0jcA:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ft4eHHy0jcA:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ft4eHHy0jcA:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ft4eHHy0jcA:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ft4eHHy0jcA:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ft4eHHy0jcA:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/ft4eHHy0jcA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=YrZQHIGFzCk:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=YrZQHIGFzCk:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=YrZQHIGFzCk:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=YrZQHIGFzCk:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=YrZQHIGFzCk:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=YrZQHIGFzCk:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=YrZQHIGFzCk:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=YrZQHIGFzCk:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/YrZQHIGFzCk" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=PjFxK3TSLxQ:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=PjFxK3TSLxQ:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=PjFxK3TSLxQ:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=PjFxK3TSLxQ:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=PjFxK3TSLxQ:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=PjFxK3TSLxQ:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=PjFxK3TSLxQ:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=PjFxK3TSLxQ:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/PjFxK3TSLxQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=cy2LKPKPzeM:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=cy2LKPKPzeM:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=cy2LKPKPzeM:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=cy2LKPKPzeM:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=cy2LKPKPzeM:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=cy2LKPKPzeM:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=cy2LKPKPzeM:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=cy2LKPKPzeM:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/cy2LKPKPzeM" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=F6GZzx2AiBg:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=F6GZzx2AiBg:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=F6GZzx2AiBg:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=F6GZzx2AiBg:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=F6GZzx2AiBg:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=F6GZzx2AiBg:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=F6GZzx2AiBg:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=F6GZzx2AiBg:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/F6GZzx2AiBg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=WZeh2cd_KDM:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WZeh2cd_KDM:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=WZeh2cd_KDM:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WZeh2cd_KDM:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=WZeh2cd_KDM:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WZeh2cd_KDM:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=WZeh2cd_KDM:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=WZeh2cd_KDM:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/WZeh2cd_KDM" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=brzk3shUOU4:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=brzk3shUOU4:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=brzk3shUOU4:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=brzk3shUOU4:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=brzk3shUOU4:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=brzk3shUOU4:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=brzk3shUOU4:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=brzk3shUOU4:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/brzk3shUOU4" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=5jeOUebfNvg:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5jeOUebfNvg:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=5jeOUebfNvg:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5jeOUebfNvg:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=5jeOUebfNvg:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5jeOUebfNvg:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=5jeOUebfNvg:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5jeOUebfNvg:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/5jeOUebfNvg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=LsGoq7T5NwQ:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LsGoq7T5NwQ:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LsGoq7T5NwQ:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LsGoq7T5NwQ:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LsGoq7T5NwQ:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LsGoq7T5NwQ:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LsGoq7T5NwQ:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LsGoq7T5NwQ:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/LsGoq7T5NwQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=KPWgU0jqUbo:BgYeFO2FeR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=KPWgU0jqUbo:BgYeFO2FeR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=KPWgU0jqUbo:BgYeFO2FeR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=KPWgU0jqUbo:BgYeFO2FeR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=KPWgU0jqUbo:BgYeFO2FeR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=KPWgU0jqUbo:BgYeFO2FeR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=KPWgU0jqUbo:BgYeFO2FeR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=KPWgU0jqUbo:BgYeFO2FeR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/KPWgU0jqUbo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/why-piracy-works-in-one-image-and-a-quote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/why-piracy-works-in-one-image-and-a-quote/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/IEKbwtVz6tc/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/hZiGHpORZ44/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/p5u_2PJ1zcE/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/gnP0GNA_dhE/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/G8bStrYHr6E/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/qq59HKd_ne0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/ft4eHHy0jcA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/YrZQHIGFzCk/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/PjFxK3TSLxQ/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/cy2LKPKPzeM/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/F6GZzx2AiBg/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/WZeh2cd_KDM/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/brzk3shUOU4/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/5jeOUebfNvg/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/LsGoq7T5NwQ/</feedburner:origLink></item>
		<item>
		<title>Pop Economics on why gold might not be a great investment</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/vHTQIIiPUcw/</link>
		<comments>http://www.andrewdyck.com/pop-economics-on-why-gold-might-not-be-a-great-investment/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 02:26:44 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Economics]]></category>
		<category><![CDATA[gold]]></category>
		<category><![CDATA[investment]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=851</guid>
		<description><![CDATA[Pop Economics has developed the hilarious* video below that takes a jab at the gold bugs. The video isn&#8217;t exactly of Oscar winning quality but it&#8217;s short and worth a quick view. * hilarious for an economist == somewhat amusing for the other 99.8% of the population]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.popeconomics.com/2010/11/19/the-reasons-i-dont-buy-gold-video/">Pop Economics</a> has developed the hilarious* video below that takes a jab at the <a href="http://en.wikipedia.org/wiki/Gold_bug">gold bugs</a>. The video isn&#8217;t exactly of Oscar winning quality but it&#8217;s short and worth a quick view. </p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/VdT_0VVydBU?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/VdT_0VVydBU?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>* <em> hilarious for an economist == somewhat amusing for the other 99.8% of the population <img src='http://www.andrewdyck.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Ta6Lb-avBVM:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ta6Lb-avBVM:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Ta6Lb-avBVM:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ta6Lb-avBVM:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Ta6Lb-avBVM:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ta6Lb-avBVM:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Ta6Lb-avBVM:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ta6Lb-avBVM:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Ta6Lb-avBVM" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=U3rwOtICjC4:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U3rwOtICjC4:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=U3rwOtICjC4:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U3rwOtICjC4:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=U3rwOtICjC4:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U3rwOtICjC4:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=U3rwOtICjC4:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U3rwOtICjC4:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/U3rwOtICjC4" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=yNzgFHSSTc0:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yNzgFHSSTc0:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=yNzgFHSSTc0:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yNzgFHSSTc0:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=yNzgFHSSTc0:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yNzgFHSSTc0:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=yNzgFHSSTc0:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yNzgFHSSTc0:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/yNzgFHSSTc0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=tfN2pCiAoU0:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=tfN2pCiAoU0:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=tfN2pCiAoU0:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=tfN2pCiAoU0:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=tfN2pCiAoU0:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=tfN2pCiAoU0:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=tfN2pCiAoU0:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=tfN2pCiAoU0:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/tfN2pCiAoU0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=V937KUacRnw:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=V937KUacRnw:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=V937KUacRnw:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=V937KUacRnw:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=V937KUacRnw:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=V937KUacRnw:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=V937KUacRnw:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=V937KUacRnw:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/V937KUacRnw" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=kNMsNYuVPQU:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=kNMsNYuVPQU:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=kNMsNYuVPQU:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=kNMsNYuVPQU:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=kNMsNYuVPQU:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=kNMsNYuVPQU:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=kNMsNYuVPQU:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=kNMsNYuVPQU:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/kNMsNYuVPQU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=8EgSi6RBFLs:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8EgSi6RBFLs:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=8EgSi6RBFLs:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8EgSi6RBFLs:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=8EgSi6RBFLs:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8EgSi6RBFLs:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=8EgSi6RBFLs:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8EgSi6RBFLs:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/8EgSi6RBFLs" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=CFFui-gg5XA:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CFFui-gg5XA:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CFFui-gg5XA:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CFFui-gg5XA:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CFFui-gg5XA:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CFFui-gg5XA:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CFFui-gg5XA:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CFFui-gg5XA:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/CFFui-gg5XA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=7ed2M1wlc3c:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=7ed2M1wlc3c:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=7ed2M1wlc3c:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=7ed2M1wlc3c:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=7ed2M1wlc3c:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=7ed2M1wlc3c:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=7ed2M1wlc3c:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=7ed2M1wlc3c:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/7ed2M1wlc3c" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=n4a7Hzni1do:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=n4a7Hzni1do:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=n4a7Hzni1do:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=n4a7Hzni1do:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=n4a7Hzni1do:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=n4a7Hzni1do:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=n4a7Hzni1do:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=n4a7Hzni1do:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/n4a7Hzni1do" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Z_5XvcFeh84:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Z_5XvcFeh84:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Z_5XvcFeh84:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Z_5XvcFeh84:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Z_5XvcFeh84:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Z_5XvcFeh84:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Z_5XvcFeh84:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Z_5XvcFeh84:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Z_5XvcFeh84" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=c9xbpSkmi1U:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=c9xbpSkmi1U:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=c9xbpSkmi1U:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=c9xbpSkmi1U:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=c9xbpSkmi1U:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=c9xbpSkmi1U:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=c9xbpSkmi1U:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=c9xbpSkmi1U:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/c9xbpSkmi1U" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=LPoFmZyo1e4:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LPoFmZyo1e4:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LPoFmZyo1e4:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LPoFmZyo1e4:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LPoFmZyo1e4:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LPoFmZyo1e4:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LPoFmZyo1e4:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LPoFmZyo1e4:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/LPoFmZyo1e4" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=4eZonftuFBk:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4eZonftuFBk:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4eZonftuFBk:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4eZonftuFBk:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4eZonftuFBk:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4eZonftuFBk:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4eZonftuFBk:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4eZonftuFBk:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/4eZonftuFBk" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=3c3jjeWtPZs:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=3c3jjeWtPZs:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=3c3jjeWtPZs:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=3c3jjeWtPZs:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=3c3jjeWtPZs:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=3c3jjeWtPZs:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=3c3jjeWtPZs:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=3c3jjeWtPZs:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/3c3jjeWtPZs" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=vHTQIIiPUcw:i3mAChUAfEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=vHTQIIiPUcw:i3mAChUAfEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=vHTQIIiPUcw:i3mAChUAfEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=vHTQIIiPUcw:i3mAChUAfEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=vHTQIIiPUcw:i3mAChUAfEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=vHTQIIiPUcw:i3mAChUAfEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=vHTQIIiPUcw:i3mAChUAfEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=vHTQIIiPUcw:i3mAChUAfEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/vHTQIIiPUcw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/pop-economics-on-why-gold-might-not-be-a-great-investment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/pop-economics-on-why-gold-might-not-be-a-great-investment/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Ta6Lb-avBVM/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/U3rwOtICjC4/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/yNzgFHSSTc0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/tfN2pCiAoU0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/V937KUacRnw/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/kNMsNYuVPQU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/8EgSi6RBFLs/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/CFFui-gg5XA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/7ed2M1wlc3c/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/n4a7Hzni1do/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Z_5XvcFeh84/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/c9xbpSkmi1U/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/LPoFmZyo1e4/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/4eZonftuFBk/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/3c3jjeWtPZs/</feedburner:origLink></item>
		<item>
		<title>Connect to MySQL database using Stata</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/W5noB0hfiDU/</link>
		<comments>http://www.andrewdyck.com/connect-to-mysql-database-using-stata/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 01:58:43 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[ODBC]]></category>
		<category><![CDATA[Stata]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=842</guid>
		<description><![CDATA[Today the Stata Corp. blog outlined a new feature introduced to Stata 11.1 that allows one to connect to an ODBC database without setting up a DSN. This is a nice addition and simplifies the process of loading ODBC data for those one-off projects. The blog post explains how to connect to database running on [...]]]></description>
			<content:encoded><![CDATA[<p>Today the Stata Corp. blog <a href="http://blog.stata.com/2010/11/10/connection-string-support-added-to-odbc-command/">outlined a new feature introduced to Stata 11.1</a> that allows one to connect to an ODBC database without setting up a DSN. This is a nice addition and simplifies the process of loading ODBC data for those one-off projects. </p>
<p>The blog post explains how to connect to database running on Microsoft&#8217;s SQL server. Below I&#8217;ll describe the process using a database on the open-source MySQL platform.</p>
<p><strong>Step 0: Download/Install the MySQL ODBC Driver</strong><br />
If you haven&#8217;t done this already, you must install an ODBC driver to connect to MySQL servers. You can <a href="http://dev.mysql.com/downloads/connector/odbc">download the latest version of the MySQL ODBC driver</a> and install it by following the prompts.</p>
<p><strong>Step 1: Load data from your MySQL database using Stata</strong><br />
The following example code will connect to a MySQL database (worldstats) running on my local machine (localhost) and extract a unique ID and name using a SQL statement (&#8216;sql&#8217;) from a table of country attributes (countries). This database requires a username (UID=andrew) and password (PWD=pass) but these may not be needed depending on how the server you are connecting to is configured.</p>
<pre class="brush: perl; title: ;">
local db &quot;DRIVER={MySQL ODBC 5.1 Driver};SERVER=localhost;DATABASE=worldstats;UID=andrew;PWD=pass;&quot;
local sql &quot;SELECT ID, CountryName FROM countries&quot;

odbc load, exec(&quot;`sql'&quot;) conn(&quot;`db'&quot;) clear
des
</pre>
<p>For more info about using -odbc- in Stata search the help files by typing &#8220;help odbc&#8221;. Good luck!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=2ikJBUvxFC0:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=2ikJBUvxFC0:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=2ikJBUvxFC0:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=2ikJBUvxFC0:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=2ikJBUvxFC0:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=2ikJBUvxFC0:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=2ikJBUvxFC0:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=2ikJBUvxFC0:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/2ikJBUvxFC0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Q80rn2clkdk:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Q80rn2clkdk:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Q80rn2clkdk:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Q80rn2clkdk:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Q80rn2clkdk:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Q80rn2clkdk:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Q80rn2clkdk:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Q80rn2clkdk:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Q80rn2clkdk" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=-MAYQxSiqDQ:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-MAYQxSiqDQ:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-MAYQxSiqDQ:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-MAYQxSiqDQ:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-MAYQxSiqDQ:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-MAYQxSiqDQ:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-MAYQxSiqDQ:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-MAYQxSiqDQ:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/-MAYQxSiqDQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=u2XqQOBlWxw:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=u2XqQOBlWxw:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=u2XqQOBlWxw:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=u2XqQOBlWxw:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=u2XqQOBlWxw:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=u2XqQOBlWxw:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=u2XqQOBlWxw:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=u2XqQOBlWxw:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/u2XqQOBlWxw" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=e2R2PiizANQ:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=e2R2PiizANQ:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=e2R2PiizANQ:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=e2R2PiizANQ:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=e2R2PiizANQ:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=e2R2PiizANQ:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=e2R2PiizANQ:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=e2R2PiizANQ:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/e2R2PiizANQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=LGN-G_jwj4c:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LGN-G_jwj4c:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LGN-G_jwj4c:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LGN-G_jwj4c:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LGN-G_jwj4c:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LGN-G_jwj4c:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LGN-G_jwj4c:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LGN-G_jwj4c:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/LGN-G_jwj4c" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=5eoyZiMiOjE:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5eoyZiMiOjE:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=5eoyZiMiOjE:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5eoyZiMiOjE:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=5eoyZiMiOjE:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5eoyZiMiOjE:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=5eoyZiMiOjE:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5eoyZiMiOjE:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/5eoyZiMiOjE" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Nyl67tiMctc:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Nyl67tiMctc:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Nyl67tiMctc:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Nyl67tiMctc:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Nyl67tiMctc:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Nyl67tiMctc:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Nyl67tiMctc:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Nyl67tiMctc:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Nyl67tiMctc" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Ge7t_nYmaeI:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ge7t_nYmaeI:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Ge7t_nYmaeI:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ge7t_nYmaeI:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Ge7t_nYmaeI:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ge7t_nYmaeI:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Ge7t_nYmaeI:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ge7t_nYmaeI:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Ge7t_nYmaeI" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=gLqkDChc6Vc:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gLqkDChc6Vc:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=gLqkDChc6Vc:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gLqkDChc6Vc:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=gLqkDChc6Vc:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gLqkDChc6Vc:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=gLqkDChc6Vc:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gLqkDChc6Vc:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/gLqkDChc6Vc" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=A4Aa7Ilc4rI:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=A4Aa7Ilc4rI:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=A4Aa7Ilc4rI:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=A4Aa7Ilc4rI:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=A4Aa7Ilc4rI:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=A4Aa7Ilc4rI:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=A4Aa7Ilc4rI:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=A4Aa7Ilc4rI:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/A4Aa7Ilc4rI" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=CQmgoebLbw8:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CQmgoebLbw8:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CQmgoebLbw8:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CQmgoebLbw8:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CQmgoebLbw8:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CQmgoebLbw8:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CQmgoebLbw8:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CQmgoebLbw8:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/CQmgoebLbw8" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=NcSMiCLmEDk:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=NcSMiCLmEDk:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=NcSMiCLmEDk:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=NcSMiCLmEDk:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=NcSMiCLmEDk:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=NcSMiCLmEDk:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=NcSMiCLmEDk:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=NcSMiCLmEDk:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/NcSMiCLmEDk" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=u_r0dHJMFyw:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=u_r0dHJMFyw:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=u_r0dHJMFyw:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=u_r0dHJMFyw:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=u_r0dHJMFyw:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=u_r0dHJMFyw:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=u_r0dHJMFyw:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=u_r0dHJMFyw:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/u_r0dHJMFyw" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=TdQurOi-fLg:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=TdQurOi-fLg:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=TdQurOi-fLg:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=TdQurOi-fLg:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=TdQurOi-fLg:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=TdQurOi-fLg:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=TdQurOi-fLg:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=TdQurOi-fLg:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/TdQurOi-fLg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=W5noB0hfiDU:GpTuQW_7IVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=W5noB0hfiDU:GpTuQW_7IVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=W5noB0hfiDU:GpTuQW_7IVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=W5noB0hfiDU:GpTuQW_7IVQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=W5noB0hfiDU:GpTuQW_7IVQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=W5noB0hfiDU:GpTuQW_7IVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=W5noB0hfiDU:GpTuQW_7IVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=W5noB0hfiDU:GpTuQW_7IVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/W5noB0hfiDU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/connect-to-mysql-database-using-stata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/connect-to-mysql-database-using-stata/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/2ikJBUvxFC0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Q80rn2clkdk/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/-MAYQxSiqDQ/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/u2XqQOBlWxw/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/e2R2PiizANQ/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/LGN-G_jwj4c/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/5eoyZiMiOjE/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Nyl67tiMctc/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Ge7t_nYmaeI/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/gLqkDChc6Vc/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/A4Aa7Ilc4rI/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/CQmgoebLbw8/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/NcSMiCLmEDk/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/u_r0dHJMFyw/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/TdQurOi-fLg/</feedburner:origLink></item>
		<item>
		<title>Short script to backup MySQL database from Python</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/aYG8rVCtK24/</link>
		<comments>http://www.andrewdyck.com/short-script-to-backup-mysql-database-from-python/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 04:13:51 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=828</guid>
		<description><![CDATA[Although MySQL is normally thought of as the relational database management system that many websites are built on, I&#8217;ve found it to be pretty useful for many non-web tasks. Some advantages to using MySQL is that it&#8217;s cross platform so I can use it on my Linux and Windows computers and the availability of the [...]]]></description>
			<content:encoded><![CDATA[<p>Although <a href="http://www.mysql.com/">MySQL</a> is normally thought of as the relational database management system that many websites are built on, I&#8217;ve found it to be pretty useful for many non-web tasks. Some advantages to using MySQL is that it&#8217;s cross platform so I can use it on my Linux and Windows computers and the availability of the gui tool <a href="http://www.phpmyadmin.net/">phpMyAdmin</a> which is also cross-platform. </p>
<p>If you use phpMyAdmin, or you&#8217;re a linux geek, you know that backing up your MySQL database to a .sql file is easy. There is a point-and-click interface for phpMyAdmin and you can use mysqldump in a terminal on linux. Turns out this also works on windows with a small tweak and can be called from a Python script as well if you are using that language for development&#8230;.and if you&#8217;re not you should really consider it.</p>
<p><strong>Steps to backup a MySQL database running on windows from Python</strong></p>
<p>1. My default install of WAMP2 for Windows 7 didn&#8217;t set an environment variable for the MySQL folder so I added it by adding the text &#8220;;C:\wamp\bin\mysql\MySQL 5.1.36\bin&#8221; without quotes to the windows PATH by right clicking &#8220;My Computer&#8221; > Properties > Advanced settings > Environment variables.</p>
<p>2. Now you should be able to run mysql from the command line from any folder. Try it by opening a command window (win + r > cmd > OK) and typing: &#8220;mysql -u username&#8221;. Pretty cool.</p>
<p>3. Now you&#8217;re set to run MySQL commands from Python (or PHP, etc. as well I imagine). The following few lines of code will backup an entire database to a temporary directory in your root directory. Good luck!</p>
<pre class="brush: python; title: ;">
import os
target_dir = 'C:\\TEMP\\'
os.system(&quot;mysqldump --add-drop-table -c -u username -ppassword database &gt; &quot;+target_dir+&quot;database.bak.sql&quot;)
</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=4SgSHm6NFqg:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4SgSHm6NFqg:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4SgSHm6NFqg:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4SgSHm6NFqg:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4SgSHm6NFqg:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4SgSHm6NFqg:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4SgSHm6NFqg:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4SgSHm6NFqg:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/4SgSHm6NFqg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=DyOQMIVScZA:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DyOQMIVScZA:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=DyOQMIVScZA:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DyOQMIVScZA:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=DyOQMIVScZA:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DyOQMIVScZA:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=DyOQMIVScZA:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DyOQMIVScZA:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/DyOQMIVScZA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=DJ3QW6WVyKc:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DJ3QW6WVyKc:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=DJ3QW6WVyKc:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DJ3QW6WVyKc:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=DJ3QW6WVyKc:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DJ3QW6WVyKc:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=DJ3QW6WVyKc:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DJ3QW6WVyKc:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/DJ3QW6WVyKc" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=mI-y-ZSmOM8:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=mI-y-ZSmOM8:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=mI-y-ZSmOM8:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=mI-y-ZSmOM8:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=mI-y-ZSmOM8:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=mI-y-ZSmOM8:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=mI-y-ZSmOM8:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=mI-y-ZSmOM8:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/mI-y-ZSmOM8" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=fdfK8HIvLrs:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=fdfK8HIvLrs:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=fdfK8HIvLrs:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=fdfK8HIvLrs:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=fdfK8HIvLrs:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=fdfK8HIvLrs:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=fdfK8HIvLrs:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=fdfK8HIvLrs:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/fdfK8HIvLrs" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=xO8TvpddhzA:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=xO8TvpddhzA:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=xO8TvpddhzA:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=xO8TvpddhzA:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=xO8TvpddhzA:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=xO8TvpddhzA:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=xO8TvpddhzA:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=xO8TvpddhzA:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/xO8TvpddhzA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Ug6S2PHenlU:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ug6S2PHenlU:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Ug6S2PHenlU:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ug6S2PHenlU:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Ug6S2PHenlU:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ug6S2PHenlU:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Ug6S2PHenlU:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Ug6S2PHenlU:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Ug6S2PHenlU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=cL5DEgeVjjo:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=cL5DEgeVjjo:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=cL5DEgeVjjo:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=cL5DEgeVjjo:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=cL5DEgeVjjo:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=cL5DEgeVjjo:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=cL5DEgeVjjo:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=cL5DEgeVjjo:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/cL5DEgeVjjo" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=JOK3-O9Nvh8:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=JOK3-O9Nvh8:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=JOK3-O9Nvh8:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=JOK3-O9Nvh8:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=JOK3-O9Nvh8:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=JOK3-O9Nvh8:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=JOK3-O9Nvh8:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=JOK3-O9Nvh8:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/JOK3-O9Nvh8" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=GOL02Zlop8M:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=GOL02Zlop8M:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=GOL02Zlop8M:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=GOL02Zlop8M:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=GOL02Zlop8M:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=GOL02Zlop8M:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=GOL02Zlop8M:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=GOL02Zlop8M:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/GOL02Zlop8M" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=qTaZswhsebg:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=qTaZswhsebg:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=qTaZswhsebg:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=qTaZswhsebg:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=qTaZswhsebg:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=qTaZswhsebg:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=qTaZswhsebg:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=qTaZswhsebg:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/qTaZswhsebg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=vw_3jkNTHqU:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=vw_3jkNTHqU:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=vw_3jkNTHqU:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=vw_3jkNTHqU:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=vw_3jkNTHqU:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=vw_3jkNTHqU:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=vw_3jkNTHqU:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=vw_3jkNTHqU:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/vw_3jkNTHqU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=yo1JIaGWsJE:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yo1JIaGWsJE:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=yo1JIaGWsJE:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yo1JIaGWsJE:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=yo1JIaGWsJE:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yo1JIaGWsJE:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=yo1JIaGWsJE:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yo1JIaGWsJE:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/yo1JIaGWsJE" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=sVN7bhUutY4:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=sVN7bhUutY4:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=sVN7bhUutY4:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=sVN7bhUutY4:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=sVN7bhUutY4:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=sVN7bhUutY4:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=sVN7bhUutY4:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=sVN7bhUutY4:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/sVN7bhUutY4" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=snhpygOMiEc:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=snhpygOMiEc:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=snhpygOMiEc:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=snhpygOMiEc:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=snhpygOMiEc:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=snhpygOMiEc:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=snhpygOMiEc:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=snhpygOMiEc:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/snhpygOMiEc" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=aYG8rVCtK24:6KcD-gRaoVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=aYG8rVCtK24:6KcD-gRaoVc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=aYG8rVCtK24:6KcD-gRaoVc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=aYG8rVCtK24:6KcD-gRaoVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=aYG8rVCtK24:6KcD-gRaoVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=aYG8rVCtK24:6KcD-gRaoVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=aYG8rVCtK24:6KcD-gRaoVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=aYG8rVCtK24:6KcD-gRaoVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/aYG8rVCtK24" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/short-script-to-backup-mysql-database-from-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/short-script-to-backup-mysql-database-from-python/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/4SgSHm6NFqg/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/DyOQMIVScZA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/DJ3QW6WVyKc/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/mI-y-ZSmOM8/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/fdfK8HIvLrs/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/xO8TvpddhzA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Ug6S2PHenlU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/cL5DEgeVjjo/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/JOK3-O9Nvh8/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/GOL02Zlop8M/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/qTaZswhsebg/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/vw_3jkNTHqU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/yo1JIaGWsJE/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/sVN7bhUutY4/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/snhpygOMiEc/</feedburner:origLink></item>
		<item>
		<title>How to convert CSV data to geoJSON</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/MLch6h3nmqs/</link>
		<comments>http://www.andrewdyck.com/how-to-convert-csv-data-to-geojson/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 16:51:10 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=731</guid>
		<description><![CDATA[A few weeks ago I posted about some things I&#8217;ve been reading on how to incorporate data on a map for the web using open-source OpenLayers. While other work has kept me away from making substantial progess on the maps, I have made some steps towards converting data into geoJSON format for use in these [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago <a href="http://www.andrewdyck.com/mapping-data-on-the-web-using-mapbox-openlayers/">I posted about some things I&#8217;ve been reading</a> on how to incorporate data on a map for the web using open-source OpenLayers. While other work has kept me away from making substantial progess on the maps, I have made some steps towards converting data into geoJSON format for use in these types of web applications. The solution I have isn&#8217;t exactly elegant since it is very specific one dataset but it works and should be adaptable.</p>
<p>I&#8217;m new to using <a href="http://github.com">github</a> for code but I have posted the code for this script up there to share with whoever can make something useful of it. You can <a href="http://github.com/andrewjdyck/csvToGeoJSON/blob/master//csvToGeoJSON.py">download the Python script</a> to convert CSV (with lat/long coordinates) to geoJSON or <a href="https://andrewjdyck@github.com/andrewjdyck/csvToGeoJSON.git">clone the .git repository</a>.</p>
<p>Below I post the body of the Python script for comments if anyone should pass this way with suggestions for improvements.</p>
<pre class="brush: python; title: ;">
import csv

# Read in raw data from csv
rawData = csv.reader(open('sample.csv', 'rb'), dialect='excel')

# the template. where data from the csv will be formatted to geojson
template = \
    ''' \
    { &quot;type&quot; : &quot;Feature&quot;,
        &quot;id&quot; : %s,
            &quot;geometry&quot; : {
                &quot;type&quot; : &quot;Point&quot;,
                &quot;coordinates&quot; : [&quot;%s&quot;,&quot;%s&quot;]},
        &quot;properties&quot; : { &quot;name&quot; : &quot;%s&quot;, &quot;value&quot; : &quot;%s&quot;}
        },
    '''

# the head of the geojson file
output = \
    ''' \
{ &quot;type&quot; : &quot;Feature Collection&quot;,
    {&quot;features&quot; : [
    '''

# loop through the csv by row skipping the first
iter = 0
for row in rawData:
    iter += 1
    if iter &gt;= 2:
        id = row[0]
        lat = row[1]
        lon = row[2]
        name = row[3]
        pop = row[4]
        output += template % (row[0], row[2], row[1], row[3], row[4])

# the tail of the geojson file
output += \
    ''' \
    ]
}
    '''

# opens an geoJSON file to write the output to
outFileHandle = open(&quot;output.geojson&quot;, &quot;w&quot;)
outFileHandle.write(output)
outFileHandle.close()
</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=mGeSKnq7_Sw:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=mGeSKnq7_Sw:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=mGeSKnq7_Sw:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=mGeSKnq7_Sw:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=mGeSKnq7_Sw:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=mGeSKnq7_Sw:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=mGeSKnq7_Sw:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=mGeSKnq7_Sw:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/mGeSKnq7_Sw" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=jphkUj4yVBU:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jphkUj4yVBU:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=jphkUj4yVBU:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jphkUj4yVBU:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=jphkUj4yVBU:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jphkUj4yVBU:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=jphkUj4yVBU:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jphkUj4yVBU:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/jphkUj4yVBU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=FubBhGFyZMI:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=FubBhGFyZMI:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=FubBhGFyZMI:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=FubBhGFyZMI:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=FubBhGFyZMI:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=FubBhGFyZMI:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=FubBhGFyZMI:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=FubBhGFyZMI:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/FubBhGFyZMI" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=3NpMRLv_0cY:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=3NpMRLv_0cY:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=3NpMRLv_0cY:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=3NpMRLv_0cY:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=3NpMRLv_0cY:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=3NpMRLv_0cY:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=3NpMRLv_0cY:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=3NpMRLv_0cY:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/3NpMRLv_0cY" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=g1ezr3qj8Z8:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=g1ezr3qj8Z8:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=g1ezr3qj8Z8:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=g1ezr3qj8Z8:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=g1ezr3qj8Z8:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=g1ezr3qj8Z8:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=g1ezr3qj8Z8:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=g1ezr3qj8Z8:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/g1ezr3qj8Z8" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=RC1CySwkM-s:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=RC1CySwkM-s:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=RC1CySwkM-s:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=RC1CySwkM-s:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=RC1CySwkM-s:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=RC1CySwkM-s:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=RC1CySwkM-s:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=RC1CySwkM-s:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/RC1CySwkM-s" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=U69qAcxiiT0:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U69qAcxiiT0:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=U69qAcxiiT0:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U69qAcxiiT0:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=U69qAcxiiT0:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U69qAcxiiT0:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=U69qAcxiiT0:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U69qAcxiiT0:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/U69qAcxiiT0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=lRCT5Yk2ddA:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=lRCT5Yk2ddA:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=lRCT5Yk2ddA:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=lRCT5Yk2ddA:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=lRCT5Yk2ddA:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=lRCT5Yk2ddA:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=lRCT5Yk2ddA:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=lRCT5Yk2ddA:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/lRCT5Yk2ddA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=elrkvUTDKoA:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=elrkvUTDKoA:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=elrkvUTDKoA:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=elrkvUTDKoA:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=elrkvUTDKoA:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=elrkvUTDKoA:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=elrkvUTDKoA:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=elrkvUTDKoA:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/elrkvUTDKoA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=QxflNkd7hlQ:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=QxflNkd7hlQ:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=QxflNkd7hlQ:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=QxflNkd7hlQ:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=QxflNkd7hlQ:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=QxflNkd7hlQ:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=QxflNkd7hlQ:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=QxflNkd7hlQ:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/QxflNkd7hlQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Q9-d68Vyjd4:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Q9-d68Vyjd4:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Q9-d68Vyjd4:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Q9-d68Vyjd4:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Q9-d68Vyjd4:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Q9-d68Vyjd4:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Q9-d68Vyjd4:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Q9-d68Vyjd4:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Q9-d68Vyjd4" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=wx9Y6TNVnJU:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=wx9Y6TNVnJU:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=wx9Y6TNVnJU:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=wx9Y6TNVnJU:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=wx9Y6TNVnJU:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=wx9Y6TNVnJU:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=wx9Y6TNVnJU:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=wx9Y6TNVnJU:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/wx9Y6TNVnJU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Wd3MWThv_HI:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Wd3MWThv_HI:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Wd3MWThv_HI:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Wd3MWThv_HI:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Wd3MWThv_HI:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Wd3MWThv_HI:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Wd3MWThv_HI:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Wd3MWThv_HI:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Wd3MWThv_HI" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=pGa7LFc4F3s:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=pGa7LFc4F3s:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=pGa7LFc4F3s:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=pGa7LFc4F3s:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=pGa7LFc4F3s:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=pGa7LFc4F3s:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=pGa7LFc4F3s:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=pGa7LFc4F3s:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/pGa7LFc4F3s" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=871br5Z82FE:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=871br5Z82FE:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=871br5Z82FE:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=871br5Z82FE:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=871br5Z82FE:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=871br5Z82FE:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=871br5Z82FE:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=871br5Z82FE:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/871br5Z82FE" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=MLch6h3nmqs:_3h1guwtxSA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=MLch6h3nmqs:_3h1guwtxSA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=MLch6h3nmqs:_3h1guwtxSA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=MLch6h3nmqs:_3h1guwtxSA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=MLch6h3nmqs:_3h1guwtxSA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=MLch6h3nmqs:_3h1guwtxSA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=MLch6h3nmqs:_3h1guwtxSA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=MLch6h3nmqs:_3h1guwtxSA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/MLch6h3nmqs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/how-to-convert-csv-data-to-geojson/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/how-to-convert-csv-data-to-geojson/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/mGeSKnq7_Sw/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/jphkUj4yVBU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/FubBhGFyZMI/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/3NpMRLv_0cY/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/g1ezr3qj8Z8/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/RC1CySwkM-s/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/U69qAcxiiT0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/lRCT5Yk2ddA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/elrkvUTDKoA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/QxflNkd7hlQ/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Q9-d68Vyjd4/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/wx9Y6TNVnJU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Wd3MWThv_HI/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/pGa7LFc4F3s/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/871br5Z82FE/</feedburner:origLink></item>
		<item>
		<title>Generate monte-carlo simulated data for simultaneous equations</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/rLw3eiErnYQ/</link>
		<comments>http://www.andrewdyck.com/generate-monte-carlo-simulated-data-for-simultaneous-equations/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 01:46:14 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[monte-carlo]]></category>
		<category><![CDATA[Stata]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=680</guid>
		<description><![CDATA[There are many sources around the net describing how to use two-stage least squares (2sls) to estimate a system of simultaneous equations. I won&#8217;t get into the nitty-gritty of simultaneous equations here because there is plenty out there on the web. My purpose for this post is to simply show how one can create an [...]]]></description>
			<content:encoded><![CDATA[<p>There are many sources around the net describing how to use two-stage least squares (2sls) to estimate a system of simultaneous equations. I won&#8217;t get into the nitty-gritty of simultaneous equations here because there is plenty out there on the web. My purpose for this post is to simply show how one can create an arbitrary dataset that one can use to test the assumptions of estimators used for simultaneity problems. Exploring a known data generating process is a great way to learn about how different estimators perform under different circumstances. In my example I will use a system with two dependent variables, Y1 and Y2, and one independent variable, X1. Note that since this system has only one exogenous variable (X1) it is under-identified.</p>
<p>The procedure goes like this:</p>
<ol>
<li>Write out the equations in your system</li>
<li>Re-write the system as two equations expressed as functions of exogenous variables only</li>
<li>Generate the variables in your software package of choice. I&#8217;ll be using Stata although this would be equally easy in R and in python you should be able to solve the systems and generate the data in the program and avoid the algebra.</li>
</ol>
<p>1. Write out the system of equations:</p>
<p>Y1 = a0 + a1*Y2 + a2*X1 + e1<br />
Y2 = g0 + g1*Y1 + e2</p>
<p>where a0,a1,a2,g0 and g1 are parameters that we specify explicitly while e1 and e2 are error terms.</p>
<p>2. We can re-write the system of equations like this using simple substitution:</p>
<p>Y1 = (a0 + a1*g0 + a1*e2 + a2*x1 + e1)/(1 &#8211; a1*g1)<br />
Y2 = (g0 + g1*a0 + g1*a2*x1 + g1*e1 + e2)/(1 &#8211; g1*a1)</p>
<p>3. The following code will produce a dataset with simultaneously determined equations. Copy and paste into Stata and hit enter.</p>
<pre class="brush: perl; title: ;">
clear
set obs 1000

* These are the random variables
gen x1 = rnormal(0,1)
gen e1 = rnormal(0,1)
gen e2 = rnormal(0,1)&lt;/code&gt;

* These are the parameters of our equations
* They can be any value you choose
local a0 = 1
local a1 = 2
local a2 = 3
local g0 = 4
local g1 = 5

* This generates our two dependent variables
gen y1 = (`a0' + `a1'*`g0' + `a1'*e2 + `a2'*x1 + e1)/(1-`a1'*`g1')
gen y2 = (`g0' + `g1'*`a0' + `g1'*`a2'*x1 + `g1'*e1 + e2)/(1-`g1'*`a1')
</pre>
<p>
Done! </p>
<p>4. Now, since we know the data generating process (DGP) of this dataset, we should use it to test some of the assumptions of the 2SLS estimator. I&#8217;ll explore the 2SLS estimator in an upcoming post but to get you started you can try estimating the parameters using the -ivregress- command below.</p>
<pre class="brush: perl; title: ;">
ivregress 2sls y2 (y1 = x1)
</pre>
<p>Notice that the estimated coefficient on Y1 and intercept are 5.003 and 3.984 respectively. These are close to our input parameters so looks like the 2sls procedure works fairly well for this system. Now compare this to the results we&#8217;d find if we just used ordinary least squares (OLS).</p>
<pre class="brush: perl; title: ;">
regress y2 y1
</pre>
<p>This time we get an estimate for the coefficient on Y1 and intercept of 3.82 and 2.79 respectively. Not good, especially considering that Stata is reporting both of these estimates to be statistically significant.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=x2qQSPKObqo:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=x2qQSPKObqo:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=x2qQSPKObqo:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=x2qQSPKObqo:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=x2qQSPKObqo:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=x2qQSPKObqo:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=x2qQSPKObqo:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=x2qQSPKObqo:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/x2qQSPKObqo" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=pDryxL69yGk:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=pDryxL69yGk:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=pDryxL69yGk:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=pDryxL69yGk:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=pDryxL69yGk:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=pDryxL69yGk:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=pDryxL69yGk:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=pDryxL69yGk:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/pDryxL69yGk" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=634Qd3W224Q:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=634Qd3W224Q:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=634Qd3W224Q:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=634Qd3W224Q:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=634Qd3W224Q:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=634Qd3W224Q:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=634Qd3W224Q:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=634Qd3W224Q:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/634Qd3W224Q" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=iQO3MuFUiw0:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=iQO3MuFUiw0:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=iQO3MuFUiw0:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=iQO3MuFUiw0:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=iQO3MuFUiw0:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=iQO3MuFUiw0:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=iQO3MuFUiw0:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=iQO3MuFUiw0:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/iQO3MuFUiw0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=TrnbptqQibg:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=TrnbptqQibg:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=TrnbptqQibg:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=TrnbptqQibg:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=TrnbptqQibg:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=TrnbptqQibg:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=TrnbptqQibg:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=TrnbptqQibg:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/TrnbptqQibg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=MrKe1r6hLSQ:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=MrKe1r6hLSQ:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=MrKe1r6hLSQ:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=MrKe1r6hLSQ:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=MrKe1r6hLSQ:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=MrKe1r6hLSQ:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=MrKe1r6hLSQ:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=MrKe1r6hLSQ:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/MrKe1r6hLSQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Pl77oaGAMLI:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Pl77oaGAMLI:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Pl77oaGAMLI:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Pl77oaGAMLI:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Pl77oaGAMLI:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Pl77oaGAMLI:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Pl77oaGAMLI:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Pl77oaGAMLI:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Pl77oaGAMLI" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=2kLn1QrABlA:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=2kLn1QrABlA:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=2kLn1QrABlA:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=2kLn1QrABlA:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=2kLn1QrABlA:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=2kLn1QrABlA:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=2kLn1QrABlA:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=2kLn1QrABlA:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/2kLn1QrABlA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=KxUtvcSoDHg:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=KxUtvcSoDHg:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=KxUtvcSoDHg:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=KxUtvcSoDHg:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=KxUtvcSoDHg:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=KxUtvcSoDHg:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=KxUtvcSoDHg:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=KxUtvcSoDHg:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/KxUtvcSoDHg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=nea6YDmjtN0:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=nea6YDmjtN0:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=nea6YDmjtN0:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=nea6YDmjtN0:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=nea6YDmjtN0:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=nea6YDmjtN0:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=nea6YDmjtN0:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=nea6YDmjtN0:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/nea6YDmjtN0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=CDTIaA_sHDA:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CDTIaA_sHDA:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CDTIaA_sHDA:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CDTIaA_sHDA:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CDTIaA_sHDA:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CDTIaA_sHDA:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CDTIaA_sHDA:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CDTIaA_sHDA:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/CDTIaA_sHDA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=8ZkxdK5SS3g:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8ZkxdK5SS3g:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=8ZkxdK5SS3g:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8ZkxdK5SS3g:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=8ZkxdK5SS3g:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8ZkxdK5SS3g:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=8ZkxdK5SS3g:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8ZkxdK5SS3g:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/8ZkxdK5SS3g" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiG6uyNQVk:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiG6uyNQVk:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=BCiG6uyNQVk:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiG6uyNQVk:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=BCiG6uyNQVk:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiG6uyNQVk:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=BCiG6uyNQVk:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiG6uyNQVk:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/BCiG6uyNQVk" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiHOsh5OLs:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiHOsh5OLs:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=BCiHOsh5OLs:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiHOsh5OLs:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=BCiHOsh5OLs:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiHOsh5OLs:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=BCiHOsh5OLs:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=BCiHOsh5OLs:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/BCiHOsh5OLs" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=6cDBCo45hk8:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=6cDBCo45hk8:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=6cDBCo45hk8:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=6cDBCo45hk8:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=6cDBCo45hk8:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=6cDBCo45hk8:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=6cDBCo45hk8:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=6cDBCo45hk8:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/6cDBCo45hk8" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=rLw3eiErnYQ:Q6i-xqfBKm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=rLw3eiErnYQ:Q6i-xqfBKm8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=rLw3eiErnYQ:Q6i-xqfBKm8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=rLw3eiErnYQ:Q6i-xqfBKm8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=rLw3eiErnYQ:Q6i-xqfBKm8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=rLw3eiErnYQ:Q6i-xqfBKm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=rLw3eiErnYQ:Q6i-xqfBKm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=rLw3eiErnYQ:Q6i-xqfBKm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/rLw3eiErnYQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/generate-monte-carlo-simulated-data-for-simultaneous-equations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/generate-monte-carlo-simulated-data-for-simultaneous-equations/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/x2qQSPKObqo/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/pDryxL69yGk/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/634Qd3W224Q/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/iQO3MuFUiw0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/TrnbptqQibg/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/MrKe1r6hLSQ/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Pl77oaGAMLI/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/2kLn1QrABlA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/KxUtvcSoDHg/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/nea6YDmjtN0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/CDTIaA_sHDA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/8ZkxdK5SS3g/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/BCiG6uyNQVk/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/BCiHOsh5OLs/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/6cDBCo45hk8/</feedburner:origLink></item>
		<item>
		<title>Upgrade Stata on Ubuntu to avoid memory issues</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/ivlmxShlY3E/</link>
		<comments>http://www.andrewdyck.com/upgrade-stata-on-ubuntu-to-avoid-memory-issues/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 01:14:12 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Stata]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=734</guid>
		<description><![CDATA[I use Stata 11 MP 64-bit on my computer at work which runs Windows 7. On this machine it runs spectacularly well, however, I have had some trouble running Stata on my laptop which runs on Ubuntu Linux (Lucid 10.04). Below is a description of the problem and the (very easy) solution. The problem I [...]]]></description>
			<content:encoded><![CDATA[<p>I use Stata 11 MP 64-bit on my computer at work which runs Windows 7. On this machine it runs spectacularly well, however, I have had some trouble running Stata on my laptop which runs on Ubuntu Linux (Lucid 10.04). Below is a description of the problem and the (very easy) solution.</p>
<p><strong>The problem</strong><br />
I noticed that when I ran my Stata scripts on Ubuntu, random characters would be added to the data (especially string data) when running the <code>reshape</code> command. For example, I would load some data:</p>
<p><code><br />
insheet using "/home/data/sample.csv", clear comma<br />
tabulate string_variable<br />
</code></p>
<p>producing the output:</p>
<p><code><br />
string_vari |<br />
       able |      Freq.     Percent        Cum.<br />
------------+-----------------------------------<br />
          A |        500       50.00       50.00<br />
          B |        500       50.00      100.00<br />
------------+-----------------------------------<br />
      Total |      1,000      100.00<br />
</code></p>
<p>Then I reshape the data in some manner and tabulate once more and find that <code>string_variable</code> has some new additions.</p>
<p><code><br />
string_vari |<br />
       able |      Freq.     Percent        Cum.<br />
------------+-----------------------------------<br />
          A |        498       49.80       49.80<br />
          B |        497       49.70       99.50<br />
       ôèA |           2        0.20        99.70<br />
      ñBúõ |           3        0.30      100.00<br />
------------+-----------------------------------<br />
      Total |      1,000      100.00<br />
</code></p>
<p>Obviously it is a problem when random characters are being thrown into your data, especially if this is happening on a variable you use to index a <code>reshape</code> of the dataset. Now, on to how it&#8217;s fixed.</p>
<p><strong>The solution</strong><br />
I spent a great deal of time checking and re-checking my code because I believed that this must be something wrong with what I&#8217;m doing. After several hours of debugging and web searches the best I came up with is from <a href="http://www.stata.com/statalist/archive/2008-12/msg00454.html">this thread on statalist</a> that suggested to me that maybe Stata thought that my license was invalid. I contacted Stata tech support to ask if there was a problem with my license and they told me this was NOT the case. Rather, a known bug with Ubuntu 10.04 due to the behavior of a low-level call in a library in this distribution of Linux caused data in Stata&#8217;s memory to become corrupted. Since it is a known bug, Stata issued a patch in Stata 11.1 and all that I needed to do is update the software. To do this first save your dataset and do-files if you&#8217;re working on something and then enter:</p>
<p><code><br />
update query<br />
update executable, force<br />
update swap<br />
</code></p>
<p>When Stata restarts enter:</p>
<p><code><br />
update ado, force<br />
</code></p>
<p>Now you should be on your way. If problems continue you&#8217;ll likely need to contact Stata tech support for more info but this fixed it for me.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=gRQmSeXmIgs:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gRQmSeXmIgs:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=gRQmSeXmIgs:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gRQmSeXmIgs:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=gRQmSeXmIgs:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gRQmSeXmIgs:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=gRQmSeXmIgs:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=gRQmSeXmIgs:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/gRQmSeXmIgs" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=RROI1hVpGMs:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=RROI1hVpGMs:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=RROI1hVpGMs:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=RROI1hVpGMs:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=RROI1hVpGMs:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=RROI1hVpGMs:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=RROI1hVpGMs:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=RROI1hVpGMs:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/RROI1hVpGMs" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=bzYP2-6Ai8M:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=bzYP2-6Ai8M:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=bzYP2-6Ai8M:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=bzYP2-6Ai8M:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=bzYP2-6Ai8M:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=bzYP2-6Ai8M:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=bzYP2-6Ai8M:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=bzYP2-6Ai8M:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/bzYP2-6Ai8M" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=ch6zdmAefAU:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ch6zdmAefAU:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ch6zdmAefAU:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ch6zdmAefAU:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ch6zdmAefAU:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ch6zdmAefAU:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ch6zdmAefAU:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ch6zdmAefAU:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/ch6zdmAefAU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=4AD04wRaHA0:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4AD04wRaHA0:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4AD04wRaHA0:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4AD04wRaHA0:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4AD04wRaHA0:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4AD04wRaHA0:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4AD04wRaHA0:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4AD04wRaHA0:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/4AD04wRaHA0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=hIfzKR9V2dU:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hIfzKR9V2dU:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=hIfzKR9V2dU:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hIfzKR9V2dU:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=hIfzKR9V2dU:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hIfzKR9V2dU:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=hIfzKR9V2dU:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hIfzKR9V2dU:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/hIfzKR9V2dU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=XNcJT5u4gZU:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=XNcJT5u4gZU:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=XNcJT5u4gZU:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=XNcJT5u4gZU:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=XNcJT5u4gZU:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=XNcJT5u4gZU:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=XNcJT5u4gZU:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=XNcJT5u4gZU:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/XNcJT5u4gZU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Dmx4GJvKRLU:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Dmx4GJvKRLU:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Dmx4GJvKRLU:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Dmx4GJvKRLU:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Dmx4GJvKRLU:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Dmx4GJvKRLU:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Dmx4GJvKRLU:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Dmx4GJvKRLU:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Dmx4GJvKRLU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=DjLQzjiHUXc:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DjLQzjiHUXc:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=DjLQzjiHUXc:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DjLQzjiHUXc:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=DjLQzjiHUXc:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DjLQzjiHUXc:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=DjLQzjiHUXc:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=DjLQzjiHUXc:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/DjLQzjiHUXc" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=l4BEMinBqHA:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=l4BEMinBqHA:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=l4BEMinBqHA:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=l4BEMinBqHA:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=l4BEMinBqHA:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=l4BEMinBqHA:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=l4BEMinBqHA:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=l4BEMinBqHA:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/l4BEMinBqHA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=1vGN-XGB97I:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=1vGN-XGB97I:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=1vGN-XGB97I:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=1vGN-XGB97I:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=1vGN-XGB97I:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=1vGN-XGB97I:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=1vGN-XGB97I:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=1vGN-XGB97I:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/1vGN-XGB97I" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=jTXdpoG1yDc:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jTXdpoG1yDc:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=jTXdpoG1yDc:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jTXdpoG1yDc:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=jTXdpoG1yDc:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jTXdpoG1yDc:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=jTXdpoG1yDc:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jTXdpoG1yDc:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/jTXdpoG1yDc" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=-1IuYmkxQQ4:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-1IuYmkxQQ4:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-1IuYmkxQQ4:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-1IuYmkxQQ4:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-1IuYmkxQQ4:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-1IuYmkxQQ4:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-1IuYmkxQQ4:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-1IuYmkxQQ4:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/-1IuYmkxQQ4" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=IAKDGLeJLv4:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=IAKDGLeJLv4:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=IAKDGLeJLv4:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=IAKDGLeJLv4:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=IAKDGLeJLv4:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=IAKDGLeJLv4:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=IAKDGLeJLv4:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=IAKDGLeJLv4:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/IAKDGLeJLv4" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=yDsf3ERuXiw:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yDsf3ERuXiw:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=yDsf3ERuXiw:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yDsf3ERuXiw:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=yDsf3ERuXiw:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yDsf3ERuXiw:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=yDsf3ERuXiw:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=yDsf3ERuXiw:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/yDsf3ERuXiw" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=ivlmxShlY3E:uZnLLBivnXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ivlmxShlY3E:uZnLLBivnXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ivlmxShlY3E:uZnLLBivnXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ivlmxShlY3E:uZnLLBivnXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ivlmxShlY3E:uZnLLBivnXE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ivlmxShlY3E:uZnLLBivnXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ivlmxShlY3E:uZnLLBivnXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ivlmxShlY3E:uZnLLBivnXE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/ivlmxShlY3E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/upgrade-stata-on-ubuntu-to-avoid-memory-issues/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/upgrade-stata-on-ubuntu-to-avoid-memory-issues/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/gRQmSeXmIgs/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/RROI1hVpGMs/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/bzYP2-6Ai8M/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/ch6zdmAefAU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/4AD04wRaHA0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/hIfzKR9V2dU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/XNcJT5u4gZU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Dmx4GJvKRLU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/DjLQzjiHUXc/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/l4BEMinBqHA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/1vGN-XGB97I/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/jTXdpoG1yDc/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/-1IuYmkxQQ4/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/IAKDGLeJLv4/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/yDsf3ERuXiw/</feedburner:origLink></item>
		<item>
		<title>Create bibtex from a list of text references</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/Txk5Vecjg7U/</link>
		<comments>http://www.andrewdyck.com/create-bibtex-from-a-list-of-text-references/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 01:50:59 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=728</guid>
		<description><![CDATA[Some prefer to manually cite and reference documents that they work on. I am not one of those people. This method, especially when working collaboratively, often results in repeating the same double-check for references and style formatting over and over and&#8230;.. I much prefer to use a reference manager like Zotero which makes it unbelievably [...]]]></description>
			<content:encoded><![CDATA[<p>Some prefer to manually cite and reference documents that they work on. I am not one of those people. This method, especially when working collaboratively, often results in repeating the same double-check for references and style formatting over and over and&#8230;..</p>
<p>I much prefer to use a reference manager like <a href="http://www.zotero.org/">Zotero</a> which makes it unbelievably easy to get your references into. Most times, you can just drop a PDF in and then find the reference data based on info in the PDF. But, more about Zotero in a later post perhaps. For now, what do you do when you receive a huge list of references in APA/MLA/etc. format and want to add them to your reference manager? </p>
<p>For this task I&#8217;ve used <a href="http://www.snowelm.com/~t/doc/tips/makebib.en.html">a tool from Makino Takaki</a> fairly successfully a few times now to convert a list of text references to BibTeX and then import into Zotero. It&#8217;s not foolproof and you&#8217;ll have to double-check in the import but it&#8217;s a start. </p>
<p>I&#8217;m hoping that someone with more time available than myself will take his source code and tweak it to improve this tool.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=5pkXH--Cx2o:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5pkXH--Cx2o:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=5pkXH--Cx2o:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5pkXH--Cx2o:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=5pkXH--Cx2o:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5pkXH--Cx2o:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=5pkXH--Cx2o:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=5pkXH--Cx2o:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/5pkXH--Cx2o" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=QH3o_33FKM0:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=QH3o_33FKM0:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=QH3o_33FKM0:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=QH3o_33FKM0:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=QH3o_33FKM0:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=QH3o_33FKM0:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=QH3o_33FKM0:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=QH3o_33FKM0:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/QH3o_33FKM0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=v8eUwGSeAZc:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=v8eUwGSeAZc:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=v8eUwGSeAZc:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=v8eUwGSeAZc:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=v8eUwGSeAZc:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=v8eUwGSeAZc:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=v8eUwGSeAZc:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=v8eUwGSeAZc:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/v8eUwGSeAZc" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=U11s5i8HVpY:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U11s5i8HVpY:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=U11s5i8HVpY:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U11s5i8HVpY:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=U11s5i8HVpY:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U11s5i8HVpY:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=U11s5i8HVpY:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=U11s5i8HVpY:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/U11s5i8HVpY" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=4eDcHU6Ot5M:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4eDcHU6Ot5M:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4eDcHU6Ot5M:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4eDcHU6Ot5M:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4eDcHU6Ot5M:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4eDcHU6Ot5M:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=4eDcHU6Ot5M:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=4eDcHU6Ot5M:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/4eDcHU6Ot5M" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Z2WwRgZb5Y0:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Z2WwRgZb5Y0:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Z2WwRgZb5Y0:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Z2WwRgZb5Y0:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Z2WwRgZb5Y0:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Z2WwRgZb5Y0:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Z2WwRgZb5Y0:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Z2WwRgZb5Y0:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Z2WwRgZb5Y0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Y2YOMXBycn0:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Y2YOMXBycn0:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Y2YOMXBycn0:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Y2YOMXBycn0:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Y2YOMXBycn0:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Y2YOMXBycn0:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Y2YOMXBycn0:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Y2YOMXBycn0:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Y2YOMXBycn0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=-GlEOTrVfZI:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-GlEOTrVfZI:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-GlEOTrVfZI:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-GlEOTrVfZI:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-GlEOTrVfZI:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-GlEOTrVfZI:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-GlEOTrVfZI:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-GlEOTrVfZI:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/-GlEOTrVfZI" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Gj1qOVGTu-g:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Gj1qOVGTu-g:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Gj1qOVGTu-g:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Gj1qOVGTu-g:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Gj1qOVGTu-g:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Gj1qOVGTu-g:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Gj1qOVGTu-g:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Gj1qOVGTu-g:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Gj1qOVGTu-g" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=UuaJcUVBmqI:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=UuaJcUVBmqI:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=UuaJcUVBmqI:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=UuaJcUVBmqI:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=UuaJcUVBmqI:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=UuaJcUVBmqI:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=UuaJcUVBmqI:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=UuaJcUVBmqI:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/UuaJcUVBmqI" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=sBJKCDlLE8o:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=sBJKCDlLE8o:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=sBJKCDlLE8o:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=sBJKCDlLE8o:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=sBJKCDlLE8o:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=sBJKCDlLE8o:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=sBJKCDlLE8o:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=sBJKCDlLE8o:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/sBJKCDlLE8o" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=8ryxhu_sdKc:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8ryxhu_sdKc:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=8ryxhu_sdKc:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8ryxhu_sdKc:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=8ryxhu_sdKc:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8ryxhu_sdKc:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=8ryxhu_sdKc:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=8ryxhu_sdKc:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/8ryxhu_sdKc" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=VjgN0qk31Lg:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=VjgN0qk31Lg:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=VjgN0qk31Lg:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=VjgN0qk31Lg:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=VjgN0qk31Lg:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=VjgN0qk31Lg:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=VjgN0qk31Lg:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=VjgN0qk31Lg:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/VjgN0qk31Lg" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=jhvUCziC1Ak:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jhvUCziC1Ak:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=jhvUCziC1Ak:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jhvUCziC1Ak:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=jhvUCziC1Ak:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jhvUCziC1Ak:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=jhvUCziC1Ak:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=jhvUCziC1Ak:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/jhvUCziC1Ak" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=32aibXGgxMw:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=32aibXGgxMw:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=32aibXGgxMw:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=32aibXGgxMw:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=32aibXGgxMw:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=32aibXGgxMw:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=32aibXGgxMw:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=32aibXGgxMw:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/32aibXGgxMw" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=Txk5Vecjg7U:qSpUM6e1dOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Txk5Vecjg7U:qSpUM6e1dOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Txk5Vecjg7U:qSpUM6e1dOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Txk5Vecjg7U:qSpUM6e1dOo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Txk5Vecjg7U:qSpUM6e1dOo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Txk5Vecjg7U:qSpUM6e1dOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=Txk5Vecjg7U:qSpUM6e1dOo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=Txk5Vecjg7U:qSpUM6e1dOo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/Txk5Vecjg7U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/create-bibtex-from-a-list-of-text-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/create-bibtex-from-a-list-of-text-references/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/5pkXH--Cx2o/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/QH3o_33FKM0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/v8eUwGSeAZc/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/U11s5i8HVpY/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/4eDcHU6Ot5M/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Z2WwRgZb5Y0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Y2YOMXBycn0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/-GlEOTrVfZI/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/Gj1qOVGTu-g/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/UuaJcUVBmqI/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/sBJKCDlLE8o/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/8ryxhu_sdKc/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/VjgN0qk31Lg/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/jhvUCziC1Ak/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/32aibXGgxMw/</feedburner:origLink></item>
		<item>
		<title>Getting javascript to run in a WordPress blog entry</title>
		<link>http://feedproxy.google.com/~r/techonomist/~3/YDL_YCLTiiY/</link>
		<comments>http://www.andrewdyck.com/getting-javascript-to-run-in-a-wordpress-blog-entry/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 22:42:42 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.andrewdyck.com/?p=711</guid>
		<description><![CDATA[It&#8217;s not as easy as it looks to get javascript to run from inside a WordPress post. For a recent post, I wanted to run a one-off javascript so I didn&#8217;t want to change the header.php file in my theme. Instead I found this info on the WordPress codex on how to call javascript from [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not as easy as it looks to get javascript to run from inside a WordPress post. <a href="http://www.andrewdyck.com/mapping-data-on-the-web-using-mapbox-openlayers/">For a recent post</a>, I wanted to run a one-off javascript so I didn&#8217;t want to change the header.php file in my theme. Instead I found <a href="http://codex.wordpress.org/Using_Javascript#Javascript_in_Posts">this info on the WordPress codex</a> on how to call javascript from inside the &lt;body&gt; tags. </p>
<p>Also the javascript that I was originally working with used</p>
<pre class="brush: xml; title: ;">
&lt;body onload=&quot;init()&quot;&gt;
</pre>
<p>to start the javascript when the page loaded but this wouldn&#8217;t work from a WordPress blog entry. So I had to change my javascript from:</p>
<pre class="brush: jscript; title: ;">
function init() {
something();
goes();
here();
}
</pre>
<p>to:</p>
<pre class="brush: jscript; title: ;">
window.onload = function init() {
something();
goes();
here();
}
</pre>
<p>and then I call the init() function in my blog post using:</p>
<pre class="brush: xml; title: ;">
&lt;script type=&quot;text/javascript&quot;&gt;
init();
&lt;/script&gt;
</pre>
<p><strong>*Important*</strong><br />
I can to change my WordPress user settings to disable the visual text editor since it was adding/stripping various parts of the html and breaking it.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=rnbG85XbGhQ:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=rnbG85XbGhQ:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=rnbG85XbGhQ:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=rnbG85XbGhQ:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=rnbG85XbGhQ:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=rnbG85XbGhQ:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=rnbG85XbGhQ:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=rnbG85XbGhQ:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/rnbG85XbGhQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=LooflfJ_y-Q:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LooflfJ_y-Q:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LooflfJ_y-Q:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LooflfJ_y-Q:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LooflfJ_y-Q:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LooflfJ_y-Q:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=LooflfJ_y-Q:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=LooflfJ_y-Q:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/LooflfJ_y-Q" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=ei6esMLn_KA:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ei6esMLn_KA:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ei6esMLn_KA:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ei6esMLn_KA:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ei6esMLn_KA:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ei6esMLn_KA:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=ei6esMLn_KA:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=ei6esMLn_KA:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/ei6esMLn_KA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=NKH_nrlFhwQ:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=NKH_nrlFhwQ:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=NKH_nrlFhwQ:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=NKH_nrlFhwQ:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=NKH_nrlFhwQ:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=NKH_nrlFhwQ:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=NKH_nrlFhwQ:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=NKH_nrlFhwQ:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/NKH_nrlFhwQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=C0rEh4AG_bU:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=C0rEh4AG_bU:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=C0rEh4AG_bU:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=C0rEh4AG_bU:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=C0rEh4AG_bU:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=C0rEh4AG_bU:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=C0rEh4AG_bU:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=C0rEh4AG_bU:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/C0rEh4AG_bU" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=psYqU49ZQ94:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=psYqU49ZQ94:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=psYqU49ZQ94:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=psYqU49ZQ94:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=psYqU49ZQ94:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=psYqU49ZQ94:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=psYqU49ZQ94:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=psYqU49ZQ94:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/psYqU49ZQ94" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=bQnS8cr6Fp0:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=bQnS8cr6Fp0:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=bQnS8cr6Fp0:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=bQnS8cr6Fp0:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=bQnS8cr6Fp0:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=bQnS8cr6Fp0:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=bQnS8cr6Fp0:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=bQnS8cr6Fp0:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/bQnS8cr6Fp0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=CVkIX6jjynk:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CVkIX6jjynk:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CVkIX6jjynk:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CVkIX6jjynk:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CVkIX6jjynk:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CVkIX6jjynk:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=CVkIX6jjynk:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=CVkIX6jjynk:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/CVkIX6jjynk" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=XhPxKSiaJXA:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=XhPxKSiaJXA:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=XhPxKSiaJXA:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=XhPxKSiaJXA:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=XhPxKSiaJXA:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=XhPxKSiaJXA:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=XhPxKSiaJXA:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=XhPxKSiaJXA:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/XhPxKSiaJXA" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=No1QXJ35hMs:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=No1QXJ35hMs:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=No1QXJ35hMs:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=No1QXJ35hMs:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=No1QXJ35hMs:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=No1QXJ35hMs:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=No1QXJ35hMs:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=No1QXJ35hMs:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/No1QXJ35hMs" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=1FG_Vh9wJO0:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=1FG_Vh9wJO0:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=1FG_Vh9wJO0:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=1FG_Vh9wJO0:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=1FG_Vh9wJO0:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=1FG_Vh9wJO0:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=1FG_Vh9wJO0:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=1FG_Vh9wJO0:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/1FG_Vh9wJO0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=dDVrUHrLnwQ:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=dDVrUHrLnwQ:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=dDVrUHrLnwQ:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=dDVrUHrLnwQ:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=dDVrUHrLnwQ:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=dDVrUHrLnwQ:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=dDVrUHrLnwQ:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=dDVrUHrLnwQ:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/dDVrUHrLnwQ" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=hZAMCX0-XP8:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hZAMCX0-XP8:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=hZAMCX0-XP8:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hZAMCX0-XP8:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=hZAMCX0-XP8:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hZAMCX0-XP8:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=hZAMCX0-XP8:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=hZAMCX0-XP8:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/hZAMCX0-XP8" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=9TxAhUkvz1w:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=9TxAhUkvz1w:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=9TxAhUkvz1w:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=9TxAhUkvz1w:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=9TxAhUkvz1w:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=9TxAhUkvz1w:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=9TxAhUkvz1w:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=9TxAhUkvz1w:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/9TxAhUkvz1w" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=-OcCBe0GGu4:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-OcCBe0GGu4:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-OcCBe0GGu4:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-OcCBe0GGu4:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-OcCBe0GGu4:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-OcCBe0GGu4:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=-OcCBe0GGu4:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=-OcCBe0GGu4:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/-OcCBe0GGu4" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techonomist?a=YDL_YCLTiiY:uHSqnE4iQ94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/techonomist?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=YDL_YCLTiiY:uHSqnE4iQ94:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techonomist?i=YDL_YCLTiiY:uHSqnE4iQ94:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=YDL_YCLTiiY:uHSqnE4iQ94:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/techonomist?i=YDL_YCLTiiY:uHSqnE4iQ94:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=YDL_YCLTiiY:uHSqnE4iQ94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/techonomist?i=YDL_YCLTiiY:uHSqnE4iQ94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techonomist?a=YDL_YCLTiiY:uHSqnE4iQ94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/techonomist?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/techonomist/~4/YDL_YCLTiiY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrewdyck.com/getting-javascript-to-run-in-a-wordpress-blog-entry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.andrewdyck.com/getting-javascript-to-run-in-a-wordpress-blog-entry/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/rnbG85XbGhQ/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/LooflfJ_y-Q/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/ei6esMLn_KA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/NKH_nrlFhwQ/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/C0rEh4AG_bU/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/psYqU49ZQ94/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/bQnS8cr6Fp0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/CVkIX6jjynk/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/XhPxKSiaJXA/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/No1QXJ35hMs/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/1FG_Vh9wJO0/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/dDVrUHrLnwQ/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/hZAMCX0-XP8/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/9TxAhUkvz1w/</feedburner:origLink><feedburner:origLink>http://feedproxy.google.com/~r/techonomist/~3/-OcCBe0GGu4/</feedburner:origLink></item>
	</channel>
</rss>

