<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IanHuston.net &#187; Tools</title>
	<atom:link href="http://www.ianhuston.net/category/tools/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ianhuston.net</link>
	<description>Compactified Realisations</description>
	<lastBuildDate>Mon, 05 Dec 2011 17:24:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Minor Tick Labels in Matplotlib</title>
		<link>http://www.ianhuston.net/2011/02/minor-tick-labels-in-matplotlib</link>
		<comments>http://www.ianhuston.net/2011/02/minor-tick-labels-in-matplotlib#comments</comments>
		<pubDate>Mon, 28 Feb 2011 18:50:38 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[logplot]]></category>
		<category><![CDATA[matplotlib]]></category>
		<category><![CDATA[plotting]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.ianhuston.net/?p=298</guid>
		<description><![CDATA[This is a slightly more technical post than usual but having figured out how to do something quite esoteric in Matplotlib I thought I would write it down to save me remembering. I have been making quite a few plots recently for a paper which should hit the arXiv very soon. The Python plotting package [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #c0c0c0;"><em>This is a slightly more technical post than usual but having figured out how to do something quite esoteric in Matplotlib I thought I would write it down to save me remembering.</em></span></p>
<p>I have been making quite a few plots recently for a paper which should hit the arXiv very soon. The Python plotting package Matplotlib has been indispensable in this regard, especially as I took the effort of creating a script which creates all the plots. This meant that redoing all the graphs for new results or with changed sizes etc. was a simple as rerunning the script.</p>
<p>Quite a few of the plots use log axes and while Matplotlib performs admirably there was one problem I had with certain plots. By default, the log plots only show tick labels for each order of magnitude. Tick labels are the numbers on the x or y axis telling you the corresponding numerical value, and when the figure is zoomed in it is possible to lose the major tick label at say 10<sup>-4</sup> because you only want to plot values from 0.3&#215;10<sup>-4</sup> and 0.5&#215;10<sup>-4</sup>. Obviously this removes all sense of scale from the plot. A very mediocre solution is to just zoom out until a major tick label is back in the plot but this is obviously unsatisfactory.</p>
<p>I looked through the Matplotlib documentation, which has very detailed information about the <a title="Matplotlib API" href="http://matplotlib.sourceforge.net/api/">API</a> and has a lot of <a title="Matplotlib Examples" href="http://matplotlib.sourceforge.net/examples/index.html">examples</a>, but unfortunately didn&#8217;t address this exact point. After a bit of searching I found <a title="Matplotlib mailing list thread" href="http://osdir.com/ml/python.matplotlib.general/2005-02/msg00150.html">a useful conversation</a> on the users mailing list which got me close but didn&#8217;t use the LaTeX labels which are really essential for publication quality graphs (in my opinion anyway!). The <a title="Ticker API docs" href="http://matplotlib.sourceforge.net/api/ticker_api.html">tick labels documentation</a> along with the <a title="Example page" href="http://matplotlib.sourceforge.net/examples/pylab_examples/major_minor_demo1.html">major-minor ticks example</a> led me to the Formatter classes, especially <code><a title="LogFormatter docs" href="http://matplotlib.sourceforge.net/api/ticker_api.html?highlight=logformatter#matplotlib.ticker.LogFormatter">LogFormatter</a></code> and <code><a title="LogFormatterMathtext docs" href="http://matplotlib.sourceforge.net/api/ticker_api.html?highlight=logformatter#matplotlib.ticker.LogFormatterMathtext">LogFormatterMathtext</a></code>. This looked like the right answer but unfortunately <code>LogFormatterMathtext</code> writes the minor tick labels in a very unusual way. Instead of 0.3&#215;10<sup>-4</sup> it only writes an exponent, so 10<sup>-4.52</sup>.</p>
<p>I finally settled on extending the <code>pyplot.LogFormatter</code> class which controls the text for the tick labels. My subclass is as follows:</p>
<pre class="brush:python">import re
import pylab

class LogFormatterTeXExponent(pylab.LogFormatter, object):
    """Extends pylab.LogFormatter to use
    tex notation for tick labels."""

    def __init__(self, *args, **kwargs):
        super(LogFormatterTeXExponent,
              self).__init__(*args, **kwargs)

    def __call__(self, *args, **kwargs):
        """Wrap call to parent class with
        change to tex notation."""
        label = super(LogFormatterTeXExponent,
                      self).__call__(*args, **kwargs)
        label = re.sub(r'e(\S)0?(\d+)',
                       r'\\times 10^{\1\2}',
                       str(label))
        label = "$" + label + "$"
        return label</pre>
<p>It is provided as is, but there shouldn&#8217;t be too much wrong with it. One odd thing is that the LogFormatter class is an old style class, so I inherited from object to make it my subclass a new style class. This might be dangerous and cause some unexpected problems.</p>
<p>To use the class you can do something like the following:</p>
<pre class="brush:python">
import pylab
import numpy as np

fig = pylab.figure()
pylab.semilogy(np.logspace(-6,-5))
ax = fig.gca()
ax.yaxis.set_minor_formatter(
    LogFormatterTeXExponent(base=10,
     labelOnlyBase=False))
pylab.draw()
</pre>
<p>Below are three different figures showing the current default situation, the result of using <code>LogFormatterMathtext</code> and the result of the new class. I hope this will be of use to someone who has been struggling with this problem as I have.</p>
<p>As I mentioned, this came up because of a paper that is very nearly completed and should be available soon. Along with the paper we should have the long promised release of the code I have been working on which solves cosmological perturbation equations during inflation. More on that soon.</p>

<a href='http://www.ianhuston.net/2011/02/minor-tick-labels-in-matplotlib/logplotbad' title='Log Plot with no minor tick labels'><img width="600" height="450" src="http://www.ianhuston.net/blog2/wp-content/uploads/2011/02/logplotbad.png" class="attachment-large" alt="Log Plot with no minor tick labels" title="Log Plot with no minor tick labels" /></a>
<a href='http://www.ianhuston.net/2011/02/minor-tick-labels-in-matplotlib/logplotweird' title='Log plot with odd y tick labels'><img width="600" height="450" src="http://www.ianhuston.net/blog2/wp-content/uploads/2011/02/logplotweird.png" class="attachment-large" alt="Log plot with odd y tick labels" title="Log plot with odd y tick labels" /></a>
<a href='http://www.ianhuston.net/2011/02/minor-tick-labels-in-matplotlib/logplotgood' title='Log plot with new improved minor tick labels'><img width="600" height="450" src="http://www.ianhuston.net/blog2/wp-content/uploads/2011/02/logplotgood.png" class="attachment-large" alt="Log plot with new improved minor tick labels" title="Log plot with new improved minor tick labels" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.ianhuston.net/2011/02/minor-tick-labels-in-matplotlib/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inspire Beta: New Interface to SPIRES database</title>
		<link>http://www.ianhuston.net/2010/10/inspire-beta-new-interface-to-spires-database</link>
		<comments>http://www.ianhuston.net/2010/10/inspire-beta-new-interface-to-spires-database#comments</comments>
		<pubDate>Tue, 12 Oct 2010 13:49:47 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[arXiv]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[bibliography]]></category>
		<category><![CDATA[bibtex]]></category>
		<category><![CDATA[citations]]></category>
		<category><![CDATA[inspire]]></category>
		<category><![CDATA[inspirebeta]]></category>
		<category><![CDATA[journals]]></category>
		<category><![CDATA[spires]]></category>
		<category><![CDATA[tools for academia]]></category>

		<guid isPermaLink="false">http://www.ianhuston.net/?p=268</guid>
		<description><![CDATA[A colleague mentioned today that the front page of the venerable SPIRES database of High Energy Physics papers is now promoting the new Inspire interface which was announced a few years ago. The website for the current beta phase of the project is http://inspirebeta.net. It is unclear to me whether &#8220;Beta&#8221; is part of the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://inspirebeta.net"><img class="alignleft" style="margin-top: 20px; margin-bottom: 20px;" title="INSPIRE Beta logo" src="http://inspirebeta.net/img/inspire_logo_beta.png" alt="INSPIRE Beta" width="320" height="151" /></a>A colleague mentioned today that the front page of the venerable <a title="SPIRES" href="http://www.slac.stanford.edu/spires/">SPIRES</a> database of High Energy Physics papers is now promoting the <a title="INSPIREBeta site" href="http://inspirebeta.net">new Inspire interface</a> which was <a title="Interactions news release" href="http://www.interactions.org/cms/?pid=1026243">announced</a> a few years ago.</p>
<p>The website for the current beta phase of the project is <a title="INSPIREBeta site" href="http://inspirebeta.net">http://inspirebeta.net</a>.</p>
<p>It is unclear to me whether &#8220;Beta&#8221; is part of the site name, as suggested by the URL and the text on <a title="INSPIREBeta site" href="http://inspirebeta.net">the INSPIRE page</a>, or whether this is just the beta phase of the INSPIRE project as <a title="SPIRES" href="http://www.slac.stanford.edu/spires/">the SPIRES homepage</a> seems to imply. It would certainly be an odd decision to use a different URL for the beta phase and force everyone to change bookmarks, references in blogs, literature etc., once the beta phase is over.</p>
<p>These are quick first impressions because I haven&#8217;t had much time to use the new service. First off it is fast. Very fast. So fast that when searching for <a title="INSPIRE search for Huston, Ian" href="http://inspirebeta.net/search?ln=en&amp;p=Huston%2C+Ian&amp;f=exactauthor&amp;action_search=Search&amp;sf=&amp;so=d&amp;rm=&amp;rg=25&amp;sc=0&amp;of=hb">my name</a> INSPIRE claims that the &#8220;Search took 0.00 seconds&#8221;. It feels almost instantaneous. This might be because of a light load before the hordes using SPIRES are switched over. It is certainly an improvement on the interminable and often futile stretches of time needed with the SPIRES engine.</p>
<p><span id="more-268"></span>A quick glance at the <a title="INSPIRE help search tips" href="http://inspirebeta.net/help/search-tips">new search features</a> shows that &#8220;Google style&#8221; text searching is now accepted, so no longer will the archaic &#8220;fin a Name&#8221; syntax be necessary. However if you are wedded to the old SPIRES way of operating then <a title="INSPIRE help for SPIRES users" href="http://inspirebeta.net/help/spires-inspire">this is also supported</a>. There is good support for eprint search using the &#8220;arxiv:&#8221; operator, which lead me to the interesting discovery that the <a title="ArXiv" href="http://arxiv.org">arxiv.org</a> site parses addresses of the form &#8220;arxiv.org/abs/arXiv:XXXX.XXXX&#8221;. In other words, including &#8220;arXiv:&#8221; after the final slash still resolves to the correct paper even though the canonical way is &#8220;arxiv.org/abs/XXXX.XXXX&#8221;. (It also works with lower case &#8220;arxiv&#8221;.) This is quite a handy feature once you realise that <a title="Bibtex output" href="http://inspirebeta.net/record/863300/export/hx">the Bibtex output </a>from INSPIRE now populates the eprint field with &#8220;arXiv:XXXX.XXXX&#8221; instead of just &#8220;XXXX.XXXX&#8221; as SPIRES does. There is also <a title="INSPIRE help RegExp" href="http://inspirebeta.net/help/search-guide#regexp">a regular expressions search mode</a> which should be very useful for power users. Limited search inside articles seems to be supported as well.</p>
<p>The article page is vastly different to the old SPIRES listing. A new tabbed panel takes centre stage, offering &#8220;Information&#8221;, &#8220;Citations&#8221;, &#8220;References&#8221; and most intriguingly &#8220;Plots&#8221;. This last tab displays all the graphics from the arXiv version of the paper. (I think this is the case purely because the text on the homepage beside Eprint Number says &#8220;Note the plots&#8221;. And the copyright difficulties from harvesting journal figures.) The screengrabs in the gallery below are all of <a title="Article page on INSPIRE" href="http://inspirebeta.net/record/863300">this paper</a> which is linked to from the INSPIRE front page and will probably gain at least a few more citations as a result of the exposure.</p>
<p>It will take time to see whether this new update to SPIRES remains as fast as this early test promises. The original news stories also promised some social connectivity which seems to be currently lacking when compared to the <a title="Arxiv help page on social bookmarking" href="http://arxiv.org/help/social_bookmarking">arXiv&#8217;s array of social links</a>. Overall this is a positive new beginning for HEP article and citation searching.</p>
<p>Update Dec 2011: The full Inspire website has been operational for a while now at its new address of <a href="http://inspirehep.net">http://inspirehep.net</a>.</p>

<a href='http://www.ianhuston.net/2010/10/inspire-beta-new-interface-to-spires-database/inspire-results' title='INSPIRE-Results'><img width="150" height="150" src="http://www.ianhuston.net/blog2/wp-content/uploads/2010/10/INSPIRE-Results-150x150.png" class="attachment-thumbnail" alt="INSPIRE-Results" title="INSPIRE-Results" /></a>
<a href='http://www.ianhuston.net/2010/10/inspire-beta-new-interface-to-spires-database/inspire-information' title='INSPIRE-Information'><img width="150" height="150" src="http://www.ianhuston.net/blog2/wp-content/uploads/2010/10/INSPIRE-Information-150x150.png" class="attachment-thumbnail" alt="INSPIRE-Information" title="INSPIRE-Information" /></a>
<a href='http://www.ianhuston.net/2010/10/inspire-beta-new-interface-to-spires-database/inspire-references' title='INSPIRE-References'><img width="150" height="150" src="http://www.ianhuston.net/blog2/wp-content/uploads/2010/10/INSPIRE-References-150x150.png" class="attachment-thumbnail" alt="INSPIRE-References" title="INSPIRE-References" /></a>
<a href='http://www.ianhuston.net/2010/10/inspire-beta-new-interface-to-spires-database/inspire-citations' title='INSPIRE-Citations'><img width="150" height="150" src="http://www.ianhuston.net/blog2/wp-content/uploads/2010/10/INSPIRE-Citations-150x150.png" class="attachment-thumbnail" alt="INSPIRE-Citations" title="INSPIRE-Citations" /></a>
<a href='http://www.ianhuston.net/2010/10/inspire-beta-new-interface-to-spires-database/inspire-plots' title='INSPIRE-Plots'><img width="150" height="150" src="http://www.ianhuston.net/blog2/wp-content/uploads/2010/10/INSPIRE-Plots-150x150.png" class="attachment-thumbnail" alt="INSPIRE-Plots" title="INSPIRE-Plots" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.ianhuston.net/2010/10/inspire-beta-new-interface-to-spires-database/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ArXiv app for Android</title>
		<link>http://www.ianhuston.net/2010/08/arxiv-app-for-android</link>
		<comments>http://www.ianhuston.net/2010/08/arxiv-app-for-android#comments</comments>
		<pubDate>Thu, 19 Aug 2010 11:03:17 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[arXiv]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[android market]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[e-reader]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[tablet]]></category>

		<guid isPermaLink="false">http://www.ianhuston.net/?p=208</guid>
		<description><![CDATA[I don&#8217;t regularly look up new papers on my phone, preferring the ease of checking them on my desktop at work. However when travelling or attending a conference it can be very handy to be able to quickly pull up some paper you half remember in the middle of a conversation. As an Android user [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t regularly look up new papers on my phone, preferring the ease of checking them on my desktop at work. However when travelling or attending a conference it can be very handy to be able to quickly pull up some paper you half remember in the middle of a conversation.</p>
<p>As an Android user for a while now, the options were previously limited to navigating to <a href="http://arxiv.org">the arxiv website</a> which doesn&#8217;t really scale well onto a phone screen, and manually searching for the right paper, or scanning the new list.<br />
For a while there has been an iPhone app called <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=311788753&#038;mt=8">arXivew</a> which listed the latest papers and allowed you to easily download and view the one you wanted. </p>
<p>Now, there is an Android app to compete. <span id="more-208"></span> <a href="https://launchpad.net/arxivdroid">ArXiv Droid</a>, released in June by <a href="http://www.jdeslippe.com/projects.html">Jack Deslippe</a>, performs admirably, listing all the new papers in each category, including sub-categories like astro-ph.CO for cosmology. You can select categories as favourites for easy access and easily select and view the abstracts of papers. Papers are viewed using the builtin pdf viewer so your mileage may vary depending on whether you mind scrolling around the page. Handily the app prominently displays the size of the pdf before it is downloaded, in case data limits are tight.<br />
Paper titles can be shared via the usual methods, but there doesn&#8217;t currently seem to be a way to select papers as favourites, or to see a log of the last abstracts viewed (there is a list of pdfs viewed). However, having seen the progress made in just the last few months, I would look forward to seeing something like this in the future.<br />
<center><br />
<a href="http://www.ianhuston.net/blog2/wp-content/uploads/2010/08/arxivdroid1.jpg"><img src="http://www.ianhuston.net/blog2/wp-content/uploads/2010/08/arxivdroid1-200x300.jpg" alt="ArXiv Droid Category Listings" title="Screenshot 1" width="200" height="300" class="alignnone size-medium wp-image-210" /></a> <a href="http://www.ianhuston.net/blog2/wp-content/uploads/2010/08/arxivdroid2.jpg"><img src="http://www.ianhuston.net/blog2/wp-content/uploads/2010/08/arxivdroid2-200x300.jpg" alt="ArXiv Droid Search Listings" title="Screenshot 2" width="200" height="300" class="alignnone size-medium wp-image-211" /></a><br />
</center></p>
<p>With the exception of the problems of viewing A4 sized pdfs on such a small screen, this app does a great job of getting you to the papers you want fast when you are away from your desk. As the proliferation of tablets, e-readers and mobile units continues, I think the arXiv might have to consider some kind of additional format suitable for use on these devices. A quick fix might be to just compile the LaTeX with the geometry of the page changed to A5 or smaller. This would obviously still not allow the reflowing of text which is a key feature of e-readers, and would probably mess up a lot of formatting rich papers.</p>
<p><a href="market://details?id=com.commonsware.android.arXiv"><img alt="Android Market link to the arXiv Droid app. Use Barcode Scanner or another app to read this." src="http://chart.apis.google.com/chart?cht=qr&#038;chs=135x135&#038;chl=market://details?id=com.commonsware.android.arXiv" title="arXiv Droid from Android Market" class="alignright" width="135" height="135" /></a> Until this problem is solved arXiv Droid is an admirable app which helps you stay on top of the deluge of research now flooding the arXiv every day. Get it in the Android Market from <a href="market://details?id=com.commonsware.android.arXiv">this link</a> or by scanning the QR code. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhuston.net/2010/08/arxiv-app-for-android/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customising Beamer Presentations</title>
		<link>http://www.ianhuston.net/2010/03/customising-beamer-presentations</link>
		<comments>http://www.ianhuston.net/2010/03/customising-beamer-presentations#comments</comments>
		<pubDate>Thu, 25 Mar 2010 16:14:23 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[beamer]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[talks]]></category>
		<category><![CDATA[tex]]></category>

		<guid isPermaLink="false">http://www.ianhuston.net/?p=176</guid>
		<description><![CDATA[Someone asked me how I achieved the effects on my slides in the talk I gave at QMUL, so having written them an email outlining all the customisations I usually make, I thought the subject might be worthy of a blogpost. I use the Beamer package for LaTeX which is a great way to include [...]]]></description>
			<content:encoded><![CDATA[<p>Someone asked me how I achieved the effects on my slides in <a href="http://http://www.ianhuston.net/2010/03/relativity-cosmology-seminar">the talk I gave at QMUL</a>, so having written them an email outlining all the customisations I usually make, I thought the subject might be worthy of a blogpost.</p>
<p>I use <a href="http://latex-beamer.sourceforge.net/">the Beamer package</a> for LaTeX which is a great way to include mathematics in your slides, and is pretty straightforward to use if you are proficient with LaTeX.<br />
The default settings in Beamer are quite pretty but after a few days of a physics conference they can become quite repetitive. I like to make my slides at least somewhat different to all the others out there, and try to use my customisations to keep the attention of my audience.</p>
<p>One main change I think is useful with beamer is to make the equations use a serif font like a normal paper would, and not the sans-serif font used by default. This is achieved by having the following command<br />
before \begin{document}:</p>
<pre class="brush:latex">
\usefonttheme[onlymath]{serif}
</pre>
<p>To get rid of the navigation symbols at the bottom right of each slide I use</p>
<pre class="brush:latex">
\setbeamertemplate{navigation symbols}{}
</pre>
<p>and the template I use is given by</p>
<pre class="brush:latex">
\usetheme{Frankfurt}
\usecolortheme{rose}
\usecolortheme{seahorse}
</pre>
<p>I don&#8217;t like all the clutter that&#8217;s normally at the top of each slide<br />
(contents, title etc) so I use the &#8220;plain&#8221; option for each frame:</p>
<pre class="brush:latex">
\begin{frame}[plain]
...
\end{frame}
</pre>
<p>To do the black background with white text is slightly tricky but the<br />
template below should work. Just be aware that the curly brackets<br />
outside all the other commands are required to limit the change to<br />
just one frame.</p>
<pre class="brush:latex">
{
\setbeamercolor{normal text}{bg=black}
\setbeamercolor{whitetext}{fg=white}
\begin{frame}[plain]{}
\begin{center}
{\usebeamercolor[fg]{whitetext}

INSERT TEXT HERE

}
 \end{center}

\end{frame}
}
</pre>
<p>These are pretty simple changes but used judiciously they can have a striking effect. I think the most useful is the change of maths text to be serif, in line with the standard used in academic print. The sans-serif maths font just looks a little odd in comparison. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhuston.net/2010/03/customising-beamer-presentations/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cosmo09 conference</title>
		<link>http://www.ianhuston.net/2009/09/cosmo09-conference</link>
		<comments>http://www.ianhuston.net/2009/09/cosmo09-conference#comments</comments>
		<pubDate>Tue, 01 Sep 2009 14:37:59 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Conferences and Meetings]]></category>
		<category><![CDATA[Cosmology]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[CERN]]></category>
		<category><![CDATA[cosmo09]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[Inflation]]></category>
		<category><![CDATA[solo09]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.ianhuston.net/?p=87</guid>
		<description><![CDATA[The annual Cosmo conference for all branches of cosmology is taking place next week 7th-11th September in CERN. I will be attending and giving a talk in the inflation session on Thursday afternoon. After last week&#8217;s Science Online London 2009 conference which I attended, I have been thinking about how to get fellow cosmologists to [...]]]></description>
			<content:encoded><![CDATA[<p>The annual <a href="http://indico.cern.ch/conferenceDisplay.py?confId=46758">Cosmo conference</a> for all branches of cosmology is taking place next week 7th-11th September in <a href="http://cern.ch">CERN</a>. I will be attending and giving a talk in <a href="http://indico.cern.ch/sessionDisplay.py?sessionId=12&#038;slotId=0&#038;confId=46758#2009-09-10">the inflation session</a> on Thursday afternoon.</p>
<p>After last week&#8217;s <a href="http://www.scienceonlinelondon.org/">Science Online London 2009</a> conference which I attended, I have been thinking about how to get fellow cosmologists to start interacting online. I am not sure whether anyone else will use it but I have started using the hashtag <a href="http://twitter.com/#search?q=%23cosmo09">#cosmo09</a> on <a href="http://www.twitter.com">twitter</a> and have created <a href="http://friendfeed.com/cosmo09">a FriendFeed room</a> for the conference. There might not be much activity, but if people do want to use these tools, at least they will have somewhere to start.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhuston.net/2009/09/cosmo09-conference/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GradSchool Graduate</title>
		<link>http://www.ianhuston.net/2008/07/gradschool-graduate</link>
		<comments>http://www.ianhuston.net/2008/07/gradschool-graduate#comments</comments>
		<pubDate>Mon, 28 Jul 2008 15:54:32 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Conferences and Meetings]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[bournemouth]]></category>
		<category><![CDATA[gradschool]]></category>
		<category><![CDATA[interviews]]></category>
		<category><![CDATA[phd]]></category>
		<category><![CDATA[postgrad]]></category>
		<category><![CDATA[skills]]></category>
		<category><![CDATA[time management]]></category>
		<category><![CDATA[transferable skills]]></category>
		<category><![CDATA[ukgrad]]></category>

		<guid isPermaLink="false">http://www.ianhuston.net/?p=42</guid>
		<description><![CDATA[As a graduate student any time taken away from the main task at hand, getting a PhD, can seem like a wasted opportunity. Especially when the time is not actually for a resting holiday in the sun, but is focussed on those hard-to-define transferable skills we are all told to cherish. So, it may come [...]]]></description>
			<content:encoded><![CDATA[<p>As a graduate student any time taken away from the main task at hand, getting a PhD, can seem like a wasted opportunity. Especially when the time is not actually for a resting holiday in the sun, but is focussed on those hard-to-define transferable skills we are all told to cherish.</p>
<p>So, it may come as something of a shock to learn that I have just spent some such time away from my work, honing those tenuous skills, and have come back re-energized and full of enthusiasm. I spent three (and a half) days last week in sunny Bournemouth, at a UK GradSchool, organised by the <a title="UK Grad" href="http://www.grad.ac.uk">UK Grad team</a> (soon to be known as <a title="Vitae" href="http://www.vitae.ac.uk">Vitae</a>). This consisted of team building exercises, project management tasks, interview workshop and an outdoor component to bring it all together.</p>
<p>I hope I don&#8217;t give too much away, but the main thrust of the week was solving different problems and facing different scenarios in small groups of about 6 or 7 PhD students. Tutors, with a wide range of career and personal experience, helped us learn from each exercise and guided us through the emotional experience of a new team being formed. It&#8217;s hard to describe what working with 5 other PhD students from wildly varying areas felt like, but it was definitely intense. By the end of the week, people had gone through more with the others in the group than perhaps they ever had with those they work with every day. In particular the opportunity to give and receive individual and honest feedback on how we affected those around us was surprisingly powerful.</p>
<p>Interview skills were explored in a task designed to test students as both interviewees and panel members. Sitting on the other side of the desk really highlighted how much of the process is about the applicant selling themselves. It was hard enough to distinguish three candidates answers from each other after a long morning, so making an impression is clearly important.</p>
<p>Overall, my experience of GradSchool has completely brushed aside any reservations I had about it taking up valuable time. I may not measure last week in terms of words written or papers read, but the skills learned (and hopefully friendships made) will make the coming year much more manageable.</p>
<p>To learn more about the GradSchool program visit the <a title="GradSchool Introduction" href="http://www.grad.ac.uk/cms/ShowPage/Home_page/GRAD_courses/GRAD_courses_introduction/p!empFFdf">introductory page</a> at UK Grad, but be warned that word has spread and courses are booked out months in advance!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhuston.net/2008/07/gradschool-graduate/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New tools for a new year</title>
		<link>http://www.ianhuston.net/2007/10/new-tools-for-a-new-year</link>
		<comments>http://www.ianhuston.net/2007/10/new-tools-for-a-new-year#comments</comments>
		<pubDate>Thu, 11 Oct 2007 15:44:34 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[arXiv]]></category>
		<category><![CDATA[Cosmology]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[bookmarking]]></category>
		<category><![CDATA[cosmocoffee]]></category>
		<category><![CDATA[journal club]]></category>
		<category><![CDATA[new semester]]></category>

		<guid isPermaLink="false">http://www.ianhuston.net/2007/10/new-tools-for-a-new-year</guid>
		<description><![CDATA[As the new semester is starting in earnest, I think it&#8217;s time for me to post the first update for a few months. One of the main differences between post-graduate and under-graduate life is that as postgrads we don&#8217;t have a 3 month break over the summer. As seminars finish at the same time as [...]]]></description>
			<content:encoded><![CDATA[<p>As the new semester is starting in earnest, I think it&#8217;s time for me to post the first update for a few months. One of the main differences between post-graduate and under-graduate life is that as postgrads we don&#8217;t have a 3 month break over the summer. As seminars finish at the same time as lectures, the summer months can be more productive as long as you don&#8217;t get distracted by the summer sunshine. All of this is by way of apology for not posting more frequently over the summer.</p>
<p>The new academic year has brought with it some new tools from one of my favourite web resources <a href="http://www.cosmocoffee.info" title="Cosmocoffee">Cosmocoffee</a>. As you can read in <a href="http://cosmocoffee.info/viewtopic.php?t=972" title="Forum post">this forum post</a>, there are three new additions to the service. Firstly new search options are available which allow you to use the search page on Cosmocoffee to search the <a href="http://www.arxiv.org" title="arXiv">arXiv</a>, <a href="http://www.adsabs.harvard.edu/" title="NASA ADS abstracts">ADS</a> and <a href="http://scholar.google.com" title="Google Scholar">Google Scholar</a>. I don&#8217;t know how useful this might be, as I tend to use the integrated search bar in Firefox to directly <a href="http://mycroft.mozdev.org/download.html?name=spires" title="SPIRES search engine plugin">search SPIRES</a> and <a href="http://mycroft.mozdev.org/download.html?name=arxiv" title="arXiv search engine plugin">the arXiv</a>.</p>
<p>The main update however is the addition of a <a href="http://cosmocoffee.info/bookmark.php" title="Cosmocoffee bookmarking system">bookmarking system</a> to the arXiv listings. While not as fully featured as either Citeulike or Connotea, this is a very intuitive system and can be easily integrated into your workflow if you already use Cosmocoffee to access new arXiv papers.</p>
<p>The final tool is a complimentary function of the bookmarking system, allowing multiple users to share lists of bookmarks in a <a href="http://cosmocoffee.info/journalclub.php" title="Cosmocoffee Journal Club system">&#8220;Journal Club&#8221;</a> system. There is a rudimentary management system, with the ability to add users and other managers, and move papers into &#8220;old&#8221; and &#8220;ignored&#8221; categories.  There is also an anonymous list of <a href="http://cosmocoffee.info/bookmark.php?user_id=all" title="All Cosmocoffee bookmarked papers">all the papers</a> that have been bookmarked so far, which provides an interesting insight into the reading habits of Cosmocoffee users.</p>
<p>To use the bookmarking system you will need <a href="http://cosmocoffee.info/profile.php?mode=register" title="Register at Cosmocoffee">to register</a> at the Cosmocoffee site. Since last year registration has been restricted to people affiliated with academic institutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhuston.net/2007/10/new-tools-for-a-new-year/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting to grips with web based research tools</title>
		<link>http://www.ianhuston.net/2007/04/getting-to-grips-with-web-based-research-tools</link>
		<comments>http://www.ianhuston.net/2007/04/getting-to-grips-with-web-based-research-tools#comments</comments>
		<pubDate>Thu, 26 Apr 2007 16:40:28 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[arXiv]]></category>
		<category><![CDATA[citeulike]]></category>
		<category><![CDATA[connotea]]></category>
		<category><![CDATA[cosmocoffee]]></category>
		<category><![CDATA[delicious]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[spires]]></category>

		<guid isPermaLink="false">http://www.ianhuston.net/2007/04/getting-to-grips-with-web-based-research-tools/</guid>
		<description><![CDATA[Every day I use web-based tools in my research. Some are specifically designed for scientific research, but some are just general purpose tools. It continually surprises me when other students and more established researchers have not heard of the many different ways the web can help research. This list is not meant to be exhaustive [...]]]></description>
			<content:encoded><![CDATA[<p>Every day I use web-based tools in my research. Some are specifically designed for scientific research, but some are just general purpose tools. It continually surprises me when other students and more established researchers have not heard of the many different ways the web can help research. This list is not meant to be exhaustive so please let me know if there are any tools you use that deserve a mention.</p>
<p><strong>Paper hunting:</strong></p>
<ul>
<li><a href="http://www.arxiv.org">The arXiv</a> &#8211; You aren&#8217;t going to get far in physics without having heard of the arXiv, but it deserves a mention for getting rid of trips to the library.</li>
<li><a href="http://www.slac.stanford.edu/spires">SPIRES</a> &#8211; For article searches in particle physics/astrophysics, SPIRES is the last word. The search syntax is a little more involved than a <a href="http://www.google.com">Google search</a> (&#8220;find a authorname and j journalname&#8221; etc.) but the information available for each article is worth the effort. Particularly valuable is the BibTeX entry for each article, and links to both arXiv preprints and e-journals.</li>
<li><a href="http://scholar.google.com">Google Scholar</a> &#8211; Not specific to physics, this is Google&#8217;s take on academic search. It catalogues the main journal indexes, and has some useful features like the &#8220;Related Articles&#8221; search, which does a good job of finding other articles with similar subjects.</li>
</ul>
<p><strong>Categorizing papers:</strong></p>
<p>In the old days, researchers had piles of papers on their desks, under their desks, and generally all over the place. But if required they could pick a required paper out of this filing disaster quite easily with a good memory and a little luck. Today most of the papers you read might remain out there on the network with only a select few qualifying for ink and paper. How do you remember which papers you&#8217;ve read, where they are and what you thought of them?</p>
<ul>
<li><a href="http://www.citeulike.org" title="Citeulike">Citeulike</a> &#8211; This site allows you to add papers to a personal list, add tags to describe the papers, and provides automatic links to the electronic versions. When looking at an abstract on the arxiv for example, you simply click a <a href="http://en.wikipedia.org/wiki/Bookmarklet">bookmarklet</a> and the title, journal etc are automatically added. You are also able to rate papers, and export a BibTeX list of all your papers.</li>
<li><a href="http://www.connotea.org">Connotea</a> &#8211; This is the Nature Publishing Company&#8217;s effort at an online reference manager. As with <a href="http://www.citeulike.org">Citeulike</a> a bookmarklet is used to add papers to your collection. The export functions also allow you to also use a desktop based reference manager such as Endnote.</li>
<li><a href="http://www.academicreader.org/">The Academic Reader</a> -<br />
This is a very new site that hopes to offer a portal to many different<br />
sources of scientific articles. Unlike Citeulike or Connotea you read<br />
the abstracts on the site itself and don&#8217;t have to deal with<br />
bookmarklets. It also provides a &#8220;Library&#8221; where you can store<br />
references to papers you have read.</li>
<li><a href="http://del.icio.us" title="Del.icio.us">Del.icio.us</a> &#8211; This is not a science specific tool, but rather a handy social bookmarking system. You give webpages tags, can view other users&#8217; saved items (while also being able to hide selected items) and use &#8220;Live bookmarks&#8221; of the <a href="http://en.wikipedia.org/wiki/RSS" title="RSS - Wikipedia">RSS</a> feed of tags to access your bookmarks in your browser. Now with the new <a href="http://del.icio.us/help/firefox/extension" title="Del.icio.us Firefox extension">Firefox extension</a>, this functionality is integrated seamlessly into the browsing experience. A lot of people tag abstract pages so they can go back to get the file any time, many using the <a href="http://del.icio.us/tag/arxiv" title="Arxiv tag - Del.icio.us">arXiv tag</a>.</li>
</ul>
<p><strong>Community:</strong></p>
<p>A large part of doing research, or so I&#8217;m told, is becoming part of the research community, communicating with your peers about your work and networking to form possibly collaborative relationships.</p>
<ul>
<li><a href="http://www.cosmocoffee.info">CosmoCoffee</a> &#8211; For cosmologists, this site provides a forum for discussions of recent papers and general queries. There is some integration with the arXiv, allowing search and BibTeX retrieval (handy as this is not provided by the arXiv itself) but also keyword based filtering of the latest papers. This allows you to concentrate on papers relevant to your work, especially from large sections like astro-ph, which is getting so large it&#8217;s easy lose your way.</li>
<li><a href="http://network.nature.com/london">Nature Network London</a> &#8211; This is the Nature Publishing Group&#8217;s attempt at a social network for scientists. It only started recently, so there is not that much activity yet, but it does seem to have a few people writing and networking.<br />
[Update] <a href="http://scienceblogs.com/pharyngula/2007/05/also_how_can_you_do_social_net.php" title="Pharyngula">PZ Myers points</a> to <a href="http://pimm.wordpress.com/2007/05/13/nature-network-global-beta-and-social-networking-20-for-scientists/" title="Social Networking for Scientists">a good discussion</a> of the benefits of social networking for scientists and the Nature Network in particular.</li>
</ul>
<p>So not an exhaustive list, but hopefully there are a few useful resources there. As I said above, if there are any other sites you would recommend please let me know in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhuston.net/2007/04/getting-to-grips-with-web-based-research-tools/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

