<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>qt &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/qt/</link>
	<description>Feed of posts on WordPress.com tagged "qt"</description>
	<pubDate>Mon, 30 Nov 2009 07:42:20 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Alcuni spostamenti in KDE]]></title>
<link>http://toastedtech.wordpress.com/2009/11/29/alcuni-spostamenti-in-kde/</link>
<pubDate>Sun, 29 Nov 2009 21:13:31 +0000</pubDate>
<dc:creator>montoya</dc:creator>
<guid>http://toastedtech.wordpress.com/2009/11/29/alcuni-spostamenti-in-kde/</guid>
<description><![CDATA[Se siete dei fan di KDevelop, allora dovete sapere che i sorgenti non sono più in trunk/KDE, ma in t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Se siete dei fan di <a href="http://www.kdevelop.org/">KDevelop</a>, allora dovete sapere che i sorgenti non sono più in trunk/KDE, ma in trunk/extragear/sdk: stessa cosa vale per KDevPlatform e <a href="http://quanta.kdewebdev.org/">Quanta</a>. Con questa mossa, gli sviluppatori non avranno più l&#8217;acqua alla gola riguardo scadenze ufficiali e quant&#8217;altro.</p>
<p><a href="http://toastedtech.wordpress.com/files/2009/11/peso.jpg"><img class="aligncenter size-full wp-image-1953" title="peso" src="http://toastedtech.wordpress.com/files/2009/11/peso.jpg" alt="" width="344" height="281" /></a></p>
<p>Questi annunciano inoltre che, il possibile rilascio di KDevelop 4.0, avverrà probabilmente verso la fine di <a href="http://apaku.wordpress.com/2009/11/29/kdevelop4-moved/">marzo 2010</a>.</p>
<p>Un altro spostamento di minore importanza riguarda il mitico plugin <a href="http://kate-editor.org/katepart">katepart</a> denominato <a href="http://toastedtech.wordpress.com/2009/08/06/incrementare-la-produttivita-di-katekdevelop/">autobrace</a>, che è stato incluso addirittura in kdelibs <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ammetto che questo post interesserà al massimo a 5-6 persone su 6G totali&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> :D</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Building Qt Applications using your favorite text editor]]></title>
<link>http://msoos.wordpress.com/2009/11/28/building-qt-applications-using-your-favorite-text-editor/</link>
<pubDate>Sat, 28 Nov 2009 16:17:25 +0000</pubDate>
<dc:creator>Madhat Alsoos</dc:creator>
<guid>http://msoos.wordpress.com/2009/11/28/building-qt-applications-using-your-favorite-text-editor/</guid>
<description><![CDATA[I have used C++ for about 5 years now, and it is really a very powerful programming language. But I ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I have used C++ for about 5 years now, and it is really a very powerful programming language. But I found one big disadvantage; it is too hard to make a C++ GUI. I used to do that by Windows API, but it is difficult to learn and I can’t learn my students all Windows API concepts for just making some forms and buttons!</p>
<p>Recently I heard about Qt and decided to learn it. As usual I stuck at the beginning; how could I build a Qt Application? and as usual too I do it my way <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h2 style="font-size:26px;">Building Qt Applications using Notepad</h2>
<p>If your favorite text editor is still Notepad!, you must build your Qt Applications using command line.</p>
<p>To let it easy to you, I made a batch file depends on what compiler you want to use to build Qt Applications.</p>
<h3><strong>Building Qt Opensource Version using MingW</strong></h3>
<p>If you are using Qt Opensource Version you can use this batch file to build and run Qt Applications:</p>
<blockquote><div style="background-color:#e1e1e1;width:509px;height:285px;border-width:1px;" class="style1">::::::::::::::::::::::: This is Qt building batch by Madhat Alsoos :::::::::::::::::::::::      <br />:: First argument is the directory of the project       <br />:: Second argument is the name of the cpp file without .cpp       </p>
<p>@echo off       <br />cd %1       <br />set QTDIR=%1       <br />set PATH=C:\Qt\2009.04\qt\bin;C:\Qt\2009.04\bin;C:\Qt\2009.04\mingw\bin;C:\WINDOWS\System32;%PATH%       <br />set QMAKESPEC=win32-g++       <br />qmake -project       <br />qmake       <br />mingw32-make.exe       <br />IF not ERRORLEVEL 1 start debug\%2.exe </div>
</blockquote>
<p>You can use this batch by passing the directory of the .cpp file and its name like this:</p>
<blockquote><div style="background-color:#e1e1e1;width:509px;height:24px;border-width:1px;" class="style1">build.bat c:\qt\test\helloworld helloworld</div>
</blockquote>
<p> It is so easy! First set Qt base directory to directory of file which we want to build (which will be passed as an argument to this batch file), then add Qt installation directory to the PATH system variable (just in case) and set QMAKESPEC to win32-g++ which tells Qt that it should make the project for g++ compiler. After that we make the .pro file (Qt project file) and compile it using mingw32 (which came by default with your Qt open source verison).
</p>
<p>Note that you must change Qt path in this batch to where you installed Qt, or simply add your Qt bin folders to PATH system variable.</p>
<h3><strong>Building Qt Commercial Version using Visual Studio</strong></h3>
<p>If you are using Qt Commercial Version you can use this batch file to build and run Qt Applications:</p>
<p> <!--more--><br />
<blockquote>
<div style="background-color:#e1e1e1;width:509px;height:302px;border-width:1px;" class="style1">::::::::::::::::::::::: This is Qt building batch by Madhat Alsoos :::::::::::::::::::::::      <br />:: First argument is the directory of the project       <br />:: Second argument is the name of the cpp file without .cpp       </p>
<p>@echo off       <br />cd %1       <br />set QTDIR=%1       <br />set PATH=C:\Qt\4.4.3\bin;C:\Program Files\Microsoft Visual Studio 9.0\VC\bin;%PATH%       <br />set QMAKESPEC=win32-msvc2008       <br />call &#34;C:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools\vsvars32.bat&#34;       <br />qmake -project       <br />qmake       <br />nmake       <br />IF not ERRORLEVEL 1 start debug\%2.exe </div>
</blockquote>
<p>You can use this batch by passing the directory of the .cpp file and its name like this:</p>
<blockquote><div style="background-color:#e1e1e1;width:509px;height:24px;border-width:1px;" class="style1">build.bat c:\qt\test\helloworld helloworld</div>
</blockquote>
<p>As you see, I used nmake to build and link the Qt Application which means that you must have Visual Studio installed on your computer to use this batch file. If your using Commercial Version and you don’t have Visual Studio on your computer you can install MingW and use the first batch file which should work in this case too.</p>
<p>Note that you must change Qt path and Visual Studio path in this batch to where you installed them, or simply add you Qt bin folder and Visual Studio bin folder to PATH system variable.</p>
<h2 style="font-size:26px;">Building Qt Applications using EmEditor</h2>
<p>If your favorite text editor is EmEditor, you can make a small button at EmEditor Tools Toolbar and call any of the above batches in it.</p>
<p>Just open EmEditor and go to Tools &#62; External Tools &#62; Customize Tools and click New button, and fill in fields like this:</p>
<p align="center"><img style="display:inline;border-width:0;" title="EmEditor Build Qt Button" border="0" alt="EmEditor Build Qt Button" src="http://msoos.files.wordpress.com/2009/11/emeditorbuildqt.jpg?w=502&#038;h=404" width="502" height="404" /> </p>
</p>
<p>Then you will find a small button in EmEditor Tools Toolbar which will do all things for you:</p>
<p align="center"><img style="display:inline;border-width:0;" title="EmEditor Qt" border="0" alt="EmEditor Qt" src="http://msoos.files.wordpress.com/2009/11/emeditorqt.jpg?w=543&#038;h=651" width="543" height="651" /> </p>
</p>
<h2 style="font-size:26px;">Building Qt Applications using Notepad++</h2>
<p>If your favorite text editor is Notepad++ then you are my man, so I made a Notepad++ plugin named QtNpp just for you <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>You can download it (and even change the way it build your Qt Applications) from my post “<a href="http://msoos.wordpress.com/2009/11/28/qtnpp-notepad-plugin-to-build-qt-applications/" target="_blank">QtNpp: Notepad++ Plugin to build Qt Applications</a>”.</p>
<p align="center">&#160;<img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="Notepad++ Qt" border="0" alt="Notepad++ Qt" src="http://msoos.files.wordpress.com/2009/11/notepadqt1.jpg?w=543&#038;h=646" width="543" height="646" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[QtNpp: Notepad++ Plugin to build Qt Applications]]></title>
<link>http://msoos.wordpress.com/2009/11/28/qtnpp-notepad-plugin-to-build-qt-applications/</link>
<pubDate>Sat, 28 Nov 2009 16:03:53 +0000</pubDate>
<dc:creator>Madhat Alsoos</dc:creator>
<guid>http://msoos.wordpress.com/2009/11/28/qtnpp-notepad-plugin-to-build-qt-applications/</guid>
<description><![CDATA[I really love Qt and began to learn it recently, but I didn’t find a way to build Qt files from insi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I really love Qt and began to learn it recently, but I didn’t find a way to build Qt files from inside Notepad++ so as usual I made mine <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>QtNpp is my Notepad++ plugin to build and run Qt applications.</p>
<p align="center">&#160;<img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="Notepad++  Qt" border="0" alt="Notepad++  Qt" src="http://msoos.files.wordpress.com/2009/11/notepadqt.jpg?w=543&#038;h=646" width="543" height="646" /> </p>
<h2 style="font-size:26px;">The idea</h2>
<p>The idea of QtNpp is simple; just build the file by using these lines:</p>
<blockquote><div style="background-color:#e1e1e1;width:509px;height:167px;border-width:1px;" class="style1">@echo off      <br />set QTDIR=%1       <br />set PATH=C:\Qt\2009.04\qt\bin;C:\Qt\2009.04\bin;C:\Qt\2009.04\mingw\bin;C:\WINDOWS\System32;%PATH%       <br />set QMAKESPEC=win32-g++       <br />qmake -project       <br />qmake       <br />mingw32-make.exe</div>
</blockquote>
<p>but the implementation of QtNpp is not that simple!</p>
<p>By default QtNpp try to build Qt files by using the above script which works in one of these cases:</p>
<p> <!--more-->
<ol>
<li>You have Qt opensource edition installed at the default path: C:\Qt\2009.04 </li>
<li>You have Qt opensource edition installed at another path and this installation path was added to PATH system variables. </li>
<li>You have Qt Commercial edition and you manually installed MingW and both installation paths was added to PATH system variables. </li>
</ol>
<p>What if that is not the case? If my QtNpp doesn’t work by default, don’t worry you can change the building script yourself!</p>
<p>Just create QtNpp.ini in &#60;Notepad++ installation folder&#62;/plugins/Config and QtNpp will execute QtNpp.ini file as a batch and passing the folder of Qt file and the filename to it.</p>
<p>Yes, that is you can put the above script in QtNpp.ini and change whatever you want to change in it, and QtNpp will execute your new script instead of its one!</p>
<h2 style="font-size:26px;">Looking inside</h2>
<p>I used <a href="http://notepad-plus.sourceforge.net/commun/pluginDemoTemplate/NppPluginTemplate.zip" target="_blank">this template</a> as a start of my QtNpp, also I read the source of some free Notepad++ plugins to learn from.</p>
<p>The build and run function of QtNpp is:</p>
<p>
<pre class="brush: cpp;">
void buildAndRun()
{
	//Save current opened file first
	::SendMessage(nppData._nppHandle, NPPM_SAVECURRENTFILE, NULL,NULL);
	//Get directory and filename of the opened file
	String directory = getCurrentFilePath();
	String filename = getCurrentFileName();
	String command = getBuildCommand(filename,directory,true);
	//Build and run opened file
	RunCommand(filename,directory,command);
}
</pre>
</p>
<p>Here I get the build commands by getBuildCommand and then run these commands with RunCommand function, which replace %1 with directory path and %2 with filename and save them in bat file and execute it by calling ExecuteBatch function:</p>
<p>
<pre class="brush: cpp;">
String ExecuteBatch (String filename,String directory,const char* path)
{
	CreateRedirectedProcess((LPTSTR)TEXT(path),(LPTSTR)TEXT(directory.c_str()));
	String s=ReadFromPipe(showText);
	return s;
}
</pre>
</p>
<p>You can see that I run the batch file in a new process and then read its output from the redirected pipe and send it to NppExec console to print it (which is a Notepad++ plugin comes by default with Notepad++).</p>
<p>
<pre class="brush: cpp;">
int CreateRedirectedProcess(LPTSTR szCmdline,LPTSTR directory)
{
   SECURITY_ATTRIBUTES saAttr; 

   saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
   saAttr.bInheritHandle = TRUE;
   saAttr.lpSecurityDescriptor = NULL; 

   if ( ! CreatePipe(&#38;g_hChildStd_OUT_Rd, &#38;g_hChildStd_OUT_Wr, &#38;saAttr, 0) )
      ErrorExit(TEXT(&#34;StdoutRd CreatePipe&#34;)); 

   if ( ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0) )
      ErrorExit(TEXT(&#34;Stdout SetHandleInformation&#34;)); 

   if (! CreatePipe(&#38;g_hChildStd_IN_Rd, &#38;g_hChildStd_IN_Wr, &#38;saAttr, 0))
      ErrorExit(TEXT(&#34;Stdin CreatePipe&#34;)); 

   if ( ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
      ErrorExit(TEXT(&#34;Stdin SetHandleInformation&#34;)); 

   CreateChildProcess(szCmdline,directory);

   return 0;
} 

void CreateChildProcess(LPTSTR szCmdline,LPTSTR directory)
{ 

   STARTUPINFO siStartInfo;
   BOOL bSuccess = FALSE;
   ZeroMemory( &#38;piProcInfo, sizeof(PROCESS_INFORMATION) );
   ZeroMemory( &#38;siStartInfo, sizeof(STARTUPINFO) );
   siStartInfo.cb = sizeof(STARTUPINFO);
   siStartInfo.hStdError = g_hChildStd_OUT_Wr;
   siStartInfo.hStdOutput = g_hChildStd_OUT_Wr;
   siStartInfo.hStdInput = g_hChildStd_IN_Rd;
   siStartInfo.dwFlags &#124;= STARTF_USESTDHANDLES;
   siStartInfo.wShowWindow=SW_HIDE;

   // Create the child process.
   bSuccess = CreateProcess(NULL,
      szCmdline,     // command line
      NULL,          // process security attributes
      NULL,          // primary thread security attributes
      TRUE,          // handles are inherited
      CREATE_NO_WINDOW,             // creation flags
      NULL,          // use parent's environment
      directory,          // use parent's current directory
      &#38;siStartInfo,  // STARTUPINFO pointer
      &#38;piProcInfo);  // receives PROCESS_INFORMATION 

   if ( ! bSuccess )
      ErrorExit(TEXT(&#34;CreateProcess&#34;));
   else
   {
      CloseHandle(piProcInfo.hProcess);
      CloseHandle(piProcInfo.hThread);
   }
}
</pre>
</p>
<p>Here I redirect the output by creating a pipe and pass it to process using siStartInfo.hStdOutput. Also I hide the console window by using CREATE_NO_WINDOW flag in CreateProcess.</p>
<h2 style="font-size:26px;">Configure QtNpp</h2>
<p>As I said above if QtNpp doesn’t work by default with you, just create QtNpp.ini and put all commands you need to build Qt on your PC in it.</p>
<p>I suggest to take these QtNpp.ini as a start:</p>
<h3><strong>QtNpp.ini for MingW</strong></h3>
<blockquote><div style="background-color:#e1e1e1;width:509px;height:166px;border-width:1px;" class="style1">@echo off      <br />set QTDIR=%1       <br />set PATH=C:\Qt\2009.04\qt\bin;C:\Qt\2009.04\bin;C:\Qt\2009.04\mingw\bin;C:\WINDOWS\System32;%PATH%       <br />set QMAKESPEC=win32-g++       <br />qmake -project       <br />qmake       <br />mingw32-make.exe</div>
</blockquote>
<h3><strong>QtNpp.ini for Visual Studio</strong></h3>
<blockquote><div style="background-color:#e1e1e1;width:509px;height:186px;border-width:1px;" class="style1">@echo off      <br />set QTDIR=%1       <br />set PATH=C:\Qt\4.4.3\bin;C:\Program Files\Microsoft Visual Studio 9.0\VC\bin;%PATH%       <br />set QMAKESPEC=win32-msvc2008       <br />call &#34;C:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools\vsvars32.bat&#34;       <br />qmake -project       <br />qmake       <br />nmake </div>
</blockquote>
<p>Just replace fixed paths in QtNpp.ini with paths on your computer or add them to PATH system variable.</p>
<p>You may notice that you can build any kind of files with this plugin (not only Qt) because when you make QtNpp.ini, my plugin turns into executer for it only!</p>
<h2 style="font-size:26px;">Download</h2>
<p>You can download QtNpp dll and sourcecode under GNU License:</p>
<blockquote><table style="border-left:#000000 1px solid;border-top:#000000 1px solid;" border="1" cellspacing="0" cellpadding="2" width="506">
<tbody>
<tr>
<td style="border-bottom:#000000 1px solid;background-color:#808080;color:#ffffff;border-right:#000000 1px solid;" valign="top" width="139">QtNpp dll</td>
<td style="border-bottom:#000000 1px solid;border-right:#000000 1px solid;" valign="top" width="365"><a href="http://fancyfile.com/sites/default/files/QtNppPlugin.zip" target="_blank">QtNppPlugin.zip</a></td>
</tr>
<tr>
<td style="border-bottom:#000000 1px solid;background-color:#808080;color:#ffffff;border-right:#000000 1px solid;" valign="top" width="139">QtNpp source</td>
<td style="border-bottom:#000000 1px solid;border-right:#000000 1px solid;" valign="top" width="365"><a href="http://fancyfile.com/sites/default/files/QtNpp.zip" target="_blank">QtNpp.zip</a></td>
</tr>
<tr>
<td style="border-bottom:#000000 1px solid;background-color:#808080;color:#ffffff;border-right:#000000 1px solid;" valign="top" width="139">QtNpp.ini for MingW</td>
<td style="border-bottom:#000000 1px solid;border-right:#000000 1px solid;" valign="top" width="365"><a href="http://fancyfile.com/sites/default/files/QtNpp_MingW.zip" target="_blank">QtNpp_MingW.zip</a></td>
</tr>
<tr>
<td style="border-bottom:#000000 1px solid;background-color:#808080;color:#ffffff;border-right:#000000 1px solid;" valign="top" width="139">QtNpp.ini for VS</td>
<td style="border-bottom:#000000 1px solid;border-right:#000000 1px solid;" valign="top" width="365"><a href="http://fancyfile.com/sites/default/files/QtNpp_VS.zip" target="_blank">QtNpp_VS.zip</a></td>
</tr>
<tr>
<td style="border-bottom:#000000 1px solid;background-color:#808080;color:#ffffff;border-right:#000000 1px solid;" valign="top" width="139">License</td>
<td style="border-bottom:#000000 1px solid;border-right:#000000 1px solid;" valign="top" width="365"><a href="http://www.gnu.org/licenses/gpl.html" target="_blank">GNU General Public License</a></td>
</tr>
</tbody>
</table>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[pink stanley thermos, 1/2 qt]]></title>
<link>http://stainlessthermosbottle.wordpress.com/2009/11/27/pink-stanley-thermos-12-qt/</link>
<pubDate>Fri, 27 Nov 2009 20:13:38 +0000</pubDate>
<dc:creator>banrong36</dc:creator>
<guid>http://stainlessthermosbottle.wordpress.com/2009/11/27/pink-stanley-thermos-12-qt/</guid>
<description><![CDATA[Buy Cheap Pink Stanley Thermos, 1/2 Qt Buy Low Price From Here Now Thermos is 100% stainless steel c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><b>Buy Cheap  Pink Stanley Thermos, 1/2 Qt  </b><br /><a href="http://www.amazon.com/dp/B002J7AN9U?tag=ninesucom-20"><img src='http://ecx.images-amazon.com/images/I/31HJdXvivZL.jpg' width='300'></a><br /><a href="http://www.amazon.com/dp/B002J7AN9U?tag=ninesucom-20"><font size="5"><b>Buy  Low Price From Here Now </b></font></a><br />Thermos is 100% stainless steel construction. Durable rust proof finish. Exclusive Char-Vac technology for superior insulation and durability. Features and easy pour stopper and wide mouth opening that is big enough for ice cubes. Easy to clean&#8230;&#8230;..<br style="clear:both;"><a href="http://www.amazon.com/dp/B002J7AN9U?tag=ninesucom-20"><b> Readmore </b></a><br />
<h2>Technical Details</h2>
<p><a href="http://www.amazon.com/dp/B002J7AN9U?tag=ninesucom-20"><b>See more technical details </b></a><!--more--></p>
<p><b>Images Product</b><br /><a target='_blank' href='http://ecx.images-amazon.com/images/I/31HJdXvivZL.jpg'><img src='http://ecx.images-amazon.com/images/I/31HJdXvivZL.jpg' width='240px' border='0' /></a><br /><a href="http://www.amazon.com/dp/B002J7AN9U?tag=ninesucom-20"><font size="2"><b>Buy Pink Stanley Thermos, 1/2 Qt Now </b></font></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Small update: Power management bug week(s)]]></title>
<link>http://drfav.wordpress.com/2009/11/27/small-update-power-management-bug-weeks/</link>
<pubDate>Fri, 27 Nov 2009 16:37:31 +0000</pubDate>
<dc:creator>drfav</dc:creator>
<guid>http://drfav.wordpress.com/2009/11/27/small-update-power-management-bug-weeks/</guid>
<description><![CDATA[Hello people, long time no blog. I have a lot of interesting news for you, I will write a couple of ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello people, long time no blog.</p>
<p>I have a lot of interesting news for you, I will write a couple of posts in the next days about them. Today I just wanted to give out a small quick update on Power Management, following the <a href="http://vizzzion.org/blog/2009/11/battery-improvements-in-kde-plasma-4-4/">drill of Sebastian</a></p>
<p>So, for the next 2 weeks (and given the freeze time) I happily try to declare and organize the Power Management bug weeks! 2 weeks in which I will dedicate to clear out the list of bugs in Powerdevil and Solid::PowerManagement. Of course I will need your help. It would be nice to have a &#8220;central&#8221; day, like a small powermanagement bug day in the middle of that. Since I never did such a thing, it would be nice to have some info/help from our bugsquad.</p>
<p>In the meanwhile, if you feel like closing some duplicates, reproducing and providing more information on existing bugs, it would be an extremely valuable help.</p>
<p>More news on completely different stuff coming up soon, stay tuned <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Qt 4.6: in arrivo a dicembre....anche su Symbian ]]></title>
<link>http://niki382.wordpress.com/2009/11/26/qt-4-6-in-arrivo-a-dicembre-anche-su-symbian/</link>
<pubDate>Thu, 26 Nov 2009 19:40:51 +0000</pubDate>
<dc:creator>nik382</dc:creator>
<guid>http://niki382.wordpress.com/2009/11/26/qt-4-6-in-arrivo-a-dicembre-anche-su-symbian/</guid>
<description><![CDATA[E&#8217;  apparso in rete un video che illustra un trailer della release di Qt 4.6 e ne annuncia l]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">E&#8217;  apparso in rete un video che illustra un trailer della release di Qt 4.6 e ne annuncia l&#8217;arrivo per la prima settimana di dicembre compresa una versione anche per Symbian</p>
<p style="text-align:justify;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/EURONfIqJ6o&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/EURONfIqJ6o&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p style="text-align:justify;">Qt rappresenterà una ventata d&#8217;aria fresca per i nostri Symbian? Speriamo!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[I'm KDE. We're KDE]]></title>
<link>http://loumalouomega.wordpress.com/2009/11/25/im-kde-were-kde/</link>
<pubDate>Wed, 25 Nov 2009 14:31:18 +0000</pubDate>
<dc:creator>loumalouomega</dc:creator>
<guid>http://loumalouomega.wordpress.com/2009/11/25/im-kde-were-kde/</guid>
<description><![CDATA[Nueva propuesta de promoción del mejor desktop del mundo,KDE, y además no tiene excusa ya que es mul]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter" src="http://1.bp.blogspot.com/__JNFVYfijS4/SwyUplpM0aI/AAAAAAAAAt4/7j5iINSIWF8/s1600/rect2816.png" alt="" width="600" height="195" /></p>
<p>Nueva propuesta de promoción del mejor desktop del mundo<a href="http://www.kde.org/">,KDE</a>, y además no tiene excusa ya que es multiplataforma, <a href="http://windows.kde.org/">Windows incluido</a>.</p>
<p>Aquí una muestra:</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/coVWJYms_Mc&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/coVWJYms_Mc&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[1st Corinthians 13:7d]]></title>
<link>http://danleedotcom.wordpress.com/2009/11/24/1st-corinthians-137d/</link>
<pubDate>Tue, 24 Nov 2009 16:01:56 +0000</pubDate>
<dc:creator>danleedotcom</dc:creator>
<guid>http://danleedotcom.wordpress.com/2009/11/24/1st-corinthians-137d/</guid>
<description><![CDATA[1st Corinthians 13:7d. &#8220;… endures all things …&#8221; This is the hardest call to be made for ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1st Corinthians 13:7d.</p>
<p>&#8220;… endures all things …&#8221;</p>
<p>This is the hardest call to be made for a believer being challenged to love.  There are a few things about this verse that really strike me, but even before getting to that, I fear there is a great misconception about this particular call we have, as Paul writes to the church in Corinth.  At face value, much like the call to bear, believe, and hope, the object that is described here is &#8220;all things,&#8221; and I think all things as I have been studying the last few days, is a matter of proper perspective.  Clearly we are not meant to believe everything, bear everything, hope in everything, since there is plenty in this world that would cause us great harm, should we blindly take that interpretation of the passage.  Instead, the object of our endurance, is instead the motive and reasoning behind that endurance.  I argue that enduring all things is a matter of understanding our place before God.  Knowing for whom, and by whom, and through whom we are living, is literally the only thing we as humans need to endure anything.  For example, why endure through a long line at best buy to check out, the reason is because you know that by enduring, you&#8217;ll eventually be able to pay and get what you want.  Why endure through work every day from 8 to 5?  Because you know you&#8217;ll eventually get paid for it.  Our motivations drive us. </p>
<p>Now, in the case of enduring things, we are very selective about our endurance.  It goes to show that our interpretation of &#8216;endures all things,&#8217; can more readily be translated to &#8216;endures selective things.&#8217;  There&#8217;s a reason why Paul, begins this list with bears all things, then ends it with endures all things.  The meaning is similar, but different as well.  To bear something is a matter of having the brunt of life&#8217;s reality and the truth of gospel together, as something we bear, and take on.  The endurance aspect is one that is set to last a while.  To bear is to live through the initial hits of life&#8217;s difficulties and struggles as a believer, while the endurance aspect is one that is long suffering and persevering.  Now both are necessary since the initial hit of difficult circumstances in our lives can simply crush us under their weight and pressure, so we are called to love in such a way that gives us remedy to brace against those hits.  At the same time, we are meant to endure through those things, should they persist.  Almost everything in life maintains its difficulty, and is mitigated over a long period of time.  With that said, Paul is admonishing us to be believers who bear the brunt of the initial hits, and endure through the inevitable persistence of those circumstances. </p>
<p>It is important to be reminded that enduring all things, doesn&#8217;t mean that believers are to become punching bags for everyone around them.  But I think in the context of living with patience and love for people, it does mean believers are called to endure through things in such a way that the gospel wins, that the message and love of Christ is exuded to others, and the kingdom wins.  That may seem like a very general mindset to have, and hard to apply in the moment, but if life was simply about rule following, God would have made it so.  The ability to have motivation for doing things negates the mere rule following mentality, since it is our heart that dictates whether or not it has any substance to the kingdom of not.  More of Christ… means more of Him in my life, means more of the natural understanding of what &#8216;all things&#8217; means to me, as I am called to bear, believe, hope, and endure all things so that the gospel can win.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[1st Corinthians 13:7c]]></title>
<link>http://danleedotcom.wordpress.com/2009/11/23/1st-corinthians-137c/</link>
<pubDate>Mon, 23 Nov 2009 15:11:36 +0000</pubDate>
<dc:creator>danleedotcom</dc:creator>
<guid>http://danleedotcom.wordpress.com/2009/11/23/1st-corinthians-137c/</guid>
<description><![CDATA[1st Corinthians 13:7c. &#8220;… hopes all things …&#8221; There is a matter of many different aspect]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1st Corinthians 13:7c.</p>
<p>&#8220;… hopes all things …&#8221;</p>
<p>There is a matter of many different aspects of our lives giving us reason to doubt, and giving us reason not to explore the truth that is our God.  There are also many reasons why in our lives, we can very readily lose hope, and lose proper perspective on life in such a way that our belief in the one and only powerful God is enough for us.  Paul admonishing the church at Corinth again speaks with conviction.  After declaring that truth is what love is all about, and noting how love bears all things, believes all things are under Christ, Paul now denotes the need for love to hope in all things.</p>
<p>As mentioned in yesterday&#8217;s QT, the object of our hope is not merely all things, but in the character of God, in the object that is the unconditional love of our Father.  In the realm of everything that we come into contact with in our lives, to hope in all of those things seems like a very unfit and unproductive way to live your life.  And indeed, this passage is not calling us to do that at all.  But in the things that are going on in our life, our hope is to remain in the steadfast love of God, who watches over us, protects us, and guides us through the most difficult of life&#8217;s circumstances. </p>
<p>Hope is not merely a function of what is believable to us, which is why Paul preceded this statement with how love believes all things.  But hope is instead a measure of what truth is.  And the truth of our lives, and of the life of every non-Christian, atheist, muslim, etc. is that we serve a God that is higher and bigger than anything.  And even if those people refuse to see it, they are living in a world that is governed by the will of God, and as Christians, our visibility is fixed on hoping on the facts, that our God is present, working, and moving in us to make us more like Him.   If that doesn&#8217;t enable you to hope, perhaps there&#8217;s a too much vested in this world.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Como compilar Qt para S60 sin RVCT]]></title>
<link>http://expertonokia.wordpress.com/2009/11/22/como-compilar-qt-para-s60-sin-rvct/</link>
<pubDate>Sun, 22 Nov 2009 20:07:12 +0000</pubDate>
<dc:creator>dfjimenezt</dc:creator>
<guid>http://expertonokia.wordpress.com/2009/11/22/como-compilar-qt-para-s60-sin-rvct/</guid>
<description><![CDATA[El RVCT es el compilador de ARM que toma ventaja de las instrucciones vectoriales de los ARM es deci]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>El RVCT es el compilador de ARM que toma ventaja de las instrucciones vectoriales de los ARM es decir las intrucciones SSE, esto significa que el código será reducido al máximo, que el procesador hará más con menos &#8220;vueltas&#8221;, y al final el usuario tendrá una mejor experiencia, y de hecho si el producto final va a llevar al máximo las características del Nokia, está DEBE ser la opción elegida, por ejemplo un juego en 3d. ó un programa que maneje procesamiento de datos.</p>
<p><img class="aligncenter" src="http://www.arm.com/rximages/17653.jpg" alt="" width="334" height="299" />Está es una gráfica que demuestra que el código final en Dhrystone, es reducido a un 50% aproximadamente, y según la fuente, el Hello World, es reducido en un 97%.</p>
<p>El caso es que al instalar Qt, Carbide, y todo el SET en el Computador, uno está entusiasmado, hasta leer que el RVCT tiene costo, y que en el IDE Carbide, no existe la opción de compilar Qt con GCCE.</p>
<p><a href="http://expertonokia.wordpress.com/files/2009/11/1.png"><img class="aligncenter size-full wp-image-821" title="Opciones de Carbide" src="http://expertonokia.wordpress.com/files/2009/11/1.png" alt="" width="396" height="80" /></a>Pero por linea de comandos hay una alternativa.</p>
<p>Lo primero es llegar a la carpeta del proyecto, en mi caso es:</p>
<blockquote><p>&#62; cd \Symbian\Carbide\workspace\HelloWorld</p></blockquote>
<p>Luego se ejecuta Qmake que generará los archivos necesarios para compilar.</p>
<blockquote><p>&#62;qmake</p></blockquote>
<p>Esto puede tardar algunos segundo y una vez finalice estará listo para compilar, como se va a compilar con GCCE, debe darse la instrucción indicada a make.</p>
<blockquote><p>&#62;make release-gcce</p></blockquote>
<p>esto si deberá tardar un poco mas, e indicará paso a paso los procesos que lleva a cabo, de tal manera que si hay un error en el código será fácil encontrar.</p>
<div id="_mcePaste">si todo ha salido bien, el resultado será un .exe que será empaquetado, pero primero hay que asignarle los &#8220;permisos&#8221;  al pkg, para lo cual, el script patch_capabilities.pl es el indicado</div>
<blockquote>
<div>&#62;patch_capabilities.pl HelloWorld_template.pkg release-gcce</div>
</blockquote>
<div id="_mcePaste">Y por ultimo si se puede crear el paquete</div>
<blockquote>
<div>&#62;createpackage HelloWorld_template.pkg release-gcce</div>
</blockquote>
<div class="aligncenter"><a href="http://expertonokia.wordpress.com/files/2009/11/final.png"><img class="aligncenter size-medium wp-image-822" title="Archivos" src="http://expertonokia.wordpress.com/files/2009/11/final.png?w=300" alt="" width="300" height="178" /></a></div>
<p><a href="http://expertonokia.wordpress.com/files/2009/11/final.png"></a>esté, sis se instala en el teléfono sin ningún problema.</p>
<p><a href="http://expertonokia.wordpress.com/files/2009/11/22112009_001.jpg"><img class="aligncenter size-medium wp-image-823" title="HelloWorld_ Qt" src="http://expertonokia.wordpress.com/files/2009/11/22112009_001.jpg?w=225" alt="" width="225" height="300" /></a> <a href="http://expertonokia.wordpress.com/files/2009/11/22112009_002.jpg"><img class="aligncenter size-medium wp-image-824" title="HelloWorld_ Qt2" src="http://expertonokia.wordpress.com/files/2009/11/22112009_002.jpg?w=225" alt="" width="225" height="300" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[1st Corinthians 13:7b]]></title>
<link>http://danleedotcom.wordpress.com/2009/11/22/1st-corinthians-137b/</link>
<pubDate>Sun, 22 Nov 2009 15:01:25 +0000</pubDate>
<dc:creator>danleedotcom</dc:creator>
<guid>http://danleedotcom.wordpress.com/2009/11/22/1st-corinthians-137b/</guid>
<description><![CDATA[1st Corinthians 13:7b. &#8220;… believes all things …&#8221; It goes to show that in the circumstanc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1st Corinthians 13:7b.</p>
<p>&#8220;… believes all things …&#8221;</p>
<p>It goes to show that in the circumstances and truths of our present lives, we come to a place where doubt can very readily enter the realm of thought.  Many times, through my difficult times, I find myself wondering about what God&#8217;s will is when seemingly there is no purpose other than for it to be difficult. Still, our call to love in Spirit and in truth is the belief of all things.  This seems interesting in that believing all things is a matter of proper perspective.  Clearly we are not called to believe everything, in that &#8216;all&#8217; refers to literally everything.  Meaning, if someone tells us that Jesus Christ never died on the cross, we are not called to love in believing such things.  BUT, there is a very fine granulation here, that needs to be investigated.</p>
<p>We are not called to believe everything we hear and experience for instance, since that is neither wisdom, nor anything close to wisdom.  But I think believing &#8216;all&#8217; things is a matter of understanding that everything is under our God.  That the belief in all things is the realization that in the midst of such bad times, sin, and struggle, we are to see God and believe all things that are of Him.  Belief in His character, belief in His good and faithful heart towards us.  It&#8217;s really easy to dismiss this one, since belief in all things can be interpreted to mean belief in just things that we think are Godly, and not believing other things.  I think more accurately this passage is admonishing us to really see everything in our lives, the sin, the dirt, the difficulties, and the unholy aspects of life and know that the belief in all things is not the belief or truth of everything we experience, but is instead the belief that the character of God holds true in life.  Yes, there are definitely things not of Christ, nor of the character of God in our lives, but our belief is not in the truth or validity of those single things, but is instead in the belief that are God is above those things, stronger, and bigger than those things and able to use those things to make His children more like Him.</p>
<p>Belief is never a matter of circumstances making themselves believable.  Belief is a matter of faith, and really understanding, in this context, the character of God, so we can always rely on that when going through tough times.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PeaZip 2.8]]></title>
<link>http://ubuntuparatodos.wordpress.com/2009/11/22/peazip-2-8/</link>
<pubDate>Sun, 22 Nov 2009 04:41:16 +0000</pubDate>
<dc:creator>leonciokof</dc:creator>
<guid>http://ubuntuparatodos.wordpress.com/2009/11/22/peazip-2-8/</guid>
<description><![CDATA[PeaZip es un gestor de archivos flexible, portable, seguro y libre. A mi parecer mejor que File-Roll]]></description>
<content:encoded><![CDATA[PeaZip es un gestor de archivos flexible, portable, seguro y libre. A mi parecer mejor que File-Roll]]></content:encoded>
</item>
<item>
<title><![CDATA[DAYLY LIFE]]></title>
<link>http://kckim.wordpress.com/2009/11/21/dayly-life/</link>
<pubDate>Sat, 21 Nov 2009 22:50:15 +0000</pubDate>
<dc:creator>kckim</dc:creator>
<guid>http://kckim.wordpress.com/2009/11/21/dayly-life/</guid>
<description><![CDATA[Ithanks to LORD]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ithanks to LORD</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[QT]]></title>
<link>http://ansallie.wordpress.com/2009/11/21/qt/</link>
<pubDate>Sat, 21 Nov 2009 22:44:32 +0000</pubDate>
<dc:creator>ansallie</dc:creator>
<guid>http://ansallie.wordpress.com/2009/11/21/qt/</guid>
<description><![CDATA[FAITH]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>FAITH</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Jesus is my Lord!]]></title>
<link>http://ansallie.wordpress.com/2009/11/21/jesus-is-my-lord/</link>
<pubDate>Sat, 21 Nov 2009 21:56:53 +0000</pubDate>
<dc:creator>ansallie</dc:creator>
<guid>http://ansallie.wordpress.com/2009/11/21/jesus-is-my-lord/</guid>
<description><![CDATA[Jesus is everything!]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><a href="http://ansallie.wordpress.com/files/2009/11/ec82aceca784-007.jpg"><img class="aligncenter size-thumbnail wp-image-31" title="SALLIE AN" src="http://ansallie.wordpress.com/files/2009/11/ec82aceca784-007.jpg?w=112" alt="" width="112" height="150" /></a></p>
<p>Jesus is everything!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[1st Corinthians 13:7a]]></title>
<link>http://danleedotcom.wordpress.com/2009/11/21/1st-corinthians-137a/</link>
<pubDate>Sat, 21 Nov 2009 15:00:53 +0000</pubDate>
<dc:creator>danleedotcom</dc:creator>
<guid>http://danleedotcom.wordpress.com/2009/11/21/1st-corinthians-137a/</guid>
<description><![CDATA[1st Corinthians 13:7a. &#8220;… Love bears all things …&#8221; This morning I firmly believe the tru]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1st Corinthians 13:7a.</p>
<p>&#8220;… Love bears all things …&#8221;</p>
<p>This morning I firmly believe the truth behind this statement.  It&#8217;s interesting because the natural instinct that we have is not to bear all things.  In fact it&#8217;s exactly to not bear anything.  It&#8217;s also interesting that in the midst of talking about love rejoicing in the truth, that Paul should follow with this statement, that love bears all things.  I think the truth is what hurts the most, the truth is what is illuminates, and gives proper perspective to situations, but ultimately is something that bears all things.  Truth in it of itself is the embodiment of everything the Word is.  The irrefutable Word of God.  Now bearing all things, a lot of times I can think of this statement as being a reflection on living up to the difficulties of being sinned against.  But what is more accurate here?</p>
<p>I think in light of the context, Paul is saying that bearing all things is a showing of what Christ&#8217;s love is in our lives.  Yes this is true.  But in the context of what he said prior to this statement, I also see how bearing all things is more or less the bearing of what the truth is.  Rejoicing in the truth is one thing we can do, but having to bear the truth is something entirely different, yet corollary to that as well.  When I think of bearing the truth, I think of how the truth of the Word impacts my heart, convicts, lovingly warns and admonishes.  Now since truth is in fact everything that is happening in our lives now, since those are truthful statements, that we are going through this or that, we are also called to take our life circumstances and bear them with love, as they pertain to being the truth and present of our lives.</p>
<p>I am compelled this morning to take my life circumstances and run with it.  Not simply as a means of JUST living for the fullest of everyday for me, but instead for the means of living for the fullest of everyday because that is how I will bear all things in my life.  Good and bad.  Time to get to work.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[1st Corinthians 13:6a]]></title>
<link>http://danleedotcom.wordpress.com/2009/11/20/1st-corinthians-136a/</link>
<pubDate>Fri, 20 Nov 2009 15:42:10 +0000</pubDate>
<dc:creator>danleedotcom</dc:creator>
<guid>http://danleedotcom.wordpress.com/2009/11/20/1st-corinthians-136a/</guid>
<description><![CDATA[1st Corinthians 13:6a. &#8220;… it does not rejoice at wrongdoing, but rejoices with the truth ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1st Corinthians 13:6a.</p>
<p>&#8220;… it does not rejoice at wrongdoing, but rejoices with the truth &#8230;&#8221;</p>
<p>I think because this is a contrast statement, my interpretation of it is that rejoicing in truth is to not rejoice in wrongdoing, but since rejoicing in truth is there, the wrongdoings must refer to dishonesty.  I think in the realm of loving people as Christ does, there is nothing more damaging then dishonesty.  I have seen it destroy my own life, and destroy the lives of friends.  Still it is innately a part of each of us to seek the welfare of him/herself first, even if it means bending truths, or giving half truths which are in some way, our justification for doing things.  Now this statement really sets itself apart in that we establish that rejoicing is a part of loving.  Sometimes we do not equate the two, but here it says that love rejoices, and does not rejoice as well.  There is a level of joy that I think is required for someone to rejoice in general.  I think we forget that loving someone is something that brings fulfillment and completeness to our lives.  By doing it only sparingly we are really hurting our exposure to the joy that God wishes to place in our lives. </p>
<p>Let me tell you, I&#8217;m feeling pretty rejoice&#8217;y lately.  Praise God =).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Opening up to Open Source]]></title>
<link>http://tabulacrypticum.wordpress.com/2009/11/19/opening-up-to-open-source/</link>
<pubDate>Thu, 19 Nov 2009 21:16:41 +0000</pubDate>
<dc:creator>The Crypticum Keeper</dc:creator>
<guid>http://tabulacrypticum.wordpress.com/2009/11/19/opening-up-to-open-source/</guid>
<description><![CDATA[It&#8217;s funny the turns Life takes. I started programming in the eartly 1980s, on Timex Sinclair,]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>It&#8217;s funny the turns Life takes.</p>
<p>I started programming in the eartly 1980s, on <a href="http://en.wikipedia.org/wiki/Timex_Sinclair_1000">Timex Sinclair</a>, <a href="http://en.wikipedia.org/wiki/Commodore_64">Commodore 64</a> and <a href="http://en.wikipedia.org/wiki/TRS-80">TRS-80</a> computers in short order.  In those wild days when high-level languages were really coming into their own, free and open source software seemed more readily available than retail equivalents.  Hobbyist magazines, online bulletin boards and even the fledgling internet (pre WWW) were stuffed with code just waiting for eager learners like to me to take and tweak.  There wasn&#8217;t much in the way of formal free and open source protocol at the time&#8211; that evolved soon enough though.</p>
<p>But as I evolved myself, from hobbyist to ad hoc developer for various employers, I found myself drawn in deeper and deeper to the closed source world.  I discovered I had a liking and knack for Visual Basic and thus fell into the Microsoft development vortex.</p>
<p>It&#8217;s a seductive and powerful sucker, too.  It was all too easy to be &#8220;bought off&#8221; by events with (<em>ironically</em>) free training, free food and even giveaways of free software.  I ultimately joined a Microsoft program that dumped thousands of dollars of tools in my lap for an embarrassingly small outlay.  Resistance was futile.</p>
<p>Yep, I was assimilated.</p>
<p><!--more--></p>
<p>Flash forward to 2005 when Nokia hired me to do data mining/management for factory quality assurance.  At first it was the usual: Microsoft SQL Server, the Office suite, VB.NET and even Oracle.  The only real challenge I faced at the time was ramping up SQL skills to an enterprise level.</p>
<p>Then, as <a href="http://tabulacrypticum.wordpress.com/2009/07/29/why-i-love-nokias-internet-tablets/">I&#8217;ve mentioned in previous articles</a>, the <a href="http://en.wikipedia.org/wiki/Nokia_770">Nokia 770 internet tablet</a> burst into my life.</p>
<p>At first it was an utterly alien object, this Linux-driven refugee from an old Star Trek show.  I only knew it mobilized the Internet like nothing else at the time&#8230; and <a href="http://tabulacrypticum.wordpress.com/2009/09/14/mid-use-case-mobile-auditing-and-inspection/">I wanted to put it to work</a>.</p>
<p>I eventually took on a new role as quality engineer for certain Nokia products and that included the 770 and then the N800, which I helped launch.  Supporting the tablets meant getting acquainted with something I had marvelled at from afar but never touched until then:</p>
<p><strong>Linux.</strong></p>
<p>At first I had to perform all device flashing from a Linux command line.  A helpful colleague introduced me to Ubuntu and after acquiring a laptop for the work I dug in.  Just not too deeply&#8211; I was still using Windows tools for the bulk of my labors so I didn&#8217;t really have time to invest in becoming a Linux guru&#8230; although the desire was certainly there.</p>
<p>And now a few years and turns later, I find myself in another role where the old trusted tools need not apply.  I haven&#8217;t even coded in VB for over a year!  Couple that with my current employer&#8217;s strong desire to save money and wham!  I&#8217;m back in the open source world.</p>
<p>Which is fine because I&#8217;m embarrassed that after a few years embedded in the Maemo culture I&#8217;ve barely picked up anything.  I want to do more application testing and even some development but I still lack the foundation.</p>
<p>So I&#8217;m excited by the opportunity I have in my employment to investigate a process workflow solution (<em><a href="http://tabulacrypticum.wordpress.com/2009/11/22/processmaker-workflows-from-open-source/">more on that in another article</a></em>) that&#8217;s completely open source and takes full advantage of the open source ecosystem (MySQL, Apache, <a href="http://en.wikipedia.org/wiki/Openbravo">OpenBravo</a>, <a href="http://en.wikipedia.org/wiki/KnowledgeTree">Knowledgetree</a>, <a href="http://en.wikipedia.org/wiki/Zimbra">Zimbra</a>).  This is my chance to pull free of the Microsoft vortex, at least a little bit, and gain some proficiency in what I think will ultimately become the status quo.</p>
<p>I&#8217;m ready now to get into Qt&#8230; Python&#8230; and whatever else looks useful.  <a href="http://talk.maemo.org/showthread.php?t=34517&#38;highlight=windows">How-To posts like those at talk.maemo.org showing how to get Windows developers onto Maemo devices</a> are just adding irresistable fuel to the fire.</p>
<p>Hello (open source) World, here I (finally) come!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DbMaster - 0.5 en approche et pause du développement]]></title>
<link>http://manudwarf.wordpress.com/2009/11/19/dbmaster-0-5-en-approche-et-pause-du-developpement/</link>
<pubDate>Thu, 19 Nov 2009 15:41:48 +0000</pubDate>
<dc:creator>manudwarf</dc:creator>
<guid>http://manudwarf.wordpress.com/2009/11/19/dbmaster-0-5-en-approche-et-pause-du-developpement/</guid>
<description><![CDATA[Salux ! Comme vous le savez peut-être, DbMaster est un projet d&#8217;étude. Malheureusement, il n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Salux !</p>
<p>Comme vous le savez peut-être, DbMaster est un projet d&#8217;étude. Malheureusement, il n&#8217;est pas le seul, et étant donné qu&#8217;il attendra bientôt ses objectifs pour le BTS, je le mettrai en pause jusqu&#8217;au mois de juillet. Je reste ouvert à toute suggestion en attendant, et il y aura peut-être des mises à jour de maintenance.</p>
<p>Pour autant, cela ne satisfait pas à passer DbMaster en version 1.0. Je trouve le nombre de fonctionnalités encore trop faible et il y a bien trop de bogues à résoudre. Une version 0.5 sera publiée bientôt, afin de clore temporairement le développement (comme expliqué plus haut).</p>
<p>Côté nouveautés pour la 0.5 :</p>
<ul>
<li>Nettoyage du code : DbMaster est plus léger, plus rapide et plus stable (heureusement).</li>
<li>Auto-complétion SQL</li>
<li>Analyse de contexte (coloration des noms de tables/champs)</li>
<li>Exécution de sous-requêtes</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[1st Corinthians 13:5b]]></title>
<link>http://danleedotcom.wordpress.com/2009/11/19/1st-corinthians-135b/</link>
<pubDate>Thu, 19 Nov 2009 14:43:21 +0000</pubDate>
<dc:creator>danleedotcom</dc:creator>
<guid>http://danleedotcom.wordpress.com/2009/11/19/1st-corinthians-135b/</guid>
<description><![CDATA[1st Corinthians 13:5b. &#8220;… it is not irritable or resentful…&#8221; In the greek translation of]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1st Corinthians 13:5b.</p>
<p>&#8220;… it is not irritable or resentful…&#8221;</p>
<p>In the greek translation of the Word, the passage actually says it is not irritable and does not count up wrong doing.  I think at its core there&#8217;s a very strong sentiment for all of us to do this.  If there&#8217;s one thing I think God has gifted me with, it&#8217;s a heart that is not one that counts up wrong doing.  I think much more than a typical person, God gave me the means to just forgive, and forget, even if the circumstances are terrible.  At the end of the day my sentiment is that I know people have been wronged by me, and hurt by me, and more importantly, God has been wounded, hurt, Jesus died for me because of the ways that sin has taken over my life at times, and because of all of those circumstances, I am pressed and compelled to simply forgive and forget the past. </p>
<p>It&#8217;s scary the way that people can be people who store up rocks.  It&#8217;s scary the way that believers are usually the ones that store up the most rocks to throw.  I think it&#8217;s true that in ways, believers are the ones who are the most judgmental, believers are the ones who hold the grudges, and take wrongdoings done to them, hold on to them, and use them for ammunition later on, or use them as leverage later on to get their own way.  I say and say again, that this practice cannot be a part of how we live our lives as believers.  The moment we take loving people, and equate it with some form of &#8216;pharisaical discernment&#8217; we lose on the true purpose of the Word, and the intent that is being depicted here by Paul. </p>
<p>I think about the ways that I store up rocks, I store up people&#8217;s discrediting factors and use them to pass a presumptuous assumption about them, essentially judging.  Though the ability to forgive and forget is something that comes very naturally to me, I think in other ways, I do store up rocks to throw, I do keep a record in a sense.  And as much as I do that, I must strive to completely forgive.  Where I do not hold people to the stake of their past, I do hold people to the stake of their present.  That much is true.  Where I think that is a biblical stance, it is incomplete since we cannot merely look at people&#8217;s present, and see not the potential that they can be.  Most people look at someone&#8217;s past, and don&#8217;t look at their present or future, some people look at someone&#8217;s past and present, and don&#8217;t look at their future.  Some people look at the present, but forget the past and future.  Some people look at the future and forget the present and past. </p>
<p>Where I do not think any of these things are really optimal in the sense that God calls us to be one way or the other, I do see biblical backing in being able to see the past in a way such that it is not judgmental or being used against someone, seeing the present as a marker to see how someone is doing and growing, but as Christ looks at us, we must have mainly a heart for the future, seeing the potential and growth that is to come.  If we are people who do not rely on faith, and the reliance of God truly working in the lives of people around us, then we are bound to the limiting factors of what is readily discernable instead of living totally in faith.  I do this all the time unfortunately, and where I am readily able not to judge about the past, I do have limited visibility of someone&#8217;s potential, and concentrate a lot on the present.  Where there may be validity to that at times, to be losing sight of all three factors is not what the Word says. </p>
<p>I am pressed this morning to live this out in how I minister to people in my care.  Being indiscriminate  is a crucial tool in ministry, and that is exactly what I must strive and grow to be.  Some people are hard to love, tough, I gotta get over it, and simply love as Christ does.  Where do I get off thinking that God&#8217;s love is applicable to me always, and selectively applicable to others.  Gotta pluck that out now, and turn my eyes to Jesus so that when I look on others, I can be in a state of Godly blindness to judgment on them, and simply love as Christ does.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Q4-wine: Una gui per Wine compilata per voi per Sidux amd64]]></title>
<link>http://lippolweblog.wordpress.com/2009/11/18/q4-wine-una-gui-per-wine-compilata-per-voi-per-sidux-amd64/</link>
<pubDate>Wed, 18 Nov 2009 14:40:03 +0000</pubDate>
<dc:creator>lippol94</dc:creator>
<guid>http://lippolweblog.wordpress.com/2009/11/18/q4-wine-una-gui-per-wine-compilata-per-voi-per-sidux-amd64/</guid>
<description><![CDATA[Oggi vi voglio parlare di un software che a me è piaciuto molto. Si chiama Q4-wine ed è una gui (gra]]></description>
<content:encoded><![CDATA[Oggi vi voglio parlare di un software che a me è piaciuto molto. Si chiama Q4-wine ed è una gui (gra]]></content:encoded>
</item>
<item>
<title><![CDATA[1st Corinthians 13:5]]></title>
<link>http://danleedotcom.wordpress.com/2009/11/18/1st-corinthians-135/</link>
<pubDate>Wed, 18 Nov 2009 19:25:09 +0000</pubDate>
<dc:creator>danleedotcom</dc:creator>
<guid>http://danleedotcom.wordpress.com/2009/11/18/1st-corinthians-135/</guid>
<description><![CDATA[1st Corinthians 13:5. &#8220;… It does not insist on its own way …&#8221; Welcome to rebuke!  Truly ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1st Corinthians 13:5.</p>
<p>&#8220;… It does not insist on its own way …&#8221;</p>
<p>Welcome to rebuke!  Truly loving as Christ loves means not to insist on its own way.  This is the plague I think of every single person in this world.  If it goes unchecked, you get… the world, exactly the issues that the world presents, you get those things.  Unfortunately, because the whole world operates with the premise that insisting on your own way is the way to live, it makes it extremely difficult to live in the world.  Therein lies the exact rebuke I am experiencing as I read this about how to love people.  Since the love of Christ does not insist on its own way it means to put the kingdom&#8217;s good above the good of self.  We have to be careful because this verse is not saying that our lives must be lived not following the direction that we firmly believe we should be living.  It also doesn&#8217;t say that we have to simply do what people around us want to do instead of standing our ground.  Instead, the way I see it is that we must be people who do not insist on our own way, but instead insist that in the end, the gospel wins, the kingdom wins.</p>
<p>The initial thoughts about this passage bring to mind the latter thought which is to not insist on your own way immediately means to die to yourself and simply allow things to happen instead of proactively moving with conviction and purpose.  The differences have to be pretty stark.  I think it might be easy for us to think that dying to ourselves is the call that is being made in this passage.  But thinking deeper is the love of Christ that is not simply robot checklist love, but it is a specialized, person by person understanding of circumstance and experience.  We cannot be people held simply to a standard checklist of what love should be, but should be specific, and relevant in each moment, and exemplify the character of God in every way that we deal with people.  Insisting not on our own way, but insisting instead on the character of God being shown, Christ being shown.</p>
<p>It&#8217;s interesting because that would seem to be the case with being a believer that people readily forget about.  People suddenly realize how hard it is to simply love people where they are at.  Exude Christ to other people given their circumstances, their interpretation of the situation, their emotions, instead of thinking what you think and forcing it on them.  Now, at times, there are appropriate measures that should be taken to that effect, but with the heart that is really loving and insisting what the Word says, and not what is coming from merely the mouth as lip service.  It said before in this passage that if we have not love, then even our words, and the words of angels are like clanging cymbals and gongs.  Totally ineffectual.  Being relevant and loving in the context of fighting hard to contextualize being Christ is always the hard thing to do, but I see that is the call that is made here.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
