<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" >

  <title>Erik L. Arneson — Writer and Software Developer</title>
  <subtitle>Erik L. Arneson is a freelance writer and software developer with WordPress experience. He is located in Portland, Oregon.</subtitle>
  <generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator>
  <link href="https://arnesonium.com/feeds/github.xml" rel="self" type="application/atom+xml" />
  <link href="https://arnesonium.com/" rel="alternate" type="text/html" />
  <updated>2026-06-18T15:03:10+00:00</updated>
  <id>https://arnesonium.com/feeds/github.xml</id>
  <author>
    <name>Erik L. Arneson</name>
  </author>
      <entry>
        
        <title>maybe: A command-line tool that succeeds sometimes</title>
        <author>
          <name>Erik L. Arneson</name>
        </author>        
        <link href="https://arnesonium.com/2025/02/maybe-succeeds-sometimes" rel="alternate" type="text/html" title="maybe: A command-line tool that succeeds sometimes" />
        <updated>2025-02-13T00:00:00+00:00</updated>
        <id>https://arnesonium.com/2025/02/maybe-succeeds-sometimes</id>
          <category term="programming" />
        
          <category term="golang" />
        
          <category term="github" />
        <content type="html" xml:base="https://arnesonium.com/2025/02/maybe-succeeds-sometimes">&lt;p&gt;I just released &lt;a href=&quot;https://github.com/pymander/maybe/releases/tag/v1.0.0&quot;&gt;version 1.0.0 of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;maybe&lt;/code&gt;&lt;/a&gt;, a command-line utility that succeeds some of the time. It
is written in Go and is not very many lines of code, but I do hope that it can be useful for people.&lt;/p&gt;

&lt;!--more--&gt;

&lt;h2 id=&quot;some-history&quot;&gt;Some History&lt;/h2&gt;

&lt;p&gt;I recently got a &lt;a href=&quot;https://amzn.to/3CYb9he&quot;&gt;Korg Volca Drums&lt;/a&gt; drum synthesizer. It has a sequencer that allows you to program
the probability of a particular instrument playing on a particular step, and I thought that was a
really cool feature. This inspired me to think about cron jobs that happen only some of the time.
Maybe the cron job would run, maybe it wouldn’t.&lt;/p&gt;

&lt;p&gt;This inspired me to write &lt;a href=&quot;https://github.com/pymander/maybe&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;maybe&lt;/code&gt;&lt;/a&gt;, a command-line utility that returns either success or failure,
based on flags you pass it. It defaults to succeeding 50 percent of the time, but you can change
that. This means you could make a cron job like this, which would run &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;do-something.sh&lt;/code&gt; 40 percent
of the time.&lt;/p&gt;

&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c&quot;&gt;# At midnight every Sunday, do something sometimes.&lt;/span&gt;
0 0 &lt;span class=&quot;k&quot;&gt;*&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;*&lt;/span&gt; 0     maybe &lt;span class=&quot;nt&quot;&gt;-chance&lt;/span&gt; 40 &lt;span class=&quot;o&quot;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;do&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;-something&lt;/span&gt;.sh
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;the-future-of-maybe&quot;&gt;The Future of maybe&lt;/h2&gt;

&lt;p&gt;I don’t think I will stop at version 1.0.0. I have already considered what may happen to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;maybe&lt;/code&gt; in
the future. Here are some things that I would like to do:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Add cryptographically secure randomness. There is no reason to use Go’s default random library.
Let us try to be as random as possible.&lt;/li&gt;
  &lt;li&gt;More granularity to the randomness. What if you want to run something 40.5 percent of the time?&lt;/li&gt;
  &lt;li&gt;Experiment with GitHub actions, such as building binaries for every operating system that &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;maybe&lt;/code&gt;
should support.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As you can see, the opportunities for improvement are many. And maybe (ha ha!) you will see
improvements soon!&lt;/p&gt;

