<?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>notepad &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/notepad/</link>
	<description>Feed of posts on WordPress.com tagged "notepad"</description>
	<pubDate>Mon, 30 Nov 2009 19:47:18 +0000</pubDate>

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

<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[Bell 5-7]]></title>
<link>http://blog4class.wordpress.com/2009/11/27/bell-5-7/</link>
<pubDate>Fri, 27 Nov 2009 17:38:21 +0000</pubDate>
<dc:creator>lundquia</dc:creator>
<guid>http://blog4class.wordpress.com/2009/11/27/bell-5-7/</guid>
<description><![CDATA[In chapter 5, Bell talks about some of the great open source alternatives to proprietary software. T]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In chapter 5, Bell talks about some of the great open source alternatives to proprietary software. These programs are great for both web design, and average computer use. One program that he talked about in particular is <a href="http://www.gimp.org/" target="_blank">GIMP</a>. GIMP is a great open source alternative to <a href="https://www.photoshop.com/" target="_blank">Adobe Photoshop</a>. If you have never used Photoshop before, I would definitely recommend going with GIMP instead. GIMP has all of the basic functions as Photoshop and has the advantage of being free.</p>
<p>However, if you have worked with Photoshop previously and really know what you&#8217;re doing with it, then you may want to continue using it because GIMP doesn&#8217;t have some of the more advanced features that Photoshop does.</p>
<p>Another program that Bell talked about was <a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank">Notepad ++</a>. Notepad ++ takes the basic Notepad program and makes it easier to use.  This version highlights all of your tags, making it easier to figure out any mistakes you made with your code. It also comes in a <a href="http://portableapps.com/apps/development/notepadpp_portable" target="_blank">portable version</a>, which means you can run it off of your jumpdrive and take it with you anywhere. This is the version that I use, and I love it.</p>
<p>In chapters 6 and 7, Bell talks about uploading your files to the web, and about basic website layouts. He covers some of the current best practices regarding organization and link locations. All very basic, but he does a good job explaining it.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[hp laptops]]></title>
<link>http://cultureinindia.wordpress.com/2009/11/27/hp-laptops/</link>
<pubDate>Fri, 27 Nov 2009 06:09:55 +0000</pubDate>
<dc:creator>Ramya</dc:creator>
<guid>http://cultureinindia.wordpress.com/2009/11/27/hp-laptops/</guid>
<description><![CDATA[Dell and Helwett-Packard are two of the best and most famous computer producers throughout the entir]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Dell and Helwett-Packard are two of the best and most famous computer producers throughout the entire world. But if we compare the two companies, or better yet, the company&#8217;s products, which is the best? Let&#8217;s see who the winner is in this Dell versus HP laptop fight.</p>
<p><a href="http://cultureinindia.wordpress.com/files/2009/11/dell-versus-hp-laptops2.jpg"><img src="http://cultureinindia.wordpress.com/files/2009/11/dell-versus-hp-laptops2.jpg?w=235" alt="" title="dell-versus-hp-laptops2" width="235" height="300" class="aligncenter size-medium wp-image-121" /></a></p>
<p>It&#8217;s very difficult to compare the whole company to another because one may be really good at assembling systems but have lousy customer service and the other one may have laptops with original display and still have trouble shipping the products in due time. We are going to see a comparison between Dell Inspiron 1520 laptop and the HP Pavilion dv6500t and let you decided which the best is. As far as design goes, the dv6500t has a glossy black lid with a very nice imprint finish which makes it look very elegant. Inspiron 1520 gives you the possibility to choose the lid color but other than that, it looks quite boring. The HP Pavilion dv6500t is thinner than the Inspiron 1520. The 9-cell battery of the Inspiron also makes it heavier compared to its opponent.<br />
n terms of ports and features, things are quite similar except for the fact that the Inspiron 1520 has four USB ports while the Pavilion dv6500t has only three. As for the keyboard, the Inspiron wins. Its keys are solid with no flex, unlike the Pavilion&#8217;s keys which are not that firm and you won&#8217;t feel comfortable if you push them harder. The touchpad in the dv6500t is bigger and that makes it easier to use and it also has an on/off switch. One good thing about HP Pavilion models is that they come with a finger print reader is which located right between the two touchpad buttons but this is more of a &#8220;business&#8221; feature since us regular users do not have much need of fingerprint authentication on secure websites.<br />
<a href="http://cultureinindia.wordpress.com/files/2009/11/dell-versus-hp-laptops3-470x175.jpg"><img src="http://cultureinindia.wordpress.com/files/2009/11/dell-versus-hp-laptops3-470x175.jpg?w=300" alt="" title="dell-versus-hp-laptops3-470x175" width="300" height="111" class="aligncenter size-medium wp-image-122" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cant See Secure Sites]]></title>
<link>http://activecomputech.wordpress.com/2009/11/24/cant-see-secure-sites-2/</link>
<pubDate>Tue, 24 Nov 2009 03:57:20 +0000</pubDate>
<dc:creator>sajidcyber</dc:creator>
<guid>http://activecomputech.wordpress.com/2009/11/24/cant-see-secure-sites-2/</guid>
<description><![CDATA[Can&#8217;t See Secure Sites ? Fix the problem with seeing them secrue sites (banks or online stores]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Can&#8217;t See Secure Sites ?</strong></p>
<p>Fix the problem with seeing them secrue sites (banks or online stores) i found this very useful to me at my work (isp backbone support lol, at the time i was regular support ) Any way&#8230; what u need to do is make a new notepad file and write in it the followng DLL&#8217;s.. just copy-paste these regsvr32 SOFTPUB.DLL regsvr32 WINTRUST.DLL regsvr32 INITPKI.DLL regsvr32 dssenh.dll regsvr32 Rsaenh.dll regsvr32 gpkcsp.dll regsvr32 sccbase.dll regsvr32 slbcsp.dll regsvr32 Cryptdlg.dll and save it as &#62; all file types, and make it something like securefix.bat. then just run the file and ur problem shuld be gone.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Is Bigger Always Better?]]></title>
<link>http://trainingresolutions.wordpress.com/2009/11/23/is-bigger-always-better/</link>
<pubDate>Mon, 23 Nov 2009 20:56:44 +0000</pubDate>
<dc:creator>Blogging with Training Resolutions</dc:creator>
<guid>http://trainingresolutions.wordpress.com/2009/11/23/is-bigger-always-better/</guid>
<description><![CDATA[Don&#39;t be afraid to go small Is it really better to be bigger?  Well I am now the proud owner of ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="mceTemp">
<div id="attachment_37" class="wp-caption alignleft" style="width: 287px"><a href="http://trainingresolutions.wordpress.com/files/2009/11/big-and-small.jpg"><img class="size-medium wp-image-37" title="BIG and small" src="http://trainingresolutions.wordpress.com/files/2009/11/big-and-small.jpg?w=277" alt="BIG and small" width="277" height="300" /></a><p class="wp-caption-text">Don&#39;t be afraid to go small</p></div>
</div>
<p>Is it really better to be bigger?  Well I am now the proud owner of a new netbook, an I have to say first impressions are that small is the new big!</p>
<p>My notebook is a Hewlett Packard HP110 with a 10.1 inch screen, and wow it really packs a punch.  It runs on Windows 7, is very fast and delivers exactly what it promises; light, compact, portable, and most importantly very sexy !!</p>
<p>The anti-glare screen means I can use it almost anywhere, and the 6-7 hour battery life gives me far more than I need for my daily commute.</p>
<p>so, BIG is not always better (sorry!)&#8230; I&#8217;ll be sticking with small from now on.!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Sexiest code/text editor ever]]></title>
<link>http://techhead.wordpress.com/2009/11/23/sexiest-codetext-editor-ever/</link>
<pubDate>Mon, 23 Nov 2009 13:14:04 +0000</pubDate>
<dc:creator>Eric</dc:creator>
<guid>http://techhead.wordpress.com/2009/11/23/sexiest-codetext-editor-ever/</guid>
<description><![CDATA[When I first saw this over lifehacker and downloaded it, I was just in awe and it has been my text e]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>When I first saw this <a href="http://lifehacker.com/5383161/sublime-text-is-a-serious-text-editor-with-no-bloat" target="_blank">over lifehacker</a> and downloaded it, I was just in awe and it has been my text editor across all my machines.</p>
<p><a href="http://techhead.wordpress.com/files/2009/11/sublimetext.png"><img class="aligncenter size-full wp-image-198" title="sublimeText" src="http://techhead.wordpress.com/files/2009/11/sublimetext.png" alt="" width="432" height="270" /></a></p>
<p>Forget Notepad++, even the Programmer&#8217;s Notepad I used to <a href="http://techhead.wordpress.com/2007/10/21/ultimate-free-coding-text-editor/" target="_self">recommend</a> &#8212; Sublime text is the best and sexiest light weight code/text editor out there!</p>
<p>It&#8217;s kind of pricey but no doubt you&#8217;d like it!</p>
<p>Link</p>
<ul>
<li><a href="http://www.sublimetext.com/" target="_blank">Sublime Text</a></li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Author of Notepad Discovered]]></title>
<link>http://keepons.wordpress.com/2009/11/21/the-author-of-notepad-discovered/</link>
<pubDate>Sat, 21 Nov 2009 03:21:25 +0000</pubDate>
<dc:creator>keepons</dc:creator>
<guid>http://keepons.wordpress.com/2009/11/21/the-author-of-notepad-discovered/</guid>
<description><![CDATA[The author of Notepad now a High School science teacher. Cool.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The author of Notepad <a href="http://blogs.msdn.com/oldnewthing/archive/2009/11/17/9923309.aspx" target="_blank">now</a> a High School science teacher. Cool.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows 7 에서 Notepad++ 한글 입력 문제]]></title>
<link>http://paulonstage.wordpress.com/2009/11/19/korean-input-error-in-notepad-with-windows7/</link>
<pubDate>Thu, 19 Nov 2009 08:20:27 +0000</pubDate>
<dc:creator>Paul Lee</dc:creator>
<guid>http://paulonstage.wordpress.com/2009/11/19/korean-input-error-in-notepad-with-windows7/</guid>
<description><![CDATA[노트북에 Wndows 7 을 설치하고 Notepad++ 를 기본 에디터로 잘 사용해왔습니다. 그런데 어제 문득 발견한 사실이, &#8220;한글이 안 쳐진다&#8221; 라는 것이]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>노트북에 Wndows 7 을 설치하고 Notepad++ 를 기본 에디터로 잘 사용해왔습니다. 그런데 어제 문득 발견한 사실이, &#8220;한글이 안 쳐진다&#8221; 라는 것이었어요. 주로 코딩을 하다보니 한글을 많이 사용하지 않았는데, 한글을 입력하면 무조건 &#8220;ㅁ&#8221; 로 표기가 되더군요. 그래서 고민에 고민을 했지만 방법이 딱히 해결 방법이 떠오르지 않았습니다.</p>
<p>그러던 차에, 소 뒷걸음질 치다 개구리 밟은 격으로 문제를 해결하게 됐어요. 메뉴의 &#8220;설정 &#8211; 스타일 환경설정&#8221; 에 들어가셔서 글꼴을 한글 글꼴(나눔고딕, 맑은고딕, 굴림 등등&#8230;)로 선택하시고, &#8220;전역 글꼴 사용&#8221; 을 체크해주시면 됩니다. 어떤 확장자의 파일을 가지고 작업하고 있든지 무조건 그 글꼴을 사용하겠다는 설정 같군요.</p>
<p>아마 어떤 확장자에 대해 설정된 글꼴이, 한글은 지원하지 않는 글꼴인걸까요?</p>
<p>아무튼 문제는 이렇게 해결되었습니다^^</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[10 Very useful web design and web programming tools]]></title>
<link>http://kahrn.wordpress.com/2009/11/18/10-very-useful-webdesign-and-web-programming-tools/</link>
<pubDate>Wed, 18 Nov 2009 20:28:31 +0000</pubDate>
<dc:creator>kahrn</dc:creator>
<guid>http://kahrn.wordpress.com/2009/11/18/10-very-useful-webdesign-and-web-programming-tools/</guid>
<description><![CDATA[Web development today Web development today isn&#8217;t just HTML editing or basic php scripts. Web ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Web development today</strong></p>
<p>Web development today isn&#8217;t just HTML editing or basic php scripts. Web development and programming today is usually achieved with a wide set of tools &#8212; any popular website around today uses a wide set of tools. For example,</p>
<ul>
<li>reddit.com &#8212; reddit uses <a href="http://python.org" target="_blank">Python</a> and <a href="http://en.wikipedia.org/wiki/PostgreSQL" target="_blank">PostgreSQL</a>, which spit out html (of xhtml syntax), javascript and <a href="http://www.w3schools.com/css/css_intro.asp" target="_blank">CSS</a>.</li>
<li>slashdot.com &#8212; slashdot.com uses Perl and MySQL, sitting on top of Apache.</li>
<li>microsoft.com &#8212; microsoft.com uses a combination of ASP.NET, running on top of IIS. The output is html (xhtml syntax), css and javascript.</li>
</ul>
<h2>The tools</h2>
<h3>Web Developer / Firefox Extension</h3>
<p>Firefox Web Developer Extension is a useful tool for being able to disable various features on a page, manage cookies, view specific css information using a picker tool for any specific elements and being able to manager userstyles. You can also manage images and various other tools including the ability to view generated source.</p>
<p>You can download it at <a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Mozilla Add-ons</a></p>
<h3>ColorZilla / Firefox Extension</h3>
<p><a href="http://kahrn.wordpress.com/files/2009/11/blogwebdevcolorzilla.png"><img src="http://kahrn.wordpress.com/files/2009/11/blogwebdevcolorzilla.png?w=300" alt="" title="Colorzilla Firefox Extension" width="125" height="119" class="alignright size-medium wp-image-246" /></a>ColorZilla is an extension to firefox that adds a color picker tool to the browser UI. It is then possible to return information for a given pixel on a website.</p>
<p>You can download it at the <a href="https://addons.mozilla.org/en-US/firefox/addon/271" target="_blank">Mozilla Add-ons</a> site.</p>
<h3>MeasureIT / Firefox Extension</h3>
<p><a href="http://kahrn.wordpress.com/files/2009/11/blogwebdevmeasureit.png"><img src="http://kahrn.wordpress.com/files/2009/11/blogwebdevmeasureit.png?w=150" alt="" title="MeasureIT Firefox Extension" width="150" height="83" class="alignright size-thumbnail wp-image-250" /></a>The measureIT Firefox extension adds a measuring tool that appears as an overlay on any webpage you need to use it on.</p>
<p>You can download measureIT at the <a href="https://addons.mozilla.org/en-US/firefox/addon/539" target="_blank">Mozilla Add-ons</a> site</p>
<h3>DOM Inspector / Firefox Extension</h3>
<p><a href="http://kahrn.wordpress.com/files/2009/11/blogwebdevdominspector.png"><img src="http://kahrn.wordpress.com/files/2009/11/blogwebdevdominspector.png?w=150" alt="" title="Firefox DOM Inspector" width="150" height="112" class="alignright size-thumbnail wp-image-253" /></a>The Document Object Model Inspector is a tool to inspect the DOM of any webpage. It often comes with the default install of firefox as an option.</p>
<p>You can download DOM Inspector at <a href="https://developer.mozilla.org/en/dom_inspector" target="_blank">https://developer.mozilla.org/en/dom_inspector</a></p>
<h3>Firebug / Firefox Extension</h3>
<p>Firebug is an extension which is useful for editing css, html or javascript elements within a webpage.</p>
<p>You can download Firebug at the <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">Mozilla Add-ons</a> site.</p>
<h3>Google page speed / Firebug Extension</h3>
<p><a href="http://kahrn.wordpress.com/files/2009/11/blogwebdevgooglepagespeed11.png"><img src="http://kahrn.wordpress.com/files/2009/11/blogwebdevgooglepagespeed11.png?w=150" alt="" title="Google web page speed for Firebug" width="150" height="116" class="alignright size-thumbnail wp-image-255" /></a>Google page speed is a Firebug extension that is able to give you a wealth of information on the download speeds and execution time of your website. It can also give you tips on how to reduce overheads and improve code.</p>
<p>You can download the Google page speed Firebug extension at the <a href="http://code.google.com/speed/page-speed/download.html" target="_blank">google page speed</a> site.</p>
<h3>Notepad++</h3>
<p><a href="http://kahrn.wordpress.com/files/2009/11/blogwebdevnotepadplusplus1.png"><img src="http://kahrn.wordpress.com/files/2009/11/blogwebdevnotepadplusplus1.png?w=150" alt="" title="Notepad++" width="150" height="115" class="alignright size-thumbnail wp-image-259" /></a>Notepad++ is a tool I often use when working on smaller projects where I do not need a full IDE.</p>
<blockquote><p><strong>Notepad++</strong> is a free (as in &#8220;free speech&#8221; and also as in &#8220;free beer&#8221;) source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by <a href="http://www.gnu.org/copyleft/gpl.html" target="_blank">GPL</a> License.<br />
Based on a powerful editing component <a href="http://www.scintilla.org/" target="_blank">Scintilla</a>, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size.</p></blockquote>
<p>You can download it over at the <a href="http://notepad-plus.sourceforge.net/uk/site.htm">notepad++ sourceforge</a> project site.</p>
<h3>Netbeans with PHP Development plugin</h3>
<p><a href="http://kahrn.wordpress.com/files/2009/11/blogwebdevnetbeans.png"><img src="http://kahrn.wordpress.com/files/2009/11/blogwebdevnetbeans.png?w=150" alt="" title="Netbeans with PHP Plugin" width="150" height="116" class="alignright size-thumbnail wp-image-260" /></a>Netbeans is a Java IDE developed by Sun. It supports various plugins &#8212; one being PHP development extensions. When working on large projects, Netbeans proves useful.</p>
<p>You can download it at the <a href="http://netbeans.org/">Netbeans</a> site.</p>
<h3>Visual SVN</h3>
<p>VisualSVN is a SVN server for Windows. It is quick and easy to use and requires little previous knowledge of server administration or svn experience, but it can also be quite powerful.</p>
<p>You can download it at the <a href="http://www.visualsvn.com/server/download/">VisualSVN Server</a> site. It is free for both personal and commercial use.</p>
<h3>Tortoise SVN</h3>
<p>TortoiseSVN is an SVN client that interfaces with Windows Explorer to interface with SVN.</p>
<p>You can download it at the <a href="http://tortoisesvn.tigris.org/">TortoiseSVN</a> site.</p>
<h3>XAMPP</h3>
<p>XAMPP is a quick and easy way to get an apache server, MySQL daemon and PHP all running on Windows for a development environment. It also supports an FTP server and a few other things.</p>
<p>You can download it at the <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> site.</p>
<p><strong>Forums</strong><br />
You can come and discuss web development, get website reviews and also SEO information at the <a href="http://tdlabs.co.uk/forums">Transcendental Labs</a> forum.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Compilar archivos de C# (sharp)]]></title>
<link>http://quedaprohibido.wordpress.com/2009/11/16/compilar-archivos-de-c-sharp/</link>
<pubDate>Mon, 16 Nov 2009 23:13:26 +0000</pubDate>
<dc:creator>quedaprohibido</dc:creator>
<guid>http://quedaprohibido.wordpress.com/2009/11/16/compilar-archivos-de-c-sharp/</guid>
<description><![CDATA[Existe un proyecto de software libre llamado Mono Project, que es multiplataforma e incluye un Ide d]]></description>
<content:encoded><![CDATA[Existe un proyecto de software libre llamado Mono Project, que es multiplataforma e incluye un Ide d]]></content:encoded>
</item>
<item>
<title><![CDATA[I'm Ambidextrous]]></title>
<link>http://cleverlytortured.wordpress.com/2009/11/15/im-ambidextrous/</link>
<pubDate>Sun, 15 Nov 2009 23:10:33 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid>http://cleverlytortured.wordpress.com/2009/11/15/im-ambidextrous/</guid>
<description><![CDATA[&#8230;I can write fuck all with both hands!  It&#8217;s starting to dawn on me that I may no longer]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://cleverlytortured.files.wordpress.com/2009/11/l_500_356_755b7974-9d39-42c3-8e5d-0ee9548d72a5.jpeg"><img class="alignleft size-full wp-image-364" src="http://cleverlytortured.files.wordpress.com/2009/11/l_500_356_755b7974-9d39-42c3-8e5d-0ee9548d72a5.jpeg?w=300&#038;h=213" alt="" width="300" height="213" /></a>&#8230;I can write fuck all with both hands!  It&#8217;s starting to dawn on me that I may no longer be able to write.  I fear my ability to write, write, with a pen, has long since deserted me.   I was lying in bed with a new notepad beside me this evening, when I decided I would take it back to the old school and put my thoughts and feelings down the good old-fashioned way.   A biro in-between the lines.   So much for that idea.   It was a serious struggle.   Almost to the point where I felt illiterate.   It was a chore.<br />
<!--more-->Have I, over the years, really become so dependent on a keyboard that I&#8217;ve now lost the ability to write properly?   It would appear so.</p>
<p>I suppose I&#8217;m simply out of practice.   It also reiterates just how caught up I am in the digital age.   That said, I&#8217;m sure I&#8217;m not the only one.   I guess I&#8217;ll just have to go back to basics and start hand-writing a few letters every day</p>
<p>It&#8217;s surprising really, considering when I was at school, writing was a real passion of mine.   I had the neatest little handwriting, and I would often knock up letters of saccharin-sweet nothings and send &#8216;em to the object of my affection.   My pen would fill up the page almost effortlessly.   Nowadays I can barely write my name and address on a simple form.</p>
<p>Detention, Christopher!   We need to get your longhand back up to scratch.</p>
<p>PS:  Apart from that, I have absolutely nothing to write about.   I&#8217;m devoid of deep thoughts and slightly struggling.   Winter has never been good to me.   Why does it always bring me down?   <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>PPS:   My first ever blog lying in bed, using the WordPress iPhone app.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Notepad Spine]]></title>
<link>http://curiosityfoundtheimage.wordpress.com/2009/11/14/notepad-spine/</link>
<pubDate>Sat, 14 Nov 2009 13:53:31 +0000</pubDate>
<dc:creator>The Travelling Bum</dc:creator>
<guid>http://curiosityfoundtheimage.wordpress.com/2009/11/14/notepad-spine/</guid>
<description><![CDATA[&nbsp; Notepad Spine &nbsp; &nbsp;]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>&#160;</p>
<div id="attachment_14" class="wp-caption aligncenter" style="width: 476px"><img class="size-full wp-image-14" title="Notepad Spine" src="http://curiosityfoundtheimage.wordpress.com/files/2009/11/notepad-spine.jpg" alt="Notepad Spine" width="466" height="235" /><p class="wp-caption-text">Notepad Spine</p></div>
<p>&#160;</p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mengkode Jadi Lebih Mudah dengan Eclipse dan CodeIgniter]]></title>
<link>http://ahaoke.wordpress.com/2009/11/13/mengkode-jadi-lebih-mudah-dengan-eclipse-dan-codeigniter/</link>
<pubDate>Fri, 13 Nov 2009 07:39:56 +0000</pubDate>
<dc:creator>ahaoke</dc:creator>
<guid>http://ahaoke.wordpress.com/2009/11/13/mengkode-jadi-lebih-mudah-dengan-eclipse-dan-codeigniter/</guid>
<description><![CDATA[Sejak lama saya menggunakan EditPlus sebagai editor tools dalam menulis kode-kode program php. Kemud]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Sejak lama saya menggunakan <a title="EditPlus" href="http://adf.ly/pqP" target="_blank">EditPlus</a> sebagai editor tools dalam menulis kode-kode program php. Kemudian beralih ke <a href="http://adf.ly/pqR">NotePad ++</a> beberapa tahun terakhir ini. Sepanjang satu dasawarsa beberapa editor pernah saya gunakan, seperti MS FrontPage, DreamWeaver, UltraEdit dsb. Kali ini saya ingin menjajal menggunakan <a title="Eclipse PDT" href="http://adf.ly/pqT" target="_blank">Eclipse PDT</a>.</p>
<p>PDT yang saya gunakan adalah versi GanyMede (lihat tulisan saya sebelumnya tentang <a title="Tutorial Eclipse" href="http://ahaoke.wordpress.com/2009/09/18/tutorial-xampp-eclipse-pdt-xdebug-dan-subversion/" target="_self">instalasi Eclipse</a>). Baru sekitar satu tahun ini, saya menggunakan framework PHP yang bernama <a title="CodeIgniter" href="http://adf.ly/pqX" target="_blank">CodeIgniter</a>. Gunanya menggunakan framework untuk mempermudah dan mempercepat pekerjaan koding.</p>
<p>Untuk menggunakan Eclipse dan CodeIgniter ada beberapa cara yang mungkin bisa anda gunakan.</p>
<p><strong>CodeIgniter</strong></p>
<p>1. Download CodeIgniter, dan ekstrak filenya</p>
<p>2. Lalu salin/copy folder CodeIgniter ke folder baru misalnya c:\CI</p>
<p>3. Di dalam c:\CI ada folder system. Di dalam folder system ada folder application. Cut folder application lalu paste ke folder system. Kira-kira hirarkinya seperti ini:</p>
<pre>application/
	config/
	controller/
	errors/
	....
system/
	codeigniter/
	database/
	fonts/
	.....
index.php
.htaccess</pre>
<p>4. Lalu edit file index.php dengan notepad. Carilah baris $application_folder = &#8220;application&#8221;;<br />
dan ubahlah menjadi $application_folder = &#8220;../application&#8221;;</p>
<p><strong>Eclipse</strong></p>
<ol>
<li><code>Jalankan Eclipse dan buat File New PHP Project. Isi nama proyek dengan CI_CORE dan pilih Create Project from existing source. Browse dan pilih ke c:\CI\system. Folder system merupakan sumber utama kode-kode Codeigniter.</code></li>
<li>Buat lagi New Project dengan nama CI_APP, dan arahkan ke c:\CI\application. Folder ini akan berisi kode-kode proyek yang akan kita kerjakan. Kemudian kita sertakan pula Project Path untuk dimasukkan ke CI_APP, masukkan CI_CORE seperti gambar ini:</li>
</ol>
<div id="attachment_166" class="wp-caption alignnone" style="width: 483px"><img class="size-full wp-image-166" title="Eclipse Path " src="http://ahaoke.wordpress.com/files/2009/11/eclipse_path001.jpg" alt="Eclipse Path " width="473" height="189" /><p class="wp-caption-text">Masukkan CI_CORE sebagai bagian dari proyek</p></div>
<p>Hasilnya kira-kira seperti ini:</p>
<div id="attachment_167" class="wp-caption alignnone" style="width: 126px"><img class="size-full wp-image-167" title="Project View" src="http://ahaoke.wordpress.com/files/2009/11/eclipsecodeigniter_projectsview.png" alt="Project View" width="116" height="299" /><p class="wp-caption-text">Tampilan CodeIgniter dengan Eclipse</p></div>
<p>Nah ketika kita akan ketik-ketik koding di Eclipse. Kita akan dimudahkan dengan AutoCompletion seperti gambar ini:</p>
<p><img class="alignnone size-full wp-image-168" title="eclipsecodeigniter_autocompletion" src="http://ahaoke.wordpress.com/files/2009/11/eclipsecodeigniter_autocompletion.png" alt="eclipsecodeigniter_autocompletion" width="480" height="222" /></p>
<p>Semoga meng-koding jadi lebih mudah dan menyenangkan.</p>
<pre><code>
</code></pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bad Poetry Oh Noetry]]></title>
<link>http://binaryidiot.wordpress.com/2009/11/10/bad-poetry-oh-noetry/</link>
<pubDate>Wed, 11 Nov 2009 02:13:01 +0000</pubDate>
<dc:creator>Adam D.</dc:creator>
<guid>http://binaryidiot.wordpress.com/2009/11/10/bad-poetry-oh-noetry/</guid>
<description><![CDATA[I&#8217;ve started a new blog you can find here or on the blogroll called &#8220;It&#8217;s Only Pre]]></description>
<content:encoded><![CDATA[I&#8217;ve started a new blog you can find here or on the blogroll called &#8220;It&#8217;s Only Pre]]></content:encoded>
</item>
<item>
<title><![CDATA[Cscope + Notepad++ Coding nirvana!]]></title>
<link>http://allajunaki.wordpress.com/2009/11/10/cscope-notepad-coding-nirvana/</link>
<pubDate>Tue, 10 Nov 2009 14:46:06 +0000</pubDate>
<dc:creator>allajunaki</dc:creator>
<guid>http://allajunaki.wordpress.com/2009/11/10/cscope-notepad-coding-nirvana/</guid>
<description><![CDATA[Loved Cscope on cygwin, but hated the fact that you anything you select will open up in Vi, and then]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Loved Cscope on cygwin, but hated the fact that you anything you select will open up in Vi, and then do some keyboard voodoo to get back to the cscope window?</p>
<p>Or are you one of those fan of notepad++ awesomeness but love the way cscope hunts for stuff for ya?</p>
<p>Fear not, there is a way both your sweethearts can now play with you, all at the same time for an awesome threesome <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Just export these lines before you fire up Cscope</p>
<pre>export CSCOPE_EDITOR="/cygdrive/c/Program Files/Notepad++/notepad++.exe"
export CSCOPE_LINEFLAG="-n%s"
</pre>
<p>Please note : Change the CSCOPE_EDITOR path to where your notepad++ is currently residing. For your convenience, I have included the path that is default for Normal install of notepad++.</p>
<p>Better still, put it in a script file (or perhaps bashrc).</p>
<p>Got a better suggestion? Post a comment <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[eyePlorer - graphical knowledge engine]]></title>
<link>http://squiremorley.wordpress.com/2009/11/09/eyeplorer-graphical-knowledge-engine/</link>
<pubDate>Mon, 09 Nov 2009 14:09:20 +0000</pubDate>
<dc:creator>markuos</dc:creator>
<guid>http://squiremorley.wordpress.com/2009/11/09/eyeplorer-graphical-knowledge-engine/</guid>
<description><![CDATA[eyePlorer is an interesting alternative to the usual approach taken by many when looking for informa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://en.eyeplorer.com/show/">eyePlorer</a> is an interesting alternative to the usual approach taken by many when looking for information. Instead of using a search engine to produce a series of unrelated links; eyePlorer is a &#8216;knowledge engine&#8217; designed to use semantic associations and provide a richer experience of interconnected knowledge. This would seem to have useful applications for education throughout the subject disciplines. And as a student it is useful when studying a topic, or writing an essay, to check that you have covered relevant and related areas to demonstrate a fuller understanding; eyePlorer would therefore seem to be a useful way to explore a topic.</p>
<p>The returned content from a topic search is displayed in an elegant graphical interface. There are plenty of features to get your head around with the eyePlorer interface, most or which are quite intuitive, and I&#8217;m pretty sure I won&#8217;t cover them all, but it&#8217;s worth taking a look at this video:</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/sJiSy7Bvsos&#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/sJiSy7Bvsos&#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>The circular graphic display is segmented into separate topic areas, with information falling into each of the categories. Alongside each information term or phrase is a dot, and the size of these dots indicates whether the information is well known (larger dots) or more obscure information (smaller dots). You can hover over each term/phrase and after a couple of seconds a knowledge box opens providing you with sourced information. Click on the information in the knowledge box and the page with the source of the information opens up within eyePlorer. <strong><em>Note:</em></strong> to get back to your eyePlorer graph, click the Back button at the top centre of the eyePlorer screen.</p>
<p>Across the top of the knowledge box are four tabs. The tab you&#8217;re currently in is the eyePlorer facts. The other three are Websearch (powered by Bing), Images (also powered by Bing), and Twitter.</p>
<p>If you want to investigate any of the items (terms/phrases) in your existing eyePlorer graph, you simply drag the item into a blank search term box or onto the plus (<strong>+</strong>) below the search term. This creates a new graph associating the two terms, to eliminate the original term from this joint search, click the close down <strong>x</strong> next to the term. You can move between your graphs using the back &#60; and forward &#62; links just at the bottom left and right (respectively) of your graph.</p>
<p>Here is a video giving more detail. <em><strong>Note:</strong> some of the interface shown on the video is different to what you might see, I think there must have been software updates to the interface since the video was produced.</em></p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/Vsnqdl79E8k&#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/Vsnqdl79E8k&#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>On the right of the <strong>+</strong> is a globe-like icon; dragging a term/phrase onto this performs a Google search for the term. <strong><em>Note:</em></strong> you have to be quite quick doing the dragging or the knowledge box opens before you get there, if this happens just click the globe icon at the bottom of the knowledge box.</p>
<p>When you register for a free account you get to fully use the second element of eyePlorer, the notepad. Whilst you can use the notepad without having an account, you can&#8217;t save any of this information, so it is worth registering. To add things to the notepad you simply drag them across from the graphical display.</p>
<p>Why should the use of eyePlorer knowledge engine be significant to you as an end user?</p>
<p>Well, quoting from the Vionto (the designers of the underlying software) site:</p>
<blockquote><p>What’s in for our users:</p>
<ul>
<li>Associate and aggregate information from different web sites or other content sources</li>
<li>Work with a user-friendly, interactive graphical interface</li>
<li>Generate content overviews</li>
<li>Find, process and store knowledge within a single user interface</li>
<li>Gain interesting and unexpected stimuli</li>
<li>Retrieve facts and text results (rather than just lists of links)</li>
</ul>
</blockquote>
<p style="text-align:right;"><em>Vionto Knowledge Machines</em></p>
<p style="text-align:right;"><em>http://www.vionto.com/lang/en/2009/01/10/knowledgemachines/</em></p>
<p style="text-align:left;">There are some quirks to using eyePlorer, and the available information resources might be a little limited for some users currently, but additional sites and resources will I believe continue to be added. I also believe the interface will continue to be improved. I think the concept is a good one and very useful, tapping into a more visual approach for knowledge retrieval, and the interlinking of knowledge &#8211; more a search for something and other related and associated content.</p>
<p style="text-align:left;">Another plus with eyePlorer is that you can add a spot of html into your website to include a dynamic link to eyePlorer.com for a particular search term.</p>
<p style="text-align:left;">Example term : Web search engine</p>
<p><a href="http://en.eyeplorer.com/show/me/Web search engine" target="_blank"><br />
   <img border="0" src="http://eyeplorer.com/show/images/eyeplorer-60x60.png" alt="eyePlorer.com" /><br />
</a></p>
<p style="text-align:left;">
<p style="text-align:left;">I think eyePlorer is very much worth trying. And if it doesn&#8217;t quite meet your requirements now, possibly try it again in a few months.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Notepad++ ]]></title>
<link>http://hardyw3b.wordpress.com/2009/11/07/notepad/</link>
<pubDate>Sat, 07 Nov 2009 02:26:17 +0000</pubDate>
<dc:creator>hardyweb</dc:creator>
<guid>http://hardyw3b.wordpress.com/2009/11/07/notepad/</guid>
<description><![CDATA[mybad, apa la aku nih, benda simple pun jadi kepayoh..kata 1337 [ perasan la tu ], dulu masa bertuka]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>mybad, apa la aku nih, benda simple pun jadi kepayoh..kata 1337 [ <strong>perasan la tu</strong> ], dulu masa bertukar ke OS linux sepenuhnya, agak janggal juga apabila buat coding html, css dan php dalam vi mahu pun gedit. ya lah, kalau guna <a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank">notepad++</a>, senang sikit sebab ada bantuan syntax color. Mudah untuk pencarian function dan sebagainya..</p>
<p>Semalam duk lepak lepak sambil bermain main dengan <a href="http://mambang.org.my/modules/news/article.php?storyid=268" target="_blank">oshirix spe 2009</a>, aku terfikir, kalau dalam linux nih ada <a href="http://www.winehq.org/">wine</a>, dah tentu notepad++ boleh digunakan dalam Linux. hahahhaha.</p>
<p>dan hasilnya..</p>
<p><a href="http://hardyw3b.wordpress.com/files/2009/11/screenshot_023.jpg"><img class="aligncenter size-full wp-image-2261" title="screenshot_023" src="http://hardyw3b.wordpress.com/files/2009/11/screenshot_023.jpg" alt="screenshot_023" width="510" height="299" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Memblok facebook dengan hosts ??..]]></title>
<link>http://zankisme.wordpress.com/2009/11/06/memblok-facebook-dengan-hosts/</link>
<pubDate>Fri, 06 Nov 2009 11:12:08 +0000</pubDate>
<dc:creator>zank</dc:creator>
<guid>http://zankisme.wordpress.com/2009/11/06/memblok-facebook-dengan-hosts/</guid>
<description><![CDATA[Anda pernah merasa terganggu oleh facebook, friendster, youtube, atau situs apa saja karena teman ke]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><img class="alignleft size-full wp-image-173" title="blok" src="http://zankisme.wordpress.com/files/2009/11/anti-facebook1.gif" alt="blok" width="282" height="272" /><span style="color:#000000;">Anda pernah merasa terganggu oleh facebook, friendster, youtube, atau situs apa saja karena teman kerja selalu memakai komputer anda untuk online sehingga pekerjaan anda harus tertunda?? hehe&#8230; blok saja situsnya dari komputer anda !! hal ini bisa anda lakukan dengan mengutak utik file hosts. Dengan begitu hanya anda yang bisa mengakses situs tersebut&#8230; tertarik?</span></p>
<p style="text-align:justify;">Sebaiknya pahami dulu pengertian tentang hosts file tersebut sebelum ide iseng anda dijalankan..</p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Hosts adalah</strong></span> file komputer yang digunakan oleh sistem operasi untuk memetakan nama host ke alamat IP yang gunanya untuk  menemukan node pada sebuah jaringan komputer. Komputer Anda menggunakan file hosts untuk membantu mempercepat resolusi nama domain di Internet untuk menyelesaikan alamat IP  sebuah website, kemudian memeriksa file hosts untuk melihat apakah sudah ada entri di sana. Jika ada, tidak perlu pergi ke server DNS dan menyelesaikan alamat.     Astaga&#8230; ribet sekali bahasa saya ya?&#8230;   hehehe   abaikan saja,  sebab  topik  yang kita bahas disini adalah cara memblok sebuah situs agar tidak bisa diakses dari komputer anda.</p>
<p style="text-align:justify;">Secara teori, perubahan file hosts bertujuan membantu mempercepat browsing web, tetapi Anda juga dapat memanipulasi file hosts untuk memblokir situs dengan menunjuk nama domain ke alamat IP yang berbeda,  seperti  127.0.0.1  yang merupakan alamat IP mesin lokal Anda.</p>
<p>Heh?..langsung caranya aja?&#8230; waduh tidak sabaran sekali..</p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>ok, this is how to :</strong></span></p>
<p style="text-align:justify;">1. Buka C:\Windows\Sytem32\Drivers\Etc\hosts dan buka / klik kanan -&#62; openwith, pilih   notepad</p>
<p>2. Maka akan tampil pada notepad anda seperti ini:</p>
<p style="text-align:justify;">==================================================<br />
# Copyright (c) 1993-1999 Microsoft Corp.<br />
#<br />
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.<br />
#<br />
# This file contains the mappings of IP addresses to host names. Each<br />
# entry should be kept on an individual line. The IP address should<br />
# be placed in the first column followed by the corresponding host name.<br />
# The IP address and the host name should be separated by at least one<br />
# space.<br />
#<br />
# Additionally, comments (such as these) may be inserted on individual<br />
# lines or following the machine name denoted by a ‘#’ symbol.<br />
#<br />
# For example:<br />
#<br />
# 102.54.94.97 rhino.acme.com # source server<br />
# 38.25.63.10 x.acme.com # x client host</p>
<p>127.0.0.1 localhost</p>
<p>==================================================</p>
<p style="text-align:justify;">3. lalu tambahkan situs-situs yang anda ingin blokir,  ketik pada bagian paling dibawah tulisan 127.0.0.1 lokalhost, (yang berwarna hijau) disini saya akan memblokir beberapa situs seperti facebook, youtube dan friendster : (cara penulisan: 127.0.0.1 (tekan tab) facebook.com, sehingga pada notepad akan tertulis seperti ini :</p>
<p style="text-align:justify;">==================================================<br />
# Copyright (c) 1993-1999 Microsoft Corp.<br />
#<br />
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.<br />
#<br />
# This file contains the mappings of IP addresses to host names. Each<br />
# entry should be kept on an individual line. The IP address should<br />
# be placed in the first column followed by the corresponding host name.<br />
# The IP address and the host name should be separated by at least one<br />
# space.<br />
#<br />
# Additionally, comments (such as these) may be inserted on individual<br />
# lines or following the machine name denoted by a ‘#’ symbol.<br />
#<br />
# For example:<br />
#<br />
# 102.54.94.97 rhino.acme.com # source server<br />
# 38.25.63.10 x.acme.com # x client host</p>
<p>127.0.0.1 localhost<br />
<span style="color:#008000;">127.0.0.1 facebook.com<br />
127.0.0.1 www.facebook.com<br />
127.0.0.1 youtube.com<br />
127.0.0.1 www.youtube.com<br />
127.0.0.1 friendster.com</span><br />
<span style="color:#008000;">127.0.0.1 www.friendster.com</span><br />
==================================================</p>
<p style="text-align:justify;">4. lalu klik file -&#62; safe atau tekan saja Ctrl + S. kalau sudah tutup notepad anda, dan coba browsing ke situs http://www.facebook.com/ &#8230;</p>
<p>&#8230; sampai disini anda sudah berhasil menjalankan ide iseng anda ?  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_twisted.gif' alt=':twisted:' class='wp-smiley' /> </p>
<p style="text-align:justify;"><span style="color:#000080;">Bila anda ingin mengakses situs yang telah anda blok tadi, buka host file dan hapus alamat situs yang anda blok dan jangan lupa untuk safe sebelum anda menutup notepad.</span></p>
<p style="text-align:justify;">Lokasi host file pada OS :</p>
<table border="1">
<tbody>
<tr>
<th>Operating System</th>
<th>Version</th>
<th>Lokasi</th>
</tr>
<tr>
<td><a title="Microsoft Windows" href="http://en.wikipedia.org/wiki/Microsoft_Windows">Windows</a></td>
<td>95, 98, Me</td>
<td><code>%WinDir%\</code></td>
</tr>
<tr>
<td><a title="Windows" href="http://en.wikipedia.org/wiki/Windows">Windows</a></td>
<td>NT, 2000, XP, 2003, Vista, 7</td>
<td><code>%SystemRoot%\system32\drivers\etc\</code><sup>†</sup> by default.<sup>‡</sup></td>
</tr>
<tr>
<td><a title="Macintosh" href="http://en.wikipedia.org/wiki/Macintosh">Macintosh</a></td>
<td>9 and earlier</td>
<td>System Folder: Preferences or System folder</td>
</tr>
<tr>
<td><a title="Mac OS X" href="http://en.wikipedia.org/wiki/Mac_OS_X">Mac OS X</a>, <a title="IPhoneOS" href="http://en.wikipedia.org/wiki/IPhoneOS">iPhoneOS</a></td>
<td></td>
<td><code>/private/etc/hosts</code></td>
</tr>
<tr>
<td><a title="Linux" href="http://en.wikipedia.org/wiki/Linux">Linux</a>, <a title="BSD" href="http://en.wikipedia.org/wiki/BSD">BSD</a>, <a title="Unix" href="http://en.wikipedia.org/wiki/Unix#Free_Unix-like_operating_systems">etc</a></td>
<td></td>
<td><code>/etc/hosts</code><sup><a href="http://en.wikipedia.org/wiki/Hosts_file#cite_note-2">[3]</a></sup></td>
</tr>
<tr>
<td><a title="Novell NetWare" href="http://en.wikipedia.org/wiki/Novell_NetWare">Novell NetWare</a></td>
<td></td>
<td><code>SYS:etc\hosts</code></td>
</tr>
<tr>
<td><a title="OS/2" href="http://en.wikipedia.org/wiki/OS/2">OS/2</a> &#38; <a title="EComStation" href="http://en.wikipedia.org/wiki/EComStation">eComStation</a></td>
<td></td>
<td><code>"bootdrive":\mptn\etc\</code></td>
</tr>
<tr>
<td><a title="Symbian OS" href="http://en.wikipedia.org/wiki/Symbian_OS">Symbian</a></td>
<td>Symbian OS 6.1-9.0</td>
<td><code>C:\system\data\hosts</code></td>
</tr>
<tr>
<td><a title="Symbian OS" href="http://en.wikipedia.org/wiki/Symbian_OS">Symbian</a></td>
<td>Symbian OS <a title="Symbian OS" href="http://en.wikipedia.org/wiki/Symbian_OS#Symbian_OS_9.1">9.1+</a></td>
<td><code>C:\private\10000882\hosts</code> (AllFiles capable only)</td>
</tr>
</tbody>
</table>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Mengapa IP nya harus 127.0.0.1 ? </strong></span><br />
karena ini adalah IP adress dari localhost,  cantumkan saja IP dari localhost ini sehingga alamat situs langsung di redirect ke IP yang sudah kita tentukan sendiri, yang artinya koneksi ke situs dimaksud akan gagal.</p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Sekarang tujuan utama penulisan topik ini </strong>:</span><br />
Tujuan penulisan adalah untuk mengenalkan kita tentang pentingnya file host tersebut untuk tujuan yang baik, mengapa?.. karena dengan pemahaman diatas anda dapat memblokir berbagai situs misalnya situs porno ( berani? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  ), atau situs yang mengandung malware karena seperti kita ketahui bagaimana kemampuan spyware yang menempel pada PC Anda saat menjelajah situs web atau download file. Tehnik pengubahan file hosts ini juga dimanfaatkan oleh spyware dengan tujuan mendownload update virus dan memanggil varian worm lain ke komputer anda.</p>
<p style="text-align:justify;">Sebagai contoh, misalnya situs &#8220;www.porno.com&#8221; adalah situs malware yang dikenal dan memiliki alamat ip 68.23.5.x. maka kita bisa merubah file host dengan menuliskan bahwa 127.0.0.1 adalah alamat IP &#8220;www.porno.com&#8221;. Jadi, ketika anda mengetik nama situs &#8220;www.porno.com&#8221; ke browser web anda, tak ada yang terjadi karena browser Anda menganggap alamat IP untuk &#8220;www.porno.com&#8221; adalah PC Anda.</p>
<p style="text-align:justify;">Ada beberapa cara mengubah file hosts tersebut dengan menggunakan program seperti Spybot Search and Destroy, yang memiliki fitur Imunisasi yang memodifikasi file host anda. Atau Anda dapat melakukannya secara manual dengan mendapatkan host file dari situs yang sering memperbaruinya. Salah satu situs adalah  SomeoneWhoCares.org.</p>
<p style="text-align:justify;">&#8230;. Rasanya sudah cukup ya?.. anda pasti sudah dapat dengan mudah melakukan pengaturan pada file hosts anda dan yang terpenting anda sudah dapat memahami mengapa topik ini ditulis..</p>
<p style="text-align:justify;">Begitu saja &#8230;  maafkan ke-sok tahuan saya dan satu hal lagi, penulisan topik ini tidak bermaksud mendiskreditkan situs tertentu, semata-mata  hanya ingin berbagi, terimakasih sudah mencoba mengerti..<br />
Salam &#8230;.</p>
<p><img class="alignleft size-full wp-image-193" title="signature Transblog" src="http://zankisme.wordpress.com/files/2009/11/signature-transblog.png" alt="signature Transblog" width="140" height="52" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ai đã viết ra Notepad?]]></title>
<link>http://katatunix.wordpress.com/2009/11/05/ai-da-vi%e1%ba%bft-ra-notepad/</link>
<pubDate>Thu, 05 Nov 2009 04:50:35 +0000</pubDate>
<dc:creator>Katatunix</dc:creator>
<guid>http://katatunix.wordpress.com/2009/11/05/ai-da-vi%e1%ba%bft-ra-notepad/</guid>
<description><![CDATA[Hey, is there somebody around to accept this award? Back in the late 1990s, some large Internet asso]]></description>
<content:encoded><![CDATA[Hey, is there somebody around to accept this award? Back in the late 1990s, some large Internet asso]]></content:encoded>
</item>
<item>
<title><![CDATA[I find answers!]]></title>
<link>http://thatgingerkid.wordpress.com/2009/11/03/i-find-answers/</link>
<pubDate>Wed, 04 Nov 2009 00:58:13 +0000</pubDate>
<dc:creator>Lela</dc:creator>
<guid>http://thatgingerkid.wordpress.com/2009/11/03/i-find-answers/</guid>
<description><![CDATA[So I was showing a friend Window&#8217;s Speech Recognition Program and how cool it is to use voice ]]></description>
<content:encoded><![CDATA[So I was showing a friend Window&#8217;s Speech Recognition Program and how cool it is to use voice ]]></content:encoded>
</item>
<item>
<title><![CDATA[Notepad++ Plugin To Run Python Scripts]]></title>
<link>http://magicpc.wordpress.com/2009/11/03/notepad-plugin-to-run-python-scripts/</link>
<pubDate>Tue, 03 Nov 2009 20:25:44 +0000</pubDate>
<dc:creator>Abd Allah Diab</dc:creator>
<guid>http://magicpc.wordpress.com/2009/11/03/notepad-plugin-to-run-python-scripts/</guid>
<description><![CDATA[I use Python everyday, it has become my first tool to use when I need to do anything. In Arabic (in ]]></description>
<content:encoded><![CDATA[I use Python everyday, it has become my first tool to use when I need to do anything. In Arabic (in ]]></content:encoded>
</item>
<item>
<title><![CDATA[ویرایشگری برای برنامه نویسان]]></title>
<link>http://tjs87.wordpress.com/2009/11/03/%d9%88%db%8c%d8%b1%d8%a7%db%8c%d8%b4%da%af%d8%b1%db%8c-%d8%a8%d8%b1%d8%a7%db%8c-%d8%a8%d8%b1%d9%86%d8%a7%d9%85%d9%87-%d9%86%d9%88%db%8c%d8%b3%d8%a7%d9%86/</link>
<pubDate>Tue, 03 Nov 2009 15:45:11 +0000</pubDate>
<dc:creator>سی شارپ</dc:creator>
<guid>http://tjs87.wordpress.com/2009/11/03/%d9%88%db%8c%d8%b1%d8%a7%db%8c%d8%b4%da%af%d8%b1%db%8c-%d8%a8%d8%b1%d8%a7%db%8c-%d8%a8%d8%b1%d9%86%d8%a7%d9%85%d9%87-%d9%86%d9%88%db%8c%d8%b3%d8%a7%d9%86/</guid>
<description><![CDATA[Notepad++ کار خود را با ویرایش متن که توسط برنامه Notepad ویندوز فراهم شده شروع می کند،ولی ویژگی های]]></description>
<content:encoded><![CDATA[Notepad++ کار خود را با ویرایش متن که توسط برنامه Notepad ویندوز فراهم شده شروع می کند،ولی ویژگی های]]></content:encoded>
</item>
<item>
<title><![CDATA[Notepad++]]></title>
<link>http://soft09.wordpress.com/2009/11/01/notepad/</link>
<pubDate>Sun, 01 Nov 2009 19:55:39 +0000</pubDate>
<dc:creator>Cata</dc:creator>
<guid>http://soft09.wordpress.com/2009/11/01/notepad/</guid>
<description><![CDATA[Notepad++ este un editor de texte. Notepad++ permite editarea codului sursa in mai multe limbaje de ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Notepad++ este un editor de texte.</p>
<p>Notepad++ permite editarea codului sursa in mai multe limbaje de programare, este gratuit, este ca si notepad-ul din windows dar mai bun.</p>
<p><a href="http://www.softpedia.com/get/Office-tools/Text-editors/Notepad-plus-plus.shtml"><img src="http://www.softpedia.com/images/softpedia_download_small.gif" border="0" alt="" /></a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
