<?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>Urania</title>
	<atom:link href="http://iparrizar.mnstate.edu/~juan/urania/feed/" rel="self" type="application/rss+xml" />
	<link>http://iparrizar.mnstate.edu/~juan/urania</link>
	<description>A blog named for the muse of Astronomy containing musings by an astronomer</description>
	<lastBuildDate>Wed, 17 Feb 2010 18:57:15 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Science of the Olympic Winter Games</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2010/02/17/science-of-the-olympic-winter-games/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2010/02/17/science-of-the-olympic-winter-games/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 18:57:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Science Education]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/?p=454</guid>
		<description><![CDATA[This is one of the cooler websites I have seen recently.  My kids and I have been watching some of the Olympics on TV.  The National Science Founds is hosting a 16-part video series put together by NBC on the Science of the Olympic games, which describes all the physics and mathematics behind [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of the cooler websites I have seen recently.  My kids and I have been watching some of the Olympics on TV.  The National Science Founds is hosting a 16-part video series put together by NBC on the <a href="http://www.nsf.gov/news/special_reports/olympics/">Science of the Olympic games</a>, which describes all the physics and mathematics behind Olympic sports including how equipment can make a difference in performance.  Cool stuff and a nice contribution by the NSF and NBC to educators.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2010/02/17/science-of-the-olympic-winter-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PGPLOT on Snow Leopard</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/10/23/pgplot-on-snow-leopard/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/10/23/pgplot-on-snow-leopard/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 19:15:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/?p=417</guid>
		<description><![CDATA[One of the packages I use a lot in my research is the venerable PGPLOT package put together by Tim Pearson (currently at Caltech). You see evidence of this set of plotting routines in the figures in many astronomy papers from the 1980s onward. PGPLOT was written in FORTRAN and supports a wide variety of [...]]]></description>
			<content:encoded><![CDATA[<p>One of the packages I use a lot in my research is the venerable <a href="http://www.astro.caltech.edu/~tjp/pgplot/">PGPLOT</a> package put together by Tim Pearson (currently at Caltech). You see evidence of this set of plotting routines in the figures in many astronomy papers from the 1980s onward. PGPLOT was written in FORTRAN and supports a wide variety of drivers to export its graphics, including color postscript, GIF, and Xwindows displays. In addition to using PGPLOT, I use <a href="http://search.cpan.org/~kgb/PGPLOT/">PGPLOT.pm</a>, a perl module for calling PGPLOT from perl scripts written by Karl Glazebrook.  I have used it to make interactive perl scripts for &#8216;marking&#8217; spectral lines in HI spectra among other things.</p>
<p>When I moved to Snow Leopard, I discovered that I could not get PGPLOT.pm compiled against the PGPLOT package that comes with Scisoft OSX and soon realized this was because Perl on my Mac Pro is 64-bit whereas the PGPLOT package included with Scisoft OSX was 32 bit. I decided to compile PGPLOT 64-bit native to try to remedy the problem and on the way discovered a few other issues. Here&#8217;s what I did to get both PGPLOT and PGPLOT.pm working under Snow Leopard (on both 32-bit and 64-bit computers).</p>
<ol>
<li><strong>Determine 32/64-bit nature of hardware:</strong> Since a lot of people don&#8217;t know a priori whether their processor is 32 or 64-bit, here&#8217;s a simple command line test.  Type the following into the command line:<br />
<pre>sysctl hw | grep 64bit</pre>If the response is<br />
<pre>hw.cpu64bit_capable: 1</pre>you have a 64-bit system. If the response is<pre>hw.cpu64bit_capable: 0</pre>you have a 32-bit system.  If it is something else, well, you are on your own!</li>
<li><strong>Install GFORTRAN:</strong> The first thing I did was install <a href="http://gcc.gnu.org/fortran/">Gnu Fortran (aka <em>gfortran</em>)</a> as configured by Gaurav Hanna at the <a href="http://hpc.sourceforge.net/">High Performance Computing for Mac OS X</a> website. It turns out the version he compiled for Snow Leopard (<a href="http://prdownloads.sourceforge.net/hpc/gfortran-snwleo-intel-bin.tar.gz?download">here</a>) is 64-bit Intel ONLY, so for my venerable first generation MacBook Pro, I grabbed the 32-bit Intel Leopard version (<a href="http://prdownloads.sourceforge.net/hpc/gfortran-leopard-intel-bin.tar.gz?download">here</a>), which worked fine in Snow Leopard. Installing them is a simple matter of issuing the proper tar command to unpack the tarball into <code>/usr/local</code>, where all the binaries are installed.
<ul>
<li><pre>sudo tar -C / -xzvf gfortran-snwleo-intel.bin.gz</pre>(for the 64-bit Snow Leopard version)</li>
<li><pre>sudo tar -C / -xzvf gfortran-leopard-intel.bin.gz</pre>(for the 32-bit Leopard version)</li>
</ul>
<p>Once they are installed, you simply have to make sure <code>/usr/local/bin</code> is in your <code>$PATH</code>.</li>
<li><strong>Install PGPLOT:</strong> I grabbed the PGPLOT source code from Tim Pearson&#8217;s website (<a href="ftp://ftp.astro.caltech.edu/pub/pgplot/pgplot5.2.tar.gz">here</a>) and untarred the tarball into <code>/usr/local/src/pgplot</code>, the default location the code expects to be in (based on the instructions in the <code>install-unix.txt</code> file included in the source code tarball).<br />
<pre>sudo tar -C /usr/local/src/ -xzvf pgplot pgplot5.2.tar.gz</pre>
</li>
<li><strong>Install sys_macosx configuration:</strong> The PGPLOT source code has various compiler configurations stored in &#8220;configuration directories&#8221; but it doesn&#8217;t come with one for Mac OS X.  The MacPorts folks, when they ported PGPLOT, did create such a configuration.  However, that configuration is hard coded to require <a href="http://sourceforge.net/projects/aquaterm/">AquaTerm</a>, a nice MacOS X native display program that has not been made 64-bit compliant yet.  Furthermore, their version of the configuration requires g77 to compile.  The only g77 I could find was not 6-bit compliant, so I ended up hacking the <code>sys_macosx/</code> configuration directory to include a new <em>gfortran</em> configuration that didn&#8217;t require AquaTerm.  I am making a tarball of that configuration directory available in the <a href="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/pgplot5.2_macosx_addition.tgz">pgplot5.2_macosx_addition.tgz</a> which you can download and unpack into the PGPLOT source directory using:<br />
<pre>sudo tar -C -xzvf /usr/local/src/pgplot5.2_macosx_addition.tgz</pre><br />
<strong>[The above line was edited to fix an error noticed by a commenter. - Juan (Oct. 24, 2009)]</strong></li>
<li><strong>Compile the PGPLOT binaries:</strong> At this point, if you follow the instructions in the <code>install-unix.txt</code> file in the PGPLOT directory you will be fine, baring in mind the configuration you want to use is the &#8220;maxosx gfortran_gcc&#8221; configuration. However, I will outline the steps I used below.
<ol type="a">
<li><strong>Create a PGPLOT library/binary directory:</strong>Create a directory to contain the PGPLOT libraries. I created <code>/usr/local/pgplot</code> using the command:<br />
<pre>sudo mkdir /usr/local/pgplot</pre>
</li>
<li><strong>Choose the graphics drivers you want:</strong> Copy the drivers.list file from the source directory to this new pgplot directory and edit it to match your needs:<br />
<pre><pre>cd /usr/local/pgplot
sudo cp /usr/local/src/pgplot/drivers.list .
sudo vi drivers.list</pre></pre><br />
(You can replace this last step with emacs or whatever text editor you prefer).  You make a graphics driver part of the compilation by removing the leading exclamation point from the line.  I choose to activate the X-Window drivers,  the GIF drivers (to create GIF images), and the PostScript printer drivers (which you can use to create PostScript versions of plots for publication).  Be aware PNG support requires libpng be installed.</li>
<li><strong>Create the makefile:</strong> We now need to create the makefile using PGPLOT&#8217;s <code>makemake</code> script.  Within the <code>/usr/local/pgplot</code> directory execute:<br />
<pre>sudo /usr/local/src/pgplot/makemake /usr/local/src/pgplot&nbsp;&nbsp;macosx gfortran_gcc</pre><br />
which should result in the following output<br />
<pre><pre>Reading configuration file: /usr/local/src/pgplot/sys_macosx/gfortran_gcc.conf
Selecting uncommented drivers from ./drivers.list
Found drivers GIDRIV NUDRIV PSDRIV XWDRIV
Creating make file: makefile
Determining object file dependencies.</pre></pre>
</li>
<li><strong>Create all the binaries:</strong> Now you just have to create all the binaries, which is a simple <code>make</code> command:<br />
<pre>sudo make</pre><br />
Assuming everything proceeds without error, you should then see at the end of the output<br />
<pre><pre>*** Finished compilation of PGPLOT ***

Note that if you plan to install PGPLOT in a different
directory than the current one, the following files will be
needed.

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; libpgplot.a
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; libpgplot.dylib
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; grfont.dat
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rgb.txt
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pgxwin_server

Also note that subsequent usage of PGPLOT programs requires that
the full path of the chosen installation directory be named in
an environment variable named PGPLOT_DIR.</pre></pre><br />
At this point, you should (if you are going to use PGPLOT within perl or C compile the C library as well using<br />
<pre>sudo make cpg</pre><br />
Finally, clean out all the temporary object files, you don&#8217;t need them.  Do this using the makefile by typing<br />
<pre>sudo make clean</pre><br />
If you want to test if things are working you can run one of the PGPLOT demo programs created in this directory.  However, the <code>pgdemo*</code> executables seem hard coded to expect the pgplot libraries in the <code>/usr/local/lib</code> directory, to it might be a good idea to do the following step before trying the demos. <strong>[Edited in response to a comment about the demos not working. - Juan (Oct. 24, 2009)]</strong></li>
<li><strong>Copy library and header files:</strong> This step is optional, but since most programs (including the <code>pgdemo*</code> executables) don&#8217;t look in <code>/usr/local/pgplot</code> for library and header files, I copy them to <code>/usr/local/lib</code> and <code>/usr/local/include</code> respectively using<br />
<pre></pre>
</li>
</ol>
</li>
<li><strong>Making sure I use <span style="text-decoration: underline;">these</span> PGPLOT binaries:</strong> Since I am using Scisoft OSX, I modified my <code>~/.tcshrc</code> file to change the PGPLOT related environmental variables after loading Scisoft&#8217;s environment<br />
<pre>setenv PGPLOT_DIR /usr/local/pgplot/</pre><br />
.  If you are not using Scisoft, you can place these lines anywhere in your <code>~/.tcshrc</code> file.  If you stick to using bash, then the corresponding lines in the <code>~/.bashrc</code> file that you need to create (after setting up Scisoft, if you are using that) are:<br />
<pre>export PGPLOT_DIR=/usr/local/pgplot/</pre><br />
At this point you have a working PGPLOT set of libraries installed.  You can stop here if you just want to use PGPLOT from C or FORTRAN source code.  If you want to use PGPLOT from within Perl, you need to go further.</li>
<li><strong>Install the ExtUtils:: F77 perl module</strong>: In order to install PGPLOT support, you need to install ExtUtils:F77 first.  You can download <a href="http://search.cpan.org/~kgb/ExtUtils-F77-1.16/">ExtUtils::F77 here</a> and once you untar the tarball,<br />
<pre>tar xzvf ExtUtils-F77-1.16.tar.gz</pre><br />
it can be easily compiled using the following standard perl module compilation steps:<br />
<pre><pre>cd ExtUtils-F77-1.16
perl Makefile.PL
make
sudo make install</pre></pre>
</li>
<li><strong>Install the PGPLOT perl module</strong>: You can download <a href="http://search.cpan.org/~kgb/PGPLOT-2.20/">PGPLOT here</a>.  Untar the tarball.<br />
<pre>tar xzvf PGPLOT-2.20.tar.gz</pre><br />
We start as we usually do for Perl modules, creating the makefile using the Makefile.PL script:<br />
<pre>cd ExtUtils-F77-1.16</pre><br />
Unfortunately, the <code>Makefile.PL</code> script will create a <code>makefile</code> this creates doesn&#8217;t work because it doesn&#8217;t call <em>gfortran</em> so we have to change the <code>Makefile.PL</code> script to know about <em>gfortran</em>.  So load Makefile.PL and edit the line that reads<br />
<pre>use ExtUtils::F77;</pre><br />
to read<br />
<pre>use ExtUtils::F77 qw{Darwin GFortran};</pre><br />
Once you have done that, create the <code>makefile</code> using<br />
<pre>perl Makefile.PL</pre><br />
Now you still have a problem because this <code>makefile</code> is designed to create a universal binary.  However, depending on which platform you downloaded <em>gfortran</em> for (in step 1), you only have 64-bit intel or 32-bit intel support.  So you have to delete all mentions of<br />
<pre>-arch ppc</pre><br />
from the <code>makefile</code> as well as removing<br />
<pre>-arch i386</pre><br />
if you are compiling on a 64-bit system or<br />
<pre>-arch x86_64</pre><br />
if you are compiling on a 32-bit system.  Once you have done that, you can finish installing the perl module using:<br />
<pre><pre>make
make test
sudo make install</pre></pre><br />
I did have some issues with <code>make test</code> because it couldn&#8217;t find my X-windows driver due to a bad environment, but the compile reported no errors and I was able to get the <code>make test</code> to work once I had the proper environmental variable settings for <code>PGPLOT_DIR</code> (see step 5).</li>
</ol>
<p>So that is it, I now have working PGPLOT installations with perl support on both my 32-bit MacBook Pro and my 64-bit Mac Pro.</p>
<p><em>[Edited on December 28, 2009 to add the first step to determine whether your system is 32/64-bit.]</em></p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/10/23/pgplot-on-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>SSH2 extension activation in PHP 5.3.0</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/10/13/ssh2-extension-activation-in-php-530/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/10/13/ssh2-extension-activation-in-php-530/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 01:39:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacPorts]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/10/13/getting-ssh2-support-in-php-5-3-0-under-snow-leopard/</guid>
		<description><![CDATA[This is an upgraded tutorial to getting SSH2 support under PHP 5.3.0 that I wrote a while back. Getting SSH2 support in PHP is useful for maintaining WordPress blogs. It would be nice if such an extension were not necessary, but this is the only way WordPress supports SSH administration through their web interface.
The big [...]]]></description>
			<content:encoded><![CDATA[<p>This is an upgraded tutorial to getting SSH2 support under <a href="http://www.php.net/">PHP</a> 5.3.0 that <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/12/11/activating-ssh-support-in-macports-php/">I wrote a while back</a>. Getting SSH2 support in PHP is useful for maintaining <a href="http://www.wordpress.com/">WordPress</a> blogs. It would be nice if such an extension were not necessary, but this is the only way WordPress supports SSH administration through their web interface.</p>
<p>The big difference is that I will now be using the built-in Apache2 and PHP 5.3.0 under <a href="http://www.apple.com/macosx/">MacOS 10.6.1</a>. I have gotten tired of the fact that everytime <a href="http://www.macports.org/">MacPorts</a> updates it PHP installation, it tends to clobber the <code>php.ini</code> file for the site, requiring me to re-setup everything. Furthermore, I am also a bit tired of having MacPorts install its own version of everything I already have under MacOS X (such as Apache2, PHP, and MySQL). I understand their philosophy (and the practicality of it), but I am trying to keep my computer as clean as possible. As such, I am only using MacPorts to provide libssh2 to the SSH2 extension for PHP.</p>
<p>I noticed that the WordPress code had ssh2 support built-in, so all I need to is activate SSH2 support in the MacPorts installed PHP and I should be able to use SFTP in WordPress to handle the upgrades. I poked around and found <a href="http://kevin.vanzonneveld.net/techblog/article/make_ssh_conanections_with_php/">this posting</a> outlining the process for adding ssh2 support to Ubuntu. It guided me in developing this list of hints:</p>
<ol>
<li>If you haven&#8217;t already, start by installing libssh2 via MacPorts using the command:<br />
<pre>sudo port install libssh2</pre></li>
<li>Download the necessary SSH2 PHP extension using the build in PECL command<br />
<pre>sudo pecl download channel://pecl.php.net/ssh2-0.11.0</pre>The <code>sudo</code> is necessary because a lock file needs to be created during the download in <code>/usr/lib/php</code>, which is a protected directory. However, the file is downloaded to the current directory. Once the download is complete, we will need to unpack the SSH2 extension and go into its directory:<br />
<pre><pre>tar xzvf ssh2-0.11.0.tgz
cd ssh2-0.11.0</pre></pre>If you try to do the normal <code>phpize/configure/make</code> sequence for compiling PHP extensions at this point, you will get a string of error messages ending with something like<br />
<pre>/private/var/tmp/apache_mod_php/apache_mod_php-53~1/Build/tmp/pear/download/ssh2-0.11.0/ssh2.c:1105: warning: passing argument 4 of &#039;add_assoc_stringl_ex&#039; discards qualifiers from pointer target type</pre><br />
This is occuring because there is <a href="http://pecl.php.net/bugs/bug.php?id=16727">an incompatibility between this ssh2 extension code and PHP 5.3.0</a>. It can be patched by downloading the ssh2-php53.patch file from <a href="http://remi.fedorapeople.org/ssh2-php53.patch">http://remi.fedorapeople.org/ssh2-php53.patch</a> and applying the patch from the command line in the ssh2-0.11.0 directory<br />
<pre><pre>curl -o ssh2-php53.patch http://remi.fedorapeople.org/ssh2-php53.patch
patch &lt; ssh2-patch53.patch</pre></pre>Once you have done that, you can finish the SSH2 PHP extension compilation using<br />
<pre><pre>phpize
./configure --with-ssh2=/opt/local
make
sudo make install</pre></pre>The final command informed me the ssh2.so library was placed in <code>/usr/lib/php/extensions/no-debug-non-zts-20090626/</code></p>
</li>
<li>Now you need to make sure PHP loads the new module, so we open the PHP configuration file <code>/etc/php.ini</code> and edit the extension_dir line to point the extension directory above:<br />
<pre>extension_dir = &quot;/usr/lib/php/extensions/no-debug-non-zts-20090626/&quot;</pre><br />
and then add the following line to the end of the section on &#8220;Dynamic Extensions&#8221;:<br />
<pre>extension=ssh2.so</pre>If you edited everything properly, a simple <code>php -v</code> from the command line should NOT trigger any errors.</p>
</li>
<li>Finally, I restart the apache2 server so that the reconfigured PHP is loaded using<br />
<pre>sudo apachectl restart</pre>At this point, I checked (via the <code>phpinfo();</code> command to see if the web server was supporting SSH. Near the bottom of the <code>phpinfo();</code> listing is a listed of &#8220;Registered PHP Streams&#8221;. As <a href="http://bugssite.org/blog/2008/09/07/does-your-wordpress-server-support-ssh2/">noted here</a>, it should incude &#8220;ssh2.shell&#8221;, &#8220;ssh2.exec&#8221;, &#8220;ssh2.tunnel&#8221;, &#8220;ssh2.scp&#8221;, and &#8220;ssh2.sftp&#8221;. If it does, you have enabled SSH support for Apache2 driven PHP pages under MacPorts.</p>
</li>
<li>If you are doing this to get WordPress 2.7 automatic installation working, you will notice now when the automatic installation dialog box pops up, in addition to ftp and ftps, you now have an ssh option.<img src="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/wordpresssnap3.png" alt="" width="380" height="77" /></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/10/13/ssh2-extension-activation-in-php-530/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX 2009.10.1 released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/10/01/scisoft-osx-2009-10-1-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/10/01/scisoft-osx-2009-10-1-released/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 22:49:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[IRAF]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/10/01/scisoft-osx-2009-10-1-released/</guid>
		<description><![CDATA[Nor Pirzkal has released another minor update to Scisoft OSX. He states in his blog that:
A minor revision of Scisoft is available for downloading. Many people are experiencing many problems with the Apple Package Installer and I am distributing this release as a simple tar.gz file.
This version of Scisoft is distributed as a simple tar [...]]]></description>
			<content:encoded><![CDATA[<p>Nor Pirzkal has released another minor update to <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a>. He <a href="http://web.mac.com/npirzkal/Scisoft/News/Entries/2009/10/1_Scisoft_OSX_Intel_2009.10.1_Released.html">states</a> in his blog that:</p>
<blockquote><p>A minor revision of Scisoft is available for downloading. Many people are experiencing many problems with the Apple Package Installer and I am distributing this release as a simple tar.gz file.</p>
<p>This version of Scisoft is distributed as a simple tar file that can be un-tarred in /. Scisoft expect to be located in <span style="font-family: monospace;">/Applications/scisoft/</span></p></blockquote>
<p>I can confirm the <code>CONTENTS</code> file distributed with the install is identical to the file for <a href="http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/">Scisoft 2009.9.1</a> so this release may just be a way to avoid some issues with the Apple Package Installer program.</p>
<p>This change to a tarball format is good, but it changes how to install the software. However, there is at least one major glitch in this distribution</p>
<ul>
<li>WCSTools is missing from the installation! There are symbolic links to the package, but the <code>/Application/scisoft/i386/Packages/wcstools-3.7.3/</code> directory is empty! If you are upgrading from a previous version of Scisoft OSX, there is an easy way to recover from this problem. I am outlining my suggested installation routine below.</li>
<li>As I noted for <a href="http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/">Scisoft 2009.9.1</a>, &#8220;on Snow Leopard, Gordon Richards discovered that if you attempt ‘import pylab’ in python, you get a bus error. I can confirm the same error occurs on my Snow Leopard machine using either this SciSoft OSX release or the previous one. Furthermore, I can confirm the error <strong>DOES NOT</strong> occur in Leopard. I am not a heavy Python user, so I will leave it to Gordon, Nor, and others to investigate this issue. Gordon notes that <a style="text-decoration: none; color: #c00000; padding: 0px; margin: 0px;" href="http://blog.hyperjeff.net/?p=160">this blog posting</a> contains instructions for getting pylab installed under a vanilla Snow Leopard install, in case you need them.&#8221;</li>
</ul>
<p>My <strong>suggested routine for upgrading</strong> to this version of Scisoft OSX from a previous version is the following:</p>
<ol>
<li>Backup the previous version of Scisoft by renaming the <code>/Application/scisoft/</code> directory to <code>/Application/scisoft_old/</code>.</li>
<li>Download the current gzipped tarball of Scisoft OSX. The current version of Scisoft OSX is available for download from the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> website, but I have made the package available on my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">Scisoft OSX mirror</a> as well, in case it is faster for people.</li>
<li>Using the command line in an administrative account, you can untar the tarball using the command:<pre>sudo tar -C / -xzvf Scisoft_OSX_macintel_2009.10.1.tar.gz</pre>You will be asked for your account password to allow &#8217;sudo&#8217; to run the tar command as root.
</li>
<li>The files are untarred with their ownership intact from when Nor created the tarball, so be sure to change the ownership to match your root account using<br />
<pre>sudo chown -R root:admin /Applications/scisoft/</pre>
</li>
<li>Finally, if you want to copy over the WCStools package from the previous Scisoft OSX installation, you can use the command:<pre>sudo cp -r -p /Applications/scisoft_old/i386/Packages/wcstools-3.7.3/ /Applications/scisoft/i386/Packages/wcstools-3.7.3/</pre>That should get your back the WCStools.</li>
</ol>
<p>I have alerted Nor to the missing wcstools directory as well as some other minor issues with this release. Hopefully, if Nor has some time, he will make</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/10/01/scisoft-osx-2009-10-1-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX 2009.9.1 released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 17:37:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/</guid>
		<description><![CDATA[Nor Pirzkal has released a minor update to Scisoft OSX. He states in his blog that:

  This version should fix a few outstanding bugs in version 2009.6.1. People running on case sensitive file system will hopefully stopped having problems. This version otherwise upgrades a few minor packages as described in the NEWS and CONTENTS [...]]]></description>
			<content:encoded><![CDATA[<p>Nor Pirzkal has released a minor update to <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a>. He states in his blog that:</p>
<blockquote><p>
  This version should fix a few outstanding bugs in version 2009.6.1. People running on case sensitive file system will hopefully stopped having problems. This version otherwise upgrades a few minor packages as described in the NEWS and CONTENTS files.</p>
<p>  This version requires OSX Intel 10.5.x or higher. It also works fine with OSX 10.6.0 and OSX 10.6.1.
</p></blockquote>
<p>From reviewing the <code>CONTENTS</code> file distributed with the install, the major changes from the <a href="http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/">previous version</a> as as he indicated, quite minor. They include:</p>
<ul>
<li>The following <a href="http://www.python.org/">Python</a> packages were updated:</li>
<li style="list-style: none">
<ul>
<li><a href="http://matplotlib.sourceforge.net/">matplotlib</a> 0.99 (upgraded from version 0.98.5.2)</li>
<li><a href="http://www.stsci.edu/resources/software_hardware/pyraf">pyraf</a> 1.8 (upgraded to the current release version from version 1.7.1)</li>
<li><a href="http://pygsl.sourceforge.net/">pygsl</a> 0.9.4 (upgraded from version 0.9.3)</li>
<li><a href="http://www.egenix.com/products/python/mxBase/mxDateTime/">mxDateTime</a> 3.1.2 was added to the distribution. Adds certain useful date manipulation functions to the python installation.</li>
<li><a href="http://code.google.com/p/python-sao/">pysao</a> 2.1.8 was added to the distribution. This appears to add direct XPA communication capability between python scripts and <a href="http://hea-www.harvard.edu/RD/ds9/">SAOImage DS9.</a></li>
</ul>
</li>
</ul>
<ul>
<li>The <a href="http://www.gnu.org/software/gsl/">gsl</a> library was update from version 1.11 to 1.13.</li>
<li>[From NEWS file] Changed <a href="http://hea-www.harvard.edu/RD/ds9/">ds9</a> [command line] unix version a [symbolic] link from an alias. I noticed the SAOImage DS9 website currently says &#8220;Note: the next release of DS9, version 5.7, will be available October 15th.&#8221;</li>
<li>[From NEWS file] Fixed references to &#8220;packages&#8221; to &#8220;Packages&#8221; in Setup scripts</li>
</ul>
<p>The glitches I have noticed in this distribution</p>
<ul>
<li>As with previous versions, the installer for Scisoft OSX (due to bugs, apparently in Apple&#8217;s installer.app) changes the ownership of /Applications after the install. I would run Disk Utility and Fix the Permissions on your root volume after installing Scisoft OSX.</li>
<li><strong>[Added Sept. 23]</strong> Gordon Richards and I have have been investigating some serious annoyances with the python installation on Snow Leopard in this version of SciSoft OSX.
<ol>
<li> First of all, the installer apparently doesn&#8217;t install <code>/Applications/scisoft/i386/Packages/Python-2.5.4/Python.framework/Versions/2.5/Resources/Python.app/</code> when running on Snow Leopard. This directory contains the python executable.  Therefore, in the new SciSoft OSX on Snow Leopard, you can&#8217;t run python from the clean install.  If you manually copy this directory from the previous SciSoft OSX installation to this one, then I find you can run python again (or in my case, pyraf).  I can confirm this directory is apparently installed under Leopard.</li>
<li>On Snow Leopard, Gordon Richards discovered that if you attempt &#8216;import pylab&#8217; in python, you get a bus error.  I can confirm the same error occurs on my Snow Leopard machine using either this SciSoft OSX release or the previous one.  Furthermore, I can confirm the error <strong>DOES NOT</strong> occur in Leopard. I am not a heavy Python user, so I will leave it to Gordon, Nor, and others to investigate this issue.  Gordon notes that <a href="http://blog.hyperjeff.net/?p=160">this blog posting</a> contains instructions for getting pylab installed under a vanilla Snow Leopard install, in case you need them.</li>
</ol>
</li>
</ul>
<p>The current version of Scisoft OSX is available for download from the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> website, but I have made the package available on my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">Scisoft OSX mirror</a> as well, in case it is faster for people.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Snow Leopard for this Astronomer</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/snow-leopard-for-this-astronomer/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/snow-leopard-for-this-astronomer/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 16:19:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/snow-leopard-for-this-astronomer/</guid>
		<description><![CDATA[I recently updated my laptop, an old Core Duo MacBook Pro, to Snow Leopard to test out the new OS. There have been a lot of little annoyances and a lot of little benefits to the move.
Some of the improvements I have noticed:

Snow Leopard is noticeably faster! I had thought it might just be fan-boy [...]]]></description>
			<content:encoded><![CDATA[<p>I recently updated my laptop, an old Core Duo MacBook Pro, to Snow Leopard to test out the new OS. There have been a lot of little annoyances and a lot of little benefits to the move.</p>
<p>Some of the improvements I have noticed:</p>
<ul>
<li><strong>Snow Leopard is noticeably faster!</strong> I had thought it might just be fan-boy talk, but this operating system is in fact noticably faster at launching applications and the like. It is especially nice to no longer see the beachball every few minutes in the Finder. In fact, I don&#8217;t think I have seen that dreaded rainbow beachball int he Finder since upgrading!</li>
<li><strong>Cisco VPN is built in</strong>! Like the iPod Touch, Cisco VPN networking is now built-in, so all I had to do was configure it as one of my network interfaces. Thank you Apple! If you previously had it installed, you can uninstall Cisco&#8217;s crappy little VPN client using the command:<code>sudo /usr/local/bin/vpn_uninstall</code></li>
<li><strong>QuickLook works in the Open/Save Dialog Boxes:</strong> Just as in the Finder, you can now hit the spacebar with a file selected in an Open/Save dialog box and you get a previous of the file&#8217;s contents. Sweet. QuickLook was probably the most useful feature I use everyday in Leopard, so I am glad to see it available in Open/Save dialog boxes as well.</li>
<li><strong>I can see Hidden Files in the Open/Save Dialog Boxes:</strong> Credit this to <a href="http://www.macosxhints.com/article.php?story=20090915152215383">MacOS X Hints</a>, but in the Open-Save Dialog box, if I hit &#8216;Command-Shift-.&#8217; (that&#8217;s a period), you can see the hidden files in a given directory. If you use your mac in a region where commas are normally used to as a decimal separate, you have to use the comma from the numerical keypad instead of the period. Very useful for people who edit <code>.tcshrc</code> or <code>.bashrc</code> files regularly.</li>
</ul>
<p>Some of the annoyances I have been ironing out during the last week:</p>
<ul>
<li><strong>X11 now knows more about user environment:</strong> I use tsch as my shell environment. Apparently X11 on Snow Leopard loads the <code>~/.tcshrc</code> file to set the system enviroment! I had a bug in the file that prevented X11 from launching. I was able to figure out it was local to my account by creating a test user account and launching X11 without a hitch. I was able to find the bad library path and fix it in the <code>~/.tcshrc</code> and now my X11 works fine.</li>
<li><strong>Battery Issues with Snow Leopard:</strong> I had issues with the battery under Snow Leopard. The battery life that was being reported was half what it had been before the upgrade. This seemed very odd to me, but the system profiler app insisted that after 183 charge cycles I had only 1949 mAh of power. So to &#8216;recalibrate&#8217; I started up the computer after it went to sleep due to &#8216;low power&#8217;. It ran for another hour, reporting 0% battery the entire time. It then did a hard shutdown. I left it off and unplugged overnight, I then charged it full. It still reported only 1949 mAh total charge. I called Apple&#8217;s tech support which elevated the report to engineering. Then, after &#8217;safe booting&#8217; the machine (see notes below), and booting back into my normal setup, I discovered the battery level was being reported as 4300 mAh, as it should be. Now, as of this morning, the problem is back again and System Profiler insists the battery has only 2870 mAh of maximum charge and it requires service. Not sure what the problem was, but <a href="http://discussions.apple.com/message.jspa?messageID=10203744">a lot of people have been having similar problems with this particular battery and snow leopard</a>.<br />
<strong>[Followup (added Oct. 23, 2009): Apple replaced the battery and the problem went away.  It is possible that the number of people reporting the problem is just indicative of a small percentage of users whose bad batteries were not obvious to them before Snow Leopard.]<br />
</strong></li>
<li> <strong>Ethernet Issues with Snow Leopard:</strong> I had major issues with the ethernet connection dropping after a few minutes.  Actually, it isn&#8217;t a full lost connection, I can still see computers on my subnet, and Skype seems to work, but a large percentage of websites fail to load and mail doesn&#8217;t work for off-campus mail servers.  Quite a few other people were reporting similar problems on the Apple Discussion boards, but <span style="text-decoration: underline;">most</span> of them resolved the problem by doing one of the following:
<ol>
<li>Sometimes corrupt settings persist from a previous setup. Removing all the files in /Library/Preferences/SystemConfiguration/ and rebooting will purge all the system settings related to networking. You will also lose settings related to other things, such as Energy Saver settings, but it can help when you can&#8217;t isolate the issue. I tried this, it didn&#8217;t work in my case</li>
<li>The other solution many people hit on was to create a new &#8220;Location&#8221; in the Network control panel. If you have a corrupt preference setting in your Location, creating a new one lets you start from scratch. Again, this didn&#8217;t work for me.</li>
</ol>
<p>After going through all this, I talked to an Apple product specialist and they hit on the idea to try bringing up the computer in &#8216;<a href="http://support.apple.com/kb/HT1455">Safe Mode</a>&#8216; by rebooting ahdn holding the shift key during the boot. Safe mode turns off the launching of all non-system deamons and agents as well as turning off the launching of all the programs you might launch at login via your Accounts preference pane &#8220;Login Items&#8221;. Lo and behold, after doing this, my ethernet connection appears to have been stable! What I did was</p>
<ol>
<li>I removed Adobe VersionCue CS3 from my launch items in the Accounts preference pane. Adobe noted it was incompatible with Snow Leopard anyway.</li>
<li>I disabled the following launch items by moving them to my Desktop and then rebooting<br />
<pre><pre>/Library/LaunchDaemons/com.adobe.versioncueCS3.plist
/Library/LaunchAgents/at.obdev.LittleSnitchNetworkMonitor.plist
/Library/LaunchAgents/at.obdev.LittleSnitchUIAgent.plist</pre></pre>
</li>
</ol>
<p>Having now brought the computer back up through a normal boot, the ethernet connection has remained stable. The fact that my battery issue seems to have been resolved almost simultaneously makes me think these apps were responsible. <strong>[Followup (added Oct. 23, 2009): I narrowed down the problem to an apparent incompatibility between Snow Leopard and the version of BIND my campus is using as a DNS server.  And it may be specific to my machine.  Not sure.  Switching to using <a href="http://www.opendns.com/">OpenDNS </a> as my DNS resolver made the issue go away for me.  My server, a Mac Pro, which I have upgraded to Snow Leopard, has exhibited no such weirdness.]</strong></p>
<p><strong> </strong><strong> </strong></li>
<li><strong>MacPorts Rebuild:</strong> I traditionally rebuild my <a title="MacPorts homepage" href="http://www.macports.org/">MacPorts</a> installation from scratch with a new OS installation. There were no major issues, but I took the opportunity to upgrade to the latest MacPorts and to try to rebuild with only the bare minimum of ports that I was using.</li>
<li><strong>Many Mail Plugins Fail:</strong> Most mail plugins use &#8216;unapproved&#8217; APIs and most of the Mail Plugins I used failed for Snow Leopard&#8217;s Mail.app. Furthermore, it looks like Apple has changed things so now every minor revision in the OS will require Mail plugin writers to explicitly approve the plugin for that version of Mail.app. This means in the future every minor revision in Snow Leopard will likely shut down Mail plugins until they get updated.</li>
<li> <strong>Force 32-bit compilation for IRAF in Snow Leopard:</strong> Doug Mink has discovered that compiling IRAF packages in Snow Leopard presented errors until he forced 32-bit compilation (I am assuming he was on a 64-bit machine). I am quoting his suggestions (sent to me via email) below:<em>It turns out that Snow Leopard defaults to 64-bits and you need to add the <code>-m32</code> flag to <code>hlib$fc.csh</code> and <code>hlib$mkpkg.inc</code> just like you have to for 64-bit Linux:</em>
<p><em> </em><em> In <code>fc.csh</code> (<strong>Juan&#8217;s Note:</strong> in Scisoft OSX, this is <code>/Applications/scisoft/all/Packages/iraf/iraf/unix/hlib/fc.csh</code>) after this:</em><br />
<pre><pre># Scan the argument list and concatenate all arguments.
set args = &quot;&quot;
while (&quot;$1&quot; != &quot;&quot;)
set args = &quot;$args $1&quot;
shift
end</pre></pre><br />
<em>add this:</em><br />
<pre><pre>if ($MACH == &quot;macintel&quot;) then
print (&quot;MACINTEL: -m32 flag set&quot;)
set args = &quot;$args -m32&quot;
endif</pre></pre><br />
<em>and in <code>mkpkg.inc</code> (<strong>Juan&#8217;s Note:</strong> In Scisoft OSX, this is <code>/Applications/scisoft/all/Packages/iraf/iraf/unix/hlib/mkpkg.inc</code> for each IRAF package you want to recompile) :</em><br />
<pre><pre>$else $ifeq (MACH, macintel) then
$set&nbsp;&nbsp;&nbsp;&nbsp;XFLAGS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &quot;-c -w -m32&quot;&nbsp;&nbsp;# default XC compile flags
$set&nbsp;&nbsp;&nbsp;&nbsp;XVFLAGS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = &quot;-c -w&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # VOPS XC compile flags
$set&nbsp;&nbsp;&nbsp;&nbsp;LFLAGS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &quot;-Nz -m32&quot;&nbsp;&nbsp;&nbsp;&nbsp;# default XC link flags</pre></pre>
</li>
</ul>
<p>That is my Snow Leopard report for now. More from the trenches and after I upgrade SciSoft OSX.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/snow-leopard-for-this-astronomer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why I live in Minnesota</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/06/17/why-i-live-in-minnesota/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/06/17/why-i-live-in-minnesota/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 19:58:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomy Humor]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/?p=359</guid>
		<description><![CDATA[I often have to tell people I live in &#8220;Fargo-Moorhead&#8221; before they have a clue where I live.  But then they think I live in North Dakota.  This is why I live on the Minnesota side of the Red River.

]]></description>
			<content:encoded><![CDATA[<p>I often have to tell people I live in &#8220;Fargo-Moorhead&#8221; before they have a clue where I live.  But then they think I live in North Dakota.  This is why I live on the Minnesota side of the Red River.<br />
<object width="512" height="296"><param name="movie" value="http://www.hulu.com/embed/ozv35Rt3AFG8LmqDiacGFw"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.hulu.com/embed/ozv35Rt3AFG8LmqDiacGFw" type="application/x-shockwave-flash" allowFullScreen="true"  width="512" height="296"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/06/17/why-i-live-in-minnesota/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX 2009.6.1 Released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/06/05/scisoft-osx-200961-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/06/05/scisoft-osx-200961-released/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 15:56:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/06/05/scisoft-osx-200961-released/</guid>
		<description><![CDATA[Nor Pirzkal has apparently been busy fixing the issues I noted in last month&#8217;s release of Scisoft OSX given his blog entry:

  Scisoft OSX Intel 2009.6.1 Released
  This version updates the STSDAS/TABLES packages and a few other packages.
  It also fixes the issues pointed out by J. Cabanela

The new version of Scisoft [...]]]></description>
			<content:encoded><![CDATA[<p>Nor Pirzkal has apparently been busy fixing the issues I noted in last month&#8217;s release of <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> given his <a href="http://web.mac.com/npirzkal/Scisoft/News/Entries/2009/6/4_Scisoft_OSX_Intel_2009.6.1_Released.html">blog entry</a>:</p>
<blockquote><p>
  <strong>Scisoft OSX Intel 2009.6.1 Released<br /></strong><br />
  This version updates the STSDAS/TABLES packages and a few other packages.<br />
  It also fixes the issues pointed out by J. Cabanela
</p></blockquote>
<p>The new version of Scisoft OSX 2009.6.1 differs from <a href="http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/">Scisoft OSX 2009.5.2</a> in the following ways:</p>
<ul>
<li><a href="http://astromatic.iap.fr/software/stiff/">Stiff</a> was updated from version 1.10 to version 1.12</li>
<li><a href="http://heasarc.gsfc.nasa.gov/ftools/fv">HEASARC fv.app</a> was updated from version 5.1 to version 5.2.1 and properly installed.</li>
<li><a href="http://heasarc.gsfc.nasa.gov/hera/">HEASARC hera.app</a> was updated from version 5.1 to version 5.2.1 and properly installed.</li>
<li><a href="http://heasarc.gsfc.nasa.gov/hera/">HEASARC StudentHera.app</a> was updated from version 5.1 to version 5.2.1 and properly installed.</li>
<li><a href="http://hea-www.harvard.edu/RD/ds9/">SAOImage DS9</a> was updated to version 5.6.3 from version 5.3b.</li>
<li>Interestingly, the <a href="http://www.stsci.edu/resources/software_hardware/stsdas">STSDAS</a> and <a href="http://www.stsci.edu/resources/software_hardware/stsdas">TABLES</a> <a href="http://www.iraf.net/">IRAF</a> packages are still version 3.10, so I am not sure what updates Nor refers to above for STSDAS/TABLES.</li>
</ul>
<p>The only glitch I noticed is that permissions problems persist. Specifically, when the installer installs Scisoft OSX, it appears that a bug in Apple’s Installer program triggers a change in ownership of the /Applications directory to that of the second user on the system. I strongly suggest checking the ownership of the /Applications directory afterward and if isn’t owned by an administrative user, set it as such using:</p>
<p><code>sudo chown username:admin /Applications</code></p>
<p>(where “username” is the primary administrator&#8217;s username, in most cases, your username) to perform the repair. I know Nor spent a bit of time trying to resolve this without success last summer, so its a glitch that will probably persist.</p>
<p>I also have a minor gripe. This is not a bug, so much a feature I prefer. I like having the X11 command-line version of ds9 available, so I manually installed the current ds9 command line binary into <code>/Applications/scisoft/i386/bin/</code>.</p>
<p>The current version of Scisoft OSX is available for download from the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> website (or will be shortly) and I have made the package available on my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">Scisoft OSX mirror</a> as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/06/05/scisoft-osx-200961-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XQuartz on MacOS X for the Astronomer</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/05/28/xquartz-on-macos-x-for-the-astronomer/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/05/28/xquartz-on-macos-x-for-the-astronomer/#comments</comments>
		<pubDate>Thu, 28 May 2009 22:10:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/05/28/xquartz-on-macos-x-for-the-astronomer/</guid>
		<description><![CDATA[When I first started this blog, I was using Apple&#8217;s built-in X11, but then with the transition to MacOS 10.5, there were some serious issues with Apple&#8217;s X11 implementation having to do with the transition from X11R6 to X.org. One of Apple&#8217;s programmers started putting out bleeding-edge updates to Apple&#8217;s X11 called XQuartz that fixed [...]]]></description>
			<content:encoded><![CDATA[<p>When I first started this blog, I was using Apple&#8217;s built-in X11, but then with the transition to MacOS 10.5, there were some serious issues with Apple&#8217;s X11 implementation having to do with the transition from X11R6 to X.org. One of Apple&#8217;s programmers started putting out bleeding-edge updates to Apple&#8217;s X11 called <a href="http://xquartz.macosforge.org/">XQuartz</a> that fixed a lot of the programs and I have kept using it ever since.</p>
<p>Two years ago, I wrote a blog entry with <a href="http://iparrizar.mnstate.edu/~juan/urania/2007/08/01/some-x11-on-macos-x-hints/">hints for setting up X11 for the astronomer.</a> The problem is that while the hints in that writeup are still valid, they don&#8217;t work if you are using Xquartz because the preferences are stored in a different location for <a href="http://xquartz.macosforge.org/">XQuartz</a> versus the built-in <a href="http://developer.apple.com/opensource/tools/X11.html">X11</a>. As such, I am reproducing those X11 hints here, but with the edits necessary for use with <a href="http://xquartz.macosforge.org/">XQuartz</a>.</p>
<p>Once you have installed XQuartz, the <code>X11.app</code> should automatically launch when a program that needs X11 is executed (If you are an old hand at X11, you probably discovered since moving to Leopard that <a href="http://iparrizar.mnstate.edu/~juan/urania/2007/11/25/leopard-issues-for-the-astronomer-aka-im-not-sure-x11-is-better/">you should NOT set the <code>DISPLAY</code> variable to :0</a> to display an Xwindow on your primary display, just leave <code>DISPLAY</code> undefined.):</p>
<ol>
<li>There are many hidden preferences in XQuartz just like in many Mac Applications. You can see a list of the hidden (and not hidden) preferences using the command line tool <code>defaults</code>. To see the available XQuartz preferences, type:<code>defaults read org.X.x11</code><strong>NOTE:</strong> If you are still using Apple&#8217;s built-in X11 implementation (or if you are using MacOS 10.4), just replace &#8216;<code>org.x.X11</code>&#8217; with &#8216;<code>com.apple.x11</code>&#8217; in all the following hints.</li>
<li>In addition to “reading” the preferences, you can write to them. From the command line you can type:
<ul>
<li><code>defaults write org.X.x11 no_quit_alert true</code><br />
This allows X11 to quit without an alert box. Useful if you find it irritating like I do that X11 will prevent me from logging out or the computer from restarting due to that dialog box. However, this does mean you can accidentally quit <code>X11.app</code> pretty easily if you hit cmd-Q at the wrong time.</li>
<li><code>defaults write org.X.x11 wm_ffm true</code><br />
Allows which X11 window is selected to follow the mouse, which is the way X11 behaves under most *nix systems by default.</li>
<li><code>defaults write org.X.x11 wm_click_through -bool true</code><br />
This activates click_thorough events in the Quartz window manager, which allows clicks to pinned windows, another behavior common to *nix X11 installations.</li>
</ul>
</li>
<li>You can control which window manager is launched (if you prefer something other than the quartz-wm used by default). If you don&#8217;t have a <code>~/.xinitrc</code> file, copy the default one:<br />
<pre>cp /private/etc/X11/xinit/xinitrc ~/.xinitc</pre><br />
and then manipulate it with any text editor.</li>
<li><strong>BIG LAPTOP USER HINT:</strong> Because XQuartz on the Macintosh uses authentication to prevent connections from unauthorized sources to the X11 client, something interesting happens when you change IP address, you will discover you can&#8217;t use <code>X11.app</code> from the MacOS X Terminal until you quite and relaunch <code>X11.app</code>. This happens to me all the time on my laptop when I travel and the IP address changes. I recommend either using the Xterm as your terminal or just get used to restarting X11 if you have problems connecting to the terminal.</li>
<li>You can run X11 remotely on your Mac, if you can ssh into your Mac, then just use<br />
<pre>ssh -Y youraccount@yourcomputer.com</pre><br />
, the -Y flag should allow you to run X11 remotely as long as <code>X11.app</code> is running on your machine before the connection is made. If your ssh on the remote machine doesn&#8217;t support X11 connections and you have admin access, you can edit the file <code>/etc/sshd_config</code> on the remote machine and make sure X11 Forwarding is turned on by looking for the following lines and making sure they are uncommented and that all “no”&#8217;s are set to “yes”:<br />
<pre><pre>X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost yes</pre></pre>
</li>
</ol>
<p>And that is it for the hints for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/05/28/xquartz-on-macos-x-for-the-astronomer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX 2009.5.2 Released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/#comments</comments>
		<pubDate>Fri, 15 May 2009 21:31:02 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/</guid>
		<description><![CDATA[This first Scisoft OSX release of 2009 has appeared. Despite the brief entry on the VersionTracker website which said that this update rolled in the recently released STSDAS and TABLES IRAF package updates. from reviewing the CONTENTS file distributed with the install, I found Nor Pirzkal made quite a few additional updates in this release. [...]]]></description>
			<content:encoded><![CDATA[<p>This first <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> release of 2009 has appeared. Despite the brief entry on the VersionTracker website which said that this update rolled in the recently released STSDAS and TABLES IRAF package updates. from reviewing the <code>CONTENTS</code> file distributed with the install, I found Nor Pirzkal made quite a few additional updates in this release. The changes from <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/09/23/scisoft-osx-intel-200891-released/">Scisoft OSX 2008.9.1</a> are:</p>
<ul>
<li><a href="http://www.eclipse.org/">Eclipse</a> 5.0.0 has been added to the distribution. Eclipse is an Integrated Development Environment (IDE) for programming. I don&#8217;t find it to be terribly useful, and in fact find it fairly awful in its implementation for IDL, but I am sure there are many people who disagree (enough to foster development of five major versions of it).</li>
<li><a href="http://www.gnuplot.info/">Gnuplot</a> has been updated to version 4.2.5 from 4.2.3</li>
<li><a href="http://astromatic.iap.fr/software/eye/">Eye</a> 1.4.1 has been added to the distribution. Eye is a program designed to allow you to use an artificial neural network to construct SExtractor filters for &#8220;adaptive filtering, feature detection and cosmetic corrections.&#8221;</li>
<li><a href="http://astromatic.iap.fr/software/swarp/">Swarp</a> was updated to 2.17.6 from 2.17.1</li>
<li><a href="http://astromatic.iap.fr/software/weightwatcher/">WeightWatcher</a> was updated to 1.8.10 from 1.8.7</li>
<li>The <a href="http://www.python.org/">Python</a> distribution was updated to version 2.5.4 from 2.5.2 and the following python packages were updated:
<ul>
<li><a href="http://ipython.scipy.org/moin/">ipython</a> updated to 0.9.1 from 0.8.4</li>
<li><a href="http://numpy.scipy.org/">Numpy</a> updated to 1.3 from 1.1.1</li>
<li><a href="http://www.stsci.edu/resources/software_hardware/pyfits">pyfits</a> updated to 2.1.1 from 1.1 (or this could be a typo in the old CONTENTS)</li>
<li><a href="http://matplotlib.sourceforge.net/">matplotlib</a> updated to 0.98.5.2 from 0.98.3</li>
<li><a href="http://www.stsci.edu/resources/software_hardware/pyraf">pyraf</a> updated to 1.7.1 from 1.6</li>
<li><a href="http://www.stsci.edu/resources/software_hardware/pyraf/stsci_python">stsci_python</a> updated to 2.8 from 2.6</li>
<li><a href="http://www.stecf.org/software/PYTHONtools/astroasciidata/">AstroAsciiData</a> updated to 1.1 from 1.0</li>
<li><a href="http://www.scipy.org/">scipy</a> updated to 0.7.0 from 0.6.0</li>
</ul>
</li>
<li>The <a href="http://www.stsci.edu/resources/software_hardware/stsdas">STSDAS</a> and <a href="http://www.stsci.edu/resources/software_hardware/stsdas">TABLES</a> <a href="http://www.iraf.net/">IRAF</a> packages were updated to version 3.10 from 3.08</li>
<li><a href="http://www.fftw.org/">fftw</a> library version 3.2.1 added. This will be useful to me since we have been using fftw in the computational physics class I have been teaching this semester.</li>
<li>I noticed the <a href="http://sourceforge.net/projects/aquaterm/">Aquaterm.app</a> application (used for graphics display by PGPLOT and Gnuplot) is now pre-installed in <code>/Applications/scisoft/i386/Applications/</code>.</li>
</ul>
<p>Some minor glitches I have noticed in this distribution</p>
<ol>
<li><strong>Permission Problems Persist:</strong> When the installer installs Scisoft OSX, it appears that a bug in Apple’s Installer program triggers a change in ownership of the /Applications directory to that of the second user on the system. I strongly suggest checking the ownership of the /Applications directory afterward and if isn’t owned by an administrative user, set it as such using: <code>sudo chown username:admin /Applications</code> (where “username” is the primary administrator&#8217;s username, in most cases, your username) to perform the repair. I know Nor spent a bit of time trying to resolve this without success last summer, so its a glitch that will probably persist.</li>
<li><strong>Older SAOImage DS9 included:</strong> I noticed that the <a href="http://hea-www.harvard.edu/RD/ds9/">SAOImage DS9</a> distributed with this version of Scisoft OSX is version 5.3b, whereas the current version is 5.6.1, so I manually installed the current ds9 command line binary into <code>/Applications/scisoft/i386/bin/</code> and the current Aqua application into <code>/Applications/scisoft/i386/Applications/</code> and everything is working fine there.</li>
<li><strong>HEASARC fv.app not installed</strong>: The <code>fv.app</code> application in the <code>/Applications/scisoft/i386/Applications/</code> is actually a second copy of <code>studenthera.app</code>, misnamed. Not sure how that happened, but I manually installed the current version of <a href="http://heasarc.gsfc.nasa.gov/ftools/fv">HEASARC fv.app</a> there without an issue.</li>
</ol>
<p>All in all, a bunch of small updates, but it gets the package mostly up-to-date again. The current version of Scisoft OSX is available for download from the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> website, but I have made the package available on my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">Scisoft OSX mirror</a> as well, in case it is faster for people.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X11 Updated, but requires unavailable OS X release!</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/04/24/x11-updated-but-requires-unavailable-os-x-release/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/04/24/x11-updated-but-requires-unavailable-os-x-release/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 14:18:24 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/04/24/x11-updated-but-requires-unavailable-os-x-release/</guid>
		<description><![CDATA[I just noticed that the XQuartz folks released X11 2.3.3, but when I attempted to install it, it said I needed Mac OS 10.5.7 installed, which hasn&#8217;t been released yet. I have confirmed this on the release notes page. The full release notes seem to describe to major changes, updated support for OpenGL and some [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed that the <a href="http://xquartz.macosforge.org/">XQuartz</a> folks released <a href="http://static.macosforge.org/xquartz/downloads/X11-2.3.3.dmg">X11 2.3.3</a>, but when I attempted to install it, it said I needed Mac OS 10.5.7 installed, which hasn&#8217;t been released yet. I have confirmed this on the <a href="http://xquartz.macosforge.org/trac/wiki/X112.3.3">release notes page</a>. The full release notes seem to describe to major changes, updated support for OpenGL and some bug fixes regarding Caps Lock and mouse tracking.</p>
<p>Interestingly, the XQuartz wiki notes that</p>
<blockquote>
<p>[MacOS] 10.5.7 updates the X11 server to match what shipped with 2.3.2. Most of the userland, however, only saw security updates. The version reported by X11 in 10.5.7 is 2.1.6 to distinguish it from the 2.3.x series which contains a much newer userland.</p>
</blockquote>
<p>I have the feeling that the update to MacOS 10.5.7 will be released very soon now.</p>
<blockquote><p>[<strong>UPDATE:</strong> In fact, it took almost two weeks, but MacOS 10.5.7 was released on Tuesday, May 12, 2009.]</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/04/24/x11-updated-but-requires-unavailable-os-x-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X11 for Leopard now supporting Full Screen</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/03/30/x11-for-leopard-now-supporting-full-screen/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/03/30/x11-for-leopard-now-supporting-full-screen/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 23:21:14 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/03/30/x11-for-leopard-now-supporting-full-screen/</guid>
		<description><![CDATA[There are some older school astronomers on Macs who cut their teeth on Linux and as such really prefer the full-screen X-Windows display for running astronomical data reductions. This way of running X11 has been unavailable since MaxOS 10.5 (which switched from X11 code bases). Well, to quote Macros Huerta&#8217;s MacSingularity Blog:

Well, I’m way late [...]]]></description>
			<content:encoded><![CDATA[<p>There are some older school astronomers on Macs who cut their teeth on Linux and as such really prefer the full-screen X-Windows display for running astronomical data reductions. This way of running X11 has been unavailable since MaxOS 10.5 (which switched from X11 code bases). Well, to quote <a href="http://macsingularity.org/2009/03/27/x11-supports-full-screen/">Macros Huerta&#8217;s MacSingularity Blog</a>:</p>
<blockquote>
<p>Well, I’m way late to the game on this, but our long national nightmare is over &#8211; Xquartz for Leopard support full screen!</p>
</blockquote>
<p>The <a href="http://xquartz.macosforge.org/trac/wiki">Xquartz</a> folks latest edition of Xquartz (<a href="http://xquartz.macosforge.org/trac/wiki/X112.3.2.1">version 2.3.2.1</a>) includes full-screen support. Now, personally, I like the way X11 integrates with Aqua, but for those who prefer to use only one windowing system at a time, you can now do it on MacOS X Leopard. You can <a href="http://xquartz.macosforge.org/downloads/X11-2.3.2.1.dmg">download it here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/03/30/x11-for-leopard-now-supporting-full-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Papers for iPod (and Mac)</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/02/20/papers-of-for-ipod-and-mac/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/02/20/papers-of-for-ipod-and-mac/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 16:40:43 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/02/20/papers-of-for-ipod-and-mac/</guid>
		<description><![CDATA[I have been a very happy user of Papers for organizing downloaded Journal articles for about a year. The program, by the Dutch software firm Mekentosj BV, makes it easy to search for journal articles on ADS and arXiv (although the arXiv support seems a bit twitchy at times), download them, and place them into [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/icon-glow.jpg" width="114" height="114" alt="icon_glow.jpg" style="float:right;" />I have been a very happy user of <a href="http://mekentosj.com/papers/">Papers</a> for organizing downloaded Journal articles for about a year. The program, by the Dutch software firm <a href="http://mekentosj.com/">Mekentosj BV</a>, makes it easy to search for journal articles on ADS and arXiv (although the arXiv support seems a bit twitchy at times), download them, and place them into a searchable database. The program does occasionally show is roots as a biomedical oriented tool, but it functions very well for this astronomer.</p>
<p>Yesterday Mekentosj released version 1.9 of <a href="http://mekentosj.com/papers/">Papers</a> for the Mac as well as a new <a href="http://mekentosj.com/papers/iphone">iPod Touch/iPhone based version of their software</a> (<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=304655618">Apple iTunes store link</a>) I have purchased it and can confirm that the synchronization works as advertised, I am now carrying all the papers I have read in the last 10 years in my shirt pocket. Nice!</p>
<p>Here’s the (slightly edited to reflect stuff of interest to astronomers) press release from Mekentosj</p>
<blockquote>
<p><strong>Papers 1.9 for Mac &#8211; sync your library of science with your iPhone</strong> &#8211; Published on 02/19/09</p>
<p>  IMMEDIATE RELEASE</p>
<p>  Mekentosj BV has announced Papers 1.9, the Apple design award-winning application that helps scientists on the Mac manage their personal library of scientific articles. The free update brings over 60 improvements, including an improved workflow for working with collections, support for French and German library proxies. But most of all, it allows you to synchronize your PDF library with the newly introduced Papers for iPhone and iPod touch.</p>
<p>  Aalsmeer, The Netherlands &#8211; Mekentosj BV has announced Papers 1.9, the Apple design award-winning application that helps scientists on the Mac manage their personal library of scientific articles. The free update brings over 60 improvements, including a better workflow for working with collections, and support for French and German library proxies. But most of all, it allows you to synchronize your PDF library with the newly introduced Papers for iPhone and iPod touch.</p>
<p>  With Papers 1.9 mek and tosj continue to improve the user experience and workflows of their popular PDF organizing tool for researchers. And with the ability to synchronize your library with the newly introduced Papers for iPhone and iPod touch it becomes easier than ever to manage your research literature, and now you have it with you wherever you go.</p>
<p>  Papers for Mac and Papers for iPhone work together as a great team. Select which collections you want to keep in sync or make use of the smart auto-fill function to fill up your iPhone or iPod with articles based on the criteria that you choose. And if you make changes, or add ratings and notes, or if you download new articles on the road, the next time you sync with Papers on your Mac all those changes are immediately present in your library. It’s that simple. Visit our web site for a screencast to find out more.</p>
<p>  <strong>Papers Features:</strong><br />
  * organize and manage your entire library of scientific PDF files easily and elegantly<br />
  * built-in support for searching online article repositories<br />
  * built-in webbrowser for browsing publisher websites<br />
  * automatic downloading and archiving of PDF files<br />
  * tabbed and fullscreen reading of your PDF files<br />
  * razor fast spotlight searching of your entire library<br />
  * Syncing with the new Papers for iPhone and iPod touch.<br />
  * and much more.</p>
<p>  <strong>Papers has built-in support for the following online repositorie</strong>s:<br />
  * ACM portal &#8211; Computer science<br />
  <strong>* NASA-ADS &#8211; Astronomy<br /></strong> <strong>* arXiv &#8211; Preprint repository</strong><br />
  * Citeseer &#8211; Computer Science<br />
  * Google Books<br />
  * Google Scholar<br />
  * IEEE Xplore &#8211; Engineering<br />
  * MathSciNet &#8211; Mathematics<br />
  * Scopus &#8211; All sciences NEW<br />
  * Web of Science &#8211; All sciences</p>
<p>  <strong>Minimum Requirements:</strong><br />
  * Mac OS X Version 10.4 or higher<br />
  * Universal Binary for PowerPC and Intel<br />
  * 1.5 Ghz or faster G4, G5 or Intel Processor</p>
<p>  <strong>Pricing and Availability:</strong><br />
  Papers is priced at $42 (USD) for a single-user license. (Under)graduate students can apply for a 40% discount. A 30-day trial is available.</p>
<p>  <strong>About Papers for iPhone:</strong><br />
  Papers for iPhone and iPod touch puts your entire research literature database in your pocket, available at your fingertips wherever you go; whether you’re at a conference, in class, visiting your peers, or on the road. To celebrate the launch of Papers for iPhone and iPod touch you can now buy version 1.0 for the introductory price of $9.99 (USD) in the iTunes app store.</p>
<p>  Papers is a program made by Mekentosj BV, a Dutch independent software company that writes innovative software for scientists. After a PhD in Cell Biology founder and CEO Alexander Griekspoor switched fields and initially joined the European Bioinformatics institute as a Marie Curie postdoctoral fellow. Alexander is perhaps most well-known as “Mek” from the duo “Mekentosj”. Together with his friend Tom “Tosj” Groothuis he developed a number of scientific Mac applications, two of which won Apple Design Awards for best Best Student and Best scientific Mac OS X application, respectively. What started in his spare time became his passion and has now also become his work: Mekentosj Inc. He aims to create new and innovative Mac OS X applications for scientists, of which his recently released new program Papers is a prime example, it won Mekentosj’ third Apple Design Award. Visit our website to learn more.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/02/20/papers-of-for-ipod-and-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now this is a cold snap</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/01/16/now-this-is-a-cold-snap/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/01/16/now-this-is-a-cold-snap/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 16:32:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MacOS X Annoyances]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/?p=290</guid>
		<description><![CDATA[We have had a very cold winter this year.  We had one cold snap in December where the nighttime lows dropped to -25 Fahrenheit (that&#8217;s -31 Celsius for the rest of the world). However, this new cold snap has been a bit more brutal with daytime highs of about -13 Fahrenheit (-25 Celsius) for [...]]]></description>
			<content:encoded><![CDATA[<p>We have had a very cold winter this year.  We had one cold snap in December where the nighttime lows dropped to -25 Fahrenheit (that&#8217;s -31 Celsius for the rest of the world). However, this new cold snap has been a bit more brutal with daytime highs of about -13 Fahrenheit (-25 Celsius) for the last 4 days.  It was so cold yesterday morning (January 15, 2009) here in Moorhead that the temperature at the Moorhead airport dipped to -31 Fahrenheit (-35 Celsius) at 8:14am.  At our house in town, the thermometer failed.<br />
<img src="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/p1150328-300x225.jpg" alt="WeBrokeTheThermometer" title="WeBrokeTheThermometer" width="300" height="225" class="alignnone size-medium wp-image-291" /><br />
It listed the outdoor temperature as &#8220;OFL&#8221; which means &#8220;Off Low End&#8221; (I think)&#8230; so it was colder than -25 Fahrenheit (-32 Celsius).  For fun, the kids and I went outside and decided to throw hot tap water into the air to create clouds.  When you throw hot water into air that is this cold, it instantly vaporizes, forming a cloud.  The video of it isn&#8217;t the clearest, but I think it is pretty cool.<br />
<br />
On YouTube I found &#8220;Sharon in Minnesota&#8221; used extremely hot water from a tea kettle and a spray gun, which makes the droplets much smaller and thus gives you a much clearer cloud.<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/a8Hy1Pxyk-Y&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/a8Hy1Pxyk-Y&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
Finally, a much clearer video of the phenomenon with a simple glass of hot water comes from this poor soul in Alaska where they are dealing with weather about 20 degrees colder than us.<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/u8LmtYfms0c&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/u8LmtYfms0c&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
I believe what is happening is an extreme form of what happens to your breath becoming visible on a cold day.  The water when thrown suddenly gets a relatively large surface area (allowing cooling) and is scattered into small droplets.  These droplets have enough energy to transition to a more solid state, which gives us a visible cloud of tiny particles of ice.  A few of the larger drops make it to the ground.  I&#8217;d appreciate some clarification.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/01/16/now-this-is-a-cold-snap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/yesitiscold.flv" length="1" type="video/x-flv"/>
	</item>
		<item>
		<title>Activating SSH support in MacPorts PHP</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/12/11/activating-ssh-support-in-macports-php/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/12/11/activating-ssh-support-in-macports-php/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 18:35:18 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Command Line Tricks]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacPorts]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/12/11/activating-ssh-support-in-macports-php/</guid>
		<description><![CDATA[[I have made an updated version of these instructions for adding the SSH2 PHP extension to the pre-installed PHP 5.3.0 installation on MacOS 10.6 available here.]
I just upgraded the software on this blog to WordPress 2.7. The major new feature I am interested in is automatic upgrading, which could prove quite a time saver. Unfortunately, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>[I have made an updated version of these instructions for adding the SSH2 PHP extension to the pre-installed PHP 5.3.0 installation on MacOS 10.6 <a href="http://iparrizar.mnstate.edu/~juan/urania/2009/10/13/ssh2-extension-activation-in-php-530/">available here</a>.]</strong></p>
<p>I just upgraded the software on this blog to <a href="http://wordpress.org/development/2008/12/coltrane/">WordPress 2.7</a>. The major new feature I am interested in is automatic upgrading, which could prove quite a time saver. Unfortunately, this automatic upgrading uses only FTP (which is totally insecure) or FTPS (which requires me to set up an SSL certificate).</p>
<p>I noticed that the WordPress code had ssh2 support built-in, so all I need to is activate SSH2 support in the MacPorts installed PHP and I should be able to use SFTP in WordPress to handle the upgrades. I poked around and found <a href="http://kevin.vanzonneveld.net/techblog/article/make_ssh_conanections_with_php/">this posting</a> outlining the process for adding ssh2 support to Ubuntu. It guided me in developing this list of hints:</p>
<ol>
<li>Start by installing libssh2 via MacPorts using the command:<br />
      <pre><pre>
sudo port install libssh2
</pre></pre>
    </li>
<li>Once it is activated, link the libssh and PHP together using the <a href="http://kevin.vanzonneveld.net/techblog/tag/pecl/">PECL</a> module SSH2. Unfortunately, <a href="http://www.mail-archive.com/macports-users%40lists.macosforge.org/msg06734.html">directly installing the module with PECL under MacPorts is troublesome</a>, so I just used PECL to download the module.<br />
      <pre><pre>
pecl download ssh2
</pre></pre>triggered the following error (since ssh2 is apparently beta),<br />
      <pre><pre>
Failed to download pecl/ssh2 within preferred state &quot;stable&quot;, latest release is version 0.11.0, stability &quot;beta&quot;, use &quot;channel://pecl.php.net/ssh2-0.11.0&quot; to install
Cannot initialize &#039;ssh2&#039;, invalid or missing package file
Package &quot;ssh2&quot; is not valid
download failed
</pre></pre>so I used<br />
      <pre><pre>
pecl download channel://pecl.php.net/ssh2-0.11.0
</pre></pre>as suggested and was able to download the PHP library for SSH2. Once the download was complete, I started on the standard compilation sequence for a PHP library<br />
      <pre><pre>
tar xzvf ssh2-0.11.0.tgz
cd ssh2-0.11.0
phpize
./configure --with-ssh2=/opt/local
make
sudo make install
</pre></pre>The final command informed me the ssh2.so library was placed in <code>/opt/local/lib/php/extensions/no-debug-non-zts-20060613/</code>
    </li>
<li>Now you need to make sure PHP loads the new module, so we open the PHP configuration file <code>/opt/local/etc/php.ini</code> and edit the extension_dir line to point the extension directory above:<br />
      <pre><pre>
extension_dir = &quot;/opt/local/lib/php/extensions/no-debug-non-zts-20060613/&quot;
</pre></pre>and then add the following line to the end of the section on &#8220;Dynamic Extensions&#8221;:<br />
      <pre><pre>
extension=ssh2.so
</pre></pre>If you edited everything properly, a simple <code>php -v</code> from the command line should NOT trigger any errors.
    </li>
<li>Finally, I restart the apache2 server so that the reconfigured PHP is loaded using<br />
      <pre><pre>
sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper restart
</pre></pre>At this point, I checked (via the <code>phpinfo();</code> command to see if the web server was supporting SSH. Near the bottom of the <code>phpinfo();</code> listing is a listed of &#8220;Registered PHP Streams&#8221;. As <a href="http://bugssite.org/blog/2008/09/07/does-your-wordpress-server-support-ssh2/">noted here</a>, it should incude &#8220;ssh2.shell&#8221;, &#8220;ssh2.exec&#8221;, &#8220;ssh2.tunnel&#8221;, &#8220;ssh2.scp&#8221;, and &#8220;ssh2.sftp&#8221;. If it does, you have enabled SSH support for Apache2 driven PHP pages under MacPorts.
    </li>
<li>If you are doing this to get WordPress 2.7 automatic installation working, you will notice now when the automatic installation dialog box pops up, in addition to ftp and ftps, you now have an ssh option.<br />
    <img src="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/wordpresssnap3.png" height="77" width="380"/></li>
<li>
<p>Now that I got this working, I&#8217;ll just have to keep an eye out for any future MacPort updates to PHP and make sure they don&#8217;t overwrite the</p>
<p><code>/opt/local/etc/php.ini</code></p>
<p>file or the extensions directory where I installed ssh2.</p>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/12/11/activating-ssh-support-in-macports-php/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Installing old libxml2 ports with MacPorts</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/12/05/fixing-libxml2-problems-with-macports/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/12/05/fixing-libxml2-problems-with-macports/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 18:37:57 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[MacPorts]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/12/05/fixing-libxml2-problems-with-macports/</guid>
		<description><![CDATA[There is a problem with libxml2 from version 2.7.1 onward where it completely deletes any greater than (&#38;gt;) and less than symbols (&#38;lt;) sent to it. This is messing up my blog posting unless I do it within the WordPress interface since attempts to use xmlrpc.php use PHP, which is compiled against libxml2, and thus [...]]]></description>
			<content:encoded><![CDATA[<p>There is a problem with <code>libxml2</code> from version 2.7.1 onward where it completely deletes any greater than (<code>&amp;gt;</code>) and less than symbols (<code>&amp;lt;</code>) sent to it. This is messing up my blog posting unless I do it within the WordPress interface since attempts to use <code>xmlrpc.php</code> use PHP, which is compiled against <code>libxml2</code>, and thus the posting gets mangled.</p>
<p>The solution suggested on the <a href="http://bugs.php.net/bug.php?id=45996">PHP boards</a> is to compile PHP against <code>expat</code>. This would be kind of a pain for me since I am using the <a href="http://www.macports.org/" title="MacPorts homepage">MacPorts</a> install of PHP. So I looked into rolling back to an earlier version of libxml2 using MacPorts. The solution was originally outlined in t<a href="http://www.stephenchu.com/2006/12/specifying-ruby-184-to-install-using.html">his blog post by Stephen Chu on how to install earlier versions of ruby under DarwinPorts</a>, I have updated it for MacPorts. The key is to create a local MacPorts repository with the version of the port you want copied over to it.</p>
<ol>
<li>First I identified the version of the libxml2 portfile I wanted by going to <a href="http://trac.macports.org/browser/trunk/dports/textproc/libxml2/Portfile">http://trac.macports.org/browser/trunk/dports/textproc/libxml2/Portfile</a> and entering revisions into the &#8220;View revision&#8221; box until I found the appropriate version of the Portfile linking to libxml2 2.6.32 instead of 2.7.1. This turned out to be revision 40211 (actually 39551).
</li>
<li>I created a directory to contain my MacPorts repository at <code>/Users/Shared/dports/</code> and after creating that directory, I edited the MacPorts configuration file <code>/opt/local/etc/macports/sources.conf</code> to include the line:
<p>  <code>file:///Users/Shared/dports</code></p>
<p>  and you should make this line appear before the &#8220;rsync&#8221; or svn&#8221; port listing in the config file, otherwise it defaults to using that version of the port during the install.</p>
</li>
<li>I then installed the old libxml2 port into my local MacPorts respository using subversion:
<p>    <pre><pre>
svn co --revision 40211 http://trac.macports.org/browser/trunk/dports/textproc/libxml2/ textproc/libxml2/
</pre></pre>and then I updated the MacPorts index:</p>
<p>    <code>portindex /Users/Shared/dports</code></p>
<p>    With this done, I can see the two versions of <code>libxml2</code> in my ports list, when I issue a</p>
<p>    <code>port list libxml2</code></p>
<p>    the result is:</p>
<p>    <code>libxml2 @2.7.2 textproc/libxml2 libxml2 @2.6.32 textproc/libxml2</code></p>
<p>    showing the current <code>libxml2</code> version in MacPorts and the older one in my repository.</p>
</li>
<li>Now I can install the older version of libxml2 by first forcing removal of the current version and then installing the old version:
<p>  <code>sudo port -f uninstall libxml2 @2.7.2_1+darwin_9 sudo port install libxml2 @2.6.32</code></p>
<p>  [<strong>Warning:</strong> Unless you place the <code>file:///Users/Shared/dports</code> line before any rsync/svn lines of the config file noted in step 2, this port install command installs the current version instead of the old version]</p>
</li>
<li>I had to forcible uninstall and then reinstall libxslt but then my reinstall of php within MacPorts went fine. And I can now use WordPress again without any issues when using a remote blog editor.</li>
</ol>
<p>I just figured in case anyone else wanted to use an older MacPort port they could use this to figure out how.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/12/05/fixing-libxml2-problems-with-macports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacPorts Misbehavior Update</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/12/05/macports-misbehavior-update/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/12/05/macports-misbehavior-update/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 17:14:28 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[MacOS X Annoyances]]></category>
		<category><![CDATA[MacPorts]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/12/05/macports-misbehavior-update/</guid>
		<description><![CDATA[FreeType issues under Leopard Resolved: The MacPorts installation of FreeType will now compile a version under Leopard that does NOT throw a

The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec().
Break on __THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_COREFOUNDATION_FUNCTIONALITY___YOU_MUST_EXEC__() to debug.

error when fonts are used in PHP routines (fuller notes on this problem here although with [...]]]></description>
			<content:encoded><![CDATA[<p><strong>FreeType issues under Leopard Resolved:</strong> The <a href="http://www.macports.org/">MacPorts</a> installation of FreeType will now compile a version under Leopard that does NOT throw a</p>
<p><pre><pre>
The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec().
Break on __THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_COREFOUNDATION_FUNCTIONALITY___YOU_MUST_EXEC__() to debug.
</pre></pre></p>
<p>error when fonts are used in PHP routines (<a href="http://iparrizar.mnstate.edu/~juan/urania/2008/09/05/forking-problems-with-freetype-solved/">fuller notes on this problem here</a> although with my &#8220;hacked&#8221; fix, which is no longer needed). This problem as originally reported under <a href="https://trac.macports.org/ticket/15909">Trouble Ticket #15909 on MacPorts</a>.</p>
<p><strong>Careful with that Apache2 upgrade, Eugene:</strong> I also discovered I have to be careful when updating <code>apache2</code> under MacPorts in that it actually wiped out some of the configuration files stored in <code>/opt/local/apache2/conf/</code>, specifically it overwrote my modified versions of the <code>/opt/local/apache2/conf/extra/httpd-dav.conf</code> file and <code>/opt/local/apache2/conf/extra/http-userdir.conf</code> files. So now I am keeping copies of everything in <code>/opt/local/apache2/conf</code> backed up so I can roll back my changes after an upgrade of <code>apache2</code> in MacPorts.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/12/05/macports-misbehavior-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAOImage DS9 5.4 Released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/10/31/saoimage-ds9-54-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/10/31/saoimage-ds9-54-released/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 16:55:51 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[IRAF]]></category>
		<category><![CDATA[MacOS X]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/10/31/saoimage-ds9-54-released/</guid>
		<description><![CDATA[Fast on the heals of their release of version 5.3 about two weeks ago, the folks at the SAO have released version 5.4 of SAOImage DS9. Here are the links to the downloadable Mac-related SAOImage files

Aqua 10.4 Tiger (Universal)
Aqua 10.5 Leopard (Universal)
X11 10.4 Tiger (Universal)
X11 10.5 Leopard (Universal)
X11 10.5 Leopard (Universal) with Firewall

The release notes [...]]]></description>
			<content:encoded><![CDATA[<p>Fast on the heals of their release of version 5.3 about two weeks ago, the folks at the <a href="http://cfa-www.harvard.edu/sao/">SAO</a> have released version 5.4 of <a href="http://hea-www.harvard.edu/saord/ds9/">SAOImage DS9</a>. Here are the links to the downloadable Mac-related SAOImage files</p>
<ul>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">Aqua 10.4 Tiger (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">Aqua 10.5 Leopard (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.4 Tiger (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.5 Leopard (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.5 Leopard (Universal) with Firewall</a></li>
</ul>
<p>The <a href="http://hea-www.harvard.edu/RD/ds9/release/r5.0.html">release notes</a> for SAOImage DS9 don&#8217;t necessarily suggest dramatic changes in this version relative to version 5.3.</p>
<ol>
<li><strong>CATALOGS:</strong> removed support for Chandra Source Catalog at request of Ian Evans of CXC (only added on October 3, 2008).</li>
<li><strong>MASKS:</strong> add support for mask transparency.</li>
<li><strong>MASKS:</strong> add new mask properties.</li>
<li><strong>GRID:</strong> add grid title support.</li>
</ol>
<p>My previously posted notes on <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/04/06/scisoft-osx-200831-installation-notes/">integrating upgrades of DS9 into the Scisoft OS X installation</a> still work. Just note that newer releases of Scisoft OS X place the binaries in <code>/Applications/scisoft/i386/bin/</code> instead of <code>/scisoft/i386/bin/</code> and if you are installing the X11 binary that is compatible with the firewall, you have to install both the <code>ds9</code> and <code>ds9.zip</code> file in the <code>bin/</code> directory of Scisoft OSX.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/10/31/saoimage-ds9-54-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The One where I release Clear Sky Clock Widget version 1.3</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/10/24/the-one-where-i-release-clear-sky-clock-widget-version-13/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/10/24/the-one-where-i-release-clear-sky-clock-widget-version-13/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 14:43:53 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/10/24/the-one-where-i-release-clear-sky-clock-widget-version-13/</guid>
		<description><![CDATA[Every Semester in introductory astronomy we run a series of field trips out to the Paul J. Feder Observatory which lies about 14 miles from the MSUM campus. As such, I like to check the weather before going out there and usually do so with a quick look at Attilla Danko&#8217;s Clear Sky Chart website. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/cscwidget-small.png" width="389" height="168" alt="ClearSkyClock Half-Size Screen Shot" style="float:right;" />Every Semester in introductory astronomy we run a series of field trips out to the Paul J. Feder Observatory which lies about 14 miles from the MSUM campus. As such, I like to check the weather before going out there and usually do so with a quick look at Attilla Danko&#8217;s <a href="http://www.cleardarksky.com/c/PJFdrObMNkey.html?1">Clear Sky Chart</a> website. It occurred to me it would be nice to see if a Dashboard widget to show the Clear Sky Chart existed. I found two. The one by Joshua Lynch worked well, but it had a major problem, it never listed the Paul J. Feder Observatory as a site I could examine. I ended up biting the bullet and looking at the code. Turns out Joshua Lynch released the code open source. Therefore, I felt free to start hacking on the Dashboard widget (learning how to program widgets in the process). The result is the <a href="http://iparrizar.mnstate.edu/~juan/clearskyclock_widget.php">Clear Sky Clock Widget (version 1.3)</a>. The key changes I made to the widget were:</p>
<ol>
<li><strong>Fixed a parsing bug</strong> that prevented the loading of any Clear Sky Chart for sites containing parentheses or periods in their names. It was this bug that was interfering with the loading of our observatory&#8217;s Clear Sky Clock.</li>
<li>Since the Clear Sky Chart is quite large and many people will use the widget on laptops with small screens, I added a &#8220;<strong>Half-size mode</strong>&#8220;. All you do is click on the &#8220;Toggle Size&#8221; link on the widget. This shrinks the charge and saves screen real estate.</li>
<li>With Attilla Danko&#8217;s permission, I added a <span style="font-family: Arial;"><strong>Built-in Legend</strong></span> (copied from his site) for interpreting the Clear Sky Chart to the widget. Just click on the charge and the legend appears. Click again and it goes away.</li>
<li>I also added <strong>a link to the Clear Sky Charge site page</strong>, so if I wanted more detailed information, I can get it there.</li>
</ol>
<p>I hope a few Mac-owning astronomers in the U.S. and Canada find this widget useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/10/24/the-one-where-i-release-clear-sky-clock-widget-version-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAOImage DS9 5.3 released (fixes Leopard Firewall issues)</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/10/15/saoimage-ds9-53-released-fixes-leopard-firewall-issues/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/10/15/saoimage-ds9-53-released-fixes-leopard-firewall-issues/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 21:46:48 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/10/15/saoimage-ds9-53-released-fixes-leopard-firewall-issues/</guid>
		<description><![CDATA[The folks at the SAO have finally released a version of SAOImage DS9 (version 5.3) that plays well with the current version of the MacOS Firewall (as of MacOS 10.5.5) . Here are the links to the downloadable Mac-related SAOImage files

Aqua 10.4 Tiger (Universal)
Aqua 10.5 Leopard (Universal)
X11 10.4 Tiger (Universal)
X11 10.5 Leopard (Universal)
X11 10.5 Leopard [...]]]></description>
			<content:encoded><![CDATA[<p>The folks at the <a href="http://cfa-www.harvard.edu/sao/">SAO</a> have finally released a version of <a href="http://hea-www.harvard.edu/saord/ds9/">SAOImage DS9</a> (version 5.3) that plays well with the current version of the MacOS Firewall (as of MacOS 10.5.5) . Here are the links to the downloadable Mac-related SAOImage files</p>
<ul>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">Aqua 10.4 Tiger (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">Aqua 10.5 Leopard (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.4 Tiger (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.5 Leopard (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.5 Leopard (Universal) with Firewall</a></li>
</ul>
<p>To quote the release notes on the SAOImage DS9 website, the changes in the newly released version 5.3 are</p>
<blockquote><p>
  <strong>Regions:</strong> Regions now support a centroid function. The centroid function can be manually invoked or regions can automatically snap to a centroid when moved or edited. Regions now have a DASH line property.<br />
  <strong><br /></strong> <strong>Colorbar:</strong> Now supports a vertical colorbar layout option, via the View Menu. Users can configure the font type and size of the colorbar, via the View Menu.</p>
<p>  <strong>GUI:</strong> Now supports a vertical button bar, when in vertical layout mode.</p>
<p>  <strong>Aqua MacOSX 10.5 firewall:</strong> The MacOSX Aqua 10.5 Leopard port of DS9 can be used with the MacOSX 10.5 firewall enabled.</p>
<p>  <strong>X11 MacOSX 10.5:</strong> There are now two versions available for X11 MacOSX 10.5 Leopard. The non-firewall version is recommended for all unless you wish to enable the 10.5 firewall. [<strong>Juan's Note:</strong> While not stating this, they mean specifically the application-specific version of the MacOS firewall. <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/04/22/saoimage-ds9-versus-leopard-firewall/">See my notes on this problem here</a>.] In that case, please use the firewall enabled version. <em><strong>Please note:</strong></em> this version consist of 2 files, <code>ds9</code> and <code>ds9.zip</code>. It is very important that ds9.zip be placed in the same directory as the ds9 binary at all times.</p>
<p>  <strong>Contours:</strong> Contours now have a DASH line option.
</p></blockquote>
<p>I have previously posted notes for <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/04/06/scisoft-osx-200831-installation-notes/">integrating upgrades of DS9 into the Scisoft OS X installation</a> and they still work just fine except that newer releases of Scisoft OS X place the binaries in <code>/Applications/scisoft/i386/bin/</code> instead of <code>/scisoft/i386/bin/</code> and if you are installing the X11 binary that is compatible with the firewall, you have to install both the <code>ds9</code> and <code>ds9.zip</code> file in the <code>bin/</code> directory of Scisoft OSX.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/10/15/saoimage-ds9-53-released-fixes-leopard-firewall-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
