<?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>Robert Vesco</title>
	
	<link>http://www.robertvesco.com</link>
	<description />
	<lastBuildDate>Thu, 26 Jan 2012 02:12:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/RobertVesco" /><feedburner:info uri="robertvesco" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-sa/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><item>
		<title>Using R to Extract Excel/csv File of Citation Data from Zotero</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/B_VsCNpUHG4/using-r-to-extract-excelcsv-file-of-citation-data-zotero.html</link>
		<comments>http://www.robertvesco.com/2011/07/technology-open-source-software/using-r-to-extract-excelcsv-file-of-citation-data-zotero.html#comments</comments>
		<pubDate>Fri, 15 Jul 2011 12:57:19 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Geeks]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Zotero]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=618</guid>
		<description><![CDATA[<p>Zotero is a handy piece of software used to manage citations. However, one of issues I have with it is that there is no convenient way to export citation into excel. There are some folks that have put together some solutions here, here, and here, but they haven't been able to accomplish what I needed. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.zotero.org">Zotero</a> is a handy piece of software used to manage citations. However, one of issues I have with it is that there is no convenient way to export citation into excel. There are some folks that have put together some solutions <a href="http://kimmonsdesign.com/node/24">here</a>, <a href="http://forums.zotero.org/discussion/13685/export-abstract/">here</a>, and <a href="http://forums.zotero.org/discussion/8783">here</a>, but they haven't been able to accomplish what I needed. Essentially, want I wanted was a way to review my citations, abstracts and a few other details easily. Two things about my solution. One it uses R, so you probably want to have some experience using that software, and two, you may want to have Zotero closed or make a copy of the sqlite file. Sometimes there are locking issues with the database if you try to access it from two different ways at the same time.</p>
<pre class="brush: r; collapse: false; title: See code snippet by clicking here; toolbar: true; wrap-lines: true; notranslate">

# Purpose: To extract zotero citation data into excel.
# Version: 1.0
# Platform: Written on R 2.11, Win 7, Zotero 2.01, but should work on all platforms.
###############################################################################

############################
## The following has variables you need to replace for your setup
##########################

# Replace with the path to your Zotero sqlite file
dbZot &lt;- &quot;C:\\path\\to\\your\\zotero\\zotero-current.sqlite&quot;

# Put a character of the top level folders you want to extract
# This will include subfolders as well
vTopFolders &lt;- c(&quot;TopFolder1&quot;,&quot;TopFolder2&quot;)

##########################

#libraries
require(sqldf)
require(gdata)
require(reshape2)
require(reshape)

# SQL query that gets basic data.
sqlC &lt;- &quot;SELECT
items.itemID,
collections.collectionID,
collections.collectionName,
collections.parentCollectionID,
fields.fieldName,
itemDataValues.value,
creatorData.firstName,
creatorData.lastName,
itemNotes.title,
itemNotes.note
FROM
collectionItems
INNER JOIN items ON (collectionItems.itemID = items.itemID)
INNER JOIN collections ON (collectionItems.collectionID = collections.collectionID)
INNER JOIN itemCreators ON (items.itemID = itemCreators.itemID)
INNER JOIN itemData ON (itemData.itemID = items.itemID)
INNER JOIN itemDataValues ON (itemData.valueID = itemDataValues.valueID)
LEFT OUTER JOIN itemNotes ON (items.itemID = itemNotes.sourceItemID)
INNER JOIN creators ON (itemCreators.creatorID = creators.creatorID)
INNER JOIN creatorData ON (creators.creatorDataID = creatorData.creatorDataID)
INNER JOIN fields ON (itemData.fieldID = fields.fieldID)&quot;

# This sends query to sqlite db
# Notice bug, stringAsFactor=F results in 0 vars, but T with method=&quot;raw&quot; gets desired outcome
dfData &lt;- sqldf(sqlC,, stringsAsFactors = F, dbname=dbZot, method=&quot;raw&quot;)

#This filter the data from sqlite and extracts the ID of the top level folder
vParentID &lt;- unique(dfData[dfData$collectionName %in% vTopFolders,&quot;collectionID&quot;])

#This extracts a mapping of parent-child IDs
dfParentChildID &lt;-  unique(dfData[vParentID %in% dfData$parentCollectionID,c(&quot;itemID&quot;,&quot;collectionID&quot;,&quot;parentCollectionID&quot;,&quot;collectionName&quot;)])

# Self join
dfParentChildID2 &lt;- merge(dfParentChildID,dfParentChildID,by.x=c(&quot;itemID&quot;,&quot;collectionID&quot;),by.y=c(&quot;itemID&quot;,&quot;parentCollectionID&quot;),all.x=TRUE)

# Creates a field that concat top folder - sub folder
dfParentChildID2 &lt;- transform(dfParentChildID2, top.sub.folder  = paste(collectionName.x,collectionName.y,sep=&quot;-&quot;))

# Creates a unique ID
dfParentChildID2$ID &lt;- with(dfParentChildID2,paste(itemID,collectionID.1,collectionID,sep=&quot;-&quot;))

# Creates another unique ID for the original dataset from sqlite
dfData$ID &lt;- with(dfData,paste(itemID,collectionID,parentCollectionID,sep=&quot;-&quot;))

# merge the datasset
dfData2 &lt;- merge(dfData,dfParentChildID2,by=c(&quot;ID&quot;),all=TRUE)

# Get rid of the NA row in data and extract some key variables
dfData3 &lt;- dfData2[!is.na(dfData2$parentCollectionID.x),c(&quot;ID&quot;,&quot;top.sub.folder&quot;, &quot;collectionName&quot;,
				&quot;fieldName&quot;, &quot;value&quot;, &quot;firstName&quot;, &quot;lastName&quot;, &quot;title&quot;, &quot;note&quot;)]

#rename vars to prevent name conflict later on
dfData3 &lt;- rename.vars(dfData3, from=&quot;title&quot;,to=&quot;notetitle&quot;)

# now need to reshape data, but trick was how to aggregate text. Other functions caused issue, but
# max seems to work for some reason.
# This take the fieldName which is the field in zotero that has vars like author, year, etc
# we want to turn this into wide form so that they become columns
dfData4 &lt;- cast(data = dfData3, ID + top.sub.folder + collectionName +
				firstName + lastName + notetitle + note ~ fieldName, value = &quot;value&quot;, fun.aggregate=max)

# Make author last name only
dfData4$author &lt;- with(dfData4, lastName)
# Alternative: both names dfData4$author &lt;- with(dfData4, paste(lastName,firstName,sep=&quot;,&quot;))

# Create essential a group_concat on author names.
# TODO: Fix so that authors are reversed.
dfNames &lt;- ddply(dfData4, .(ID), summarise, authors = paste(author,sep=&quot;;&quot;,collapse=&quot;;&quot;))

# Merge new names back into dataset
dfData5 &lt;- merge(dfData4,dfNames)

# Make the prior data frame unique and extract the vars of interest
dfData6 &lt;- unique(dfData5[,c(&quot;ID&quot;, &quot;top.sub.folder&quot;,&quot;authors&quot;,&quot;publicationTitle&quot;,&quot;title&quot;,
 &quot;abstractNote&quot;, &quot;bookTitle&quot;, &quot;date&quot;, &quot;notetitle&quot;, &quot;note&quot;)])

# Extract the year from the data
dfData6$date &lt;- substr(as.character(dfData6$date),1,4)

#order by top folder
dfData6 &lt;- dfData6[order(dfData6$top.sub.folder),]

#convert all factor to character
dfData6 &lt;- as.data.frame(lapply(dfData6,as.character),stringsAsFactors=F)

#Combine book-article so that I know what book an article or chapter came from.
dfData6$bookjournal &lt;- with(dfData6, ifelse(is.na(bookTitle), title,paste(bookTitle,title,sep=&quot;::&quot;)))

# Drop unnecessary Var
dfData7 &lt;- dfData6[,-7]

write.csv(dfData7,&quot;Zotero Citations.csv&quot;)
# TODO: find some excel package that doesn't have 256 character limit because
# some abstracts are really long....
</pre>
<p><!--{NETBLOG_EXPORT}  --></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=B_VsCNpUHG4:3neE0ihdMko:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/B_VsCNpUHG4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2011/07/technology-open-source-software/using-r-to-extract-excelcsv-file-of-citation-data-zotero.html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2011/07/technology-open-source-software/using-r-to-extract-excelcsv-file-of-citation-data-zotero.html</feedburner:origLink></item>
		<item>
		<title>Top Words Used in Titles of Top Strategic Management Journals</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/AYizFbQ5-CM/top-words-used-in-titles-of-top-strategic-management-journals.html</link>
		<comments>http://www.robertvesco.com/2011/04/entrepreneurship-academia-theory/top-words-used-in-titles-of-top-strategic-management-journals.html#comments</comments>
		<pubDate>Sat, 02 Apr 2011 19:19:51 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Academics]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=581</guid>
		<description><![CDATA[<p>The following table was created from citation data from Academy of Management Review (AMR), Academy of Management Journal (AMJ) , Administrative Science Quarterly (ASQ) , Management Science (MS), Organizational Science (OS) and the Strategic Management Journal (SMJ). The time period is approximately 2000-2008. There's a lot more I would have liked to have done, but [...]]]></description>
			<content:encoded><![CDATA[<p>The following table was created from citation data from Academy of Management Review (AMR), Academy of Management Journal (AMJ) , Administrative Science Quarterly (ASQ) , Management Science (MS), Organizational Science (OS) and the Strategic Management Journal (SMJ). The time period is approximately 2000-2008. There's a lot more I would have liked to have done, but alas. The table uses word counts instead of percentages and I didn't combine things like organization + organization(s).</p>

<table id="wp-table-reloaded-id-3-no-1" class="wp-table-reloaded wp-table-reloaded-id-3">
<thead>
	<tr class="row-1 odd">
		<th class="column-1">Word Ranking</th><th class="column-2">AMJ</th><th class="column-3"></th><th class="column-4">AMR</th><th class="column-5"></th><th class="column-6">ASQ</th><th class="column-7"></th><th class="column-8">MS</th><th class="column-9"></th><th class="column-10">OS</th><th class="column-11"></th><th class="column-12">SMJ</th><th class="column-13"></th>
	</tr>
</thead>
<tbody class="row-hover">
	<tr class="row-2 even">
		<td class="column-1">1</td><td class="column-2">performance</td><td class="column-3">99</td><td class="column-4">theory</td><td class="column-5">51</td><td class="column-6">organizational</td><td class="column-7">27</td><td class="column-8">performance</td><td class="column-9">52</td><td class="column-10">organizational</td><td class="column-11">90</td><td class="column-12">performance</td><td class="column-13">161</td>
	</tr>
	<tr class="row-3 odd">
		<td class="column-1">2</td><td class="column-2">effects</td><td class="column-3">60</td><td class="column-4">social</td><td class="column-5">48</td><td class="column-6">performance</td><td class="column-7">19</td><td class="column-8">knowledge</td><td class="column-9">42</td><td class="column-10">performance</td><td class="column-11">59</td><td class="column-12">firm</td><td class="column-13">95</td>
	</tr>
	<tr class="row-4 even">
		<td class="column-1">3</td><td class="column-2">management</td><td class="column-3">60</td><td class="column-4">organizational</td><td class="column-5">37</td><td class="column-6">social</td><td class="column-7">19</td><td class="column-8">management</td><td class="column-9">42</td><td class="column-10">knowledge</td><td class="column-11">43</td><td class="column-12">strategic</td><td class="column-13">73</td>
	</tr>
	<tr class="row-5 odd">
		<td class="column-1">4</td><td class="column-2">organizational</td><td class="column-3">57</td><td class="column-4">corporate</td><td class="column-5">29</td><td class="column-6">organizations</td><td class="column-7">18</td><td class="column-8">strategic</td><td class="column-9">36</td><td class="column-10">learning</td><td class="column-11">36</td><td class="column-12">firms</td><td class="column-13">65</td>
	</tr>
	<tr class="row-6 even">
		<td class="column-1">5</td><td class="column-2">role</td><td class="column-3">48</td><td class="column-4">organizations</td><td class="column-5">28</td><td class="column-6">corporate</td><td class="column-7">14</td><td class="column-8">development</td><td class="column-9">31</td><td class="column-10">firm</td><td class="column-11">33</td><td class="column-12">corporate</td><td class="column-13">44</td>
	</tr>
	<tr class="row-7 odd">
		<td class="column-1">6</td><td class="column-2">research</td><td class="column-3">32</td><td class="column-4">management</td><td class="column-5">27</td><td class="column-6">effects</td><td class="column-7">14</td><td class="column-8">learning</td><td class="column-9">31</td><td class="column-10">effects</td><td class="column-11">32</td><td class="column-12">effects</td><td class="column-13">44</td>
	</tr>
	<tr class="row-8 even">
		<td class="column-1">7</td><td class="column-2">firm</td><td class="column-3">29</td><td class="column-4">model</td><td class="column-5">24</td><td class="column-6">network</td><td class="column-7">14</td><td class="column-8">market</td><td class="column-9">31</td><td class="column-10">organization</td><td class="column-11">31</td><td class="column-12">knowledge</td><td class="column-13">44</td>
	</tr>
	<tr class="row-9 odd">
		<td class="column-1">8</td><td class="column-2">knowledge</td><td class="column-3">29</td><td class="column-4">role</td><td class="column-5">24</td><td class="column-6">firms</td><td class="column-7">13</td><td class="column-8">model</td><td class="column-9">27</td><td class="column-10">role</td><td class="column-11">29</td><td class="column-12">strategy</td><td class="column-13">44</td>
	</tr>
	<tr class="row-10 even">
		<td class="column-1">9</td><td class="column-2">social</td><td class="column-3">29</td><td class="column-4">perspective</td><td class="column-5">23</td><td class="column-6">dynamics</td><td class="column-7">11</td><td class="column-8">innovation</td><td class="column-9">25</td><td class="column-10">change</td><td class="column-11">28</td><td class="column-12">market</td><td class="column-13">39</td>
	</tr>
	<tr class="row-11 odd">
		<td class="column-1">10</td><td class="column-2">firms</td><td class="column-3">25</td><td class="column-4">firm</td><td class="column-5">20</td><td class="column-6">institutional</td><td class="column-7">11</td><td class="column-8">organizational</td><td class="column-9">24</td><td class="column-10">organizations</td><td class="column-11">26</td><td class="column-12">based</td><td class="column-13">37</td>
	</tr>
	<tr class="row-12 even">
		<td class="column-1">11</td><td class="column-2">theory</td><td class="column-3">25</td><td class="column-4">research</td><td class="column-5">20</td><td class="column-6">networks</td><td class="column-7">11</td><td class="column-8">time</td><td class="column-9">24</td><td class="column-10">social</td><td class="column-11">24</td><td class="column-12">management</td><td class="column-13">37</td>
	</tr>
	<tr class="row-13 odd">
		<td class="column-1">12</td><td class="column-2">teams</td><td class="column-3">23</td><td class="column-4">institutional</td><td class="column-5">19</td><td class="column-6">change</td><td class="column-7">10</td><td class="column-8">decision</td><td class="column-9">21</td><td class="column-10">theory</td><td class="column-11">24</td><td class="column-12">competitive</td><td class="column-13">35</td>
	</tr>
	<tr class="row-14 even">
		<td class="column-1">13</td><td class="column-2">change</td><td class="column-3">22</td><td class="column-4">knowledge</td><td class="column-5">19</td><td class="column-6">knowledge</td><td class="column-7">10</td><td class="column-8">effects</td><td class="column-9">21</td><td class="column-10">model</td><td class="column-11">20</td><td class="column-12">resource</td><td class="column-13">32</td>
	</tr>
	<tr class="row-15 odd">
		<td class="column-1">14</td><td class="column-2">behavior</td><td class="column-3">21</td><td class="column-4">change</td><td class="column-5">17</td><td class="column-6">market</td><td class="column-7">10</td><td class="column-8">firm</td><td class="column-9">21</td><td class="column-10">strategic</td><td class="column-11">20</td><td class="column-12">organizational</td><td class="column-13">31</td>
	</tr>
	<tr class="row-16 even">
		<td class="column-1">15</td><td class="column-2">relationships</td><td class="column-3">21</td><td class="column-4">based</td><td class="column-5">16</td><td class="column-6">learning</td><td class="column-7">9</td><td class="column-8">based</td><td class="column-9">20</td><td class="column-10">firms</td><td class="column-11">19</td><td class="column-12">business</td><td class="column-13">28</td>
	</tr>
	<tr class="row-17 odd">
		<td class="column-1">16</td><td class="column-2">network</td><td class="column-3">19</td><td class="column-4">strategic</td><td class="column-5">15</td><td class="column-6">influence</td><td class="column-7">8</td><td class="column-8">dynamic</td><td class="column-9">19</td><td class="column-10">innovation</td><td class="column-11">18</td><td class="column-12">role</td><td class="column-13">28</td>
	</tr>
	<tr class="row-18 even">
		<td class="column-1">17</td><td class="column-2">institutional</td><td class="column-3">18</td><td class="column-4">network</td><td class="column-5">14</td><td class="column-6">management</td><td class="column-7">8</td><td class="column-8">theory</td><td class="column-9">18</td><td class="column-10">networks</td><td class="column-11">16</td><td class="column-12">strategies</td><td class="column-13">24</td>
	</tr>
	<tr class="row-19 odd">
		<td class="column-1">18</td><td class="column-2">process</td><td class="column-3">18</td><td class="column-4">dynamics</td><td class="column-5">13</td><td class="column-6">business</td><td class="column-7">7</td><td class="column-8">strategies</td><td class="column-9">17</td><td class="column-10">based</td><td class="column-11">15</td><td class="column-12">innovation</td><td class="column-13">20</td>
	</tr>
	<tr class="row-20 even">
		<td class="column-1">19</td><td class="column-2">corporate</td><td class="column-3">17</td><td class="column-4">organization</td><td class="column-5">13</td><td class="column-6">capital</td><td class="column-7">7</td><td class="column-8">approach</td><td class="column-9">16</td><td class="column-10">corporate</td><td class="column-11">15</td><td class="column-12">environmental</td><td class="column-13">19</td>
	</tr>
</tbody>
</table>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=AYizFbQ5-CM:W7DJOLrHUpo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/AYizFbQ5-CM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2011/04/entrepreneurship-academia-theory/top-words-used-in-titles-of-top-strategic-management-journals.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2011/04/entrepreneurship-academia-theory/top-words-used-in-titles-of-top-strategic-management-journals.html</feedburner:origLink></item>
		<item>
		<title>A Startup Visa That Works, But Loan Programs For MBAs That Don't</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/2XW760tux5I/a-startup-visa-that-works-but-loan-programs-for-mbas-that-dont.html</link>
		<comments>http://www.robertvesco.com/2011/03/rants-and-raves/a-startup-visa-that-works-but-loan-programs-for-mbas-that-dont.html#comments</comments>
		<pubDate>Sat, 19 Mar 2011 15:21:09 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Policy]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[MBA]]></category>
		<category><![CDATA[Policy]]></category>
		<category><![CDATA[Startup Visa]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=544</guid>
		<description><![CDATA[<p>A lot has been said about the proposed start up visa legislation that would grant immigrants visas in exchange for starting certain types of businesses here in the US.</p> <p>This is long overdue and a great development.  Let's hope this legislation passes.</p> <p>That said, there is another source of entrepreneurship that the US is also [...]]]></description>
			<content:encoded><![CDATA[<p>A lot has been said about the proposed <a href="http://techcrunch.com/2011/03/14/finally-a-startup-visa-that-works/" target="_blank">start up visa legislation</a> that would grant immigrants visas in exchange for starting certain types of businesses here in the US.</p>
<p>This is long overdue and a great development.  Let's hope this legislation passes.</p>
<p>That said, there is another source of entrepreneurship that the US is also preventing and that source is MBA students who are saddled with enormous debt. A common comment heard in the hallways of MBA schools is "Yes, I would love to join or start a business, but my hundred plus grand in debt makes this impossible."</p>
<p>So what could be done about this problem?</p>
<ol>
<li>Nothing, it's not a problem. Those who chose to get an MBA should have known the costs and constraints that it would impose. No need to encourage more moral hazard from MBA students....</li>
<li>Create <a href="http://www.finaid.org/loans/forgiveness.phtml" target="_blank">loan forgiveness programs/scholarships</a> like those offered by both <a href="http://www.news.cornell.edu/releases/Nov97/weil_fellowships.dg.html" target="_blank">schools</a> and governments specifically for those MBAs (or undergrads) who decide to start  or join a startup.</li>
<li>Create loan deferment programs.</li>
</ol>
<p>While there are a few schools that are offering to repay part of the loan MBA students incur there could be more. And as far as I know, there is no government program that offers loan forgiveness for MBA students who decide to go the start up route. That said, I'm not too sure that would be such a good idea.</p>
<p>Alternatively, perhaps allowing MBA students to defer their MBA loans for a certain number of years would be a better idea. This would allow them to pursue their dream and see if it works out without the immediate fear of having to pay back their massive loans. If their venture doesn't work out, then it's back to the corporate world. They would still be accountable. Now, the government already offers deferment for <a href="http://studentaid.ed.gov/students/publications/student_guide/2010-2011/english/postponeloanpayment.htm">economic hardships</a> but it is a complicated process to get approval for (and maintain) and it lasts only up to three years. More importantly, it only covers, as far as I know, certain types of loans. Many of the private, non-federal loans, may not be covered. Thus, ideally there would a loan deferment program for anyone who decides to create a qualified startup regardless of where their loans come from.</p>
<p>Right now, there are many MBA students who would love to pursue their startup dreams but who feel their only choice is to work with established companies in order to pay off their loans. This is one more source of constraint to entrepreneurship that is holding this country back. While allowing immigrants to start businesses in this country in exchange for visas is a hugely important policy goal, I would argue that helping our MBAs start businesses would be a close second.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=2XW760tux5I:I6ee3PepPCQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/2XW760tux5I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2011/03/rants-and-raves/a-startup-visa-that-works-but-loan-programs-for-mbas-that-dont.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2011/03/rants-and-raves/a-startup-visa-that-works-but-loan-programs-for-mbas-that-dont.html</feedburner:origLink></item>
		<item>
		<title>Webscraping with R</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/4ekpGx5f364/webscraping-with-r.html</link>
		<comments>http://www.robertvesco.com/2010/06/entrepreneurship-academia-theory/doctoral-students-scholars/webscraping-with-r.html#comments</comments>
		<pubDate>Wed, 09 Jun 2010 19:25:14 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Geeks]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Research by Field]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[Webscraping]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=418</guid>
		<description><![CDATA[<p>I'll be giving a talk at the DC Meetup group on "Webscraping with R" on June 24. </p> <p>If you're interested in learning more about R or webscraping in general come join us. </p> <p>http://www.meetup.com/R-users-DC/ </p> ]]></description>
			<content:encoded><![CDATA[<p>I'll be giving a talk at the DC Meetup group on "Webscraping with R" on June 24. </p>
<p>If you're interested in learning more about R or webscraping in general come join us. </p>
<p><a href="http://www.meetup.com/R-users-DC/">http://www.meetup.com/R-users-DC/ </a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=4ekpGx5f364:KJOu_UwXrL0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/4ekpGx5f364" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2010/06/entrepreneurship-academia-theory/doctoral-students-scholars/webscraping-with-r.html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2010/06/entrepreneurship-academia-theory/doctoral-students-scholars/webscraping-with-r.html</feedburner:origLink></item>
		<item>
		<title>Top Journals in Management and Strategy</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/BFkWlXCOFK4/top-journals-in-management-and-strategy.html</link>
		<comments>http://www.robertvesco.com/2009/11/entrepreneurship-academia-theory/doctoral-students-scholars/top-journals-in-management-and-strategy.html#comments</comments>
		<pubDate>Wed, 04 Nov 2009 03:39:55 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Doctoral - Young Scholars]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=273</guid>
		<description><![CDATA[<p>Each business school, and each department/sub discipline within that school, has a set of journals that measure faculty performance. On the strategy side of the department of management and organization at U of Maryland's business school these six journals are considered A-level.</p> <p>Academy of Management Review</p> <p>The mission of the Academy of Management Review (AMR) [...]]]></description>
			<content:encoded><![CDATA[<p>Each business school, and each department/sub discipline within that school, has a set of journals that measure faculty performance. On the strategy side of the <a href="http://www.rhsmith.umd.edu/management/" target="_blank">department of management and organization</a> at U of Maryland's business school these six journals are considered A-level.</p>
<p><a href="http://journals.aomonline.org/amr/"><strong>Academy of Management Review</strong></a></p>
<p>The mission of the <em>Academy of Management Review (AMR)</em> is to publish new theoretical insights that advance our understanding of management            and organizations. <em>AMR</em> is receptive to a variety of perspectives, including                  those seeking to improve the effectiveness of, as well as those critical of,                  management and organizations. Submissions to AMR must extend theory in ways                  that permit the development of testable knowledge-based claims. To do this,                  researchers can develop new management and organization theory, significantly                  challenge or clarify existing theory, synthesize recent advances and ideas                  into fresh, if not entirely new theory, or initiate a search for new theory                  by identifying and delineating a novel theoretical problem. The contributions                  of <em>AMR</em> articles often are grounded in "normal science disciplines"            of economics, psychology, sociology, or social psychology as well as nontraditional            perspectives, such as the humanities. <em>AMR</em> publishes novel, insightful                  and carefully crafted conceptual work that challenges conventional wisdom            concerning all aspects of organizations and their roles in society.</p>
<p><a href="http://journals.aomonline.org/amj/" target="_blank"><strong>Academy of Management Journal</strong></a></p>
<p>The mission of the Academy of Management Journal is to publish empirical research that tests, extends, or builds management theory and contributes to management practice. All empirical methods -- including, but not limited to, qualitative, quantitative, field, laboratory, and combination methods -- are welcome. To be published in AMJ, a manuscript must make strong empirical and theoretical contributions and highlight the significance of those contributions to the management field. Thus, preference is given to submissions that test, extend, or build strong theoretical frameworks while empirically examining issues with high importance for management theory and practice. AMJ is not tied to any particular discipline, level of analysis, or national context.</p>
<p><a href="http://smj.strategicmanagement.net/" target="_blank"><strong>Strategic Management Journal</strong></a></p>
<p>The journal publishes original material concerned with all aspects of strategic management. It is devoted to the improvement and further development of the theory and practice of strategic management and it is designed to appeal to both practising managers and academics. Papers acceptable to an editorial board acting as referees are published. The journal also publishes communications in the form of research notes or comments from readers on published papers or current issues. Editorial comments and invited papers on practices and developments in strategic management appear from time to time as warranted by new developments. Overall, <em>SMJ</em> provides a communication forum for advancing strategic management theory and practice. Such major topics as strategic resource allocation; organization structure; leadership; entrepreneurship and organizational purpose; methods and techniques for evaluating and understanding competitive, technological, social, and political environments; planning processes; and strategic decision processes are included in the journal.</p>
<p><strong><a href="http://www.johnson.cornell.edu/publications/asq/description.html" target="_blank">Administrative Science Quarterly</a></strong></p>
<p>ASQ regularly publishes the best theoretical and empirical papers based on dissertations and on the evolving and new work of more established scholars. Look to ASQ for new work from young scholars with fresh views, opening new areas of inquiry, and from more seasoned scholars deepening earlier work and staking out new terrain.</p>
<p>ASQ publishes the best organizational theory papers from a number of disciplines,  		  including organizational behavior and theory, sociology, psychology and social  		  psychology, strategic management, economics, public administration, and industrial  		  relations. Look to ASQ for work that transcends the bounds of particular disciplines  		  to speak to a broad audience.</p>
<p><a href="http://orgsci.journal.informs.org/misc/about.dtl" target="_blank"><strong>Organization Science</strong></a></p>
<p><em>Organization Science</em> is ranked among the top journals in management by the Social Science Citation Index in terms of impact and is widely recognized in the fields of strategy, management, and organization theory. Organization Science provides one umbrella for the publication of research from all over the world in fields such as organization theory, strategic management, sociology, economics, political science, history, information science, systems theory, communication theory, artificial intelligence, and psychology.</p>
<p><strong><a href="http://www.informs.org/site/ManSci/" target="_blank">Management Science</a></strong></p>
<p><em>Management Science</em> is a scholarly journal that publishes scientific research into the practice of management. Our scope includes articles that address management issues with tools from foundational fields such as computer science, economics, mathematics, operations research, political science, psychology, sociology, and statistics, as well as cross-functional, multidisciplinary research that reflects the diversity of the management science professions. Our interest extends to managerial issues in diverse organizational forms, such as for-profit and nonprofit firms, private and public sector institutions, and formal and informal networks of individuals. We welcome theoretical, empirical, prescriptive, and descriptive contributions.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=BFkWlXCOFK4:FsfEPdST1VA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/BFkWlXCOFK4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2009/11/entrepreneurship-academia-theory/doctoral-students-scholars/top-journals-in-management-and-strategy.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2009/11/entrepreneurship-academia-theory/doctoral-students-scholars/top-journals-in-management-and-strategy.html</feedburner:origLink></item>
		<item>
		<title>Creating Opportunities for Sustainable Entrepreneurship</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/S6xxGoOYLqs/how-sustainable-entrepreneurs-change-norms-property-rights.html</link>
		<comments>http://www.robertvesco.com/2009/10/entrepreneurship-public-policy/how-sustainable-entrepreneurs-change-norms-property-rights.html#comments</comments>
		<pubDate>Fri, 09 Oct 2009 03:54:37 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Policy]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=205</guid>
		<description><![CDATA[<p>Escaping the green prison: Entrepreneurship and the creation of opportunities for sustainable development (possibly gated) is a paper by Desirée F. Pacheco, Thomas J. Dean b, and David S. Payne soon to be published in the Journal of Business Venturing.</p> <p>It's a fresh paper on the topic of sustainable entrepreneurship that looks at how and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dx.doi.org/10.1016/j.jbusvent.2009.07.006" target="_blank">Escaping the green prison: Entrepreneurship and the creation of opportunities for sustainable development</a> (possibly gated) is a paper by Desirée F. Pacheco, Thomas J. Dean b, and David S. Payne soon to be published in the Journal of Business Venturing.</p>
<p>It's a fresh paper on the topic of sustainable entrepreneurship that looks at how and why entrepreneurs create changes in society. It's full of real life examples as well as some interesting theory. The emphasis of the paper is on how entrepreneurs themselves, and through business led non-profits, create change with little mention on the role of traditional environmental non-profits. This leaves the paper with the feeling that entrepreneurs have taken the lead role  in creating changes in norms, property rights, and so on. I'm not so sure that's the case, but nevertheless, it's nice to read a paper that highlights the collective action of entrepreneurs rather than that of governments or non-profits.</p>
<p>Abstract:</p>
<p><cite class="wp-caption">While entrepreneurial activity has been an important force for social and ecological<br />
 sustainability; its ef?cacy is dependent upon the nature of market incentives. This limitation<br />
 is sometimes explained by the metaphor of the prisoner's dilemma, which we term the green<br />
 prison. In this prison, entrepreneurs are compelled to environmentally degrading behavior due<br />
 to the divergence between individual rewards and collective goals for sustainable<br />
 development. Entrepreneurs, however, can escape from the green prison by altering or<br />
 creating the institutions—norms, property rights, and legislation—that establish the incentives<br />
 of competitive games. We provide a variety of evidence of such entrepreneurial action and<br />
 discuss its implications for theory and practice.</cite></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=S6xxGoOYLqs:S5QSICyZgkU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/S6xxGoOYLqs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2009/10/entrepreneurship-public-policy/how-sustainable-entrepreneurs-change-norms-property-rights.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2009/10/entrepreneurship-public-policy/how-sustainable-entrepreneurs-change-norms-property-rights.html</feedburner:origLink></item>
		<item>
		<title>What do We Know about Social Entrepreneurship: An Analysis of Empirical Research</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/ykeGW8kgi4I/what-do-we-know-about-social-entrepreneurship-an-analysis-of-empirical-research.html</link>
		<comments>http://www.robertvesco.com/2009/09/entrepreneurship-academia-theory/what-do-we-know-about-social-entrepreneurship-an-analysis-of-empirical-research.html#comments</comments>
		<pubDate>Wed, 16 Sep 2009 05:25:02 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Academics]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=149</guid>
		<description><![CDATA[<p>What do We Know about Social Entrepreneurship: An Analysis of Empirical Research.</p> <p>Worth checking out if you want a high-level overview of what's been done in this space and the various schools of thought.</p> <p> </p> ]]></description>
			<content:encoded><![CDATA[<p><a href="http://d.repec.org/n?u=RePEc:dgr:eureri:1765016558&amp;r=ent">What do We Know about Social Entrepreneurship: An Analysis of Empirical Research</a>.</p>
<p>Worth checking out if you want a high-level overview of what's been done in this space and the various schools of thought.</p>
<p><a href="http://d.repec.org/n?u=RePEc:dgr:eureri:1765016558&amp;r=ent"><br />
 </a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=ykeGW8kgi4I:kPMXKg9SVdE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/ykeGW8kgi4I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2009/09/entrepreneurship-academia-theory/what-do-we-know-about-social-entrepreneurship-an-analysis-of-empirical-research.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2009/09/entrepreneurship-academia-theory/what-do-we-know-about-social-entrepreneurship-an-analysis-of-empirical-research.html</feedburner:origLink></item>
		<item>
		<title>Social Entrepreneurship Research</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/5I8E8av7NsA/social-entrepreneurship-research.html</link>
		<comments>http://www.robertvesco.com/2009/09/entrepreneurship-academia-theory/social-entrepreneurship-research.html#comments</comments>
		<pubDate>Sat, 12 Sep 2009 15:53:27 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Academics]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=144</guid>
		<description><![CDATA[<p>Looking for social entrepreneurship research online can be a challenge. There just doesn't seem to be that many good sources around. To aid in this issue, the University Network, formed by Ashoka, the Skoll Centre, and several other partners, combined their forces to create a resource hub around promoting social entrepreneurship. While there are no [...]]]></description>
			<content:encoded><![CDATA[<p>Looking for social entrepreneurship research online can be a challenge. There just doesn't seem to be that many good sources around. To aid in this issue, the <a href="http://universitynetwork.org/admin/menu/item/edit/74?q=about_us" target="_blank">University Network</a>, formed by Ashoka, the Skoll Centre, and several other partners, combined their forces to create a resource hub around promoting social entrepreneurship. While there are no shortage of such organizations  what caught my attention is that they've created a social entrepreneurship e-journal on <a href="http://www.ssrn.com" target="_blank">SSRN</a>. These are the top categories they've setup so far:</p>
<p><a href="http://papers.ssrn.com/sol3/JELJOUR_Results.cfm?form_name=journalBrowse&amp;journal_id=966554" target="_blank">Social Entrepreneurship</a></p>
<ul>
<li><a href="http://papers.ssrn.com/sol3/JELJOUR_Results.cfm?form_name=journalBrowse&amp;journal_id=966556" target="_blank">Courses, Cases &amp; Teaching</a></li>
<li><a href="http://papers.ssrn.com/sol3/JELJOUR_Results.cfm?form_name=journalBrowse&amp;journal_id=966562" target="_blank">Methodology, Theory Building &amp; Data</a></li>
<li><a href="http://papers.ssrn.com/sol3/JELJOUR_Results.cfm?form_name=journalBrowse&amp;journal_id=966587">Social Entrepreneurship (Topic)</a></li>
<li><a href="http://papers.ssrn.com/sol3/JELJOUR_Results.cfm?form_name=journalBrowse&amp;journal_id=966616">Social Entrepreneurial Activities/Behavior</a></li>
<li><a href="http://papers.ssrn.com/sol3/JELJOUR_Results.cfm?form_name=journalBrowse&amp;journal_id=966577">Social Entrepreneurs (Topic)</a></li>
<li><a href="http://papers.ssrn.com/sol3/JELJOUR_Results.cfm?form_name=journalBrowse&amp;journal_id=966632" target="_parent">Theoretical Approaches</a></li>
</ul>
<p>Unfortunately, SSRN still doesn't have RSS feeds setup for it's journals, only for specific authors, so you still need to subscribe to their emails to get the latest updates. This is a shame because it makes it harder to sift through research and promote research outside of SSRN. On the upside, you can now <a title="Commenting on Journals Articles" href="http://www.robertvesco.com/2009/08/advice-for-young-scholars/commenting-on-journals-articles.html">comment</a> on SSRN articles.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=5I8E8av7NsA:eJOUQVMrhzs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/5I8E8av7NsA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2009/09/entrepreneurship-academia-theory/social-entrepreneurship-research.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2009/09/entrepreneurship-academia-theory/social-entrepreneurship-research.html</feedburner:origLink></item>
		<item>
		<title>Dandelions, Institutions, and the Power of the Poor</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/gSnyi87WSho/the-power-of-the-poor.html</link>
		<comments>http://www.robertvesco.com/2009/09/entrepreneurship-public-policy/the-power-of-the-poor.html#comments</comments>
		<pubDate>Thu, 10 Sep 2009 23:50:07 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Policy]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Economic Growth]]></category>
		<category><![CDATA[Free to Choose]]></category>
		<category><![CDATA[Hernando De Soto]]></category>
		<category><![CDATA[Poverty Alleviation]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=131</guid>
		<description><![CDATA[<p>If tomorrow we repealed every tax, respected every property right, and removed all the constraints that bind entrepreneurship and human initiative -- there would still be no guarantee that the poor would realize their power and achieve prosperity. This is because cultural institutions like family, media, schools, and religion are ultimately the true drivers of [...]]]></description>
			<content:encoded><![CDATA[<p>If tomorrow we repealed every tax, respected every property right, and removed all the constraints that bind entrepreneurship and human initiative -- there would still be no guarantee that the poor would realize their power and achieve prosperity. This is because cultural institutions like family, media, schools, and religion are ultimately the true drivers of growth. They are what inspire people to take risks, overcome obstacles, and succeed.</p>
<p>If a country's cultural institutions revere great football players like Pele, then you will get millions of children aspiring to be the next football star. If a country's cultural institutions stress engineers and doctors as the ultimate achievement -- you will get those. The problem is that football players may lift our spirits, engineers may build our bridges, and doctors may cure our ills, but those professions and role models alone cannot help the vast number of poor achieve power and prosperity.</p>
<p>I argue cultural institutions should put forward business development and entrepreneurship as the greatest achievements one can make. When children are asked: Who do you want to be when you grow up? They should say: I want to be an entrepreneur. I want to start my own business, invent the next great thing and employ thousands of people! If this were the dream of every would-be Pele today, tomorrow poverty would begin to appear like polio - largely eradicated. But ask yourselves -- is this what we have today? How many movies, TV shows, or even teachers for that matter, speak highly of business people and entrepreneurship? I think it is no coincidence that by and large my Chinese and Indian friends are aspiring business people and my Western friends are aspiring aid workers and government types. These aspirations are the true leading indicators of future GDP.</p>
<p>Some folks are like dandelions flowers. No matter how thick the concrete or onerous the environment they can break through the barriers. And if they can’t, they will figure out a way how to get around the constraints to power and prosperity. For hundreds of years America was the beneficiary of these dandelions, but this trend is neither sustainable nor desirable. So while changes in cultural institutions are necessary, they are not sufficient. Property rights and legal institutions are needed to achieve the widespread prosperity our species deserves and for which the poor have still been denied.  Brazil, China, and India are all examples of countries that improved their cultural institutions while simultaneously improving their economic and legal institutions and because of this, not only do millions of their own poor see increasing opportunities to escape poverty, but even the dandelions that left years ago are returning.</p>
<p>To learn more about the constraints that hold back the poor from achieving power and prosperity, check out PBS’ <em>The Power of the Poor</em> which airs October 8, 10 PM ET (or check your local listing).</p>
<p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/XxERamRMt24&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/XxERamRMt24&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=gSnyi87WSho:3qLMu0c7BMk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/gSnyi87WSho" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2009/09/entrepreneurship-public-policy/the-power-of-the-poor.html/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2009/09/entrepreneurship-public-policy/the-power-of-the-poor.html</feedburner:origLink></item>
		<item>
		<title>A Guide to Professors Teaching and Researching Social Entrepreneurship</title>
		<link>http://feedproxy.google.com/~r/RobertVesco/~3/_pWQjJR_zGg/a-guide-to-professors-teaching-and-researching-social-entrepreneurship.html</link>
		<comments>http://www.robertvesco.com/2009/09/entrepreneurship-academia-theory/a-guide-to-professors-teaching-and-researching-social-entrepreneurship.html#comments</comments>
		<pubDate>Thu, 10 Sep 2009 00:29:54 +0000</pubDate>
		<dc:creator>Robert Vesco</dc:creator>
				<category><![CDATA[For Academics]]></category>
		<category><![CDATA[Ashoka]]></category>
		<category><![CDATA[Faculty Directories]]></category>
		<category><![CDATA[Lists]]></category>

		<guid isPermaLink="false">http://www.robertvesco.com/?p=124</guid>
		<description><![CDATA[<p>Ashoka has a nice pdf listing of professors and institutions that teach and research social entrepreneurship.You can get it here</p> ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ashoka.org/" target="_blank">Ashoka</a> has a nice pdf listing of professors and institutions that teach and research social entrepreneurship.You can get it <a href="http://www.ashoka.org/sites/ashoka/files/Faculty_Directory_for_printing_14_August_2007.pdf" target="_blank">here</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertVesco?a=_pWQjJR_zGg:UXxUarb7ZIc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertVesco?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertVesco/~4/_pWQjJR_zGg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robertvesco.com/2009/09/entrepreneurship-academia-theory/a-guide-to-professors-teaching-and-researching-social-entrepreneurship.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.robertvesco.com/2009/09/entrepreneurship-academia-theory/a-guide-to-professors-teaching-and-researching-social-entrepreneurship.html</feedburner:origLink></item>
	</channel>
</rss>

