<?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>Adam Monsen &#187; Fun</title> <atom:link href="http://adammonsen.com/post/tag/fun/feed" rel="self" type="application/rss+xml" /><link>http://adammonsen.com</link> <description></description> <lastBuildDate>Sun, 05 Feb 2012 17:26:58 +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>Auto-update bind 9 zone database serial numbers</title><link>http://adammonsen.com/post/796?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=auto-update-bind-9-zone-database-serial-numbers</link> <comments>http://adammonsen.com/post/796#comments</comments> <pubDate>Tue, 31 Jan 2012 23:45:46 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[Fun]]></category> <category><![CDATA[nerdy]]></category> <category><![CDATA[vim]]></category><guid isPermaLink="false">http://adammonsen.com/?p=796</guid> <description><![CDATA[This post is helpful for configuring emacs to automatically update the &#8220;Serial&#8221; in bind zone databases. I wanted to do the same in Vim, but the solutions in the comments of that post didn&#8217;t work for me. Here&#8217;s a version that does. It&#8217;s yours for free under the Affero GPL v3 (or any later version, [...]]]></description> <content:encoded><![CDATA[<p><a href="http://www.debian-administration.org/articles/381">This post</a> is helpful for configuring emacs to automatically update the &#8220;Serial&#8221; in bind zone databases. I wanted to do the same in Vim, but the solutions in the comments of that post didn&#8217;t work for me. Here&#8217;s a version that does. It&#8217;s yours for free under the Affero GPL v3 (or any later version, at your preference):</p><div class="wp_syntax"><div class="code"><pre class="vim" style="font-family:monospace;"><span style="color: #804040;">function</span> s<span style="color: #000000;">:</span>BindZoneSettings<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
    <span style="color: #804040;">function</span> s<span style="color: #000000;">:</span>UpdateBindZoneSerial<span style="color: #000000;">&#40;</span>date, num<span style="color: #000000;">&#41;</span>
        <span style="color: #804040;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #25BB4D;">strftime</span><span style="color: #000000;">&#40;</span><span style="color: #C5A22D;">&quot;%Y%m%d&quot;</span><span style="color: #000000;">&#41;</span> == a<span style="color: #000000;">:</span>date<span style="color: #000000;">&#41;</span>
            <span style="color: #804040;">return</span> a<span style="color: #000000;">:</span>date <span style="color: #000000;">.</span> a<span style="color: #000000;">:</span>num<span style="color: #000000;">+</span><span style="color: #000000; font-weight:bold;">1</span>
        <span style="color: #804040;">endif</span>
        <span style="color: #804040;">return</span> <span style="color: #25BB4D;">strftime</span><span style="color: #000000;">&#40;</span><span style="color: #C5A22D;">&quot;%Y%m%d&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">.</span> <span style="color: #C5A22D;">'01'</span>
    endfunction
&nbsp;
    <span style="color: #804040;">function</span> s<span style="color: #000000;">:</span>ReplaceBindZoneSerialLine<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">:%</span>s<span style="color: #000000;">/</span>\<span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">2</span><span style="color: #000000;">&#91;</span><span style="color: #000000; font-weight:bold;">0</span><span style="color: #000000;">-</span><span style="color: #000000; font-weight:bold;">9</span><span style="color: #000000;">&#93;</span>\<span style="color: #000000;">&#123;</span><span style="color: #000000; font-weight:bold;">7</span><span style="color: #000000;">&#125;</span>\<span style="color: #000000;">&#41;</span>\<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#91;</span><span style="color: #000000; font-weight:bold;">0</span><span style="color: #000000;">-</span><span style="color: #000000; font-weight:bold;">9</span><span style="color: #000000;">&#93;</span>\<span style="color: #000000;">&#123;</span><span style="color: #000000; font-weight:bold;">2</span><span style="color: #000000;">&#125;</span>\<span style="color: #000000;">&#41;</span>\<span style="color: #000000;">&#40;</span>\s<span style="color: #000000;">*</span>;\s<span style="color: #000000;">*</span>Serial\<span style="color: #000000;">&#41;</span><span style="color: #000000;">/</span>\=UpdateBindZoneSerial<span style="color: #000000;">&#40;</span><span style="color: #25BB4D;">submatch</span><span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#41;</span>, <span style="color: #25BB4D;">submatch</span><span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">2</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">.</span> <span style="color: #25BB4D;">submatch</span><span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">3</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">/</span>g
    endfunction