&lt;p&gt;Perhaps this is a good time to visit &lt;a href=&quot;https://github.com/pymander/maybe&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;maybe&lt;/code&gt; on GitHub&lt;/a&gt; and star the repo so others can find it?&lt;/p&gt;</content>
      </entry>
    
      <entry>
        
        <title>Migrating from WordPress to Jekyll</title>
        <author>
          <name>Erik L. Arneson</name>
        </author>        
        <link href="https://arnesonium.com/2022/09/migrating-from-wordpress-to-jekyll" rel="alternate" type="text/html" title="Migrating from WordPress to Jekyll" />
        <updated>2022-09-24T00:00:00+00:00</updated>
        <id>https://arnesonium.com/2022/09/migrating-from-wordpress-to-jekyll</id>
          <category term="wordpress" />
        
          <category term="jekyll" />
        
          <category term="website-development" />
        
          <category term="github" />
        <content type="html" xml:base="https://arnesonium.com/2022/09/migrating-from-wordpress-to-jekyll">&lt;p&gt;Since launching this site in 2014, it has run on WordPress. I have always wanted to move the site to another blogging platform,
especially since I wasn’t really taking advantage of all of the WordPress features.
&lt;!--more--&gt;&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;I kept running WordPress for years for two reasons.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;First, I needed to show off my WordPress skills to attract clients. Second, I
thought it would be difficult to migrate away from WordPress. Once I got some experience with &lt;a href=&quot;https://jekyllrb.com/&quot;&gt;Jekyll&lt;/a&gt; and 
&lt;a href=&quot;https://pages.github.com/&quot;&gt;GitHub Pages&lt;/a&gt;, I knew I wanted to eventually move to that platform.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;I followed &lt;a href=&quot;https://talk.hyvor.com/blog/migrate-from-wordpress-to-jekyll/&quot;&gt;these simple instructions&lt;/a&gt;&lt;/strong&gt;
by &lt;a href=&quot;https://talk.hyvor.com/blog/author/supun/&quot;&gt;Supun  Kavinda&lt;/a&gt; and
used a plugin to export all of my content from WordPress to Jekyll.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The process &lt;strong&gt;only took about an hour&lt;/strong&gt; to get everything set up.&lt;/p&gt;

&lt;p&gt;I then spent hours tweaking everything until it looked good. Probably too many hours.&lt;/p&gt;

&lt;h2 id=&quot;why-migrate-to-jekyll&quot;&gt;Why migrate to Jekyll?&lt;/h2&gt;

&lt;p&gt;Jekyll is a static site generator, and pages and posts are all
generated with easy Markdown. This makes it easy to keep the
layout simple and easy to do things like share source code.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;Here is some simple Go code&lt;/strong&gt; just to show you how it looks.&lt;/li&gt;
&lt;/ul&gt;

&lt;div class=&quot;language-go highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;func&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  	&lt;span class=&quot;n&quot;&gt;fmt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Println&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Welcome to the playground!&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
	&lt;span class=&quot;n&quot;&gt;fmt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Println&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;The time is&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;time&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Now&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;GitHub Pages makes it easy to use source control&lt;/strong&gt; to track changes to your website. I have been loving this function on other websites I
maintain. As an added bonus, I was tired of the WordPress theme I had been using, and didn’t relish the thought of finding a new one.&lt;/p&gt;

&lt;h2 id=&quot;what-about-missing-features&quot;&gt;What about missing features?&lt;/h2&gt;

&lt;p&gt;Indeed, I will need to figure out how to handle all of the little broken things in all of my old posts going back to 2014. Here are some
features I will miss:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Automatically embedded Tweets.&lt;/li&gt;
  &lt;li&gt;Automatic sharing of new posts to Twitter and LinkedIn.&lt;/li&gt;
  &lt;li&gt;Password-protected web pages.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Also, my Disqus account doesn’t seem to be loading correctly. Will I
