<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Automatic publications lists from UKADS</title>
	<atom:link href="http://stevenbamford.com/2010/01/08/automatic-publications-lists-from-ukads/feed/" rel="self" type="application/rss+xml" />
	<link>http://stevenbamford.com/2010/01/08/automatic-publications-lists-from-ukads/</link>
	<description>Astronomy research, citizen science and critical thinking (but not a lot of anything so far)</description>
	<lastBuildDate>Tue, 31 Aug 2010 12:02:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Steven</title>
		<link>http://stevenbamford.com/2010/01/08/automatic-publications-lists-from-ukads/comment-page-1/#comment-90</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Tue, 31 Aug 2010 12:02:49 +0000</pubDate>
		<guid isPermaLink="false">http://stevenbamford.com/?p=141#comment-90</guid>
		<description>&lt;p&gt;Thanks for noticing the problem, Lukas.  The errors were because the UKADS server was down (I probably should put some kind of exception handling in one day).  UKADS has been unreliable lately, so I&#039;ve changed the code above and on my publications page over to the main ADS server.&lt;/p&gt;

&lt;p&gt;BTW back, the reason I don&#039;t use the arXiv feed is that (as far as I know) it doesn&#039;t provide full publication information (journal, volume, page).  Not essential, but useful.  That and just in case some papers don&#039;t get put on astro-ph.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for noticing the problem, Lukas.  The errors were because the UKADS server was down (I probably should put some kind of exception handling in one day).  UKADS has been unreliable lately, so I&#8217;ve changed the code above and on my publications page over to the main ADS server.</p>

<p>BTW back, the reason I don&#8217;t use the arXiv feed is that (as far as I know) it doesn&#8217;t provide full publication information (journal, volume, page).  Not essential, but useful.  That and just in case some papers don&#8217;t get put on astro-ph.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Lukas</title>
		<link>http://stevenbamford.com/2010/01/08/automatic-publications-lists-from-ukads/comment-page-1/#comment-84</link>
		<dc:creator>Lukas</dc:creator>
		<pubDate>Fri, 27 Aug 2010 08:59:04 +0000</pubDate>
		<guid isPermaLink="false">http://stevenbamford.com/?p=141#comment-84</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;thanks for sharing this, but I clcked on your publication list and it didn&#039;t to work... lots of error messages.&lt;/p&gt;

&lt;p&gt;BTW, for the lazy people like me there is a RSS feed option on the arXiv (http://arxiv.org/help/rss). If you registers your &quot;public author identifier&quot; (I guess somewhere in your account settings) then there is a feed associated with your identifyer which you can use inside your website. See  e.g. http://www.physi.ch/lukas/Publications.html ;)&lt;/p&gt;

&lt;p&gt;OK, enough for today, cheers, Lukas&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>

<p>thanks for sharing this, but I clcked on your publication list and it didn&#8217;t to work&#8230; lots of error messages.</p>

<p>BTW, for the lazy people like me there is a RSS feed option on the arXiv (<a href="http://arxiv.org/help/rss" rel="nofollow">http://arxiv.org/help/rss</a>). If you registers your &#8220;public author identifier&#8221; (I guess somewhere in your account settings) then there is a feed associated with your identifyer which you can use inside your website. See  e.g. <a href="http://www.physi.ch/lukas/Publications.html" rel="nofollow">http://www.physi.ch/lukas/Publications.html</a> <img src='http://stevenbamford.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<p>OK, enough for today, cheers, Lukas</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://stevenbamford.com/2010/01/08/automatic-publications-lists-from-ukads/comment-page-1/#comment-5</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Sun, 10 Jan 2010 21:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://stevenbamford.com/?p=141#comment-5</guid>
		<description>&lt;p&gt;Thanks for the good question Bo!&lt;/p&gt;

&lt;p&gt;wp_remote_fopen() is a function provided by Wordpress.  It should &#039;just work&#039; for Wordpress users (assuming they have got php in posts working, e.g. using &lt;a href=&quot;http://wordpress.org/extend/plugins/exec-php/&quot; rel=&quot;nofollow&quot;&gt;Exec-PHP&lt;/a&gt;.)&lt;/p&gt;

&lt;p&gt;For non-Wordpress users, I originally used the &lt;a href=&quot;http://php.net/manual/en/function.file-get-contents.php&quot; rel=&quot;nofollow&quot;&gt;file_get_contents&lt;/a&gt; PHP function.  Note that this will often require some permissions to be set in the PHP configuration.&lt;/p&gt;

&lt;p&gt;I&#039;ve added the relevant line (commented out, which the code prettifier misleadingly capitalises) in the posted code.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the good question Bo!</p>

<p>wp_remote_fopen() is a function provided by WordPress.  It should &#8216;just work&#8217; for WordPress users (assuming they have got php in posts working, e.g. using <a href="http://wordpress.org/extend/plugins/exec-php/" rel="nofollow">Exec-PHP</a>.)</p>

<p>For non-Wordpress users, I originally used the <a href="http://php.net/manual/en/function.file-get-contents.php" rel="nofollow">file_get_contents</a> PHP function.  Note that this will often require some permissions to be set in the PHP configuration.</p>

<p>I&#8217;ve added the relevant line (commented out, which the code prettifier misleadingly capitalises) in the posted code.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Bo Milvang-Jensen</title>
		<link>http://stevenbamford.com/2010/01/08/automatic-publications-lists-from-ukads/comment-page-1/#comment-4</link>
		<dc:creator>Bo Milvang-Jensen</dc:creator>
		<pubDate>Sun, 10 Jan 2010 12:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://stevenbamford.com/?p=141#comment-4</guid>
		<description>&lt;p&gt;For the dummies: what is wp_remote_fopen() [line 57] and where would you get it?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>For the dummies: what is wp_remote_fopen() [line 57] and where would you get it?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://stevenbamford.com/2010/01/08/automatic-publications-lists-from-ukads/comment-page-1/#comment-3</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sat, 09 Jan 2010 23:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://stevenbamford.com/?p=141#comment-3</guid>
		<description>&lt;p&gt;Neat!&lt;/p&gt;

&lt;p&gt;Now I just need to write some papers…&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Neat!</p>

<p>Now I just need to write some papers…</p>]]></content:encoded>
	</item>
</channel>
</rss>