&nbsp;
    <span style="color: #804040;">autocmd</span> <span style="color: #25BB4D;">BufWritePre</span> <span style="color: #000000;">/</span>etc<span style="color: #000000;">/</span>bind<span style="color: #000000;">/</span>db<span style="color: #000000;">.*</span> <span style="color: #804040;">call</span> ReplaceBindZoneSerialLine<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
endfunction</pre></div></div>]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/796/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Get Back at those Fat Cats!</title><link>http://adammonsen.com/post/790?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=get-back-at-those-fat-cats</link> <comments>http://adammonsen.com/post/790#comments</comments> <pubDate>Thu, 05 Jan 2012 22:15:51 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[Fun]]></category><guid isPermaLink="false">http://adammonsen.com/?p=790</guid> <description><![CDATA[If you have an iPhone or iPad, check out the game Fat Cats!]]></description> <content:encoded><![CDATA[<p><a href="http://itunes.apple.com/us/app/fat-cats/id492003403"><img src="http://adammonsen.com/wp-content/uploads/2012/01/fat_cats.jpg" alt="Fat Cats logo: purple cat in a business suit smoking a cigar" title="Fat Cats" width="175" height="175" class="alignright size-full wp-image-791" /></a></p><p>If you have an iPhone or iPad, check out the game <a href="http://itunes.apple.com/us/app/fat-cats/id492003403">Fat Cats</a>!</p> ]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/790/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Does the FSF need better top-down social skills?</title><link>http://adammonsen.com/post/769?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=does-the-fsf-need-better-top-down-social-skills</link> <comments>http://adammonsen.com/post/769#comments</comments> <pubDate>Sun, 09 Oct 2011 03:36:06 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[floss]]></category> <category><![CDATA[Fun]]></category> <category><![CDATA[gnu]]></category> <category><![CDATA[politics]]></category><guid isPermaLink="false">http://adammonsen.com/?p=769</guid> <description><![CDATA[Larry Cafiero and Joe Brockmeier are two big voices for technological freedom. They&#8217;re both pretty fired up about RMS&#8217;s f-you epitaph of Jobs. Generally you want the figurehead of a public foundation to be, uh, attractive. Intellectually, maybe even physically. Right? Not only does the cause itself have to make sense, these people need to attract [...]]]></description> <content:encoded><![CDATA[<p>Larry Cafiero and Joe Brockmeier are two big voices for technological freedom. They&#8217;re both pretty <a href="http://larrythefreesoftwareguy.wordpress.com/2011/10/07/time-to-fork-the-fsf/">fired</a> <a href="http://www.readwriteweb.com/enterprise/2011/10/why-fsf-founder-richard-stallm.php">up</a> about <a href="http://stallman.org/archives/2011-jul-oct.html#06_October_2011_%28Steve_Jobs%29">RMS&#8217;s f-you epitaph</a> of Jobs.</p><p>Generally you want the figurehead of a public foundation to be, uh, attractive. Intellectually, maybe even physically. Right? Not only does the cause itself have to make sense, these people need to <em>attract</em> other people to their cause. And they usually &#8220;say the right things&#8221;, smile, wear a suit, whatever. But I always thought these requirements only applied to other causes (besides Free Software).</p><p>Certainly RMS lacking those traits didn&#8217;t keep me from FLOSS. I heard about <a href="http://oreilly.com/openbook/freedom/ch01.html">RMS and the proprietary printer</a> a while back, and that&#8217;s all it took to get me hooked on FLOSS. I could identify immediately because I write software, and proprietary code is a pain. His cause <em>just makes sense</em>, even if he doesn&#8217;t. But I&#8217;ve been justifying his abnormal behavior because, well, he <em>started something <strong>new</strong></em>! Something important. He knew it was important, and dedicated his life to this thing that many, many folks never even know exists. Something that affects all our lives, every day, more and more. Software must support our Freedom, or we are not free.</p><p>So he won me over, but I&#8217;m a nerd. I&#8217;m used to eccentrics in my field. Truth wins, period. And I still don&#8217;t know if it matters if RMS is a polished, smiley, public-friendly dude or not. Would Free Software be farther along today if RMS were kinder, more respectful, or somehow a better &#8220;public figure&#8221;? Would DRM have never been allowed to exist? Would the government pass laws that software for implanted medical devices be Free?</p> ]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/769/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Link Checker Wishlist</title><link>http://adammonsen.com/post/766?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=link-checker-wishlist</link> <comments>http://adammonsen.com/post/766#comments</comments> <pubDate>Wed, 05 Oct 2011 14:00:06 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[Fun]]></category> <category><![CDATA[nerdy]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[software]]></category><guid isPermaLink="false">http://adammonsen.com/?p=766</guid> <description><![CDATA[Link checkers spider through your website and make sure that links work. I want an awesome link checker. Ideally, it would espouse as many of these attributes as possible: easy to learn easy to configure/customize example config: don&#8217;t hit URLs on other servers sensible default behaviors example: respects robots.txt and &#8216;nofollow&#8217; link attributes scriptable / [...]]]></description> <content:encoded><![CDATA[<p>Link checkers spider through your website and make sure that links work. I want an awesome link checker. Ideally, it would espouse as many of these attributes as possible:</p><ul><li>easy to learn</li><li>easy to configure/customize</li><ul><li>example config: don&#8217;t hit URLs on other servers</li></ul><li>sensible default behaviors</li><ul><li>example: respects robots.txt and &#8216;nofollow&#8217; link attributes</li></ul><li>scriptable / embeddable</li><ul><li>useful from command line</li><li>useful from within CI servers like Jenkins</li></ul><li>recurses (parses HTML, follows links)</li><ul><li>and smartly avoids checking the same pages twice</li></ul><li>fast</li><li>thrifty with memory</li><li>pluggable</li><ul><li>example plugin: run jslint on all JavaScript</li><li>example plugin: validate HTML 5</li><li>example plugin: validate CSS</li><li>example plugin: compute accessibility score</li><li>example plugin: JUnit XML output</li><li>example plugin: OpenDocument spreadsheet output</li><li>example plugin: Excel output</li><li>example plugin: CSV output</li><li>example plugin: JavaScript engine</li><li>example plugin: follow hashbang URLs</li></ul><li>beautiful source code</li><li>FLOSS</li></ul> ]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/766/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>offline HTML 5 validation</title><link>http://adammonsen.com/post/741?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=offline-html-5-validation</link> <comments>http://adammonsen.com/post/741#comments</comments> <pubDate>Mon, 19 Sep 2011 18:05:18 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[engineering]]></category> <category><![CDATA[Fun]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[software]]></category> <category><![CDATA[vim]]></category> <category><![CDATA[Work]]></category><guid isPermaLink="false">http://adammonsen.com/?p=741</guid> <description><![CDATA[I&#8217;m liking Henri Sivonen’s Validator.nu service. I&#8217;ve got it running locally, and it works well. I can use it as a web service and validate HTML from within Vim, using quickfix to rapidly resolve errors. My Jenkins CI server uses the same validator via phpunit tests. Warning: it took me a very long time to get it [...]]]></description> <content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/HTML5"><img class="alignleft" title="HTML 5 logo" src="/wp-content/uploads/2011/09/HTML5_Logo.svg" alt="HTML 5 logo" width="200" height="200" /></a></p><p>I&#8217;m liking Henri Sivonen’s <a href="http://validator.nu/">Validator.nu</a> service. I&#8217;ve got it <a href="http://about.validator.nu/#src">running locally</a>, and it works well. I can use it as a web service and <a href="http://blog.whatwg.org/vim-checker">validate HTML from within Vim</a>, using <a href="http://vimdoc.sourceforge.net/htmldoc/quickfix.html#quickfix">quickfix</a> to rapidly resolve errors. My <a href="http://jenkins-ci.org">Jenkins</a> CI server uses the same validator via phpunit tests.</p><p>Warning: it took me a <em>very</em> long time to get it running locally. Technically easy (just run a build script), but it downloads tons of libraries and files before it can do its job.</p> ]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/741/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Swimming in the deep end</title><link>http://adammonsen.com/post/667?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=swimming-in-the-deep-end</link> <comments>http://adammonsen.com/post/667#comments</comments> <pubDate>Mon, 21 Mar 2011 20:46:51 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[computers]]></category> <category><![CDATA[Fun]]></category> <category><![CDATA[reading]]></category> <category><![CDATA[technology]]></category><guid isPermaLink="false">http://adammonsen.com/?p=667</guid> <description><![CDATA[A coworker forwarded me an inspiring article from the Harvard Business Review. I was interested after the first paragraph, and was looking excitedly looking forward to finishing it along with a cookie. But I could not! I&#8217;d get a couple more sentences in before being distracted. I would dutifully stop, blink, then rewind a couple [...]]]></description> <content:encoded><![CDATA[<p>A coworker forwarded me an inspiring article from the Harvard Business Review. I was interested after the first paragraph, and was looking excitedly looking forward to finishing it along with a cookie. But <em>I could not</em>!</p><p><span id="more-667"></span></p><p>I&#8217;d get a couple more sentences in before being distracted. I would dutifully stop, blink, then rewind a couple sentences, then repeat. Over and over. The dreaded <a href="http://youtube.com/watch?v=7jT0JT3N47g">technology loop</a>!</p><p><em>Hmm, I&#8217;d rather read this as an ebook. I wonder how I could convert it. I wonder who else has read this article. Do I have any new emails? Maybe there&#8217;s some news on Lybia I should be aware of. What other stuff has this dude written that I should read first? Man, an ebook of this would be nice. Maybe I should just print it?</em></p><p>Come on brain, read! <em>Think!</em> And remember, dangit!</p><p>I felt like I was learning to read for the first time. I had to work <em>very</em> hard to actually make it through the article. Then I stopped to think about what I had read, and realized my reading comprehension was for naught.</p><p><a href="http://commons.wikimedia.org/wiki/File:Diver2.jpg"><img class="alignright" title="diver" src="http://upload.wikimedia.org/wikipedia/commons/archive/f/f3/20060928211530!Diver2.jpg" alt="black and white of diver in old swimsuit" width="239" height="177" /></a></p><p>Why couldn&#8217;t I take in the information? Because <strong>I was reading a computer screen</strong>. When I&#8217;m upright at the computer, hands on keyboard &amp; mouse, I&#8217;m in <em>computer</em> mode, not <em>reading</em> mode. Great for <em>doing</em> stuff. Sure, I can learn stuff too, but nothing more than a tweet-sized tidbit. And the only pieces I can reliably hang on to are pointers to the &#8220;real&#8221; information online, somewhere. It&#8217;s a useful state of being for some activities, not completive thought.</p><p>This is exactly the phenomenon described by Nicholas Carr in <a href="http://www.theshallowsbook.com/"><em>The Shallows</em></a>.</p><p>I find myself doing this all the time lately.</p><p style="padding-left: 30px;">me: &#8220;Check out the supermoon!&#8221;<br /> Eva: &#8220;What&#8217;s a supermoon?&#8221;<br /> me: &#8220;No idea. Just saw the headline. It&#8217;s probably bigger or something.&#8221;<br /> Eva: &#8220;Huh?&#8221;</p><p>Eva and I did an experiment for while where, for one day a week, we didn&#8217;t use the internet. At all. For a whole day. Try it! I dare you.</p><p>Oh yeah, the article. It&#8217;s 6 pages long. <a href="http://hbr.org/2010/07/how-will-you-measure-your-life/ar"><em>How Will You Measure Your Life?</em></a> by Clayton M. Christensen.</p><p>Are you stuck in The Shallows at the computer? Are you able to read long articles on a computer screen? How do you recalibrate your brain when you need to think deeply about something? How does your reading comprehension and ability to concentrate change when you read newsprint? A book on an ebook reader? A printed novel? A Web page? How does your writing change when you use a computer vs. when you write with a pen and paper? Do you ever actually write with a pen and paper?</p> ]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/667/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Have a Cheap, Quick Breakfast Yum</title><link>http://adammonsen.com/post/629?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=have-a-cheap-quick-breakfast-yum</link> <comments>http://adammonsen.com/post/629#comments</comments> <pubDate>Wed, 05 Jan 2011 06:08:42 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[food]]></category> <category><![CDATA[Fun]]></category><guid isPermaLink="false">http://adammonsen.com/?p=629</guid> <description><![CDATA[Bachelors, health nuts, frugal folks, check this out. Grrrraaaaaains! Some rainy night, do this: Buy a bunch of bulk spelt, red winter wheat, and barley from the bulk section of your grocery store. Add 2/3 cup of each grain to a large pot (2 cups / 500 mL total grains). Add 8 cups (2 L) [...]]]></description> <content:encoded><![CDATA[<p>Bachelors, health nuts, frugal folks, check this out.</p><h1>Grrrraaaaaains!</h1><p>Some rainy night, do this:</p><ol><li>Buy a bunch of bulk spelt, red winter wheat, and barley from the bulk section of your grocery store.</li><li>Add 2/3 cup of each grain to a large pot (2 cups / 500 mL total grains).</li><li>Add 8 cups (2 L) water.</li><li>Bring to and keep boiling uncovered for 45 minutes.</li></ol><p>Throw it in the fridge. Heat some up in the morning and dress it like oatmeal. I like honey and whole milk. Try stuff like fresh/dried fruit, brown sugar too. Freezes well.</p><p>45 minutes means the wheat and spelt will be chewy. That&#8217;s how I like it.</p><h1>Beeeeans!</h1><ol><li>Add 2 cups (500 mL) raw pinto beans to a crockpot.</li><li>Cover with 3-4 inches (8-10 cm) water.</li><li>Cook on low for about 8 hours overnight.</li></ol><p>Dress with like sliced fresh raw tomatoes, salsa, cottage cheese, sour cream, salt and pepper. Leftovers keep well for up to a week in the fridge, or freeze &#8216;em.</p><h1>YUM!</h1><p>Thanks Forest M and Pam W for the inspirations!</p><h1>Odds &amp; Ends</h1><p>These grains/legumes/whatever are so tasty on their own. Seriously, why the heck do we need raisin bran and corn flakes?!</p><p>What&#8217;s your favorite breakfast?</p><p>For more fun, check out oat groats, amaranth, quinoa, and kasha.</p><p>Suggestions/corrections/feedback welcome. Yes Patrick, even your lovely trolling is welcome.</p> ]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/629/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Mifos opportunity: i18n</title><link>http://adammonsen.com/post/606?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mifos-opportunity-i18n</link> <comments>http://adammonsen.com/post/606#comments</comments> <pubDate>Tue, 05 Oct 2010 21:42:07 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[Fun]]></category> <category><![CDATA[mifos]]></category> <category><![CDATA[nerdy]]></category> <category><![CDATA[Work]]></category><guid isPermaLink="false">http://adammonsen.com/?p=606</guid> <description><![CDATA[We need help with i18n (and support of L10n) in Mifos. Are you interested in becoming the Mifos i18n champion? It&#8217;s a great volunteer opportunity! The work should be intermittent, and basically at your leisure. One of the really fun parts is working with the folks at Translatewiki.net&#8230; they added a bunch of messages from [...]]]></description> <content:encoded><![CDATA[<p>We need help with <a href="http://en.wikipedia.org/wiki/Internationalization_and_localization">i18n</a> (and support of L10n) in Mifos. Are you interested in becoming the Mifos i18n champion? It&#8217;s a great volunteer opportunity! The work should be intermittent, and basically at your leisure. One of the really fun parts is working with the folks at Translatewiki.net&#8230; they added a bunch of messages from our &#8220;questionnaire&#8221; module, and after a few days it was completely translated to Interlingua, Macedonian, Dutch, Norwegian, and Finnish! There&#8217;s an army of talented translators ready to help.</p><p>Here are some example tasks for the i18n champion:</p><ul><li>Make sure messages in Mifos are translatable.</li><li>Document messages and resolve issues mentioned on our <a href="http://mifosforge.jira.com/wiki/display/MIFOS/Translator+Helpdesk">Translator Helpdesk</a>.</li><li>Hang out in #mediawiki-i18n (an IRC channel on Freenode), answer Mifos questions when they come up, or add them to the Translator Helpdesk.</li><li>Work on specific i18n issues: <a href="http://mifosforge.jira.com/browse/MIFOS-3859">MIFOS-3859</a>, <a href="http://mifosforge.jira.com/browse/MIFOS-3821">MIFOS-3821</a>, <a href="http://mifosforge.jira.com/browse/MIFOS-2018">MIFOS-2018</a> and <a href="http://mifosforge.jira.com/secure/IssueNavigator.jspa?reset=true&#038;jqlQuery=component+%3D+Internationalization+AND+resolution+is+EMPTY+and+assignee+%3D+mifosdeveloperqueue">others</a>.</li><li>Improve and refine the <a href="http://mifosforge.jira.com/wiki/display/MIFOS/i18n%2C+L10n">Mifos i18n/L10n guide</a>.</li></ul><p>See also: <a href="http://ultimategerardm.blogspot.com/2010/10/mifos-microfinancing-and-wikimedia.html">#Mifos, #microfinancing and #Wikimedia</a></p><h1>Update</h1><p>A day after I sent out this call for help we got two volunteers! Thank you, Stanley Kwok and Jasmine Sandhu!</p> ]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/606/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Mifos Manual as an ebook</title><link>http://adammonsen.com/post/598?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mifos-manual-as-an-ebook</link> <comments>http://adammonsen.com/post/598#comments</comments> <pubDate>Mon, 13 Sep 2010 14:00:27 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[Fun]]></category> <category><![CDATA[mifos]]></category> <category><![CDATA[nerdy]]></category> <category><![CDATA[Work]]></category><guid isPermaLink="false">http://adammonsen.com/?p=598</guid> <description><![CDATA[I learned about ebooks last week. Very cool! I&#8217;ve found them much more readable than PDFs or Web pages. Maybe it&#8217;s the ebook readers&#8230; they sure help me focus on the content. Since we used FLOSS Manuals to write our manual, it&#8217;s easy to generate an ebook using Objavi. Here&#8217;s the Mifos Manual as an [...]]]></description> <content:encoded><![CDATA[<p>I learned about <a href="http://en.wikipedia.org/wiki/E-book">ebooks</a> last week. Very cool! I&#8217;ve found them much more readable than PDFs or Web pages. Maybe it&#8217;s the ebook readers&#8230; they sure help me focus on the content.</p><p>Since we used FLOSS Manuals to write <a href="http://en.flossmanuals.net/mifos-user-manual/">our manual</a>, it&#8217;s easy to generate an ebook using <a href="http://objavi.flossmanuals.net/">Objavi</a>. <a href="http://dl.dropbox.com/u/913284/Mifos-en-2010.09.07-07.33.26.epub">Here&#8217;s the Mifos Manual as an ebook</a>. Looks pretty good on the iPhone (lately I&#8217;ve been using &#8220;Stanza&#8221;). Probably looks even better on a Nook, Kindle, or iPad.</p> ]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/598/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Recent books I liked</title><link>http://adammonsen.com/post/588?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=recent-books-i-liked</link> <comments>http://adammonsen.com/post/588#comments</comments> <pubDate>Mon, 06 Sep 2010 14:44:03 +0000</pubDate> <dc:creator>adam</dc:creator> <category><![CDATA[Default]]></category> <category><![CDATA[books]]></category> <category><![CDATA[Fun]]></category><guid isPermaLink="false">http://adammonsen.com/?p=588</guid> <description><![CDATA[Steig Larsson&#8216;s Millenium Trilogy &#8211; had to read these after watching Eva completely submerged in them What the World Eats &#8211; mentioned by coworker Van The Gone-Away World &#8211; mentioned by DadHacker Confessions of an Economic Hitman &#8211; recommended by cousin Mel Laurel&#8217;s Kitchen Bread Book &#8211; recommended by uncle Paul]]></description> <content:encoded><![CDATA[<p><a href="http://www.stieglarsson.com/">Steig Larsson</a>&#8216;s <a href="http://en.wikipedia.org/wiki/Millennium_Trilogy">Millenium Trilogy</a> &#8211; had to read these after watching Eva completely submerged in them</p><p><a href="http://www.whattheworldeats.com">What the World Eats</a> &#8211; mentioned by coworker Van</p><p><a href="http://amazon.com/dp/0307268861">The Gone-Away World</a> &#8211; <a href="http://www.dadhacker.com/blog/?p=1237">mentioned by DadHacker</a></p><p><a href="http://en.wikipedia.org/wiki/Confessions_of_an_Economic_Hit_Man">Confessions of an Economic Hitman</a> &#8211; recommended by cousin Mel</p><p><a href="http://amazon.com/dp/0812969677">Laurel&#8217;s Kitchen Bread Book</a> &#8211; recommended by uncle Paul</p> ]]></content:encoded> <wfw:commentRss>http://adammonsen.com/post/588/feed</wfw:commentRss> <slash:comments>1</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: adammonsen.com @ 2012-02-09 02:14:27 -->