fix that? Who knows! In the meantime, if you want to respond to this,
you can &lt;a href=&quot;https://twitter.com/pymander&quot;&gt;find me on Twitter&lt;/a&gt;.&lt;/p&gt;</content>
      </entry>
    
      <entry>
        
        <title>Please Use Version Control</title>
        <author>
          <name>Erik L. Arneson</name>
        </author>        
        <link href="https://arnesonium.com/2015/04/please-use-version-control/" rel="alternate" type="text/html" title="Please Use Version Control" />
        <updated>2015-04-09T03:07:44+00:00</updated>
        <id>https://arnesonium.com/2015/04/please-use-version-control</id>
          <category term="git" />
        
          <category term="github" />
        
          <category term="programming" />
        
          <category term="stack-overflow" />
        
          <category term="version-control" />
        
          <category term="web-development" />
        <content type="html" xml:base="https://arnesonium.com/2015/04/please-use-version-control/">&lt;p&gt;Stack Overflow released their &lt;a href=&quot;http://stackoverflow.com/research/developer-survey-2015&quot; title=&quot;Stack Overflow Developer Survey 2015&quot; target=&quot;_blank&quot;&gt;2015 Developer Survey&lt;/a&gt; this week, and it has some interesting results. There are plenty of articles being written about their findings, so I’m only going to focus on one of them: version control.
&lt;!--more--&gt;&lt;/p&gt;

&lt;h2&gt;9.3% of Respondents Don&apos;t Use Version Control&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;http://arnesonium.com/wp-content/uploads/2015/04/Screenshot-from-2015-04-08-192457.png&quot; alt=&quot;Almost 10% of programmers aren&apos;t using version control.&quot; width=&quot;300&quot; height=&quot;188&quot; class=&quot;size-medium wp-image-345&quot; /&gt;&lt;/p&gt;

&lt;p&gt;StackOverflow says that &lt;a href=&quot;http://stackoverflow.com/research/developer-survey-2015#tech-sourcecontrol&quot; title=&quot;Stack Overflow Developer Survey 2015&quot; target=&quot;_blank&quot;&gt;almost 10% of developers still aren’t using version control&lt;/a&gt;. This is terrible. If you happen to be one of the developers who hasn’t adopted version control yet, &lt;b&gt;make it your next priority!&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Version control, also known as source control or revision control, is vital to best programming practices. It provides an incremental backup along with comments and notes on changes that have been made. It provides a view of changes and all kinds of handy features, such as handling conflicts between changes, release tagging, code branches, and more. If you aren’t sure what version control is, check out Ilya Olevsky’s post, &lt;a href=&quot;http://www.codeservedcold.com/version-control-importance/&quot; title=&quot;Why Version Control is Critical to Your Success&quot; target=&quot;_blank&quot;&gt;“Why Version Control is Critical to Your Success,”&lt;/a&gt; and then come back here.&lt;/p&gt;

&lt;h2&gt;Essential to Collaboration and Continuity&lt;/h2&gt;

&lt;p&gt;If you are looking to hire a freelance developer, make sure you hire one that uses version control. It is essential to maintaining a healthy history of code releases, project updates, and bug fixes. What if you only need to use your freelancer every once in a while? What if you decide to add more developers, or change developers all together? Without version control, this becomes a nightmare.&lt;/p&gt;

&lt;p&gt;A client recently brought me a project that had been built by another developer a couple of years ago. They wanted to move their web application from one host to another. However, there was a lot that needed to be cleaned up before the move could happen, including some outdated PHP code and odd database settings. In the project’s main directory, there was a mess of old, unused source code files. Just the &lt;code&gt;index.php&lt;/code&gt; file had multiple versions:&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;index2.php&lt;/li&gt;
	&lt;li&gt;index3.php&lt;/li&gt;
	&lt;li&gt;indexold.php&lt;/li&gt;
	&lt;li&gt;index.php_old&lt;/li&gt;
	&lt;li&gt;index.php_bak&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In all, there were 598 unused files that were unnecessary backups of old, broken code. This type of mess is easily avoided with version control. Please stay sane, keep your customers happy, and your source code easy to navigate. Use version control.&lt;/p&gt;

&lt;h2&gt;Getting Started with Version Control&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;http://arnesonium.com/wp-content/uploads/2015/04/git-logo.png&quot; alt=&quot;git-logo&quot; width=&quot;220&quot; height=&quot;92&quot; class=&quot;alignright size-full wp-image-347&quot; /&gt;&lt;/p&gt;

