<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Gabriel's Musings</title>
	<atom:link href="http://ggellner.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ggellner.wordpress.com</link>
	<description>Ecology, Mathematics, Computers, and What Not</description>
	<lastBuildDate>Wed, 25 Mar 2009 21:28:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ggellner.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Gabriel's Musings</title>
		<link>http://ggellner.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ggellner.wordpress.com/osd.xml" title="Gabriel&#039;s Musings" />
	<atom:link rel='hub' href='http://ggellner.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Things I hate about Python/Numpy/Scipy</title>
		<link>http://ggellner.wordpress.com/2009/03/25/things-i-hate-about-pythonnumpyscipy/</link>
		<comments>http://ggellner.wordpress.com/2009/03/25/things-i-hate-about-pythonnumpyscipy/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 21:28:35 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://ggellner.wordpress.com/?p=27</guid>
		<description><![CDATA[Well recently reading the great post http://use.perl.org/~brian_d_foy/journal/32556?from=rss has inspired me to get off my chest things about python/numpy/scipy that I hate. (With the understanding that I love Python for science, and use it almost exclusively. But if I had a million dollars and infinite influence I would fix these). Keyword arguments are parsed in as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=27&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well recently reading the great post<br />
<a title="Hating your Favorite Programming Language" href="http://use.perl.org/~brian_d_foy/journal/32556?from=rss">http://use.perl.org/~brian_d_foy/journal/32556?from=rss</a> has inspired me to get<br />
off my chest things about python/numpy/scipy that I hate. (With the<br />
understanding that I love Python for science, and use it almost exclusively.<br />
But if I had a million dollars and infinite influence I would fix these).</p>
<ol>
<li>Keyword arguments are parsed in as a dictionary, and are therefore unordered.<br />
This makes it a constant paint to use nice syntax to define ordered types. Say<br />
for example I want a list like object with element names (a la R) in a perfect<br />
world I would be able to say NList(a=1, b=2, c=3) and expect the order of the<br />
resulting list to mimic the order of the keyword definitions (again like R<br />
does). Instead I need to use NList((&#8216;a&#8217;, 1), (&#8216;b&#8217;, 2), (&#8216;c&#8217;, 3)) which is<br />
plain ugly, and pedantic. Worse in the new OrderedDict type of python 2.7/3.1<br />
you can use keyword arguments and get arbitrary order! This seems like a big<br />
interface wart, it sould not have been allowed.</li>
<li>NumPy/SciPy&#8217;s interfaces are painfully inconsitent. At best they mimic<br />
Matlab, which is a bad idea as Matlab&#8217;s argument unpacking is more powerfull<br />
than Python&#8217;s, and with objects it is suboptimal in any case. Mathematica and<br />
R/S++ are much better models for what a powerfull programming language means<br />
for scientific interfaces.</li>
<li>The BSD license requirement for NumPy/SciPy. I understand the arguments for<br />
this, but I find it painfull to watch libraries being rewritten from scratch<br />
when amazing GPL equivalents exist. Python for science is made worse for this.<br />
R, Octave, and GSL are giant communities that the Python world, in my opinion,<br />
will waste all of its developers trying to reproduce in a BSD way.</li>
<li>Numpy array&#8217;s have too many methods, such as std, var, cov which should be<br />
functions instead. An ndarray should just be a fast multidimensional object<br />
that can be reshaped, accessed, and operatered on. If a richer object with<br />
statistical functions is needed it should be a seperate subclass, as this adds<br />
bloat and often is not needed in the context that ndarray&#8217;s are used. Further<br />
the default behavior of std uses the population formula instead of the de<br />
facto standard of the sample formula (used by every other scientific package<br />
&#8211; ever). Some developers see this as a needed revolution, but as a method to<br />
an extension type it can not be easily overrided (without a serious slowdown<br />
in all method calls) which makes for the annoying code of .std(ddof=1) all the<br />
time, unless you breakdown and use use the (which would require explaination<br />
in almost any paper) or warn people to not use the method!.</li>
<li>Finally a minor gripe that I covet from R, but don&#8217;t think can be added in<br />
a pythonic manner is the ability to use values in default arguments from other<br />
default arguments. That is something like size(n=10, step=n/2). In python we<br />
would need to use extensive None defaults and handle the logic in the function<br />
which removes documentation.</li>
</ol>
<p>Well that feels better.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=27&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2009/03/25/things-i-hate-about-pythonnumpyscipy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>
	</item>
		<item>
		<title>Python Commandlets Redux</title>
		<link>http://ggellner.wordpress.com/2009/03/16/python-commandlets-redux/</link>
		<comments>http://ggellner.wordpress.com/2009/03/16/python-commandlets-redux/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 21:47:42 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://ggellner.wordpress.com/?p=20</guid>
		<description><![CDATA[Reading the awesome python blog word aligned I was directed to the cool python code snippet at voidspace that creates a simple class for making unix shell like pipes for functions in python. Thinking this was cool, I ported over some of the Ironpython specific features to be CPython compatible, and used the classes as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=20&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Reading the awesome python blog <a title="Word Aligned" href="http://wordaligned.org/">word aligned</a> I was directed to the cool python code snippet at <a title="Commandlets" href="http://www.voidspace.org.uk/python/weblog/arch_d7_2008_03_22.shtml#e954">voidspace</a> that creates a simple class for making unix shell like pipes for functions in python. Thinking this was cool, I ported over some of the Ironpython specific features to be CPython compatible, and used the classes as decorators as I think this makes the code more direct.</p>
<p>The compatibility parts where to replace &#8216;System.DateTime.Parse&#8217; to the dateutil function &#8216;parse&#8217;, which returns a datetime object and not a float like the IronPython call. So I then updated the Path object to store datetime objects for &#8216;mtime&#8217; and &#8216;ctime&#8217;, which I think is nicer anyway. The Full code is:</p>
<p><pre class="brush: python;">

import os
from dateutil.parser import parse
from datetime import datetime
from cmdlet import Cmdlet, Action

class Path(object):
    def __init__(self, path, entry):
        self.dir = path
        self.name = entry
        self.path = os.path.join(path, entry)
        self.mtime = datetime.fromtimestamp(os.path.getmtime(self.path))
        self.ctime = datetime.fromtimestamp(os.path.getctime(self.path))

    def __repr__(self):
        start = 'File:'
        if os.path.isdir(self.path):
            start = 'Dir:'
            ctime = self.ctime
            mtime = self.mtime
            return &quot;%s %s :ctime: %s :mtime: %s&quot; % (start, self.path, ctime, mtime)

@Cmdlet
def listdir(path):
    def listdir():
        return [Path(path, member) for member in os.listdir(path)]
    return listdir

@Cmdlet
def notolderthan(date):
    datetime = parse(date)
    def notolderthan(member):
        if member.mtime &gt;= datetime:
            return member
        return  ignored
    return notolderthan

@Action
def prettyprint(val):
    print val

if __name__ == '__main__':
    listdir('.') &gt;&gt; notolderthan('2/3/08') &gt;&gt; prettyprint

</pre></p>
<p>The module cmdlet just contains the Cmdlet and Action class definitions as found in the orginal web posting.</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=20&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2009/03/16/python-commandlets-redux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>
	</item>
		<item>
		<title>Wing IDE</title>
		<link>http://ggellner.wordpress.com/2008/10/30/wing-ide/</link>
		<comments>http://ggellner.wordpress.com/2008/10/30/wing-ide/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 02:23:25 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://ggellner.wordpress.com/?p=17</guid>
		<description><![CDATA[So I have finally found programmer editor nirvana, suprisingly it is a closed source program! A long time ago I was trying to put together a vim IDE, I blogged about my early trials, but never finished describing my setup, which in the end was quite nice. But seeing a lab mates matlab setup made [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=17&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I have finally found programmer editor nirvana, suprisingly it is a closed source program! A long time ago I was trying to put together a vim IDE, I blogged about my early trials, but never finished describing my setup, which in the end was quite nice. But seeing a lab mates matlab setup made me super jealous for a modern debugger, with tool tip variable value pop ups! Some searching around and I rediscovered <a title="Wing IDE" href="http://www.wingware.com">Wing</a>. Being a better programmer, and understanding what a full featured debugger can do for me now, there was no going back. I just purchased the educational version today, and it is the best 100 dollars I have spent in memory. The company is super cool, answers question quickly, and the product is to die for. If you program in python check it out!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=17&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2008/10/30/wing-ide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>
	</item>
		<item>
		<title>It has been a while . . .</title>
		<link>http://ggellner.wordpress.com/2008/10/30/it-has-been-a-while/</link>
		<comments>http://ggellner.wordpress.com/2008/10/30/it-has-been-a-while/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 02:18:38 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ggellner.wordpress.com/?p=15</guid>
		<description><![CDATA[Well I have been trying to do my own web programming at mudskipper.ca but I just never seem to finish anything. So I loaded up wordpress, but then I was onset by an oppressive amount of comment spam. And shortly after gave up. So without further ado I am back at wordpress.com, which upon further [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=15&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well I have been trying to do my own web programming at <a title="Mudskipper Media" href="http://www.mudskipper.ca">mudskipper.ca</a> but I just never seem to finish anything. So I loaded up wordpress, but then I was onset by an oppressive amount of comment spam. And shortly after gave up. So without further ado I am back at wordpress.com, which upon further reflection is simply awesome.</p>
<p>A lot has happened. Some highlights giving my first talk in vancouver, going to the <a title="SciPy08" href="http://conference.scipy.org/">SciPy08</a> conference as a supported student, as well as having a beautiful new cat named Ada.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=15&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2008/10/30/it-has-been-a-while/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>
	</item>
		<item>
		<title>Stickley Joy!</title>
		<link>http://ggellner.wordpress.com/2007/10/02/stickley-joy/</link>
		<comments>http://ggellner.wordpress.com/2007/10/02/stickley-joy/#comments</comments>
		<pubDate>Tue, 02 Oct 2007 03:58:58 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ggellner.wordpress.com/2007/10/02/stickley-joy/</guid>
		<description><![CDATA[I have dreamed of this joystick, and now it lives . . .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=13&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have dreamed of this joystick, and now it lives . . .</p>
<p><a href="http://ggellner.files.wordpress.com/2007/10/stickleyjoy-1.JPG" title="stickleyjoy-1.JPG"><img src="http://ggellner.files.wordpress.com/2007/10/stickleyjoy-1.JPG?w=228&#038;h=171" alt="stickleyjoy-1.JPG" height="171" width="228" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggellner.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggellner.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=13&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2007/10/02/stickley-joy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>

		<media:content url="http://ggellner.files.wordpress.com/2007/10/stickleyjoy-1.JPG" medium="image">
			<media:title type="html">stickleyjoy-1.JPG</media:title>
		</media:content>
	</item>
		<item>
		<title>Vim IDE update</title>
		<link>http://ggellner.wordpress.com/2006/10/16/vim-ide-update/</link>
		<comments>http://ggellner.wordpress.com/2006/10/16/vim-ide-update/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 17:35:04 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://ggellner.wordpress.com/2006/10/16/vim-ide-update/</guid>
		<description><![CDATA[Well the weekend was a whirlwind tour of vim&#8217;s features and customizations. This was largely enlightening to me, I truly love vim, and this experience has only deepened that feeling. Some customizations of note: The NERD Commenter, for smart programming comments. python.vim, updated highlight script, adds some pretty bells and whistles. pydoc.vim, give access to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=10&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well the weekend was a whirlwind tour of vim&#8217;s features and customizations. This was largely enlightening to me, I truly love vim, and this experience has only deepened that feeling.</p>
<p>Some customizations of note:</p>
<ul>
<li><span class="txth1"><a href="http://www.vim.org/scripts/script.php?script_id=1218">The NERD Commenter</a>, for smart programming comments.</span></li>
<li><span class="txth1"><a href="http://www.vim.org/scripts/script.php?script_id=790">python.vim</a>, updated highlight script, adds some pretty bells and whistles.</span></li>
<li><span class="txth1"><a href="http://www.vim.org/scripts/script.php?script_id=910">pydoc.vim</a>, give access to pydoc output in a split vim window. I have defined the extra keymap (nmap K &lt;leader&gt;pw) which is more natural in python mode than having access to shell man pages.</span></li>
<li><span class="txth1"><a href="http://www.geocities.com/yegappan/taglist/">taglist</a>, a great class browser.</span></li>
<li><span class="txth1"><a href="http://www.vim.org/scripts/script.php?script_id=974&amp;rating=life_changing">python.vim</a>, updated indent rules that are more inline with the python recommendations (align with open braces, etc).</span></li>
</ul>
<p><span class="txth1">These are the major enhancements I have used. They solve some of the editing and informational problems outlined in a good IDE. But it is not perfect yet, and will need some tweaking. the pydoc interface is not super smart, as it is confused by imported modules. Omnicompletion is very slow, and works poorly &#8212; though I am considering using the short cut &lt;C-Space&gt; as the completion instead of &lt;C-x&gt;&lt;C-o&gt; as I find the latter awkward. I am still not sure about using smart tabs &#8212; that is not allowing tabs past allowed limits. I have written some code to enforce this, but it might be overly draconian.</span></p>
<p>I have also set up pylint as the python compiler, so I get error messages that I can correct according to style guidelines. This is awesome, though I need it to open another window so I can see the errors in a more explicit manner.</p>
<p>Anyway, the progress continues. I will have to put my head around the symbolic debugger. There seems to be a good project for gdb, called <a href="http://clewn.sourceforge.net/">clewn</a>, though it will be seen how easy it is to use pdb instead.</p>
<p><span class="txth1"></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggellner.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggellner.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=10&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2006/10/16/vim-ide-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>
	</item>
		<item>
		<title>Vim as a python IDE</title>
		<link>http://ggellner.wordpress.com/2006/10/13/vim-as-a-python-ide/</link>
		<comments>http://ggellner.wordpress.com/2006/10/13/vim-as-a-python-ide/#comments</comments>
		<pubDate>Fri, 13 Oct 2006 16:14:57 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://ggellner.wordpress.com/2006/10/13/vim-as-a-python-ide/</guid>
		<description><![CDATA[I have been programming python in much of my spare time, largely inspired by http://www.swc.scipy.org/. As a result I have started to use subversion, and have become increasingly interested in software engineering. I now write unit tests for much of my code, and have felt a tremendous increase in quality and enjoyment in my everyday [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=9&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been programming python in much of my spare time, largely inspired by <a href="http://www.swc.scipy.org/" title="Software Carpentry">http://www.swc.scipy.org/</a>. As a result I have started to use <a href="http://subversion.tigris.org/" title="subversion">subversion</a>, and have become increasingly interested in software engineering. I now write unit tests for much of my code, and have felt a tremendous increase in quality and enjoyment in my everyday coding!</p>
<p>Recently I also tried using <a href="http://wingware.com/" title="WingIDE">WingIDE</a> which is an amazing product. I wish it was more straitforward to define a keyboard alias (such as Control-[ short for Escape). I can only figure out how to use keyboard macro&#8217;s for built in functions &#8212; which is more than I need . . .</p>
<p>All this brings me to the topic of this post, I want WingIDE like functionality in vim. This is mostly motivated by poverty, I find the Personal addition of Wing to be missing must have features (source assistant, and svn integration), and Professional is way out of my budget. This made me think more about vim, which is supposedly highly customizable, <a href="http://www.thescripts.com/forum/threadnav167938-2-10.html">people</a> even argue it is already ready to be a modern IDE. I find said post a little short on details, and I simply am not will to use the command line debugger after having tasted the sweetness of a proper integrated debugging experience.</p>
<p>With this in mind I am now ready to collect the plugins and know-how to recreate the features of Wing that I find amazing. The top ones that come to mind are:</p>
<ul>
<li>Symbolic debugging!</li>
<li>Subversion integration.</li>
<li>Source assistant (this shows the documentation for each function, object, variable, etc . . . it is really nice).</li>
<li>Smart completion using tab (I will want to use Ctrl-n, Ctrl-p to navigate the pop-up, which was something I could figure out how to do in Wing). This means that I will have to figure out how to get vim to only tab when it makes sense (that is if I press tab twice, it will do nothing, as indentation is only legal for block structure). I like this secondary feature greatly, I remember similar functionality from emacs, so it should be doable.</li>
</ul>
<p>I am sure there are others that I will notice, but if I have this I will be very, very happy. This might mean I will have to learn to script vim with python, which will be interesting itself. I will write about this as I make progress. Ultimately it will be nice to collect plugins, tips etc into one package that is documented and easy to install that gives some IDE feeling to vim (and not just say it is possible, which is what I mostly see).</p>
<p>Note: I have seen <a href="http://pida.berlios.de/">pida</a>, and I find it poorly documented, and outside of subversion integration it covers IDE features I care less about. That being said, it might serve as a basis for the work I envision. Though I worry it solves a more general problem than I am interested in. An IDE platform seems overkill to me, I would rather have vim, and only vim give the features.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggellner.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggellner.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=9&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2006/10/13/vim-as-a-python-ide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>
	</item>
		<item>
		<title>Desert xterm</title>
		<link>http://ggellner.wordpress.com/2006/08/12/desert-xterm/</link>
		<comments>http://ggellner.wordpress.com/2006/08/12/desert-xterm/#comments</comments>
		<pubDate>Sat, 12 Aug 2006 22:12:10 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">https://ggellner.wordpress.com/2006/08/12/desert-xterm/</guid>
		<description><![CDATA[I have been using the gnome terminal since my recent move to ubuntu (lts). Sadly I find it to be slow (scrolling in vim, etc can lead to choppy performance on my crappy computer), so I have moved back to the oh-so-lovely xterm. Being a die hard fan of the built in gvim colorscheme desert, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=7&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been using the gnome terminal since my recent move to ubuntu (lts). Sadly I find it to be slow (scrolling in vim, etc can lead to choppy performance on my crappy computer), so I have moved back to the oh-so-lovely xterm.</p>
<p>Being a die hard fan of the built in gvim colorscheme desert, I felt it was time to update my .Xdefaults. It was a bit trial and error to figure out which color* resources did what, but once this was done, using the gimp and the color picker it was speedy.</p>
<p>Here is a screenshot of vim in the terminal, editing some fortran code:</p>
<p><img src="http://ggellner.files.wordpress.com/2006/08/xterm_screenshot.jpg?w=364&#038;h=328" alt="screenshot" height="328" width="364" /></p>
<p>For those interested, here is the .Xdefaults</p>
<p>!<br />
!XTerm*underLine:               on<br />
XTerm*colorMode:                on<br />
XTerm*colorBD:                  lightyellow<br />
!XTerm*colorBDMode:             off<br />
XTerm*colorUL:                  yellow<br />
XTerm*colorULMode:              on<br />
XTerm*dynamicColors:            off<br />
XTerm*highlightSelection:       true</p>
<p>!&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
! Colorscheme based on the gvim colorscheme desert<br />
!&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
XTerm*background:       #313031<br />
XTerm*foreground:       White</p>
<p>!colors<br />
!(unknown)<br />
XTerm*color0:           #000000<br />
XTerm*color7:           #bebebe<br />
XTerm*color8:           #666666<br />
XTerm*color9:           #cf6171<br />
XTerm*color10:          #c5f779<br />
XTerm*color11:          #fff796<br />
XTerm*color12:          #4186be<br />
XTerm*color13:          #cf9ebe<br />
XTerm*color14:          #71bebe<br />
XTerm*color15:          #ffffff</p>
<p>!(1 is an option color in .Xdefaults)<br />
XTerm*color1:           #ffa2a5</p>
<p>!(2 is a resource color in .Xdefaults)<br />
XTerm*color2:           #bdb66b</p>
<p>!(3 is for def/return color in python)<br />
XTerm*color3:           #f7e78c</p>
<p>!(4 is for comments color in python)<br />
XTerm*color4:           #84cfef</p>
<p>!(5 is for import/from color in python)<br />
XTerm*color5:           #ce5d5a</p>
<p>!(6 is for function color in python)<br />
XTerm*color6:           #87ff87</p>
<p>!set the font, and fond size<br />
! this also uses a antialias/scalable font<br />
xterm*faceName: Andale Mono<br />
xterm*faceSize: 12</p>
<p>!set the window geometry<br />
XTerm*geometry: 110&#215;40</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggellner.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggellner.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=7&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2006/08/12/desert-xterm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>

		<media:content url="http://ggellner.files.wordpress.com/2006/08/xterm_screenshot.jpg" medium="image">
			<media:title type="html">screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Dynamical Systems, and Continuation</title>
		<link>http://ggellner.wordpress.com/2006/05/21/dynamical-systems-and-continuation/</link>
		<comments>http://ggellner.wordpress.com/2006/05/21/dynamical-systems-and-continuation/#comments</comments>
		<pubDate>Sun, 21 May 2006 06:11:31 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">https://ggellner.wordpress.com/2006/05/21/dynamical-systems-and-continuation/</guid>
		<description><![CDATA[Well it has been a while since I have been writing simulations for food web models. More often then not I have resorted to writing specialty programs in fortran. Though I knew of AUTO, I found it to be unbelievably cryptic to use, as a result I forged ahead. Well I am back at looking [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=6&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well it has been a while since I have been writing simulations for food web models. More often then not I have resorted to writing specialty programs in fortran. Though I knew of AUTO, I found it to be unbelievably cryptic to use, as a result I forged ahead.<br />
Well I am back at looking for a better way. programs I have found, and deemed to be the only actively developed projects are:</p>
<ol>
<li>AUTO 2000</li>
<li>PyDSTool</li>
<li>Matcont</li>
<li>xppaut</li>
</ol>
<p>I am interested in finding out which will be the best suited to my needs. So far I really like the idea and design of PyDSTool, making it a programming language, especially in python, is quite nice. Sadly until they have support for continuing periodic solutions, it is not a stand in solution for me. AUTO also has a python scripting support, but it retains the cryptic use of 2-3 letter parameters, which are meaningless to me, seconds after I write them. I also find it diffucult to use the results I get from AUTO. It feels like a stand alone tool.</p>
<p>Xppaut on the other hand is tremendously easy to use, blindingly fast, but hard to decrypt the save files. Though I feel I will continue to use it in place of AUTO, until PyDSTool develops further. To this end I will create a python module that will parse the &quot;write all information&quot; save file from the AUTO session of xppaut. Hopefully this well serve the duel purpose of making me a better python programmer, so that I can begin to add to PyDSTool, as well as getting a working solution for the short run.</p>
<p>Finally I guess I need to look into matcont, which seems to be a very mature, and powerfull solution, strongly related to PyDSTool. The only reservation I have is that I would need to use matlab, which being commericial, and expensive, makes me wary.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggellner.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggellner.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=6&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2006/05/21/dynamical-systems-and-continuation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>
	</item>
		<item>
		<title>Well, I need to start somewhere</title>
		<link>http://ggellner.wordpress.com/2006/04/11/well-i-need-to-start-somewhere/</link>
		<comments>http://ggellner.wordpress.com/2006/04/11/well-i-need-to-start-somewhere/#comments</comments>
		<pubDate>Tue, 11 Apr 2006 22:01:46 +0000</pubDate>
		<dc:creator>ggellner</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">https://ggellner.wordpress.com/2006/04/11/well-i-need-to-start-somewhere/</guid>
		<description><![CDATA[So, I have a blog. I plan to get some working ramblings on LaTeX, Fortran 95/2003, Postscript like graphics, and some of the research I am thinking about. Lets see how it goes.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=3&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I have a blog. I plan to get some working ramblings on LaTeX, Fortran 95/2003, Postscript like graphics, and some of the research I am thinking about.</p>
<p>Lets see how it goes.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggellner.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggellner.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggellner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggellner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggellner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggellner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggellner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggellner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggellner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggellner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggellner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggellner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggellner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggellner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggellner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggellner.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggellner.wordpress.com&amp;blog=184394&amp;post=3&amp;subd=ggellner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggellner.wordpress.com/2006/04/11/well-i-need-to-start-somewhere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49543f01f2f4a1f8f4a84ff19ea0b9a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggellner</media:title>
		</media:content>
	</item>
	</channel>
</rss>
