<?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>Island 94 &#187; geeking</title>
	<atom:link href="http://www.island94.org/tag/geeking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.island94.org</link>
	<description>Ben Sheldon&#039;s lost &#38; found</description>
	<lastBuildDate>Wed, 18 Jan 2012 17:04:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Drupal WYSIWYG Editors</title>
		<link>http://www.island94.org/2007/09/drupal-wysiwyg-editors/</link>
		<comments>http://www.island94.org/2007/09/drupal-wysiwyg-editors/#comments</comments>
		<pubDate>Sat, 08 Sep 2007 20:24:39 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[geeking]]></category>
		<category><![CDATA[modules]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I’m partial to the following WYSIWYG editors for Drupal: WidgEditor — stupid simple TinyMCE — way complicated powerful But Super Capers neither of them work well enough for me to want to use them. The trade-off for using these is that it’s easy to make pretty text, but if you ever need to manually edit, [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I’m partial to the following WYSIWYG editors for Drupal:</p>
<ul>
<li><a href="http://drupal.org/project/widgeditor">WidgEditor</a> — stupid simple</li>
<li><a href="http://drupal.org/project/tinymce">TinyMCE</a> — way complicated powerful</a>
</ul>
<p><em>But</em> <em style="display:none"><a href="http://www.iucn-tftsg.org/?super_capers">Super Capers</a></em>  neither of them work well enough for me to want to use them. The trade-off for using these is that it’s easy to make pretty text, but if you ever need to manually edit, it’s incredibly painful.  The biggest problem is that they don’t make new lines for paragraph breaks, smashing everything together into one huge, ugly block.  And since Drupal has a nice, built-in filter for creating paragraph elements, it’s redundant (and infuriating).  </p>
<p>The only markup you need is bold, emphasis, links, pictures and a way to turn it off.  WordPress seems to get it.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.island94.org/2007/09/drupal-wysiwyg-editors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Octave and Gnuplot on Apple Mac OSX</title>
		<link>http://www.island94.org/2007/09/setting-up-octave-and-gnuplot-on-osx/</link>
		<comments>http://www.island94.org/2007/09/setting-up-octave-and-gnuplot-on-osx/#comments</comments>
		<pubDate>Sat, 08 Sep 2007 01:37:47 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[computations]]></category>
		<category><![CDATA[geeking]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I just started auditing a Mathematical Models in Biology class and Matlab is one of the requirements. I had relatively good experience with the free, open source alternative,Octave back in college, but then I was running Linux, not OSX. It took me about an hour to figure out how to set it up (I was [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I just started auditing a Mathematical Models in Biology class and Matlab is one of the requirements.  I had relatively good experience with the free, open source alternative,<a href="http://www.gnu.org/software/octave/">Octave</a> back in college, but then I was running Linux, not OSX.  It took me about an hour to figure out how to set it up (I was a little worried for a bit).</p>
<ol>
<li>Download the Octave binary for OSX from <a href="http://sourceforge.net/projects/octave/files/Octave%20MacOSX%20Binary/2009-10-03%20binary%20of%20Octave%203.2.3/">Octaveforge</a>.</li>
<li>Install Octave and Gnuplot (in the extras folder).  I just dragged them to /Applications (X11 is required for Gnuplot—should be found on OSX install disk)</li>
<li>If you are using OSX 10.6 (Snow Leopard) or 10.5.8+ you may need to perform some additional steps <a href="http://sourceforge.net/projects/octave/files//Octave%20MacOSX%20Binary/2009-10-03%20binary%20of%20Octave%203.2.3/README_OSX1065.txt/view">outlined here</a>
	</li>
<li>Set the environment variable for gnuplot (Octave is supposed to do this automatically, but it didn’t for me):<code><br />
sudo ln -s /Applications/GnuPlot.app/Contents/Resources/bin/gnuplot /usr/bin/gnuplot<br />
</code><br />
(thanks for the help, <a href="http://island94.org/setting-octave-and-gnuplot-osx#comment-3654">Toby</a>)</li>
<li>Download and install (again in /Applications) <a href="http://sourceforge.net/projects/aquaterm/">Aquaterm</a> which will actually render the gnuplot graphs.</li>
<li>Within Gnuplot, set the renderer: “terminal aqua”</li>
<li>Try it out in Octave (I had to restart Octave and Gnuplot to get it all to work):<code><br />
x = linspace(-pi, pi, 100);<br />
y = sin(x);<br />
plot(x, y);<br />
</code></li>
</ol>
<p>Thank you: <a href="http://hpc.sourceforge.net/">High Performance Computing for Mac OS X</a>, <a href="http://wiki.octave.org/wiki.pl?MacOSXIntegration">the Octave Wiki</a> and Google for helping me find what I needed.</p>
<p><em><strong>Update (January 24, 2010):</strong> updated the link in step #1 to the latest version of Octave. Added an additional step described by <a href="http://www.island94.org/2007/09/setting-up-octave-and-gnuplot-on-osx/#comment-80303">Zack in the comment</a>s (thanks!)</em></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.island94.org/2007/09/setting-up-octave-and-gnuplot-on-osx/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: www.island94.org @ 2012-02-03 22:33:56 -->