&lt;p&gt;If you’ve decided to make the right move and start using version control, you will see that there are many to choose from. However, if you’re just going to learn one, you should start with &lt;b&gt;Git&lt;/b&gt;. As you can see from the survey, it is the most widely used. The best place to start is probably in the free e-book offered by the Git development team. &lt;a href=&quot;http://git-scm.com/book/en/v1/Getting-Started&quot; title=&quot;Git: Getting Started&quot; target=&quot;_blank&quot;&gt;Click here to get started.&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;If You&apos;re Doing It, Thank You&lt;/h2&gt;

&lt;p&gt;The first time I encountered a team that wasn’t using version control, I was shocked. The second time, I sighed in exasperation. Now, I am thankful that over 90% of developers are using it, and I look forward to the day that every project I join comes with a &lt;code&gt;git log&lt;/code&gt; command. If you are using version control, I hope you spread the word and make sure that your fellow programmers are doing it, too. Save the rest of us some pain!&lt;/p&gt;

&lt;p&gt;As a bonus, here’s my favorite &lt;code&gt;git log&lt;/code&gt; command. Add it to your aliases.&lt;/p&gt;

&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;git log &lt;span class=&quot;nt&quot;&gt;--oneline&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;--graph&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;--all&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;--decorate&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;small&gt;&lt;em&gt;The featured image for this post is a pile of logs, to remind you that logs are important, and a vital part of version control.&lt;/em&gt;&lt;/small&gt;&lt;/p&gt;</content>
      </entry>
    
      <entry>
        
        <title>Prime Number Service on Google App Engine</title>
        <author>
          <name>Erik L. Arneson</name>
        </author>        
        <link href="https://arnesonium.com/2015/02/prime-number-google-app-engine/" rel="alternate" type="text/html" title="Prime Number Service on Google App Engine" />
        <updated>2015-02-20T22:37:41+00:00</updated>
        <id>https://arnesonium.com/2015/02/prime-number-google-app-engine</id>
          <category term="cloud" />
        
          <category term="github" />
        
          <category term="golang" />
        
          <category term="google-cloud" />
        
          <category term="php" />
        
          <category term="plugin" />
        
          <category term="prime-numbers" />
        
          <category term="programming" />
        
          <category term="web-development" />
        
          <category term="wordpress" />
        <content type="html" xml:base="https://arnesonium.com/2015/02/prime-number-google-app-engine/">&lt;p&gt;As I &lt;a href=&quot;http://arnesonium.com/2015/02/random-link-rodeo/&quot; title=&quot;Random Link Rodeo&quot;&gt;mentioned earlier this week&lt;/a&gt;, I’ve decided to learn the &lt;a href=&quot;http://golang.org/&quot; target=&quot;_blank&quot;&gt;Go programming language&lt;/a&gt;. I’ve also been very interested in Google App Engine, which lets you deploy applications to the cloud from a development sandbox. It’s like magic for web and mobile applications!
&lt;!--more--&gt;&lt;/p&gt;

&lt;p&gt;Since I’m so fond of prime numbers, I thought I’d build a web service for calculating them. It does some other fun stuff, too, like figuring out if a number is happy. It also caches primes in the Google Cloud Datastore with some minimal statistics. If you’d like to see the source code for the prime number service, it’s &lt;a href=&quot;https://github.com/pymander/prime-json-service&quot; target=&quot;_blank&quot;&gt;available on GitHub&lt;/a&gt;.
&lt;!--more--&gt;&lt;/p&gt;

&lt;p&gt;The next thing I did was write the simplest of all WordPress plugins to query the service and return the latest prime number in the sequence. This all happens in a post using the [[nextprime]] shortcode. ((Including this information has the side-effect of revealing how much traffic this page gets.))&lt;/p&gt;

&lt;h1&gt;[nextprime]&lt;/h1&gt;

&lt;p&gt;You can also &lt;a href=&quot;http://sigma-crow-364.appspot.com/&quot; title=&quot;Prime Number Web App&quot; target=&quot;_blank&quot;&gt;visit the app itself&lt;/a&gt; and read about querying the service to get prime numbers for your own web page!&lt;/p&gt;

