<?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>TrueJournals &#187; maemo</title>
	<atom:link href="http://truejournals.com/topics/maemo/feed/" rel="self" type="application/rss+xml" />
	<link>http://truejournals.com</link>
	<description>And the unimaginative tagline</description>
	<lastBuildDate>Sat, 21 Aug 2010 04:46:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Understanding n810 NJoy Programming</title>
		<link>http://truejournals.com/2009/06/14/understanding-n810-njoy-programming/</link>
		<comments>http://truejournals.com/2009/06/14/understanding-n810-njoy-programming/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 03:42:59 +0000</pubDate>
		<dc:creator>TrueJournals</dc:creator>
				<category><![CDATA[maemo]]></category>
		<category><![CDATA[mce.ini]]></category>
		<category><![CDATA[mcedit]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[talk.maemo.org]]></category>

		<guid isPermaLink="false">http://truejournals.com/?p=107</guid>
		<description><![CDATA[I think this would be a good place to archive my explanation of NJoy programming.  I was asked about how the patterns in mce.ini for the n810 work, with PatternError given as an example.  This was my reply: The different sections of the line are separated by semicolons. So, priority is the first part, then [...]]]></description>
			<content:encoded><![CDATA[<p>I think this would be a good place to archive <a href="http://talk.maemo.org/showpost.php?p=296703&amp;postcount=23">my explanation of NJoy programming</a>.  I was asked about how the patterns in mce.ini for the n810 work, with PatternError given as an example.  This was my reply:</p>
<p>The different sections of the line are separated by semicolons. So, priority is the first part, then a semicolon, then the &#8220;ScreenOn&#8221; value, then a semicolon, etc. So, I&#8217;ll use your example and point out each section of the programming.</p>
<p>0;1;0;40002000200040ff200020000000;0000;0000</p>
<p>To make this easier, I&#8217;m going to assign an index to each section of the command. I&#8217;ll split the string up by the semicolons. We&#8217;ll say the first character (a zero, in this case) has an index of 1. The second part of the split (a one), has an index of 2, etc, etc.</p>
<p><strong>0</strong>;1;0;40002000200040ff200020000000;0000;0000<br />
Index 1 defines the priority. If two patterns trigger at once, items with a higher priority (lower number for this section), take precedence, because only one pattern can be going at once. Since the priority is 1 (0 being the highest priority, 255 being the lowest), this pattern will display instead of almost any other pattern (the exception is patterns that have a priority of 0)</p>
<p>0;<strong>1</strong>;0;40002000200040ff200020000000;0000;0000<br />
Index 2 defines whether or not the pattern should fire based on what state the display is in. In this case, it&#8217;s a 1, which mce.ini tells us means &#8220;show pattern even when the display is on&#8221;. So, this pattern will display no matter what.</p>
<p>0;1;<strong>0</strong>;40002000200040ff200020000000;0000;0000<br />
Index three gives the timeout. This can tell the pattern to stop firing after a certain amount of time. In this case, it&#8217;s a zero, which means that the pattern will never stop firing (unless it&#8217;s told to).</p>
<p>0;1;0;<strong>40002000200040ff200020000000</strong>;0000;0000<br />
Index four starts the actual programming of the LED. Index four gives the programming of the RED LED. It also gets a bit more complicated here. We have to split this section up into strings of four characters each in order to understand the programming. This is what the pattern looks like, split into four-character strings, with each string separated by a pipe (|):<br />
4000|2000|2000|40ff|2000|2000|0000<br />
So, there are seven different commands given to the red LED.  Let&#8217;s take a look at them one by one:</p>
<ol style="list-style-type: decimal;">
<li><strong>4000</strong> &#8212; This sets the brightness of the LED (anything starting with a 40 will change the brightness). I believe this tells the LED to turn off (0 brightness). I believe that ff would be 100% brightness.</li>
<li><strong>2000</strong> &#8212; This bumps the brightness up over a certain amount of time. This gets REALLY confusing. The first two characters, 20, tell how long it should take to change the brightness. 20 is in the 01 &#8211; 3f range, so we get &#8220;short&#8221; steps. If I understand this, we get 19 &#8220;short&#8221; steps of time ~0.49ms, so this should take about 9.31 milliseconds. The next two characters, 00, defines how many steps in brightness the LED should take. 00 is no change, so the pattern will pause for about 9.31 milliseconds.</li>
<li><strong>2000</strong> &#8212; Because this is the same command as above, this will also create a 9.31 millisecond pause.</li>
<li><strong>40ff</strong> &#8212; Again we see a 40. This says to change the channel brightness. This time, we&#8217;re changing it to ff, which should be 100% brightness. So, this command turns the LED on.</li>
<li><strong>2000</strong> &#8212; This creates another 9.31 ms pause.</li>
<li><strong>2000</strong> &#8212; This creates another 9.31 ms pause.</li>
<li><strong>0000</strong> &#8212; This tells the pattern to loop (&#8220;jump to the start of the pattern&#8221;).</li>
</ol>
<p>So, the red LED will turn off, pause for (2*9.31 ms =) 18.62 milliseconds, turn on, pause for another 18.62 milliseconds, then loop.</p>
<p>0;1;0;40002000200040ff200020000000;<strong>0000</strong>;0000<br />
Index five gives the pattern for the GREEN LED. This is a very exciting pattern. It simply tells the pattern to repeat again and again and again. So&#8230; nothing happens with the green LED.</p>
<p>0;1;0;40002000200040ff200020000000;0000;<strong>0000</strong><br />
Index six gives the pattern for the BLUE LED.  Again, very exciting.  The blue LED does&#8230; nothing.</p>
<p>I hope this helps you understand how the programming works.</p>
]]></content:encoded>
			<wfw:commentRss>http://truejournals.com/2009/06/14/understanding-n810-njoy-programming/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Maemo is Now a Phone?!?</title>
		<link>http://truejournals.com/2009/05/28/maemo-is-now-a-phone/</link>
		<comments>http://truejournals.com/2009/05/28/maemo-is-now-a-phone/#comments</comments>
		<pubDate>Fri, 29 May 2009 02:05:20 +0000</pubDate>
		<dc:creator>TrueJournals</dc:creator>
				<category><![CDATA[maemo]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[itt]]></category>
		<category><![CDATA[talk.maemo.org]]></category>

		<guid isPermaLink="false">http://truejournals.com/?p=97</guid>
		<description><![CDATA[Let me repeat that.  It appears that the next device Nokia is going to release with the Maemo operating system is a phone. This device is supposed to be all we thought it would be.  Only, there are a couple major differences from what we thought it would be.  First off, we thought it would [...]]]></description>
			<content:encoded><![CDATA[<p>Let me repeat that.  It appears that the next device Nokia is going to release with the Maemo operating system is a phone.</p>
<p>This device is supposed to be all we thought it would be.  Only, there are a couple major differences from what we thought it would be.  First off, we thought it would be a data-only connection, with voice coming later.  Secondly, we thought there would be a 4&#8243; screen (based on the previous tablets).  Finally, it appears that, due to the phone aspect, it will be locked into a carrier.  If leaked information is right (and Nokia internals seem to confirm this), then the leak is absolutely correct, and&#8230; we&#8217;re screwed.</p>
<p>When I bought my Nokia 770, I thought it was the coolest thing I had seen.  I wasn&#8217;t looking for a phone (I don&#8217;t have a cell plan&#8230; don&#8217;t have much need for one&#8230; yet&#8230;), yet this was a device that I could carry around and browse the web, etc.  It wasn&#8217;t terribly powerful, but that was OK.  Then, I got a N800, which blew me away.  It was amazingly faster, and I thought it did a great job at what it was designed to do: an Internet Tablet.</p>
<p>Recently, the maemo community has been trying to pull itself together (not without objection).  The maemo website has been redone, beta SDKs have been released, Internet Tablet Talk has been moved to talk.maemo.org, and it seems like everyone is waiting for a new device.  It seems that Internet Tablet Talk moving to talk.maemo.org was a key point to Nokia&#8217;s next device.  If they were not going to put out an Internet Tablet, but instead release a phone, they couldn&#8217;t have a website called Internet Tablet Talk talking about Maemo, now their <strong>phone</strong> operating system.  So, what did they do?  They decided to &#8220;pull the community together,&#8221; and remove &#8220;Internet Tablet&#8221; from Maemo.</p>
<p>Now, I don&#8217;t think the development of a phone is a terrible idea, and it&#8217;s where Maemo needs to go, but I&#8217;d like to see Nokia keep the Internet Tablet spirit, while adding phone features.  The spirit of the Internet Tablets was to have a pocketable device that you could take and get internet anywhere, and have a nice, good-sized, good resolution, 4&#8243; screen.  This, to me, seems like the <strong>perfect</strong> screen size for this device.  It&#8217;s small enough to be pocketable, but big enough to be readable.  Yet, with the next Maemo device, Nokia is downsizing, but keeping resolution.</p>
<p>What does this mean?  It means that text will be smaller.  One of the design points of Maemo 5 was to make the interface &#8220;finger friendly&#8221; (this hinted at the lack of a stylus in the next device).  However, putting the same resolution on a smaller screen means that UI components now need to be <strong>huge</strong>.  It seems that this is a step backwards.  We will have more processing power, so we want a bigger screen, so we can do more with it.  Higher resolution, right?  Well, Nokia cheated at this.  By making the screen smaller, but keeping the resolution the same, they have a higher DPI, which will be percieved as a higher resolution.</p>
<p>But, is this really what&#8217;s best for Nokia and Maemo?  Nokia is clearly trying to get Maemo devices more mass-marketed.  They seem to believe, due to the low sales of previous internet tablets, that Maemo will be better off in a phone.  Phones just generally sell more.  Or do they?  Nokia advertised the internet tablets just about not at all, and Apple, with the iPod Touch, has proved that there is a market for a portable WiFi computing device that can fit in a pocket.  Sure, the internet tablets were designed with Nerds in mind, but I think that if Nokia worked on marketing the internet tablets, there would have been a bigger market.</p>
<p>However, this is the benefit of phones: Nokia doesn&#8217;t need to do any advertising.  Sure, there are advertisements for phones, but, generally, advertisements are for phone <strong>networks</strong>.  The network sells you the phone, and advertises for whichever one makes them the most money.  But, when you go in to buy a phone, all the phones are out on display, and you can pick which one you want.  Not once did I ever see an internet tablet &#8220;out on display&#8221;.  So, the phone market creates free advertising.</p>
<p>Overall, I&#8217;m disappointed that this is the direction that Nokia is moving with the Mameo platform.  I liked the internet tablets being a niche device that no one else has.  I enjoyed showing off my nerdiness by pulling a computer out of my pocket.  Now, it&#8217;ll just be another smart phone.  No big deal.  Everyone has one of those.</p>
]]></content:encoded>
			<wfw:commentRss>http://truejournals.com/2009/05/28/maemo-is-now-a-phone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>tearboookmarks 0.3.1-4</title>
		<link>http://truejournals.com/2009/04/22/tearboookmarks-031-4/</link>
		<comments>http://truejournals.com/2009/04/22/tearboookmarks-031-4/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 13:24:10 +0000</pubDate>
		<dc:creator>TrueJournals</dc:creator>
				<category><![CDATA[maemo]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[tear]]></category>
		<category><![CDATA[tearbookmarks]]></category>

		<guid isPermaLink="false">http://truejournals.com/?p=51</guid>
		<description><![CDATA[Last night, I relased tearbookmarks 0.3.1-4.  It&#8217;s a pretty major update, but I refuse to give it the 1.0 until tear itself is out of beta.  This release includes multiple new features.   First, the menu load is completely dynamic.  The plugin will first check if the bookmark database has been updated since it last grabbed [...]]]></description>
			<content:encoded><![CDATA[<p>Last night, I <a title="release announcement" href="http://internettablettalk.com/forums/showpost.php?p=281283&amp;postcount=985" target="_blank">relased tearbookmarks 0.3.1-4</a>.  It&#8217;s a pretty major update, but I refuse to give it the 1.0 until tear itself is out of beta.  This release includes multiple new features.   First, the menu load is completely dynamic.  The plugin will first check if the bookmark database has been updated since it last grabbed its information.  If it has, it will update the menu, then display it.  If not, it&#8217;ll just show the menu.  Loading the menu items could take a bit of time, but I&#8217;ve done the best I could to make it as quick as possible.</p>
<p>Second, this release includes the long-awaited folders.  While tear itself doesn&#8217;t allow you to manage folders, bongo&#8217;s bookmark manager should (in the near future) have this option.  Folders show up at the bottom of the menu, below all your bookmarks, and also load dynamically, so they don&#8217;t take time while loading with the main menu.</p>
<p>Third, this release includes some better handling of how to open tear.  It removes the overhead needed to launch the tear executable if tear was already running, and is instead now using dbus directly.  It will also show the &#8220;Loading&#8230;&#8221; information box when launching tear for the first time.</p>
<p>Finally, this release includes bongo&#8217;s bookmark manager, including a shortcut to the bookmark manager in the menu.  This shortcut is placed in the same position as the default bookmark plugin, to mimic the actions of that plugin best.</p>
<p>tearbookmarks 0.3.1-4 is available in extras-devel for diablo only.  If you enable extras-devel to install tearbookmarks, please disable it immediately after.</p>
<div id="attachment_53" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-53" title="shot-tearbkmk031-4-2" src="http://truejournals.com/wp-content/uploads/2009/04/shot-tearbkmk031-4-2-300x180.png" alt="Folders can be infinitely deep" width="300" height="180" /><p class="wp-caption-text">Folders can be infinitely deep</p></div>
<div id="attachment_52" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-52" title="shot-tearbkmk031-4-1" src="http://truejournals.com/wp-content/uploads/2009/04/shot-tearbkmk031-4-1-300x180.png" alt="Bookmark manager can now be launched from the bookmark menu" width="300" height="180" /><p class="wp-caption-text">Bookmark manager can now be launched from the bookmark menu</p></div>
]]></content:encoded>
			<wfw:commentRss>http://truejournals.com/2009/04/22/tearboookmarks-031-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defining Content / &#8220;We don&#8217;t need rules&#8221;</title>
		<link>http://truejournals.com/2009/04/11/defining-content-we-dont-need-rules/</link>
		<comments>http://truejournals.com/2009/04/11/defining-content-we-dont-need-rules/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 00:38:21 +0000</pubDate>
		<dc:creator>TrueJournals</dc:creator>
				<category><![CDATA[maemo]]></category>
		<category><![CDATA[itt]]></category>
		<category><![CDATA[talk.maemo.org]]></category>

		<guid isPermaLink="false">http://truejournals.com/?p=25</guid>
		<description><![CDATA[While I am not officially part of Internet Tablet Talk&#8216;s move to talk.maemo.org, I do like to contribute my opinion to what&#8217;s going on.    Recently, there&#8217;s been some interesting discussion.  Since I&#8217;m very apt to sharing my opinion, but not all of it is suited for sharing in threads on iTT, I&#8217;ll post it [...]]]></description>
			<content:encoded><![CDATA[<p>While I am not officially part of <a title="Internet Tablet Talk Forums" href="http://www.internettablettalk.com/forums" target="_blank">Internet Tablet Talk</a>&#8216;s move to talk.maemo.org, I do like to contribute my opinion to what&#8217;s going on.    Recently, there&#8217;s been some interesting discussion.  Since I&#8217;m very apt to sharing my opinion, but not all of it is suited for sharing in threads on iTT, I&#8217;ll post it here.</p>
<p>First, there&#8217;s the issue of defining what content is.  When the community was informed of the move, we were basically told this: &#8220;There will be no change in content, only the URL and a few cosmetic changes.&#8221;   Looking at the current state of iTT, some may say that &#8220;a few cosmetic changes&#8221; has been taken too far.  While the themes on the forum, as of today, remain the same as always, the whole structure of the forums has been redone.  The work has mostly consisted of renaming forums, and removing multiple, mostly unnecessary subforums, it seems a radical change.  However, is this really considered the content of the forums.  On most websites, a refactoring in the navigation of the website would only be considered a cosmetic change.  All the old content is still there, the path to find it is just slightly different.  So, why is the same not true on iTT?  All the old threads and posts are still there, they&#8217;re just in slightly different places.  The exception to this, however, seems to be the new <a title="Different?" href="http://internettablettalk.com/forums/forumdisplay.php?f=16" target="_blank">maemo.org forum</a>.  However, the old layout had a &#8220;Website/Suggestions&#8221; forum, and because iTT is moving to talk.maemo.org, this now seems like a logical name for the &#8220;Website/Suggestions&#8221; forum.<span id="more-25"></span></p>
<p>However, that&#8217;s not the only cosmetic content change that&#8217;s being made.  The default theme of the forum will soon change, to fit in better with the redesigned <a title="Maemo" href="http://maemo.org" target="_blank">maemo.org</a> theme.  So, there has been a poll on what should be done with the new theme; namely, the header before each post.  First there was a brainstorming thread, then <a title="iTT profile" href="http://internettablettalk.com/forums/member.php?u=1121" target="_blank">General Antilles</a> <a title="Linky" href="http://internettablettalk.com/forums/showthread.php?t=28164" target="_blank">made a poll</a> to see what people wanted, taking ideas from <a title="Linky" href="http://internettablettalk.com/forums/showthread.php?t=27465" target="_blank">the brainstorming thread</a>.  However, he overlooked an option for &#8220;no change&#8221;.  This has made a handful of people angry, because they consider it a change in content.  The counter-argument, <a title="Linky" href="http://internettablettalk.com/forums/showpost.php?p=278614&amp;postcount=48" target="_blank">which has been made in that thread</a>, is the same as above: the content on a forum is the posts that are made, not the metadata that goes with the posts.  If my blog suddenly decided to change date format when showing posts, would that be considered a change in content?  I doubt it.  Most people would be confused at first, and then consider it a small cosmetic change, and continue enjoying my blog posts (:-D).</p>
<p>While on this train of thought, something else occured to me.  On iTT, it is currently possible for a user to change his theme.  On forums, theme changes can be as small as different link colors, or as large as a completely different content layout (however, I&#8217;m now including the order and names of the forums in the word &#8220;content&#8221;).  It should be easy for those who wish to keep the old layout to do so, while the rest of us can move on to the new layout.  Even better would be to create multiple versions of the new layout.  One version could display the new header style (whatever it is), while another could display the more traditional header.</p>
<p>Having beat the content horse to death, it&#8217;s time to move on to another point that has been made.  This time, however, it&#8217;s a bit more personal.  Another idea that has been brough up in the talk of the move was to create a sticky thread that would quickly explain how the forum works to new users.  This is a very common thing to see on forums, and, thinking it was a good idea, I wrote a draft of what I thought the sticky should look like.  I made a new thread, noting that this was a draft, and asking for suggestions on how it could be improved.  After a bit of discussion, <a title="Linky" href="http://internettablettalk.com/forums/showpost.php?p=278800&amp;postcount=10" target="_blank">a post caught my eye</a>:</p>
<blockquote><p>In general, the forum has worked just fine in the past without rigorous rules. If it&#8217;s not broke, don&#8217;t fix it. A list of acceptable acronyms or trying to prevent people from being sloppy suggests an excessive amount of control.</p></blockquote>
<p>(Note: this makes more sense in the <a title="Linky" href="http://internettablettalk.com/forums/showthread.php?t=28109" target="_blank">context of the thread</a>.)  I was surprised by this.  First of all, I did not believe the rules I had written to be &#8220;rigorous,&#8221; more of a quick way to accompany users with how things work.  Now, to deal with the more specific items listed.</p>
<p>The list of acceptable acronyms was more to help new users become acquainted with the lingo used with the ITs (Internet Tablets).  New users might not know that OS stands for Operating System, or that n810w refers to the n810 WiMAX edition.  Writing this post, I see that this should have been a more general &#8220;lingo used here&#8221; wiki page, instead of focusing on specifically acronyms, but that&#8217;s beside the point.  Even experienced users can get confused if one person says uses one term, and another person uses a different term.  This &#8220;rule&#8221; also served to prevent instant messaging acronyms from showing up on the form.  In my opinion, forums should be &#8220;more professional&#8221; than IMs.  When IMing, it&#8217;s perfectly acceptable to type in fragments.  On a forum, however, this should be frowned upon.  When IMing, it&#8217;s perfectly acceptable to use acronyms like &#8220;lol&#8221;.  On a forum, however, this creates content that is hard to read.  This rule was also modeled after the Rockbox forums, where there were fairly strict &#8220;keep it English&#8221; rules, in order to help both blind users, using text-to-speech software, and non-native speakers, who might be using online automatic translators (which work great&#8230; if you use proper grammar).</p>
<p>Actually, that paragraph also covered the second point: trying to prevent people from being sloppy.  While there are appropriate times to be silly in forums, the conversation should be kept as formal as possible.  As previously stated, using standard English also helps users who aren&#8217;t native speakers, or might be using text-to-speech software.</p>
<p>So, do we need rules?  Perhaps not strict rules, but a set of guidlines should be outlined, I think.  Most of my &#8220;rules&#8221; were more meant to be guidlines, anyway.  The intent is not to scold people for not following some arbitrary guideline, but to keep order.  I was not envisioning people being warned or banned for using acronyms that aren&#8217;t considered acceptable, just some gentle nudges from others in the community to keep things standard between members.  I never meant to imply that the system was &#8220;broken,&#8221; just to put into words what the community had already been enacting, making it easier for new users to become acquainted.</p>
]]></content:encoded>
			<wfw:commentRss>http://truejournals.com/2009/04/11/defining-content-we-dont-need-rules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mcedit</title>
		<link>http://truejournals.com/2009/04/10/mcedit/</link>
		<comments>http://truejournals.com/2009/04/10/mcedit/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 19:17:53 +0000</pubDate>
		<dc:creator>TrueJournals</dc:creator>
				<category><![CDATA[maemo]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[mcedit]]></category>

		<guid isPermaLink="false">http://truejournals.com/?p=22</guid>
		<description><![CDATA[mcedit is designed to make editing the system file /etc/mce/mce.ini easier.  It exposes via GUI some interesting configuration options that are normally hidden away.  It is a work in progress, and is not yet feature-complete, and should not be used by most people yet.  I take no responsibility if anything bad happens to your tablet [...]]]></description>
			<content:encoded><![CDATA[<p>mcedit is designed to make editing the system file /etc/mce/mce.ini easier.  It exposes via GUI some interesting configuration options that are normally hidden away.  It is a work in progress, and is not yet feature-complete, and should not be used by most people yet.  I take no responsibility if anything bad happens to your tablet while using this program.  It is my first python programming using all pure python and GTK, no glade file.</p>
<p>It is available in maemo extras-devel for diablo.  A download link will be provided when mcedit is end-user ready, and in extras.  For now, you&#8217;ll just have to live with a screenshot.</p>
<div id="attachment_23" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-23" title="mcedit screenshot" src="http://truejournals.com/wp-content/uploads/2009/04/mc-ss-300x180.png" alt="mcedit screenshot" width="300" height="180" /><p class="wp-caption-text">mcedit screenshot</p></div>
]]></content:encoded>
			<wfw:commentRss>http://truejournals.com/2009/04/10/mcedit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pyRdesktop 1.5.0-6 / rdesktop-cli 1.6.3-maemo2</title>
		<link>http://truejournals.com/2009/04/10/pyrdesktop-150-6-rdesktop-cli-163-maemo2/</link>
		<comments>http://truejournals.com/2009/04/10/pyrdesktop-150-6-rdesktop-cli-163-maemo2/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 19:12:05 +0000</pubDate>
		<dc:creator>TrueJournals</dc:creator>
				<category><![CDATA[maemo]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[glade]]></category>
		<category><![CDATA[pyrdesktop]]></category>
		<category><![CDATA[rdesktop-cli]]></category>

		<guid isPermaLink="false">http://truejournals.com/?p=19</guid>
		<description><![CDATA[Since pyRdesktop depends on rdesktop-cli, this post contains information about both.  The reason for two separate packages is twofold: one, so that I can push updates for each application separately; two, so that those who just want the CLI version of rdesktop can get that. pyRdesktop is a new frontend for rdesktop, designed to be [...]]]></description>
			<content:encoded><![CDATA[<p>Since pyRdesktop depends on rdesktop-cli, this post contains information about both.  The reason for two separate packages is twofold: one, so that I can push updates for each application separately; two, so that those who just want the CLI version of rdesktop can get that.</p>
<p>pyRdesktop is a new frontend for rdesktop, designed to be optimized to work on the internet tablets.  It features all the basic options, some advanced options, and support for multiple remote desktop profiles (in case you have multiple computers/ip addresses).  On clicking &#8220;connect&#8221;, it simply runs rdesktop-cli.  While it does not allow full control over what parameters are passed to rdesktop-cli, it gives options for the most popular.</p>
<p>pyrdesktop is available in maemo extras (diablo and chinook).  <a title="pyrdesktop download link" href="http://repository.maemo.org/extras/pool/diablo/free/p/pyrdesktop/pyrdesktop_1.5.0-6_all.deb">Direct download link</a></p>
<div id="attachment_20" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-20" title="pyrdesktop screenshot" src="http://truejournals.com/wp-content/uploads/2009/04/pr-ss-300x180.png" alt="pyrdesktop screenshot" width="300" height="180" /><p class="wp-caption-text">pyrdesktop screenshot</p></div>
<p>rdesktop-cli is, as the name suggests, the command line rdesktop client.  It has some hildonization (which isn&#8217;t perfect).  The package is intended to be used in conjunction with pyrdesktop.</p>
<p>rdesktop-cli is available in maemo extras (chinook and diablo).  <a title="rdesktop-cli download" href="http://repository.maemo.org/extras/pool/diablo/free/r/rdesktop-cli/rdesktop-cli_1.6.3-maemo2_armel.deb">Direct download link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://truejournals.com/2009/04/10/pyrdesktop-150-6-rdesktop-cli-163-maemo2/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Tip Calculator 1.3.0-5</title>
		<link>http://truejournals.com/2009/04/10/tip-calculator-130-5/</link>
		<comments>http://truejournals.com/2009/04/10/tip-calculator-130-5/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 19:00:28 +0000</pubDate>
		<dc:creator>TrueJournals</dc:creator>
				<category><![CDATA[maemo]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[glade]]></category>
		<category><![CDATA[tipcalculator]]></category>

		<guid isPermaLink="false">http://truejournals.com/?p=15</guid>
		<description><![CDATA[A simple tip calculator written in python and glade, designed for maemo.  Features include support for calculating tip before tax, then adding tax (as a percentage, or a price), and splitting the bill between multiple people. Tip Calculator is available for download in maemo extras (diablo only), but should work on all versions of maemo.  [...]]]></description>
			<content:encoded><![CDATA[<p>A simple tip calculator written in python and glade, designed for maemo.  Features include support for calculating tip before tax, then adding tax (as a percentage, or a price), and splitting the bill between multiple people.</p>
<p>Tip Calculator is available for download in maemo extras (diablo only), but should work on all versions of maemo.  <a title="Tip Calculator Download" href="http://repository.maemo.org/extras/pool/diablo/free/t/tipcalculator/tipcalculator_1.3.0-5_all.deb">Download link</a></p>
<div id="attachment_16" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-16" title="Tip Calculator Screenshot" src="http://truejournals.com/wp-content/uploads/2009/04/tc-ss-300x180.png" alt="Tip Calculator Screenshot" width="300" height="180" /><p class="wp-caption-text">Tip Calculator Screenshot</p></div>
]]></content:encoded>
			<wfw:commentRss>http://truejournals.com/2009/04/10/tip-calculator-130-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weight Watchers Calculator 1.1.0-1</title>
		<link>http://truejournals.com/2009/04/10/weight-watchers-calculator-110-1/</link>
		<comments>http://truejournals.com/2009/04/10/weight-watchers-calculator-110-1/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 18:51:25 +0000</pubDate>
		<dc:creator>TrueJournals</dc:creator>
				<category><![CDATA[maemo]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[glade]]></category>
		<category><![CDATA[weightwatchers]]></category>

		<guid isPermaLink="false">http://truejournals.com/?p=9</guid>
		<description><![CDATA[This is a simple calculator for Nokia Internet Tablets to calculate weight watchers points.  Simply input the calories, grams of fat, and dietary fiber in the food, and click &#8220;calculate points&#8221;. The weight watchers calculator is written in python and glade, and available in maemo extras for diablo, however, it should work on any version [...]]]></description>
			<content:encoded><![CDATA[<p>This is a simple calculator for Nokia Internet Tablets to calculate weight watchers points.  Simply input the calories, grams of fat, and dietary fiber in the food, and click &#8220;calculate points&#8221;.</p>
<p>The weight watchers calculator is written in python and glade, and available in maemo extras for diablo, however, it should work on any version of maemo.  <a title="Weight Watchers Calculator Download" href="http://repository.maemo.org/extras/pool/diablo/free/w/weightwatchers/weightwatchers_1.1.0-1_all.deb">Direct download link</a></p>
<div id="attachment_10" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-10" title="WeightWatchers Screenshot" src="http://truejournals.com/wp-content/uploads/2009/04/ww-ss-300x180.png" alt="Weight Watchers Calculator Screenshot" width="300" height="180" /><p class="wp-caption-text">Weight Watchers Calculator Screenshot</p></div>
]]></content:encoded>
			<wfw:commentRss>http://truejournals.com/2009/04/10/weight-watchers-calculator-110-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
