<?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>AstroBetter &#187; applications</title>
	<atom:link href="http://www.astrobetter.com/category/apps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.astrobetter.com</link>
	<description>Tips and Tricks for Professional Astronomers</description>
	<lastBuildDate>Mon, 26 Jul 2010 13:28:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Veusz: A Python-Based Interactive Plotting Package</title>
		<link>http://www.astrobetter.com/veusz/</link>
		<comments>http://www.astrobetter.com/veusz/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 12:00:49 +0000</pubDate>
		<dc:creator>Kelle</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[figures]]></category>
		<category><![CDATA[plotting]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/?p=2665</guid>
		<description><![CDATA[This is a guest post by Jeremy Sanders about the plotting package he&#8217;s developed. Jeremy is a postdoc working in the X-Ray Group at the Institute of Astronomy in the University of Cambridge in the UK.



Veusz (pronounced &#8220;views&#8221;) is a python-based GUI plotting package that I (Jeremy Sanders) have developed. As an astronomer, I was [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><i>This is a guest post by <a href="http://barmag.net/">Jeremy Sanders</a> about the plotting package he&#8217;s developed. Jeremy is a postdoc working in the <a href="http://www-xray.ast.cam.ac.uk/" title="Cambridge X-Ray Astronomy">X-Ray Group</a> at the <a href="http://www.ast.cam.ac.uk/">Institute of Astronomy</a> in the University of Cambridge in the UK.</i></p>
<p style="text-align:center">
<a href="http://home.gna.org/veusz/docs/manimages/mainwindow.png"><img src="http://www.astrobetter.com/wp-content/uploads/2010/07/veusz_main_window.png" alt="Veusz Main Window" width="500" style="background:gray; padding:10px"></a></p>
<p>
<a href="http://home.gna.org/veusz/">Veusz</a> (pronounced &#8220;views&#8221;) is a python-based GUI plotting package that I (<a href="http://barmag.net/">Jeremy Sanders</a>) have developed. As an astronomer, I was dissatisfied with every plotting package I had used. Some were fairly easy to use but old fashioned and/or limited (e.g., qdp, sm, grace, gnuplot). Several were not licensed freely (e.g., sm, idl). Many were difficult to use, requiring libraries of other peoples&#8217; code or a lot of work going through manuals (e.g. idl). I wanted a free, easy to use and powerful package and so I started writing Veusz in 2004. Although I initially found the command line interface to be the most important part of a plotting package, since developing Veusz, I now use its GUI almost exclusively as it&#8217;s rather powerful and easy to use.</p>
<p><span id="more-2665"></span></p>
<p style="text-align:center">
<img src="http://www.astrobetter.com/wp-content/uploads/2010/07/veusz_win7.png" alt="Veusz Win7" width="520">
</p>
<p>
Veusz builds plots out of widgets, each of which has a set of properties and formatting options which can be modified. The standard way to build up the plot is to use the GUI to add widgets to form a tree, reading data from external files. However, most of the functionality can also be accessed using a command interface, which can be used from Python command line console window, an <a href="http://barmag.net/veusz-wiki/EmbeddingPython">embedding Python module</a> or commands sent to it from stdin. Indeed, Veusz saved documents are simply Python scripts using the same set of commands and are easily modified. Veusz can export several vector and bitmap formats, including PNG, EPS, PDF, SVG and EMF.
</p>
<p style="text-align:center"><img src="http://www.astrobetter.com/wp-content/uploads/2010/07/inside.png" alt="Inside" height="260" width="260" style="margin: 0 0 0 1em; float: left; background:white; padding:10px"><img src="http://www.astrobetter.com/wp-content/uploads/2010/07/stackedxy.png" alt="Stackedxy" height="260" width="260" style="margin:0 0 0 1em; float:clear; background:white; padding:10px"></p>
<p>
Veusz supports many types of graphs. Have a look at the <a href="http://home.gna.org/veusz/examples">page of examples</a>. Veusz has scatter plots, with optional error bars (of several styles), joining-lines (stepped or beziers curves), fills and transparency, and allows for gaps in data. It also supports plotting functions (which can be defined using numpy functions or in external python modules), histograms (which can be computed from data), contour plots (including sub-contour levels and labelled contours), automatic data keys, image plots (with different color maps), color bars, shapes (including arrows) and external image files. It also has a function-fitting widget for doing a chi-squared fit to data. These plotting widgets are placed inside graph widgets. Multiple graph widgets can be placed on a page and in a grid widget which arranges the graphs inside it. Each graph can have as many axes as you like.
</p>
<p>
Veusz can <a href="http://home.gna.org/veusz/docs/manual.html#AEN159">read data</a> in several different formats. It supports 1D numeric, date and text datasets, and 2D numerical arrays. Its default format is a simple space-delimited text format which can contain a descriptor describing dataset names, columns and data types, or specified in the program. It also supports <a href="http://home.gna.org/veusz/docs/manual.html#AEN219">CSV files</a> (with an optional name for a dataset above each column). Importantly, it can load 1D and 2D data from <a href="http://home.gna.org/veusz/docs/manual.html#AEN226">FITS tables or images</a>. And if that&#8217;s not good enough, you can send numpy arrays to Veusz using the embedding interface, or define an import plugin, which is <a href="http://barmag.net/veusz-wiki/ImportPlugins">a simple Python script</a> for reading the data. A powerful feature is the ability to create new datasets in the program based on functions of other datasets. These datasets update automatically if the underlying data is reloaded.
</p>
<p>
Veusz is multiplatform as it is written in <a href="http://python.org/">Python</a> and uses <a href="http://www.riverbankcomputing.co.uk/software/pyqt/intro">PyQt</a> for user interface and plotting. There are some small parts written in C and C++ to make the program faster. It relies heavily on the Python <a href="http://numpy.scipy.org/">numpy</a> libraries for handling data. Binaries are available for Linux x86, Mac OS X and Windows, and source allows it to be built for these and other platforms. It is licensed under the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GPLv2</a>.
</p>
<p>
Now, what it doesn&#8217;t do: It currently doesn&#8217;t have 3D surface plots or types of plots without independent axes at 90 degrees (e.g., pie chart, radar plot). The embedding interface doesn&#8217;t have a simple command for plotting like pylab, but it <a href="http://barmag.net/veusz-wiki/EmbeddingPython">only takes a few lines of Python code to make a simple plot</a>, and the object interface makes it very easy to manipulate the graph. Embedded plots can also be saved and loaded into the main GUI program for later editing. Its main feature which sets it apart is the unified command line interface which underlies the entire program. The program only supports Qt as a drawing backend, but this is easily extended to support other export files. For example the SVG and EMF export filters were written by me in Python. Veusz is also mostly a single-person software project, though I have included patches and ideas from other people.
</p>
<p>What I&#8217;m currently working on is to add more general plugins allowing the user to add new dialog boxes to modify the plot and its data. I&#8217;m also going to add dataset plugins which would add the ability to define new ways to modify the data easily within the program without writing numpy expressions (e.g., FFT). I&#8217;ve just written code to improve the embedding interface allowing the user to treat the widgets in the document as Python objects (see the New style interface <a href="http://barmag.net/veusz-wiki/EmbeddingPython">here</a>). I&#8217;ve also added vector field plots and am looking into supporting new data formats (e.g., HDF).</p>
<p>The current version is 1.8. Please <a href="http://download.gna.org/veusz/?C=M;O=D">download</a> and play with it! There are <a href="http://home.gna.org/veusz/releasenotes/1.8-install.txt" title="">installation instructions</a>, a <a href="http://home.gna.org/veusz/docs/manual.html">manual</a>, and a <a href="http://barmag.net/veusz-wiki/FAQs">FAQ</a>. Questions and comments are welcome below, on the <a href="https://mail.gna.org/listinfo/veusz-discuss/">mailing list</a>, or directly to to me (jeremy at jeremysanders dot net).</p>
<p style="padding-left:30px">
	Veusz (free), <a href="http://download.gna.org/veusz/Binaries-AppleOSX/veusz-1.8-AppleOSX.dmg" title="">OS X [dmg]</a>    <a href="http://download.gna.org/veusz/Binaries-Windows/veusz-1.8-windows-setup.exe" title="">Windows [exe]</a>   <a href="http://download.gna.org/veusz/Binaries-Linux-i386/veusz-1.8-linux-i386.tar.gz" title="">Linux [tar.gz]</a>
	</p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fveusz%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Fveusz%2F&amp;title=Veusz%3A%20A%20Python-Based%20Interactive%20Plotting%20Package&amp;bodytext=This%20is%20a%20guest%20post%20by%20Jeremy%20Sanders%20about%20the%20plotting%20package%20he%27s%20developed.%20Jeremy%20is%20a%20postdoc%20working%20in%20the%20X-Ray%20Group%20at%20the%20Institute%20of%20Astronomy%20in%20the%20University%20of%20Cambridge%20in%20the%20UK.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AVeusz%20%28pronounced%20%22views%22%29%20is%20a%20python" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Fveusz%2F&amp;title=Veusz%3A%20A%20Python-Based%20Interactive%20Plotting%20Package&amp;notes=This%20is%20a%20guest%20post%20by%20Jeremy%20Sanders%20about%20the%20plotting%20package%20he%27s%20developed.%20Jeremy%20is%20a%20postdoc%20working%20in%20the%20X-Ray%20Group%20at%20the%20Institute%20of%20Astronomy%20in%20the%20University%20of%20Cambridge%20in%20the%20UK.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AVeusz%20%28pronounced%20%22views%22%29%20is%20a%20python" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Fveusz%2F&amp;t=Veusz%3A%20A%20Python-Based%20Interactive%20Plotting%20Package" title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Fveusz%2F&amp;title=Veusz%3A%20A%20Python-Based%20Interactive%20Plotting%20Package&amp;annotation=This%20is%20a%20guest%20post%20by%20Jeremy%20Sanders%20about%20the%20plotting%20package%20he%27s%20developed.%20Jeremy%20is%20a%20postdoc%20working%20in%20the%20X-Ray%20Group%20at%20the%20Institute%20of%20Astronomy%20in%20the%20University%20of%20Cambridge%20in%20the%20UK.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AVeusz%20%28pronounced%20%22views%22%29%20is%20a%20python" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Veusz%3A%20A%20Python-Based%20Interactive%20Plotting%20Package&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Fveusz%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Veusz%3A%20A%20Python-Based%20Interactive%20Plotting%20Package%20-%20http%3A%2F%2Fwww.astrobetter.com%2Fveusz%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fveusz%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=2665&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/veusz/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install LaTeX, AASTeX, and MN2E on Mac OS X</title>
		<link>http://www.astrobetter.com/install-latex/</link>
		<comments>http://www.astrobetter.com/install-latex/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 14:14:49 +0000</pubDate>
		<dc:creator>Kelle</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[aastex]]></category>
		<category><![CDATA[bibdesk]]></category>
		<category><![CDATA[bibtex]]></category>
		<category><![CDATA[emulateapj]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[mn2e]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/?p=2565</guid>
		<description><![CDATA[LaTeX, pronounced &#8220;la tech&#8221;, is a typesetting program that we use to write our papers (instead of Word or somesuch nonsense). Over the long US holiday weekend I got LaTeX and all of its bits installed on my new 13&#8243; MacBook Pro (named Gloria). In this post, I&#8217;ll walk you through the installation and setup [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img style="background: white; float: left; margin: 1em;" src="http://www.astrobetter.com/wp-content/uploads/2010/07/latex_logo.png" alt="Latex Logo" width="200" /><a href="http://www.latex-project.org/">LaTeX</a>, pronounced &#8220;la tech&#8221;, is a typesetting program that we use to write our papers (instead of Word or somesuch nonsense). Over the long <a href="http://gothamist.com/2010/07/05/stunning_skies_during_macys_july_4t.php">US holiday</a> weekend I got LaTeX and all of its bits installed on my new 13&#8243; MacBook Pro (named <a href="http://en.wikipedia.org/wiki/Gloria_Steinem">Gloria</a>). In this post, I&#8217;ll walk you through the installation and setup that should work for any of the <a href="http://www.astrobetter.com/code-and-text-editors-on-macos-x/">code and text editors</a> that Tom discussed a couple weeks ago (e.g., <a href="http://macromates.com/">TextMate</a>, <a href="http://www.uoregon.edu/~koch/texshop/">TexShop</a>, <a href="http://www.gnu.org/software/emacs/">Emacs</a>). In a future post, I&#8217;ll describe how to get TextMate setup as the primary LaTeX editor.</p>
<p>Read on for step-by-step instructions for installing LaTeX, AASTeX, MN2E, and more. One new thing that I learned was how to include both EPS and PDF figures in the same document! </p>
<p><span id="more-2565"></span></p>
<h2>Download and Install LaTeX</h2>
<p>The easiest way to get LaTeX onto OS X is via <a href="http://www.tug.org/mactex/2009/">MacTex</a>. I recommend downloading the full package (~1.3 GB) and then customizing the install. The package comes with <a href="http://bibdesk.sourceforge.net/">BibDesk</a>, <a href="http://www.uoregon.edu/~koch/texshop/">TexShop</a> (which everybody seems to love except me), as well as lots of <a href="http://www.tug.org/mactex/2009/whatsinthepackage.html">other stuff</a>.</p>
<p>MacTex uses the <a href="http://cardarella.blogspot.com/2010/05/clean-up-your-osx-paths.html">paths.d</a> method to modify the <a href="http://www.peachpit.com/articles/article.aspx?p=31442&amp;seqNum=4">PATH</a> environment variable. This works well if you don&#8217;t have your path explicitly set in the <tt>.cshrc</tt>/<tt>.tcshrc</tt>/<tt>.bashrc</tt>. To check if your path is set up correctly, in Terminal, typing <tt>which latex</tt> on the command line should return <tt>/usr/texbin/latex</tt>.</p>
<h2>Download and Install AASTeX</h2>
<p>
<a href="http://authors.iop.org/atom/help.nsf/LookupJournalSpecific/WebLatexGuidelines~AJ">AASTeX</a> is the package for preparing astronomy publications for <a href="http://iopscience.iop.org/0004-637X/">ApJ</a>, <a href="http://iopscience.iop.org/1538-3881/">AJ</a>, and <a href="http://www.journals.uchicago.edu/toc/pasp/current">PASP</a>. Download the <a href="ftp://ftp.iop.org/pub/journals/aastex52.zip">AASTeX package</a> and put it in <tt>~/Library/texmf/tex/latex/aastex52</tt>. If you&#8217;re unfamiliar with AASTeX, a handy guide <a href="http://dopey.mcmaster.ca/AASTeX/aasguide.pdf">[PDF]</a> comes included in the download. To use the AASTeX style, be sure this is the first line of the tex file:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">documentclass</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">aastex</span><span style="color: #E02020; ">}</span></pre></div></div>

</p>
<h2>Setup emulateapj</h2>
<p>If you want to get the fancy look of a two-column ApJ paper, you&#8217;ll want to use <a href="http://hea-www.harvard.edu/~alexey/emulateapj/">emulateapj</a>. The MacTex-2009 package includes an old version so you&#8217;ll want to donwload the new one &#8212; <a href="http://hea-www.harvard.edu/~alexey/emulateapj/emulateapj.cls">emulateapj.cls</a> &#8212; and put it in <tt>~/Library/texmf/tex/latex/emulateapj.cls</tt>. When you want to use it instead of the AASTeX format, modify the tex preamble:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #2C922C; font-style: italic;">%\documentclass{aastex}</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">documentclass</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">emulateapj</span><span style="color: #E02020; ">}</span></pre></div></div>

<h2>Download and Install MN2E</h2>
<p><a href="http://www.wiley.com/bw/static/mnras_latex.asp">MN2E</a> is the package to use for submitting to <a href="http://www.wiley.com/bw/journal.asp?ref=0035-8711">MNRAS</a>. Download <a href="http://www.tex.ac.uk/tex-archive/macros/latex/contrib/mnras/mn2e.cls" >mn2e.cls</a> and put it in <tt>~/Library/texmf/tex/latex/</tt>. Also get the guide <a href="http://mirror.ctan.org/macros/latex/contrib/mnras/mn2eguide.pdf"> [PDF]</a>. To use the style file, make this the first line of the tex file:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">documentclass</span></span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">mn2e</span><span style="color: #E02020; ">}</span></pre></div></div>

<h2>Set up the Bibliography for Use with BibTeX</h2>
<p><P>The easiest way to create the bibliography is with <a href="http://ads.harvard.edu/pubs/bibtex/">BibTeX and ADS</a>. Your .bib file (managed with <a href="http://www.astrobetter.com/why-i-use-bibdesk-instead-of-papers/">BibDesk</a> or exported from Papers) should live in <tt>~/Library/texmf/bibtex/bib/my_bib.bib</tt>. To get the bibliography to display in the journal style format, you&#8217;ll need bibliography style files (.bst).</p>
<p>
The bibliography style file for use with with AASTeX is part of <a href="http://ads.harvard.edu/pubs/bibtex/astronat/doc/html/">AstroNat</a>. (However, be advised that many of the AstroNat resources are no longer necessary.) Download <a href="http://ads.harvard.edu/pubs/bibtex/astronat/apj/apj.bst">apj.bst</a> and put it in <tt>~/Library/texmf/bibtex/bst/apj.bst</tt>. In the preamble of the tex file, include:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\bibliographystyle</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">apj</span><span style="color: #E02020; ">}</span></pre></div></div>

</p>
<p>For MNRAS, download the bibliography style file, <a href="http://www.tex.ac.uk/tex-archive/macros/latex/contrib/mnras/mn2e.bst">mn2e.bst</a>, put it in <tt>~/Library/texmf/bibtex/bst/mn2e.bst</tt>, and include this in the tex file:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\bibliographystyle</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">mn2e</span><span style="color: #E02020; ">}</span></pre></div></div>

</p>
<p>
Where you want the reference list to appear (typically after the acknowledgements, before tables and figures), put this:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\bibliography</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">my_bib</span><span style="color: #E02020; ">}</span></pre></div></div>

</p>
<h2>Figures</h2>
<p>If you&#8217;re using pdftex instead of latex (as you should be&#8230;in this day and age, there&#8217;s no need for that DVI -> PS -> PDF rigamarole), you can include both EPS and PDF figures in the same document by loading these packages in the preamble of the tex file:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">graphicx</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">epstopdf</span><span style="color: #E02020; ">}</span></pre></div></div>

<p>The filename extension is optional. For example, to include <tt>pdf_fig.pdf</tt> and <tt>eps_fig.eps</tt>:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">figure</span></span><span style="color: #E02020; ">}</span>
	<span style="color: #800000; font-weight: normal;">\plotone</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">pdf_fig</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">figure</span></span><span style="color: #E02020; ">}</span>
&nbsp;
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">figure</span></span><span style="color: #E02020; ">}</span>
	<span style="color: #800000; font-weight: normal;">\plotone</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">eps_fig</span><span style="color: #E02020; ">}</span>
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">figure</span></span><span style="color: #E02020; ">}</span></pre></div></div>

</p>
<p>Anything else?  Once ya&#8217;ll give this the once over, I&#8217;ll go ahead and add it to the <a href="http://www.astrobetter.com/wiki/tiki-index.php?page=LaTeX">LaTeX wiki entry</a> which is fairly outdated at the moment.</p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Finstall-latex%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Finstall-latex%2F&amp;title=Install%20LaTeX%2C%20AASTeX%2C%20and%20MN2E%20on%20Mac%20OS%20X&amp;bodytext=LaTeX%2C%20pronounced%20%22la%20tech%22%2C%20is%20a%20typesetting%20program%20that%20we%20use%20to%20write%20our%20papers%20%28instead%20of%20Word%20or%20somesuch%20nonsense%29.%20Over%20the%20long%20US%20holiday%20weekend%20I%20got%20LaTeX%20and%20all%20of%20its%20bits%20installed%20on%20my%20new%2013%22%20MacBook%20Pro%20%28named%20Gloria%29.%20In%20this" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Finstall-latex%2F&amp;title=Install%20LaTeX%2C%20AASTeX%2C%20and%20MN2E%20on%20Mac%20OS%20X&amp;notes=LaTeX%2C%20pronounced%20%22la%20tech%22%2C%20is%20a%20typesetting%20program%20that%20we%20use%20to%20write%20our%20papers%20%28instead%20of%20Word%20or%20somesuch%20nonsense%29.%20Over%20the%20long%20US%20holiday%20weekend%20I%20got%20LaTeX%20and%20all%20of%20its%20bits%20installed%20on%20my%20new%2013%22%20MacBook%20Pro%20%28named%20Gloria%29.%20In%20this" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Finstall-latex%2F&amp;t=Install%20LaTeX%2C%20AASTeX%2C%20and%20MN2E%20on%20Mac%20OS%20X" title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Finstall-latex%2F&amp;title=Install%20LaTeX%2C%20AASTeX%2C%20and%20MN2E%20on%20Mac%20OS%20X&amp;annotation=LaTeX%2C%20pronounced%20%22la%20tech%22%2C%20is%20a%20typesetting%20program%20that%20we%20use%20to%20write%20our%20papers%20%28instead%20of%20Word%20or%20somesuch%20nonsense%29.%20Over%20the%20long%20US%20holiday%20weekend%20I%20got%20LaTeX%20and%20all%20of%20its%20bits%20installed%20on%20my%20new%2013%22%20MacBook%20Pro%20%28named%20Gloria%29.%20In%20this" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Install%20LaTeX%2C%20AASTeX%2C%20and%20MN2E%20on%20Mac%20OS%20X&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Finstall-latex%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Install%20LaTeX%2C%20AASTeX%2C%20and%20MN2E%20on%20Mac%20OS%20X%20-%20http%3A%2F%2Fwww.astrobetter.com%2Finstall-latex%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Finstall-latex%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=2565&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/install-latex/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Code and text editors on MacOS X</title>
		<link>http://www.astrobetter.com/code-and-text-editors-on-macos-x/</link>
		<comments>http://www.astrobetter.com/code-and-text-editors-on-macos-x/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 11:48:30 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[papers]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[textmate]]></category>
		<category><![CDATA[textwrangler]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/?p=2399</guid>
		<description><![CDATA[One of the things we spend the most time doing as astronomers is writing text and/or code, whether to develop a pipeline to reduce/plot data, write papers/proposals, or write simulation codes. Choosing a good text editor is just as important as having a good chair to sit on, and can have a big impact on [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.astrobetter.com/wp-content/uploads/2010/06/textwrangler.png"></a>One of the things we spend the most time doing as astronomers is writing text and/or code, whether to develop a pipeline to reduce/plot data, write papers/proposals, or write simulation codes. Choosing a good text editor is just as important as having a good chair to sit on, and can have a big impact on productivity! In this post, I will go over a few of the best text/code editors out there for MacOS X.</p>
<p><a href="http://www.astrobetter.com/wp-content/uploads/2010/06/textmate.png"><img class="alignright size-full wp-image-2404" title="textmate" src="http://www.astrobetter.com/wp-content/uploads/2010/06/textmate.png" alt="" width="130" height="130" /></a>If any text editor can be compared to a swiss army knife, it is <a href="http://macromates.com/">TextMate</a>. It provides support, through <em>bundles</em>, to over 150 programming languages (C/C++, Fortran, Python, Perl, Ruby, LaTeX, HTML, &#8230;) and tools (subversion, diff, mercurial, &#8230;). One can create projects with multiple files, search and replace text simultaneously in many files, and typeset LaTeX files. Customizable syntax highlighting makes writing text/code pleasant, and code collapsing and expanding makes editing long programs much more manageable (for example, one can ‘collapse’ if statements and do loops in Fortran). One great feature is the ability to just type ‘mate filename’ or ‘mate directory’ on the command-line, and have the file or directory open in TextMate. A number of bundles are installed by default to support programming languages, but if your favorite one is missing, there are instructions on installing bundles <a href="http://manual.macromates.com/en/bundles#bundles">here</a>. Be sure to check out the <a href="http://macromates.com/screencasts">screencasts</a> to make the most out of TextMate. At around $50, a license is a little pricey, but you can try out a 30-day demo to help you decide whether you like it! There is a 15% education discount, and <a href="http://macromates.com/license_policy">larger discounts</a> if you order 4 or more licenses.</p>
<p><span id="more-2399"></span><a href="http://www.astrobetter.com/wp-content/uploads/2010/06/emacs1.png"><img class="alignleft size-full wp-image-2403" title="emacs" src="http://www.astrobetter.com/wp-content/uploads/2010/06/emacs1.png" alt="" width="130" height="130" /></a><a href="http://www.gnu.org/software/emacs/">Emacs</a> needs no introduction, but what I want to mention here is not the old command-line emacs, nor the X11 version xemacs, nor the modified emacs for OSX, <a href="http://aquamacs.org/">Aquamacs</a>, but the official Emacs which is now available in native mode for MacOS X (no X11 needed). Emacs has support for many programming languages, and has fantastic auto-indent capabilities: despite being a heavy TextMate users, I always run Fortran 95 files through Emacs to tidy up the indentation! The Emacs team does not provide pre-built Mac versions, but cutting edge builds can be downloaded from <a href="http://emacsformacosx.com/">this</a> website. Emacs is, of course, free.</p>
<p><a href="http://www.astrobetter.com/wp-content/uploads/2010/06/textwrangler.png"><img class="alignright size-full wp-image-2405" title="textwrangler" src="http://www.astrobetter.com/wp-content/uploads/2010/06/textwrangler.png" alt="" width="130" height="130" /></a>Another (free) powerful text editor that is definitely worth trying out is <a href="http://www.barebones.com/products/textwrangler/">TextWrangler</a> which is a ‘lite’ version of the commercial editor <a href="http://www.barebones.com/products/bbedit/">BBEdit</a>. TextWrangler is simpler than TextMate, but has saved me in a few cases where strange non-ASCII characters have made it into a text file, as it has a nice ‘Zap Gremlins’ feature than can remove any non-ASCII character. Syntax highlighting is of course present, as well as the ability to open multiple files in the same window. One very useful feature is the ability to edit a file directly from an FTP or SFTP server (SFTP basically allows you to access files on any computer that is accessible through SSH).</p>
<p><a href="http://www.astrobetter.com/wp-content/uploads/2010/06/texshop.png"><img class="alignleft size-full wp-image-2407" title="texshop" src="http://www.astrobetter.com/wp-content/uploads/2010/06/texshop.png" alt="" width="130" height="130" /></a>Finally, no discussion of text/code editors would be complete without mentioning the unavoidable <a href="http://www.uoregon.edu/~koch/texshop/">TexShop</a> that many of us already use to write papers/proposals. It is a great LaTeX editor, but many users miss out on some very useful features. Some features that may have eluded users are: if you press the command (apple) key and click on a word in the source, it will show it in the PDF, and vice-versa; there are very useful LaTeX and Matrix windows in the ‘Window’ menu, that make it easy to insert mathematical/greek symbols, and build matrices, without having to lookup how to do this on the web; and there are many scripts to typeset a file, not just the default ‘Latex’: for example, the cryptically named ‘latexmk’ <em>will</em> actually run the usual latex/bibtex/latex/latex that BibTeX users are familiar with.</p>
<p>These are just a few of the text/code editors available on MacOS X, but we think that these are some of the best available. Do you use any of these? Do you know of any other great text/code editors?</p>
<p style="padding-left: 30px;"><a href="http://macromates.com/">TextMate</a>, $50, $42.50 educational, <a href="http://macromates.com/license_policy">bulk and site licenses</a><br />
<a href="http://emacsformacosx.com/">Emacs</a>, free<br />
<a href="http://www.barebones.com/products/textwrangler/">TextWrangler</a>, free<br />
<a href="http://www.uoregon.edu/~koch/texshop/">TexShop</a>, free</p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fcode-and-text-editors-on-macos-x%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Fcode-and-text-editors-on-macos-x%2F&amp;title=Code%20and%20text%20editors%20on%20MacOS%20X&amp;bodytext=One%20of%20the%20things%20we%20spend%20the%20most%20time%20doing%20as%20astronomers%20is%20writing%20text%20and%2For%20code%2C%20whether%20to%20develop%20a%20pipeline%20to%20reduce%2Fplot%20data%2C%20write%20papers%2Fproposals%2C%20or%20write%20simulation%20codes.%20Choosing%20a%20good%20text%20editor%20is%20just%20as%20important%20as%20havin" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Fcode-and-text-editors-on-macos-x%2F&amp;title=Code%20and%20text%20editors%20on%20MacOS%20X&amp;notes=One%20of%20the%20things%20we%20spend%20the%20most%20time%20doing%20as%20astronomers%20is%20writing%20text%20and%2For%20code%2C%20whether%20to%20develop%20a%20pipeline%20to%20reduce%2Fplot%20data%2C%20write%20papers%2Fproposals%2C%20or%20write%20simulation%20codes.%20Choosing%20a%20good%20text%20editor%20is%20just%20as%20important%20as%20havin" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Fcode-and-text-editors-on-macos-x%2F&amp;t=Code%20and%20text%20editors%20on%20MacOS%20X" title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Fcode-and-text-editors-on-macos-x%2F&amp;title=Code%20and%20text%20editors%20on%20MacOS%20X&amp;annotation=One%20of%20the%20things%20we%20spend%20the%20most%20time%20doing%20as%20astronomers%20is%20writing%20text%20and%2For%20code%2C%20whether%20to%20develop%20a%20pipeline%20to%20reduce%2Fplot%20data%2C%20write%20papers%2Fproposals%2C%20or%20write%20simulation%20codes.%20Choosing%20a%20good%20text%20editor%20is%20just%20as%20important%20as%20havin" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Code%20and%20text%20editors%20on%20MacOS%20X&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Fcode-and-text-editors-on-macos-x%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Code%20and%20text%20editors%20on%20MacOS%20X%20-%20http%3A%2F%2Fwww.astrobetter.com%2Fcode-and-text-editors-on-macos-x%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fcode-and-text-editors-on-macos-x%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=2399&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/code-and-text-editors-on-macos-x/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>MacPorts 101</title>
		<link>http://www.astrobetter.com/macports-101/</link>
		<comments>http://www.astrobetter.com/macports-101/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 08:00:27 +0000</pubDate>
		<dc:creator>saurav</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[applications]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/?p=2301</guid>
		<description><![CDATA[While the Mac OS X provides us easy access to the much-beloved terminal, by itself, it is very limited. Apple does not support or maintain its Terminal or X11/XQuartz applications; it is rather supported by an independent group of developers (see XQuartz wiki). However, as the Mac OS X is built on  X11, there [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>While the Mac OS X provides us easy access to the much-beloved terminal, by itself, it is very limited. Apple does not support or maintain its Terminal or X11/XQuartz applications; it is rather supported by an independent group of developers (see <a href="http://xquartz.macosforge.org/trac/wiki">XQuartz</a> wiki). However, as the Mac OS X is built on  X11, there is no need to install a complete UNIX OS, it does require quite a bit of work to make your machine Unix-capable. For long, the open-source project <a href="http://www.finkproject.org/index.php">Fink</a> has long been our savior. Over the past few years, <a href="http://www.macports.org/">MacPorts</a> has developed as a very nice alternative to <a href="http://www.finkproject.org/index.php">Fink</a> in the last couple years. While both systems serve the same purpose, there are differences that make one or the other more appealing. For e.g., if you only need a handful of applications (and not the entire Red Hat system), MacPorts is much easier and faster to install. It takes a couple minutes, which is miniscule compared to the ~45 mins needed for Fink. The caveat being that while Fink installs most of the basic tools and libraries that will be needed in the future and &#8216;completely&#8217; builds the Unix environment, MacPorts only creates the basic directory structure during installation. For this reason MacPorts uses less hard disk space as well. Of course, you can build ports from fink in MacPorts and vice versa &#8212; it just takes a little more effort. In my experience it also takes 3-4 attempts before you get Fink installation right.</p>
<p><span id="more-2301"></span>The other (big) advantage of Macports is its more active developer base; hence,  the various packages tend to get updated quicker. While it is not necessary to keep your packages updated by the day (or the month), it is always nice not to have to wait months for a fix. The good news is that the Macports port library is becoming as extensive as the fink library despite its late start. Again, if you have the expertise, you can always install fink packages in your Macports system as both are open source.</p>
<p><strong><span style="color: #ff9900">Pre-requisites</span></strong>: Assuming you have a Mac OS X, get the latest versions of <a href="http://developer.apple.com/opensource/tools/X11.html">X11</a> and <a href="http://developer.apple.com/technologies/tools/xcode.html">XCode</a>. That is basically it! Then go to the MacPorts <a href="http://www.macports.org/install.php">install</a> page, download the dmg, and start building any (or all) of its 7015 ports (in 92 different categories). And have fun!</p>
<p><span style="color: #0000ff"><strong><span style="color: #ff9900">Basic Commands</span></strong></span>: The average Macports user needs only a handful of commands to install, upgrade, and remove MacPorts. The <a href="http://guide.macports.org/">MacPorts Guide</a> talks about all of these commands (and more) in more detail. But this should be all you need if you are a basic user. You will need &#8217;sudo&#8217; for most of these commands, i.e., when write/execute permissions are needed. I have used &#8216;emacs&#8217; as an example for package name.</p>
<p><code>update macports: port selfupdate<br />
list all available (installed/outdated) ports: port list (installed/outdated)<br />
search available ports: port search emacs<br />
install ports: port install emacs<br />
upgrade all (one) outdated ports: port upgrade outdated (emacs)<br />
uninstall (deactivate) ports: port uninstall (deactivate) emacs<br />
uninstall MacPorts: rm -rf /opt/local/ /Applications/MacPorts/ /Library/Tcl/macports1.0/ /Library/LaunchDaemns/org.macports.*</code></p>
<p><strong><span style="color: #ff9900">MacPorts PATH</span></strong>: Ports downloaded via MacPorts will be in &#8216;/opt/local/bin/&#8217;, separate from ports native to X11 (e.g. ls, cd, more, gzip, &#8230;) that are stored in &#8216;/usr/bin/&#8217;; MacPorts will automatically add this to your PATH on installation. Of course, if you download a port that already exists in &#8216;/usr/bin&#8217;, it will supersede the older one. No harm done, except for the few kilobytes in hard disk space.</p>
<p><strong><span style="color: #ff9900">Starting List of ports/apps</span></strong>: While the ports or apps you should download depends on your need, for the normal astronomer, I would recommend the following ports:  aspell/ispell, teTeX, auctex, emacs/xemacs, gcc, ghostscript, ghostview, gsed, wget, rsync, tightvnc, perl, python, ruby, R, and gimp; see  <a href="http://www.macports.org/ports.php">here</a> for more info on these ports. When you install these ports, a lot more ports and libraries will be installed as dependencies, especially gimp will install a lot of ports. Of course, you should browse through the <a href="http://www.macports.org/ports.php">available ports</a> page. Note that installing these ports will take a while (especially gimp) and might test your patience as each application is built from its source code.</p>
<p>Some GUI applications like the <a href="http://sourceforge.net/projects/cotvnc/">Chicken of the VNC</a>, <a href="http://sourceforge.net/projects/texshop/">TeXShop</a>, <a href="http://chachatelier.fr/programmation/latexit_en.php">LaTeXiT</a>, and <a href="http://adium.im/">Adium</a> are also available via Macports. Whether you download the GUI by itself or as a port (will be installed in &#8216;/Applications/Macports/&#8217;), the functioning will be the same.</p>
<p><em>(Based mostly on the Macports </em><a href="http://guide.macports.org/"><em>guide</em></a><em>, </em><a href="http://trac.macports.org/wiki"><em>wiki</em></a><em>, and </em><a href="http://trac.macports.org/wiki/FAQ"><em>FAQ</em></a><em>).</em></p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fmacports-101%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Fmacports-101%2F&amp;title=MacPorts%20101&amp;bodytext=While%20the%20Mac%20OS%20X%20provides%20us%20easy%20access%20to%20the%20much-beloved%20terminal%2C%20by%20itself%2C%20it%20is%20very%20limited.%20Apple%20does%20not%20support%20or%20maintain%20its%20Terminal%20or%20X11%2FXQuartz%20applications%3B%20it%20is%20rather%20supported%20by%20an%20independent%20group%20of%20developers%20%28see%20XQu" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Fmacports-101%2F&amp;title=MacPorts%20101&amp;notes=While%20the%20Mac%20OS%20X%20provides%20us%20easy%20access%20to%20the%20much-beloved%20terminal%2C%20by%20itself%2C%20it%20is%20very%20limited.%20Apple%20does%20not%20support%20or%20maintain%20its%20Terminal%20or%20X11%2FXQuartz%20applications%3B%20it%20is%20rather%20supported%20by%20an%20independent%20group%20of%20developers%20%28see%20XQu" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Fmacports-101%2F&amp;t=MacPorts%20101" title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Fmacports-101%2F&amp;title=MacPorts%20101&amp;annotation=While%20the%20Mac%20OS%20X%20provides%20us%20easy%20access%20to%20the%20much-beloved%20terminal%2C%20by%20itself%2C%20it%20is%20very%20limited.%20Apple%20does%20not%20support%20or%20maintain%20its%20Terminal%20or%20X11%2FXQuartz%20applications%3B%20it%20is%20rather%20supported%20by%20an%20independent%20group%20of%20developers%20%28see%20XQu" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=MacPorts%20101&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Fmacports-101%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=MacPorts%20101%20-%20http%3A%2F%2Fwww.astrobetter.com%2Fmacports-101%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fmacports-101%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=2301&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/macports-101/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Observation planning with JSkyCalc</title>
		<link>http://www.astrobetter.com/jskycalc/</link>
		<comments>http://www.astrobetter.com/jskycalc/#comments</comments>
		<pubDate>Wed, 26 May 2010 01:45:53 +0000</pubDate>
		<dc:creator>Jane Rigby</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[observing]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/?p=1966</guid>
		<description><![CDATA[JSkyCalc is an easy-to-install ephemeris tool that helps you plan your observing runs, then carry them out as efficiently as possible.  It&#8217;s a graphical revival of the venerable Skycalc by John Thorstensen of Dartmouth.
Airmass-plotting tools exist for ESO and Keck.  The advantage of JSkyCalc is that it calculates everything you&#8217;ll need for observing, and it knows all [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.dartmouth.edu/~physics/faculty/skycalc/flyer.html">JSkyCalc</a> is an easy-to-install ephemeris tool that helps you plan your observing runs, then carry them out as efficiently as possible.  It&#8217;s a graphical revival of the venerable Skycalc by <a href="http://www.dartmouth.edu/~physics/people/faculty/thorstensen.html">John Thorstensen</a> of <a href="http://www.dartmouth.edu/~physics/research/astrophysics.html">Dartmouth</a>.</p>
<p>Airmass-plotting tools exist for ESO and Keck.  The advantage of JSkyCalc is that it calculates everything you&#8217;ll need for observing, and it knows all major observatories&#8212;one tool can plan all your runs.<br />
<span id="more-1966"></span><br />
There are 2 versions of JSkyCalc:  <a href="http://www.dartmouth.edu/~physics/faculty/skycalc/JSkyCalc.jnlp">a web version</a>, and <a href="http://www.dartmouth.edu/~physics/faculty/skycalc/JSkyCalc.jar">a downloadable version</a>.  I recommend downloading it, so that you can load lists of targets.  On my Mac (OS X 10.5),  a simple double-click of &#8220;JSkyCalc.jar&#8221; starts the program.</p>
<p>Here&#8217;s a simple demo.  Start JSkyCalc and select an observatory.  The main screen looks like this:<br />
<a href="http://www.astrobetter.com/wp-content/uploads/2010/05/main1.gif"><img class="size-full wp-image-2152 aligncenter" title="main" src="http://www.astrobetter.com/wp-content/uploads/2010/05/main1.gif" alt="" width="392" height="434" /></a></p>
<p>Enter a date &amp; time (there&#8217;s a button for &#8220;now&#8221;).  Hit &#8220;Nightly Almanac&#8221; to see the times of sunset, sunrise, and twilight.  Hit &#8220;Object Lists&#8221; and load a set of objects; in this example I&#8217;ve loaded three standard stars.   (Hit &#8220;Help&#8221; to learn the catalog format.)</p>
<p><a href="http://www.astrobetter.com/wp-content/uploads/2010/05/almanac.gif"><img class="size-full wp-image-2153 aligncenter" title="almanac" src="http://www.astrobetter.com/wp-content/uploads/2010/05/almanac.gif" alt="" width="252" height="243" /></a></p>
<p>Select all targets with shift-click.  The &#8220;Sky Display&#8221; window shows you the positions of your objects with respect to the constellations and the moon.</p>
<p><a href="http://www.astrobetter.com/wp-content/uploads/2010/05/sky-disp1.gif"><img class="aligncenter size-medium wp-image-2155" title="sky-disp" src="http://www.astrobetter.com/wp-content/uploads/2010/05/sky-disp1-300x285.gif" alt="" width="300" height="285" /></a></p>
<div>Hit &#8220;Airmass Graphs&#8221;, to bring up a plot of airmass curves throughout the night.  Click on the airmass graph to change the time to where you clicked.  Select one target in the Object Selector box, and the main screen will update to show you its coordinates &amp; hourangle, along with the parallactic angle and barycentric velocity correction at the displayed date/time.</div>
<div><a href="http://www.astrobetter.com/wp-content/uploads/2010/05/airmass.gif"><img class="aligncenter size-medium wp-image-2156" title="airmass" src="http://www.astrobetter.com/wp-content/uploads/2010/05/airmass-300x210.gif" alt="" width="300" height="210" /></a></div>
<p>At the telescope, hit &#8220;Set to Now&#8221; to show current conditions.  Even better, you can ask JSkyCalc to update in real time: try setting &#8220;sleep&#8221; to ~60 s, and hit &#8220;Auto Update.&#8221;   Select all targets, and check the airmass graph: a vertical bar shows you the current time.  This is a handy aid for deciding when to switch targets and observe standard stars.</p>
<p>That&#8217;s just a quick look.  JSkyCalc&#8217;s &#8220;Help&#8221; button has more details.</p>
<p>Two grumbles so far:  First, I can&#8217;t figure out how to PRINT!  I&#8217;m currently screen grabbing the airmass plot, and using &#8220;convert -negate&#8221; to make a printer-friendly version.  Anyone know a better way?  Second, since Keck has unique pointing constraints, you still need to use their tool to calculate how far down in elevation you can follow a given source.</p>
<p style="padding-left: 30px;">
<a href="http://www.dartmouth.edu/~physics/faculty/skycalc/flyer.html">JSkyCalc</a>, free</p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fjskycalc%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Fjskycalc%2F&amp;title=Observation%20planning%20with%20JSkyCalc&amp;bodytext=JSkyCalc%20is%20an%20easy-to-install%20ephemeris%20tool%20that%20helps%20you%20plan%20your%20observing%20runs%2C%20then%20carry%20them%20out%20as%20efficiently%20as%20possible.%C2%A0%20It%27s%20a%20graphical%20revival%20of%20the%20venerable%20Skycalc%20by%C2%A0John%20Thorstensen%20of%20Dartmouth.%0D%0A%0D%0AAirmass-plotting%20tools%20ex" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Fjskycalc%2F&amp;title=Observation%20planning%20with%20JSkyCalc&amp;notes=JSkyCalc%20is%20an%20easy-to-install%20ephemeris%20tool%20that%20helps%20you%20plan%20your%20observing%20runs%2C%20then%20carry%20them%20out%20as%20efficiently%20as%20possible.%C2%A0%20It%27s%20a%20graphical%20revival%20of%20the%20venerable%20Skycalc%20by%C2%A0John%20Thorstensen%20of%20Dartmouth.%0D%0A%0D%0AAirmass-plotting%20tools%20ex" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Fjskycalc%2F&amp;t=Observation%20planning%20with%20JSkyCalc" title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Fjskycalc%2F&amp;title=Observation%20planning%20with%20JSkyCalc&amp;annotation=JSkyCalc%20is%20an%20easy-to-install%20ephemeris%20tool%20that%20helps%20you%20plan%20your%20observing%20runs%2C%20then%20carry%20them%20out%20as%20efficiently%20as%20possible.%C2%A0%20It%27s%20a%20graphical%20revival%20of%20the%20venerable%20Skycalc%20by%C2%A0John%20Thorstensen%20of%20Dartmouth.%0D%0A%0D%0AAirmass-plotting%20tools%20ex" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Observation%20planning%20with%20JSkyCalc&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Fjskycalc%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Observation%20planning%20with%20JSkyCalc%20-%20http%3A%2F%2Fwww.astrobetter.com%2Fjskycalc%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fjskycalc%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=1966&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/jskycalc/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Keep iCal and Address Book in Sync Across Multiple Computers: MobileMe vs. Fruux.</title>
		<link>http://www.astrobetter.com/keep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux/</link>
		<comments>http://www.astrobetter.com/keep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 12:00:00 +0000</pubDate>
		<dc:creator>Kelle</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[calendars]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[fruux]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[mobileMe]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/?p=1477</guid>
		<description><![CDATA[(To those who noticed, apologies for the premature publishing of this post earlier this week.)
This is Part 2 of two-part series on keeping multiple computers in sync. Part 1 was about using Dropbox to sync files and applications.

For about three months, I used Fruux to keep my iCal and Address Book in sync on three [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>(To those who noticed, apologies for the premature publishing of this post earlier this week.)</p>
<p><img src="http://www.astrobetter.com/wp-content/uploads/2009/12/sync.png" style="float: left; margin: 0 1em;">This is Part 2 of two-part series on keeping multiple computers in sync. <a href="http://www.astrobetter.com/use-dropbox-to-keep-multiple-computers-in-sync/">Part 1</a> was about using Dropbox to sync files and applications.</p>
<p>
For about three months, I used <a href="http://fruux.com/" title="">Fruux</a> to keep my iCal and Address Book in sync on three computers (and one iPhone). I ran into so many little problems and annoyances with Fruux, I gave in and bought a <a href="http://www.apple.com/mobileme/">MobileMe</a> subscription ($100/year). I&#8217;ve been using MobileMe for three weeks and have been extremely pleased. The bottom line is that Fruux works well enough if you can tolerate duplicates and conflicts, but if you can afford it, MobileMe is a better choice. Read on for the gory details.</p>
<p><span id="more-1477"></span><br />
DISCLAIMER: I don&#8217;t fully understand the inner workings of all this&#8230;I figured out what works for me by trial and error.  Proceed with extreme caution. Back up! Export Address Book and iCal Archives. Before syncing for the first time, I highly recommend googling your particular situation so you know what to expect.  Ideally, start with a blank slate on all secondary computers: no contacts in Address Book and only one calendar in iCal. If you have issues, consider <a href="http://support.apple.com/kb/TS1627" title="">resetting sync services.</a>. If that doesn&#8217;t help, try <a href="http://support.apple.com/kb/TS2481" >advanced troubleshooting</a>. If none of that works, don&#8217;t ask me, contact apple or <a href="http://fruux.com/contact/">fruux</a> or post in a relevant <a href="http://discussions.apple.com/category.jspa?categoryID=116" title="">forum</a>.</p>
<h2>Fruux</h2>
<p>
<a href="http://www.fruux.com"><img src="http://www.astrobetter.com/wp-content/uploads/2009/12/fruux.jpg" alt="Fruux" height="70" style="float:left; margin: 0 1em;" /></a><a href="http://fruux.com/">Fruux</a> is a <em>free</em> service that offers synchronization of many of the same things as MobileMe: Address Book, Calendars, Tasks, and Bookmarks; over-the-air syncing to an iPhone and a web app are in development. Fruux does actually work pretty well but it has some features that can be a little annoying. If you&#8217;re not OCD and can handle some imperfections in your Address Book and iCal, than Fruux is an economical and very functional option.</p>
<p>
Problems that I had:</p>
<ul>
<li>Frequent syncing taxing the limited RAM resources of <a href="http://www.astrobetter.com/new-laptop-macbook-air/">my MacBook Air</a>.</li>
<li>Frequent conflicts requiring my attention. Contact pictures, in particular, seemed to cause problems.</li>
<li>Duplication of contacts and groups.</li>
<li>Two versions of modified events. For example, 3pm meeting moved to 3:30 shows up at both times.</li>
</ul>
<p>Advantages:</p>
<ul>
<li>Free</li>
</ul>
<p>
The workflow I settled on when using Fruux was keeping my primary computer &#8220;Always in Sync&#8221; and to only sync secondary computers when I was actually going to use them to schedule or to add or modify a contact. The reason why I didn&#8217;t keep all the computers &#8220;Always in Sync&#8221; was mostly due to the resources used by syncing and the annoying conflict messages.  Their might be solutions to these problems, but I didn&#8217;t find them.
</p>
<h2>MobileMe</h2>
<p>
<img src="http://www.astrobetter.com/wp-content/uploads/2010/04/mobileme.png" alt="Mobileme" height="70" style="float: left; margin: 0 1em;" />When I broke down and bought a <a href="http://www.apple.com/mobileme/" >MobileMe</a> subscription, it <em>just worked</em> on 2/3 computers <em>and</em> on my iPhone. I&#8217;m only interested in syncing Address Book and Calendars; I haven&#8217;t played with all the other features of the service such as <a href="http://www.apple.com/mobileme/features/idisk.html">iDisk</a>. (<a href="http://www.tuaw.com/2010/03/29/mobileme-and-dropbox-a-study-in-opposites/2" title="MobileMe and Dropbox, a study in opposites">This article</a> doesn&#8217;t make me eager to switch from DropBox to iDisk.)
</p>
<p>
The problems I have are:</p>
<ul>
<li>Cannot sync Address Book on one computer due to &#8220;Inconsistent Data.&#8221; This should be fixable, I just haven&#8217;t worked it out yet.</li>
<li>All calendars, not just selected ones, sync on all computers and display on iPhone. This is a <a href="http://daringfireball.net/2008/08/iphone_calendar_syncing" title="">well complained about</a> feature that I hope will be resolved soon.</li>
</ul>
<p>The reasons I pay for it:</p>
<ul>
<li>New events sync to iPhone without actually having to do a wired sync.</li>
<li>No problems with mysterious conflicts.</li>
<li>Syncing is fast and doesn&#8217;t take any resources.  I don&#8217;t notice it.</li>
</ul>
<p>
I also <a href="http://support.apple.com/kb/HT1245" title="">sync Google Contacts with Address Book</a>. In order to get this to work for me the method I used was: delete all Google Contacts, export Address Book to vCard, import the vCard to Google.  With this method, I lost the groups in Address Book, but I got them in Google&#8230;no biggie.</p>
<p>How do you keep your multiple computers in sync?  Anyone out there loving Fruux? or not happy with MobileMe?</p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fkeep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Fkeep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux%2F&amp;title=Keep%20iCal%20and%20Address%20Book%20in%20Sync%20Across%20Multiple%20Computers%3A%20MobileMe%20vs.%20Fruux.&amp;bodytext=%28To%20those%20who%20noticed%2C%20apologies%20for%20the%20premature%20publishing%20of%20this%20post%20earlier%20this%20week.%29%0D%0AThis%20is%20Part%202%20of%20two-part%20series%20on%20keeping%20multiple%20computers%20in%20sync.%20Part%201%20was%20about%20using%20Dropbox%20to%20sync%20files%20and%20applications.%0D%0A%0D%0AFor%20about%20three" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Fkeep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux%2F&amp;title=Keep%20iCal%20and%20Address%20Book%20in%20Sync%20Across%20Multiple%20Computers%3A%20MobileMe%20vs.%20Fruux.&amp;notes=%28To%20those%20who%20noticed%2C%20apologies%20for%20the%20premature%20publishing%20of%20this%20post%20earlier%20this%20week.%29%0D%0AThis%20is%20Part%202%20of%20two-part%20series%20on%20keeping%20multiple%20computers%20in%20sync.%20Part%201%20was%20about%20using%20Dropbox%20to%20sync%20files%20and%20applications.%0D%0A%0D%0AFor%20about%20three" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Fkeep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux%2F&amp;t=Keep%20iCal%20and%20Address%20Book%20in%20Sync%20Across%20Multiple%20Computers%3A%20MobileMe%20vs.%20Fruux." title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Fkeep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux%2F&amp;title=Keep%20iCal%20and%20Address%20Book%20in%20Sync%20Across%20Multiple%20Computers%3A%20MobileMe%20vs.%20Fruux.&amp;annotation=%28To%20those%20who%20noticed%2C%20apologies%20for%20the%20premature%20publishing%20of%20this%20post%20earlier%20this%20week.%29%0D%0AThis%20is%20Part%202%20of%20two-part%20series%20on%20keeping%20multiple%20computers%20in%20sync.%20Part%201%20was%20about%20using%20Dropbox%20to%20sync%20files%20and%20applications.%0D%0A%0D%0AFor%20about%20three" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Keep%20iCal%20and%20Address%20Book%20in%20Sync%20Across%20Multiple%20Computers%3A%20MobileMe%20vs.%20Fruux.&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Fkeep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Keep%20iCal%20and%20Address%20Book%20in%20Sync%20Across%20Multiple%20Computers%3A%20MobileMe%20vs.%20Fruux.%20-%20http%3A%2F%2Fwww.astrobetter.com%2Fkeep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fkeep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=1477&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/keep-ical-and-address-book-in-sync-across-multiple-computers-mobileme-vs-fruux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mendeley: The future to managing science papers?</title>
		<link>http://www.astrobetter.com/mendeley-the-future-to-managing-science-papers/</link>
		<comments>http://www.astrobetter.com/mendeley-the-future-to-managing-science-papers/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 11:00:10 +0000</pubDate>
		<dc:creator>Eli</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[astro-ph]]></category>
		<category><![CDATA[bibdesk]]></category>
		<category><![CDATA[bibtex]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[mendeley]]></category>
		<category><![CDATA[papers]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/?p=1871</guid>
		<description><![CDATA[This is another guest post by Sarah Kendrew (blog, Twitter) a postdoc in infrared astronomy at Leiden Observatory working on instrumentation for the European Extremely Large Telescope and the James Webb Space Telescope. She&#8217;s also contributed an article about Evernote.

Staying on top of the literature, even in a narrow field, is one of the biggest [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><em>This is another guest post by Sarah Kendrew (<a href="http://sarahaskew.net">blog</a>, <a href="http://twitter.com/sarahkendrew">Twitter</a>) a postdoc in infrared astronomy at Leiden Observatory working on instrumentation for the <a title="E-ELT" href="http://en.wikipedia.org/wiki/European_Extremely_Large_Telescope">European Extremely Large Telescope</a> and the <a title="JWST" href="http://en.wikipedia.org/wiki/James_Webb_Space_Telescope">James Webb Space Telescope</a>. She&#8217;s also contributed an article about <a href="http://www.astrobetter.com/evernote/">Evernote</a>.</em></p>
<p>
<a href="http://www.mendeley.com/" target="_blank"><img style="margin:0 1em; float:left; border: 0px initial initial;" title="Mendeley" src="http://www.astrobetter.com/wp-content/uploads/2010/03/Mendeley.png" alt="Mendeley Logo" width="300" /></a>Staying on top of the literature, even in a narrow field, is one of the biggest challenges we face in research today. Do you have an ever-growing pile of astro-ph papers on your desk you&#8217;ve meaning to read? Yeah, we all have that. In recent years a number of software packages and web applications have come on the market to help researchers organise their literature: <a href="http://mekentosj.com/papers/" target="_blank">Papers</a>, <a href="http://www.refman.com/" target="_blank">Reference Manager</a>, <a href="http://jabref.sourceforge.net/" target="_blank">Jabref</a>, and <a href="http://www.zotero.org/" target="_blank">Zotero</a>. Past AstroBetter posts have introduced <a href="http://www.astrobetter.com/keeping-track-of-your-pdf-papers-with-papers/">Papers</a> and discussed <a href="http://www.astrobetter.com/why-i-use-bibdesk-instead-of-papers/">Papers vs. BibDesk</a>. A recent addition that&#8217;s been getting good press lately is London-based <a href="http://www.mendeley.com/" target="_blank">Mendeley</a>. Here I&#8217;d like to share my experience and thoughts about Mendeley as an astronomy tool.</p>
<p><span id="more-1871"></span></p>
<p><a href="http://www.astrobetter.com/wp-content/uploads/2010/03/scr_shot2.png"><img style="float:right; margin:0 1em;" title="Mendeley Screen Shot" src="http://www.astrobetter.com/wp-content/uploads/2010/03/scr_shot2.png" alt="Mendeley Screen Shot" width="360" /></a>At its simplest, Mendeley is a very handy piece of software to help organise and keep track of the papers you have on your hard drive. Via a desktop application you can create a literature library of papers which can sort, create collections, tag and make the papers searchable. The programme parses pdf files and automatically creates a record for each paper, straight from the pdf. This works really well for recent papers, but for those that are older than 5 years or so, you may need to edit some fields manually. On the upside, the programme is good at sensing it&#8217;s done a bad thing and will prompt you to verify the info when in doubt. One missing feature is the ability to parse postscript files, these have to be imported and edited manually too.</p>
<p>Mendeley can actually re-organise your mess of papers into an ordered directory structure, sorted according to whatever criterion you want &#8211; author, date, subject and so forth. Say, if you store your papers in C:/papers, you can tell Mendeley to &#8220;watch&#8221; that directory. Whenever you save a paper to that directory from e.g. ADS, Mendeley automatically pulls it into your library database. So you don&#8217;t have to manually create a record for each paper you save to your HD.</p>
<p>When I&#8217;m writing a paper, where having my literature in order is key, Mendeley really becomes most useful. There&#8217;s nothing worse than spending an hour trying to find a paper on my hard drive, only then to have forgotten what I wanted it for in the first place. I write my papers in LaTeX, as most of us do, and use BibTeX for easy referencing. In one of Mendeley&#8217;s latest upgrades, automatic BibTeX file creation for each individual collection was added. So my collection of papers on, say, star formation now has a BibTeX file connected to it that gets updated every time I add a paper to it. It&#8217;s fantastic! For those using MS Word (a necessary evil for us instrumentalists), there&#8217;s a nifty add-in for referencing and creating bibliographies.</p>
<p>We have only seen the tip of Mendeley&#8217;s iceberg and what it is all about. Mendeley tags itself as &#8220;Last.Fm for research&#8221;, a social networking site that gathers info on what scientists are reading and saying about literature. The uptake in the astronomy community isn&#8217;t really significant enough for the reading statistics to be meaningful yet, but the online presence has many advantages. Users&#8217; libraries are connected to an online profile, and via the website they can connect to colleagues and friends, and discover what others are reading. This doesn&#8217;t mean that your contacts see your entire library &#8211; but you can share publications with them, and if you add your own publications to your profile they will be visible to your contacts. My whole library is synched to the website, including annotations &#8211; so even when I&#8217;m away from my own computer I can look up references. I can also add things to my library via the web, using a Mendeley bookmarklet or directly from Google Scholar, NASA ADS, or even astro-ph. That&#8217;s what those icons are for in the right sidebar &#8211; who knew? So I don&#8217;t need to have a desktop application running all the time to add papers to my library &#8211; next time I open it, it&#8217;ll get all the new stuff I added from my web profile.</p>
<p>One of my favourite features is the ability to create shared and public collections. Shared collections are for collaborations, everyone involved can contribute papers and annotate. I&#8217;ve actually not used shared collections yet myself but imagine them to be very useful if everyone in a group is willing. Public collections are, as the name suggests, entirely public. I recently created a public collection called Gravity, to accompany a blog post concerning a paper on a novel theory of gravity; in effect I created a reading list to illustrate what I was talking about, that I can add notes and comments to. Public collections have an RSS feed, so anyone can actually subscribe to a collection and stay up to date with what gets added. They&#8217;re also embeddable, so I can add them to a webpage. For those of us who teach, this could be a really awesome way of connecting with students, providing them with supplementary material in a very low-effort way.</p>
<p>I haven&#8217;t sampled all of Mendeley&#8217;s features but for me it&#8217;s proven to be a great tool to help me stay organised. I used to stress about sorting out my hard drive to organise my papers, which were nicely ordered during my PhD but are now a total mess. Now I let this piece of software do it all for me. The one thing it won&#8217;t do is send the information from the paper into your brain. There&#8217;s no app for that, only grad students/postdocs (delete as appropriate), so hang on to those for now.</p>
<p><em>Sarah Kendrew blogs about astronomy science and politics at <a href="http://sarahaskew.net">SarahAskew</a> (<a href="http://sarahaskew.net/feed/">RSS</a>, <a href="http://twitter.com/sarahkendrew">Twitter</a>). She is also a postdoc in infrared astronomy at <a href="http://www.strw.leidenuniv.nl/">Leiden Observatory</a> working on instrumentation for the <a title="E-ELT" href="http://en.wikipedia.org/wiki/European_Extremely_Large_Telescope">European Extremely Large Telescope</a> and the <a title="JWST" href="http://en.wikipedia.org/wiki/James_Webb_Space_Telescope">James Webb Space Telescope</a>. </em></p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fmendeley-the-future-to-managing-science-papers%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Fmendeley-the-future-to-managing-science-papers%2F&amp;title=Mendeley%3A%20The%20future%20to%20managing%20science%20papers%3F&amp;bodytext=This%20is%20another%20guest%20post%20by%20Sarah%20Kendrew%20%28blog%2C%20Twitter%29%20a%20postdoc%20in%20infrared%20astronomy%20at%20Leiden%20Observatory%20working%20on%20instrumentation%20for%20the%20European%20Extremely%20Large%20Telescope%20and%20the%20James%20Webb%20Space%20Telescope.%20She%27s%20also%20contributed%20an%20arti" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Fmendeley-the-future-to-managing-science-papers%2F&amp;title=Mendeley%3A%20The%20future%20to%20managing%20science%20papers%3F&amp;notes=This%20is%20another%20guest%20post%20by%20Sarah%20Kendrew%20%28blog%2C%20Twitter%29%20a%20postdoc%20in%20infrared%20astronomy%20at%20Leiden%20Observatory%20working%20on%20instrumentation%20for%20the%20European%20Extremely%20Large%20Telescope%20and%20the%20James%20Webb%20Space%20Telescope.%20She%27s%20also%20contributed%20an%20arti" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Fmendeley-the-future-to-managing-science-papers%2F&amp;t=Mendeley%3A%20The%20future%20to%20managing%20science%20papers%3F" title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Fmendeley-the-future-to-managing-science-papers%2F&amp;title=Mendeley%3A%20The%20future%20to%20managing%20science%20papers%3F&amp;annotation=This%20is%20another%20guest%20post%20by%20Sarah%20Kendrew%20%28blog%2C%20Twitter%29%20a%20postdoc%20in%20infrared%20astronomy%20at%20Leiden%20Observatory%20working%20on%20instrumentation%20for%20the%20European%20Extremely%20Large%20Telescope%20and%20the%20James%20Webb%20Space%20Telescope.%20She%27s%20also%20contributed%20an%20arti" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Mendeley%3A%20The%20future%20to%20managing%20science%20papers%3F&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Fmendeley-the-future-to-managing-science-papers%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Mendeley%3A%20The%20future%20to%20managing%20science%20papers%3F%20-%20http%3A%2F%2Fwww.astrobetter.com%2Fmendeley-the-future-to-managing-science-papers%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fmendeley-the-future-to-managing-science-papers%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=1871&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/mendeley-the-future-to-managing-science-papers/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Evernote: Organize notes, emails, photos, and more all in one place.</title>
		<link>http://www.astrobetter.com/evernote/</link>
		<comments>http://www.astrobetter.com/evernote/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 07:00:44 +0000</pubDate>
		<dc:creator>Kelle</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[remember the milk]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/evernote/</guid>
		<description><![CDATA[This is a guest post by Sarah Kendrew (blog, Twitter) a postdoc in infrared astronomy at Leiden Observatory working on instrumentation for the European Extremely Large Telescope and the James Webb Space Telescope.



The tag line of note-taking application Evernote reads &#8220;Remember Everything&#8221;. The great thing is, with Evernote, you don&#8217;t need to remember. If you [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><i>This is a guest post by Sarah Kendrew (<a href="http://sarahaskew.net">blog</a>, <a href="http://twitter.com/sarahkendrew">Twitter</a>) a postdoc in infrared astronomy at Leiden Observatory working on instrumentation for the <a href="http://en.wikipedia.org/wiki/European_Extremely_Large_Telescope" title="E-ELT">European Extremely Large Telescope</a> and the <a href="http://en.wikipedia.org/wiki/James_Webb_Space_Telescope" title="JWST">James Webb Space Telescope</a>.<br />
</i></p>
<p><img src="http://www.astrobetter.com/wp-content/uploads/2010/01/evernote_logo.png" alt="Evernote Logo" height="49" width="196" style="float:left; margin: 0 1em;"></p>
<p>
The tag line of note-taking application <a href="http://www.evernote.com/" title="Evernote">Evernote</a> reads &#8220;Remember Everything&#8221;. The great thing is, with Evernote, you don&#8217;t need to remember. If you make it work for you, it&#8217;s like carrying your brain around on your laptop or phone.
</p>
<p>
I started using Evernote about a year ago and it&#8217;s quickly become one of the most-used applications on my laptop. I should mention that nothing it does is particularly astronomy-related&#8212;but as a general productivity app it does an excellent job for me. So how does it work? The concept of Evernote is simple: it&#8217;s software you use to create notes&#8212;about anything and everything you like. A note can be typed text, free-drawn (an &#8220;ink note&#8221;), a <a href="http://www.evernote.com/pub/skendrew/evernote4astrobetter#v=t&amp;n=f1d3a9b4-ffd3-4924-93b8-5056c2212345&amp;b=4d426829-8511-47bd-b246-11a81b0f18a5" title="calculation on white board">picture</a>, a website, an email, a voice note, a tweet or any combination of the above. You can access and create notes on three different fronts: the web, your desktop (<a href="https://www.evernote.com/about/download/windows.php">Windows</a> and <a href="https://www.evernote.com/about/download/mac.php">Mac</a>, no Linux app yet), and your mobile device (<a href="http://www.evernote.com/about/download/iphone/">iPhone</a>, <a href="https://www.evernote.com/about/download/android.php">Android</a>, <a href="https://www.evernote.com/about/download/blackberry.php">Blackberry</a>, etc.). I love it because it simply works, it&#8217;s versatile and easy to use, and looks good.  Read on to learn more about Evernote.
</p>
<p><span id="more-1637"></span></p>
<p>
I&#8217;m an instrumentalist working on large international projects, and that means I spend many of my days in meetings (or travelling to them) and telecons, all of which require some note-taking. I used to do this on paper but I don&#8217;t like cluttering my research notebooks with random meeting notes&#8212;and having separate notebooks for meetings is too much stuff to carry around. I&#8217;ve set up notebooks in Evernote for each of my projects, and I create <a href="http://www.evernote.com/pub/skendrew/evernote4astrobetter#v=t&amp;n=ca263f2b-9546-42fd-8bed-bfa4c034be5e&amp;b=4d426829-8511-47bd-b246-11a81b0f18a5" title="example note">notes</a> whenever I need to write something down in a meeting. Notes can be tagged, geotagged and are date-stamped, which makes them easy to retrieve at a later date. If I need to share my notes with the rest of the team, I can simply email the note directly to my collaborators.
 </p>
<p>
Evernote for me is also an extension for my to-do list programme. While it doesn&#8217;t offer that much organising fuctionality, I use it to provide extra detail to my to-do tasks which I organise using web application <a href="http://www.rememberthemilk.com/">Remember The Milk</a> (RTM). RTM is a very nifty and flexible little app but it doesn&#8217;t support long nested multi-stage tasks. So in RTM I might simply list &#8220;update model by Jan 15&#8243;, and add a link to an Evernote, where I make a checklist of more detailed steps (tag: todo, sensitivity) or provide more information.
 </p>
<p><a href="http://www.evernote.com/pub/skendrew/evernote4astrobetter#v=t&amp;n=e5a3a14c-42de-40dc-bce0-7a1368f97fa1&amp;b=4d426829-8511-47bd-b246-11a81b0f18a5" title="Evernote iPhone Screenshot"><img src="http://www.astrobetter.com/wp-content/uploads/2010/01/evernote_iphone.jpg" alt="Evernote Iphone" width="200" style="float:right; margin:0 1em;"></a><br />
My favourite feature in the <a href="http://www.evernote.com/about/download/iphone/">iPhone app</a> is that a number of notes can be marked as Favourites, which stores them locally on your iPhone for offline access&#8212;fantastically useful when I&#8217;m travelling. Did you see a cool conference poster that you want to follow up? Snap a picture and dump it into a photo note. The iPhone app used to be a little buggy but recent updates have improved things a lot (and it&#8217;s free!). Using the web clipper, you can clip entire webpages or screenshots into a note, with a link back to the original site. This is great for, say, saving papers on astro-ph that you don&#8217;t have time to read at that moment (tag: astroph, todo), or for jobs you want to apply for (tag: jobs, harvard). Or record Christmas present ideas (tag: presents, christmas, mum).
</p>
<p>
The things I&#8217;ve mentioned here are just the very basic functions of Evernote, which has become very powerful with its latest updates. You can now attach files to notes and share notebooks with others. Signing up for a <a href="https://www.evernote.com/about/premium/">premium account</a> increases your upload allowance from 40 to 500 MB per month, and gives added functionality such as searching pdf files and shared editing of notes. There&#8217;s also an API and there are tons of ways in which you could integrate Evernote into your daily tasks (e.g. output from models or other applications could be put straight into a note).
</p>
<p>
I wrote this post in Evernote. Obviously. I also created a shared public notebook containing this blog post and a number of screenshots illustrating its many uses, go <a href="http://www.evernote.com/pub/skendrew/evernote4astrobetter">check it out.</a>
</p>
<p>
Have you found more productive ways to use Evernote, developed cool scripts, or have novel ideas of putting this great application to use? Leave us a comment.
</p</p>
<p style="padding-left: 30px;"><a href="http://www.evernote.com/" title="Evernote">Evernote</a>, free
	</p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fevernote%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Fevernote%2F&amp;title=Evernote%3A%20Organize%20notes%2C%20emails%2C%20photos%2C%20and%20more%20all%20in%20one%20place.%20&amp;bodytext=This%20is%20a%20guest%20post%20by%20Sarah%20Kendrew%20%28blog%2C%20Twitter%29%20a%20postdoc%20in%20infrared%20astronomy%20at%20Leiden%20Observatory%20working%20on%20instrumentation%20for%20the%20European%20Extremely%20Large%20Telescope%20and%20the%20James%20Webb%20Space%20Telescope.%20%0D%0A%0D%0A%0D%0AThe%20tag%20line%20of%20note-taking%20ap" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Fevernote%2F&amp;title=Evernote%3A%20Organize%20notes%2C%20emails%2C%20photos%2C%20and%20more%20all%20in%20one%20place.%20&amp;notes=This%20is%20a%20guest%20post%20by%20Sarah%20Kendrew%20%28blog%2C%20Twitter%29%20a%20postdoc%20in%20infrared%20astronomy%20at%20Leiden%20Observatory%20working%20on%20instrumentation%20for%20the%20European%20Extremely%20Large%20Telescope%20and%20the%20James%20Webb%20Space%20Telescope.%20%0D%0A%0D%0A%0D%0AThe%20tag%20line%20of%20note-taking%20ap" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Fevernote%2F&amp;t=Evernote%3A%20Organize%20notes%2C%20emails%2C%20photos%2C%20and%20more%20all%20in%20one%20place.%20" title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Fevernote%2F&amp;title=Evernote%3A%20Organize%20notes%2C%20emails%2C%20photos%2C%20and%20more%20all%20in%20one%20place.%20&amp;annotation=This%20is%20a%20guest%20post%20by%20Sarah%20Kendrew%20%28blog%2C%20Twitter%29%20a%20postdoc%20in%20infrared%20astronomy%20at%20Leiden%20Observatory%20working%20on%20instrumentation%20for%20the%20European%20Extremely%20Large%20Telescope%20and%20the%20James%20Webb%20Space%20Telescope.%20%0D%0A%0D%0A%0D%0AThe%20tag%20line%20of%20note-taking%20ap" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Evernote%3A%20Organize%20notes%2C%20emails%2C%20photos%2C%20and%20more%20all%20in%20one%20place.%20&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Fevernote%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Evernote%3A%20Organize%20notes%2C%20emails%2C%20photos%2C%20and%20more%20all%20in%20one%20place.%20%20-%20http%3A%2F%2Fwww.astrobetter.com%2Fevernote%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fevernote%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=1637&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/evernote/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>MarcoPolo &#8211; Context-aware computing for Mac</title>
		<link>http://www.astrobetter.com/marcopolo-context-aware-computing-for-mac/</link>
		<comments>http://www.astrobetter.com/marcopolo-context-aware-computing-for-mac/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 15:31:44 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/?p=1457</guid>
		<description><![CDATA[MarcoPolo is a very cool (free) application for MacOS X that uses information about the current state of your computer, or evidence, to automatically perform actions.
For example, one can use MarcoPolo to automatically change the Network Location if an ethernet cable is plugged in or a specific Wi-Fi network is present (useful if you need [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignright size-full wp-image-1462" title="mp-logo" src="http://www.astrobetter.com/wp-content/uploads/2009/12/mp-logo.png" alt="mp-logo" width="128" height="128" /><a href="http://www.symonds.id.au/marcopolo/">MarcoPolo</a> is a very cool (free) application for MacOS X that uses information about the current state of your computer, or <i>evidence</i>, to automatically perform <i>actions</i>.</p>
<p>For example, one can use MarcoPolo to automatically change the Network Location if an ethernet cable is plugged in or a specific Wi-Fi network is present (useful if you need a different network location at home and at the office), automatically open up an application if a USB device is plugged in, or shut down certain applications and mute the computer if a projector is plugged in (useful if you want to avoid that embarrassing IM message in the middle of a talk).</p>
<p><span id="more-1457"></span></p>
<p>MarcoPolo can use many different sources of <em>evidence</em>:</p>
<ul>
<li>Attached Audio Output devices (headphones/internal speakers)</li>
<li>Discoverable Bluetooth devices</li>
<li>Advertised Bonjour (Zeroconf) services</li>
<li>Attached FireWire devices</li>
<li>Assigned IP addresses</li>
<li>Ambient Light level</li>
<li>Attached Monitors</li>
<li>Active Network Links</li>
<li>Power source (power adapter/battery)</li>
<li>Running Applications</li>
<li>Current Time Of Day</li>
<li>Attached USB devices</li>
<li>Visible WiFi networks</li>
</ul>
<p>and can perform the following <i>actions</i>:</p>
<ul>
<li>Set your default printer</li>
<li>Change your desktop background</li>
<li>Enable or disable particular firewall rules</li>
<li>Set iChat status message</li>
<li>Set the default IMAP or SMTP server for Mail.app</li>
<li>Mount network shares (smb://, afp://, etc.)</li>
<li>Mute or Unmute system audio</li>
<li>Change OS X network location</li>
<li>Open a file (an application, a document, etc.)</li>
<li>Quit an application</li>
<li>Enable or disable screen saver password</li>
<li>Start/stop screen saver</li>
<li>Change screen saver idle timeout</li>
<li>Run a shell script</li>
<li>Turn on or off Bluetooth</li>
<li>Turn on or off WiFi (AirPort)</li>
<li>Establish or disconnect VPN</li>
</ul>
<p>that can be grouped into <em>contexts</em>, such as <em>Work</em> or <em>Home</em>.</p>
<p>But the key strength of MarcoPolo, which makes all this a lot of fun, is that you can assign different probabilities to different sources of <em>evidence</em>. So for example, you can use a specific level of lighting as a 60% chance that you are at home, and the fact that an ethernet cable is plugged in as an 80% chance that you are at work. All the weighted sources of evidence are added up, and the final context is automatically chosen!</p>
<p>Have you used MarcoPolo before? If so, what cool uses have you found for it? And if you are a Linux or Windows user, have you found an equivalent application?</p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fmarcopolo-context-aware-computing-for-mac%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Fmarcopolo-context-aware-computing-for-mac%2F&amp;title=MarcoPolo%20-%20Context-aware%20computing%20for%20Mac&amp;bodytext=MarcoPolo%20is%20a%20very%20cool%20%28free%29%20application%20for%20MacOS%20X%20that%20uses%20information%20about%20the%20current%20state%20of%20your%20computer%2C%20or%20evidence%2C%20to%20automatically%20perform%20actions.%0D%0A%0D%0AFor%20example%2C%20one%20can%20use%20MarcoPolo%20to%20automatically%20change%20the%20Network%20Location%20" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Fmarcopolo-context-aware-computing-for-mac%2F&amp;title=MarcoPolo%20-%20Context-aware%20computing%20for%20Mac&amp;notes=MarcoPolo%20is%20a%20very%20cool%20%28free%29%20application%20for%20MacOS%20X%20that%20uses%20information%20about%20the%20current%20state%20of%20your%20computer%2C%20or%20evidence%2C%20to%20automatically%20perform%20actions.%0D%0A%0D%0AFor%20example%2C%20one%20can%20use%20MarcoPolo%20to%20automatically%20change%20the%20Network%20Location%20" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Fmarcopolo-context-aware-computing-for-mac%2F&amp;t=MarcoPolo%20-%20Context-aware%20computing%20for%20Mac" title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Fmarcopolo-context-aware-computing-for-mac%2F&amp;title=MarcoPolo%20-%20Context-aware%20computing%20for%20Mac&amp;annotation=MarcoPolo%20is%20a%20very%20cool%20%28free%29%20application%20for%20MacOS%20X%20that%20uses%20information%20about%20the%20current%20state%20of%20your%20computer%2C%20or%20evidence%2C%20to%20automatically%20perform%20actions.%0D%0A%0D%0AFor%20example%2C%20one%20can%20use%20MarcoPolo%20to%20automatically%20change%20the%20Network%20Location%20" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=MarcoPolo%20-%20Context-aware%20computing%20for%20Mac&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Fmarcopolo-context-aware-computing-for-mac%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=MarcoPolo%20-%20Context-aware%20computing%20for%20Mac%20-%20http%3A%2F%2Fwww.astrobetter.com%2Fmarcopolo-context-aware-computing-for-mac%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fmarcopolo-context-aware-computing-for-mac%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=1457&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/marcopolo-context-aware-computing-for-mac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Wave Notifiers</title>
		<link>http://www.astrobetter.com/macwave/</link>
		<comments>http://www.astrobetter.com/macwave/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 14:00:10 +0000</pubDate>
		<dc:creator>Eli</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[google wave]]></category>

		<guid isPermaLink="false">http://www.astrobetter.com/?p=1507</guid>
		<description><![CDATA[Google Wave is a promising platform for online collaborations. It&#8217;s currently in a alpha/beta state and its growing pains are evident: slow and lack of notifications. I have been using Wave for two months and think it&#8217;s a great tool despite the drawbacks. It has proven to be incredibly useful for large scale collaborations where [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignleft size-full wp-image-1509" title="GoogleWave_Logo" src="http://www.astrobetter.com/wp-content/uploads/2009/12/251px-Googlewave.svg_.png" alt="GoogleWave_Logo" width="251" height="202" />Google Wave is a promising platform for online collaborations. It&#8217;s currently in a alpha/beta state and its growing pains are evident: slow and lack of notifications. I have been using Wave for two months and think it&#8217;s a great tool despite the drawbacks. It has proven to be incredibly useful for large scale collaborations where there are +10 collaborators.</p>
<p>The slowness and lack of notifications does leave a sour aftertaste sometimes. The slowness will most likely be rectified by the Google developers. But, users have taken on the notification issue into their own hands and we&#8217;re seeing multiple programs and plug-ins popping up. Below is a list of the Wave notifiers available for Mac.</p>
<p><span id="more-1507"></span></p>
<h3>Waveboard</h3>
<p>The latest Mac <a href="http://www.getwaveboard.com" target="_blank">Waveboard</a> application was released on November 24th, 2009. Waveboard is under active development and it looks great. This is ideal for users who would prefer having Wave act as an application vs. a tab in your web browser. The user is notified of an update via the task bar and growl.</p>
<h3>Unofficial-Google-Wave-Notifier</h3>
<p>This <em>creatively</em> named <a href="http://blog.yakitara.com/2009/10/unofficial-google-wave-notifier-for-mac.html" target="_blank">application</a> functions similarly to the <a href="http://toolbar.google.com/gmail-helper/notifier_mac.html" target="_blank">Google Notifier</a> application. It&#8217;s under development, so there&#8217;s a chance of running into bugs. For the sake of simplicity, this may be the most favorable option. The application shows updates via the task bar and <a href="http://growl.info/">Growl</a>.</p>
<h3>Firefox</h3>
<p>There&#8217;s an experimental Firefox <a href="https://addons.mozilla.org/en-US/firefox/addon/14973" target="_blank" class="broken_link">plug-in</a>. It has 4/5 stars and +30k downloads and the users seem pretty happy with it. Wave updates are displayed in Firefox&#8217;s statusbar.</p>
<h3>Chromium (Chrome Dev)</h3>
<p>Alas, Chrome has finally been released for Mac! The only issue now is that its extension option is turned off. There is a way around it for the adventurous ones. Go and download the <a href="http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/35283/" target="_blank" class="broken_link">latest</a> Mac Chromium build (the active development version of Chrome). With Chromium, extensions are possible. Once you have a recent build of Chromium head over to the Google Chrome Extensions site and install the <a href="https://chrome.google.com/extensions/detail/aphncaagnlabkeipnbbicmcahnamibgb" target="_blank">Google Wave Notifier</a>. This extension will notify users of updates in the Chromium menu region.</p>
<p>If you don&#8217;t have a Google Wave account and would like one, I have 15 invites to hand out on a first-come, first-served basis. Contact me at this <a href="http://whspr.me/1ZM" target="_blank" class="broken_link">link</a>, temporary contact for anti-spam efforts, with your email address so I can send the Google Wave invite.</p>



Share This:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fmacwave%2F&amp;partner=sociable" title="Print"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.astrobetter.com%2Fmacwave%2F&amp;title=Google%20Wave%20Notifiers&amp;bodytext=Google%20Wave%20is%20a%20promising%20platform%20for%20online%20collaborations.%20It%27s%20currently%20in%20a%20alpha%2Fbeta%20state%20and%20its%20growing%20pains%20are%20evident%3A%20slow%20and%20lack%20of%20notifications.%20I%20have%20been%20using%20Wave%20for%20two%20months%20and%20think%20it%27s%20a%20great%20tool%20despite%20the%20drawb" title="Digg"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.astrobetter.com%2Fmacwave%2F&amp;title=Google%20Wave%20Notifiers&amp;notes=Google%20Wave%20is%20a%20promising%20platform%20for%20online%20collaborations.%20It%27s%20currently%20in%20a%20alpha%2Fbeta%20state%20and%20its%20growing%20pains%20are%20evident%3A%20slow%20and%20lack%20of%20notifications.%20I%20have%20been%20using%20Wave%20for%20two%20months%20and%20think%20it%27s%20a%20great%20tool%20despite%20the%20drawb" title="del.icio.us"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.astrobetter.com%2Fmacwave%2F&amp;t=Google%20Wave%20Notifiers" title="Facebook"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.astrobetter.com%2Fmacwave%2F&amp;title=Google%20Wave%20Notifiers&amp;annotation=Google%20Wave%20is%20a%20promising%20platform%20for%20online%20collaborations.%20It%27s%20currently%20in%20a%20alpha%2Fbeta%20state%20and%20its%20growing%20pains%20are%20evident%3A%20slow%20and%20lack%20of%20notifications.%20I%20have%20been%20using%20Wave%20for%20two%20months%20and%20think%20it%27s%20a%20great%20tool%20despite%20the%20drawb" title="Google Bookmarks"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Google%20Wave%20Notifiers&amp;body=http%3A%2F%2Fwww.astrobetter.com%2Fmacwave%2F" title="email"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Google%20Wave%20Notifiers%20-%20http%3A%2F%2Fwww.astrobetter.com%2Fmacwave%2F" title="Twitter"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.astrobetter.com%2Fmacwave%2F&amp;partner=sociable" title="PDF"><img src="http://www.astrobetter.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/><img src="http://www.astrobetter.com/?ak_action=api_record_view&id=1507&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.astrobetter.com/macwave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