&lt;p&gt;Learning Go and writing for the Google App Engine has been really fun. I’m ready for a new challenge! If you have a web application in mind, &lt;a href=&quot;http://arnesonium.com/contact/&quot; title=&quot;Contact&quot;&gt;contact me and let’s figure out how to build it&lt;/a&gt;!&lt;/p&gt;</content>
      </entry>
    
      <entry>
        
        <title>Small Team Software Change Management</title>
        <author>
          <name>Erik L. Arneson</name>
        </author>        
        <link href="https://arnesonium.com/2014/12/small-team-software-change-management/" rel="alternate" type="text/html" title="Small Team Software Change Management" />
        <updated>2014-12-18T01:45:51+00:00</updated>
        <id>https://arnesonium.com/2014/12/small-team-software-change-management</id>
          <category term="freshbooks" />
        
          <category term="git" />
        
          <category term="github" />
        
          <category term="management" />
        
          <category term="programming" />
        
          <category term="web-development" />
        <content type="html" xml:base="https://arnesonium.com/2014/12/small-team-software-change-management/">&lt;p&gt;Until October, I’d been using a paid &lt;a href=&quot;http://github.com/&quot; target=&quot;_blank&quot;&gt;GitHub&lt;/a&gt; account to manage source code changes and issue tracking for private projects. GitHub is a software-as-a-service (SaaS) product providing a web-based interface for source control management and various project tracking tasks. &lt;a href=&quot;http://blogs.perl.org/users/jt_smith/2011/12/github-is-an-amazing-service-that-much-of-the-perl-community-has.html&quot; target=&quot;_blank&quot;&gt;Some people love it&lt;/a&gt; and &lt;a href=&quot;http://laurent.bachelier.name/2012/05/github-kinda-sucks/&quot; target=&quot;_blank&quot;&gt;some aren’t fond of it&lt;/a&gt;.
&lt;!--more--&gt;&lt;/p&gt;

&lt;p&gt;My software development clients are typically small companies wanting fairly simple web applications. They hire me because having a developer on staff doesn’t fit into their budget or business plan. They don’t usually care what the source code for their project looks like, but they do care about tracking issues.&lt;/p&gt;

&lt;p&gt;Because of the scope of these applications, it’s rare that I work with other programmers. This meant that I wasn’t using any of the special features of GitHub for private code repositories, so in October I cancelled my subscription.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://eriklarneson.freshbooks.com/refer/www&quot;&gt;&lt;img src=&quot;/wp-content/uploads/2014/12/FreshBooks_Cloud_Accounting_Logo.png#right&quot; alt=&quot;FreshBooks&quot; /&gt;&lt;/a&gt;My private repositories are now self-hosted, and I browse them using &lt;a href=&quot;http://gitlist.org/&quot; target=&quot;_blank&quot;&gt;GitList&lt;/a&gt;, which bills itself as “an elegant and modern git repository viewer.” It looks nice, and I’ve got no complaints. For issue tracking, I use &lt;a href=&quot;https://eriklarneson.freshbooks.com/refer/www&quot; target=&quot;_blank&quot;&gt;Freshbooks&lt;/a&gt;, a SaaS accounting system. With Freshbooks, I can not only keep track of bug reports and issues, but I can record time spent on bug reports, feature creep, and other client-related issues.&lt;/p&gt;

&lt;p&gt;GitList and Freshbooks isn’t a perfect solution. At some point, I will be working with another developer, and we will need a way to track bugs and issues internally. When that happens, I plan to deploy &lt;a href=&quot;http://gitolite.com/gitolite/index.html&quot; target=&quot;_blank&quot;&gt;Gitolite&lt;/a&gt; and find some new issue-tracking solution.&lt;/p&gt;

&lt;p&gt;By the way, another reason I stopped using paid GitHub features is because &lt;a href=&quot;http://www.businessweek.com/articles/2013-06-20/github-got-silly-rich-dot-next-step-make-more-awesome&quot; target=&quot;_blank&quot;&gt;they’ve already made plenty of money&lt;/a&gt;, and I’m not sure they’re doing the right things with all of that money.&lt;/p&gt;

&lt;p&gt;I’m curious about what others are using. How does your incredibly small team track code changes and issues? Are all of your software issues internal, or are you developing for clients? I’d love to hear some ideas.&lt;/p&gt;</content>
      </entry>
    
</feed>
