<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>learnsimply.net</title>
	<atom:link href="http://computer.learnsimply.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://computer.learnsimply.net</link>
	<description>Learning Everything Easily</description>
	<pubDate>Wed, 19 Nov 2008 23:57:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>How to include file in ASP net page</title>
		<link>http://computer.learnsimply.net/2008/11/how-to-include-file-in-asp-net-page/</link>
		<comments>http://computer.learnsimply.net/2008/11/how-to-include-file-in-asp-net-page/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 23:57:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[computer]]></category>

		<category><![CDATA[Learn Simply]]></category>

		<category><![CDATA[NET Framework]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/11/how-to-include-file-in-asp-net-page/</guid>
		<description><![CDATA[There are at least 3 ways to do so:
1. Using &#60;!– #include file=”[filename].aspx” –&#62;
The first is we just write a simple script (as show above) and specify the file we want to include. Place the above script where ever we want content of [filename].aspx appear in pages that referenced it. For security reason always try [...]]]></description>
			<content:encoded><![CDATA[<p>There are at least 3 ways to do so:</p>
<p>1. Using &lt;!– #include file=”[filename].aspx” –&gt;<br />
The first is we just write a simple script (as show above) and specify the file we want to include. Place the above script where ever we want content of [filename].aspx appear in pages that referenced it. For security reason always try to include only *.aspx files.</p>
<p>2. Using Response.WriteFile(”[filename].aspx”)<br />
Just like the first one, but now we must place it in dynamic script. We need to place the above code inside &lt;%%&gt;. The example maybe look something like that</p>
<p>&lt;div&gt;&lt;% Response.WriteFile(&#8221;inc.aspx&#8221;); %&gt;&lt;/div&gt;</p>
<p>3. Using Master Pages<br />
Slightly different with the above two, we need a bit more step if we choose to use master page. First we must define the master page (file with extension *.master), so we need the following directive for our master page:</p>
<p>&lt;%@ Master Language=&#8221;C#&#8221; %&gt;</p>
<p>We can change the value for Language attribute with whatever language supported in .NET, and we can add attribute like CodeFile and Inherits too (for code behind style). In master page we define portion of page that can be replaced inside &lt;asp:ContentPlaceHolder id=”contHolder” runat=”server”&gt;&lt;/asp:ContentPlaceHolder&gt;. Yes this is a new stuff (not really new, but its emerged in .NET 2.0).</p>
<p>As second step in using master page, we must define page(s) that will use the master page (*.aspx files). We will need the following directive:</p>
<p>&lt;%@ Page Language=&#8221;C#&#8221; MasterPageFile=&#8221;[masterfile].master” %&gt;</p>
<p>And we place the content of master page (portion inside &lt;asp:ContentPlaceHolder /&gt; control) with the following code:</p>
<p>&lt;asp:Content id=&#8221;content1&#8243; ContentPlaceHolderID=&#8221;[placeHolderID]” &gt;&lt;/content&gt;</p>
<p>To make it work make sure we don’t forget ContentPlaceHolderID, it must has value that associated with ID of ContentPlaceHolder control in master page</p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/bored-with-your-linux-why-not-try-opensolaris/" rel="bookmark" title="Permanent Link: Bored with your Linux, why not try openSolaris?" >Bored with your Linux, why not try openSolaris?</a></span><div class="aizattos_related_posts_excerpt">Open solaris 8.5 is a fork of a proprietary operating system named Solaris that was build by Sun Mic...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/04/how-to-reset-canon-pixma-ip-1200-and-ip-1600/" rel="bookmark" title="Permanent Link: How to reset canon pixma ip 1200 and ip 1600" >How to reset canon pixma ip 1200 and ip 1600</a></span><div class="aizattos_related_posts_excerpt">This is a problem form many Canon Pixma IP1200 and IP1600.
Problem symptoms :

The LED is blinking, ...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/06/php-programmers-pervasive-problem-warning-session_start-functionsession-start-cannot-send-session-cache-limiter-headers-already-sent-output-started-at/" rel="bookmark" title="Permanent Link: PHP programmer&#8217;s pervasive problem, Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at" >PHP programmer&#8217;s pervasive problem, Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at</a></span><div class="aizattos_related_posts_excerpt">If you are a php programmer, some times, you'll face this problem. You'll see this on your web page:...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/new-apple-iphone-rockss/" rel="bookmark" title="Permanent Link: New Apple iPhone, rockss!!!" >New Apple iPhone, rockss!!!</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/how-to-play-dat-video-files-in-mp4-player/" rel="bookmark" title="Permanent Link: How to Play DAT Video files in MP4 Player" >How to Play DAT Video files in MP4 Player</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/want-your-data-secure-why-not-encrypt-it/" rel="bookmark" title="Permanent Link: Want your data secure ? why not encrypt it.." >Want your data secure ? why not encrypt it..</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/removing-temp-db-in-sql-server/" rel="bookmark" title="Permanent Link: Removing TEMP DB in SQL Server" >Removing TEMP DB in SQL Server</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/08/useful-sftp-commands/" rel="bookmark" title="Permanent Link: Useful SFTP Commands" >Useful SFTP Commands</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/where-is-your-font-stored-in-ubuntu/" rel="bookmark" title="Permanent Link: Where is your Font stored in Ubuntu?" >Where is your Font stored in Ubuntu?</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/paintnet-a-superb-yet-simple-image-manipulation-program-run-net-framework-its-open-source/" rel="bookmark" title="Permanent Link: PaintNET, a superb yet simple image manipulation program run Net Framework, it&#8217;s open source" >PaintNET, a superb yet simple image manipulation program run Net Framework, it&#8217;s open source</a></span></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/11/how-to-include-file-in-asp-net-page/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows 7, the official successor of Windows Vista</title>
		<link>http://computer.learnsimply.net/2008/10/windows-7-the-official-successor-of-windows-vista/</link>
		<comments>http://computer.learnsimply.net/2008/10/windows-7-the-official-successor-of-windows-vista/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 06:15:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/10/windows-7-the-official-successor-of-windows-vista/</guid>
		<description><![CDATA[Tuesday, Microsoft finally confirmed that Windows 7 is the official successor of Windows Vista. Wow, can&#8217;t wait to see it. You may read the news from New York Times here.
Related PostsWill Windows 7 Released Early?I have just read gigaom's  blog that bears a report from techrepublic's blog on indications whether ...Next Gen Windows OS [...]]]></description>
			<content:encoded><![CDATA[<p>Tuesday, Microsoft finally confirmed that Windows 7 is the official successor of Windows Vista. Wow, can&#8217;t wait to see it. You may read the news from New York Times <a href="http://www.nytimes.com/2008/10/29/technology/business-computing/29soft.html?_r=1&amp;oref=slogin" target="_blank">here</a>.</p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/04/will-windows-7-released-early/" rel="bookmark" title="Permanent Link: Will Windows 7 Released Early?" >Will Windows 7 Released Early?</a></span><div class="aizattos_related_posts_excerpt">I have just read gigaom's  blog that bears a report from techrepublic's blog on indications whether ...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/next-gen-windows-os-available-feb-2009/" rel="bookmark" title="Permanent Link: Next Gen Windows OS Available Feb 2009?" >Next Gen Windows OS Available Feb 2009?</a></span><div class="aizattos_related_posts_excerpt">Microsoft Corporation stated yesterday that the development of the next generation of Microsoft Wind...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/windows-7-will-be-released-on-date-spokesperson-of-microsoft-said/" rel="bookmark" title="Permanent Link: Windows 7 will be released on date, spokesperson of Microsoft said" >Windows 7 will be released on date, spokesperson of Microsoft said</a></span><div class="aizattos_related_posts_excerpt">Albeit the spread of many rumours about the release date of the new Windows 7  (the name for next ge...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/windows-xp-sp3-links-from-tipandtricknet/" rel="bookmark" title="Permanent Link: Windows XP SP3 links, from tipandtrick.net" >Windows XP SP3 links, from tipandtrick.net</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/a-problem-that-occurs-on-itunes-and-vista/" rel="bookmark" title="Permanent Link: A problem that occurs on iTunes and Vista" >A problem that occurs on iTunes and Vista</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/04/a-tool-to-mount-iso-files-directly-on-windows-xp/" rel="bookmark" title="Permanent Link: A tool to mount iso files directly on Windows xp" >A tool to mount iso files directly on Windows xp</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/10/how-to-insert-adsense-code-on-drupal-6/" rel="bookmark" title="Permanent Link: How to insert adsense code on Drupal 6" >How to insert adsense code on Drupal 6</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/what-to-do-if-your-printer-job-cannot-be-deleted/" rel="bookmark" title="Permanent Link: What to do if your printer job cannot be deleted" >What to do if your printer job cannot be deleted</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/how-to-copy-cddvd-content-into-disc-image-iso/" rel="bookmark" title="Permanent Link: How to copy CD/DVD content into disc image (ISO)" >How to copy CD/DVD content into disc image (ISO)</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/paintnet-a-superb-yet-simple-image-manipulation-program-run-net-framework-its-open-source/" rel="bookmark" title="Permanent Link: PaintNET, a superb yet simple image manipulation program run Net Framework, it&#8217;s open source" >PaintNET, a superb yet simple image manipulation program run Net Framework, it&#8217;s open source</a></span></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/10/windows-7-the-official-successor-of-windows-vista/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to insert adsense code on Drupal 6</title>
		<link>http://computer.learnsimply.net/2008/10/how-to-insert-adsense-code-on-drupal-6/</link>
		<comments>http://computer.learnsimply.net/2008/10/how-to-insert-adsense-code-on-drupal-6/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 04:12:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[opensource]]></category>

		<category><![CDATA[adsense]]></category>

		<category><![CDATA[drupal]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/10/how-to-insert-adsense-code-on-drupal-6/</guid>
		<description><![CDATA[From my experience on my other site that uses drupal. As you know, drupal has released it&#8217;s latest version (6) some months ago. And it offers many features.
But to tell you the truth, migrating a platform is a painful job. Just like what vista users&#8217; face on their first attempt to use vista after using [...]]]></description>
			<content:encoded><![CDATA[<p>From my experience on my other site that uses drupal. As you know, drupal has released it&#8217;s latest version (6) some months ago. And it offers many features.</p>
<p>But to tell you the truth, migrating a platform is a painful job. Just like what vista users&#8217; face on their first attempt to use vista after using win xp, it&#8217;s also true for Drupal 5 users who migrate to drupal 6.</p>
<p>One of the important aspect is the adsense code insertion in Drupal 6.  When i use drupal 5, there are many modules that let me insert adsense code easily. but now, most of it haven&#8217;t yet upgraded.</p>
<p>Then i use a block to insert adsense code. but it&#8217;s failed since html filtering changes the code automatically. But after browsing from some sources <a href="http://www.drmartinwilliams.com/websites/adsense-n-drupal-6.html" target="_blank">here</a> and <a href="http://drupal.org/node/213196" target="_blank">here</a>. I finally managed to make adsense codes work for Drupal 6.</p>
<p>The answer is by changing the block&#8217;s option from HTML to PHP codes. Since</p>
<p>I tried to insert Adsense code as a block within a Drupal 6 site (using html block), but it didn&#8217;t work. So, after searching for some answers, finally i found it in a thread on Drupal site.</p>
<p>One way of saving a block without the HTML filter being applied is to choose PHP Filter as input format. Then, my Adsense blocks work just fine.</p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/installing-rails-21-on-ubuntu/" rel="bookmark" title="Permanent Link: Installing Rails 21 on Ubuntu" >Installing Rails 21 on Ubuntu</a></span><div class="aizattos_related_posts_excerpt">Ruby is a new platform for web development  that offers many new features that is unique. Here's ste...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/08/another-php-tutorials/" rel="bookmark" title="Permanent Link: Another PHP tutorials" >Another PHP tutorials</a></span><div class="aizattos_related_posts_excerpt">To escape php from html, a PHP code block starts with “&lt;?php” and ends with “?&gt;”. A PH...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/11/how-to-include-file-in-asp-net-page/" rel="bookmark" title="Permanent Link: How to include file in ASP net page" >How to include file in ASP net page</a></span><div class="aizattos_related_posts_excerpt">There are at least 3 ways to do so:
1. Using &lt;!– #include file=”[filename].aspx” –&gt;
Th...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/vnc-viewer-tool-to-remote-controlling-your-vnc-server/" rel="bookmark" title="Permanent Link: vnc viewer, tool to remote controlling your vnc server" >vnc viewer, tool to remote controlling your vnc server</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/04/beware-of-a-gmail-phising-attempt/" rel="bookmark" title="Permanent Link: Beware of a gmail phising attempt" >Beware of a gmail phising attempt</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/04/how-to-remove-ads-from-yahoo-messenger-8-and-9/" rel="bookmark" title="Permanent Link: How to remove ads from Yahoo Messenger 8 and 9" >How to remove ads from Yahoo Messenger 8 and 9</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/06/php-programmers-pervasive-problem-warning-session_start-functionsession-start-cannot-send-session-cache-limiter-headers-already-sent-output-started-at/" rel="bookmark" title="Permanent Link: PHP programmer&#8217;s pervasive problem, Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at" >PHP programmer&#8217;s pervasive problem, Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/paintnet-a-superb-yet-simple-image-manipulation-program-run-net-framework-its-open-source/" rel="bookmark" title="Permanent Link: PaintNET, a superb yet simple image manipulation program run Net Framework, it&#8217;s open source" >PaintNET, a superb yet simple image manipulation program run Net Framework, it&#8217;s open source</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/how-to-install-vpn-on-linux-trixbox/" rel="bookmark" title="Permanent Link: How to install vpn on Linux trixbox" >How to install vpn on Linux trixbox</a></span></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/10/how-to-insert-adsense-code-on-drupal-6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to disable WIndows XP taskbar using Delphi</title>
		<link>http://computer.learnsimply.net/2008/09/how-to-disable-windows-xp-taskbar-using-delphi/</link>
		<comments>http://computer.learnsimply.net/2008/09/how-to-disable-windows-xp-taskbar-using-delphi/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 07:01:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[delphi]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/09/how-to-disable-windows-xp-taskbar-using-delphi/</guid>
		<description><![CDATA[TO disable taskbar, you can use this procedure
procedure HideTaskbarWindows();
var hTaskBar : Thandle;
begin
hTaskBar := FindWindow(’Shell_TrayWnd’,Nil);
ShowWindow(hTaskBar,Sw_Hide);
end;
While to reenable the taskbar, you could use
procedure ShowTaskbarWindows();
var hTaskBar : Thandle;
begin
hTaskBar := FindWindow(’Shell_TrayWnd’,Nil);
ShowWindow(hTaskBar,Sw_Normal);
end;
Tags: delphi, tips n tricks
Related PostsHow to show message box in DelphiIn VB and VBNET you may use msgbox ("Hellow"), or MessageBox ("Hellow") to create message box.
In De...How to [...]]]></description>
			<content:encoded><![CDATA[<p>TO disable taskbar, you can use this procedure</p>
<p>procedure HideTaskbarWindows();<br />
var hTaskBar : Thandle;<br />
begin<br />
hTaskBar := FindWindow(’Shell_TrayWnd’,Nil);<br />
ShowWindow(hTaskBar,Sw_Hide);<br />
end;</p>
<p>While to reenable the taskbar, you could use</p>
<p>procedure ShowTaskbarWindows();<br />
var hTaskBar : Thandle;<br />
begin<br />
hTaskBar := FindWindow(’Shell_TrayWnd’,Nil);<br />
ShowWindow(hTaskBar,Sw_Normal);<br />
end;</p>
<p>Tags: <a href="http://technorati.com/tag/delphi" rel="tag">delphi</a>, <a href="http://technorati.com/tag/tips+n+tricks" rel="tag">tips n tricks</a></p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/how-to-show-message-box-in-delphi/" rel="bookmark" title="Permanent Link: How to show message box in Delphi" >How to show message box in Delphi</a></span><div class="aizattos_related_posts_excerpt">In VB and VBNET you may use msgbox ("Hellow"), or MessageBox ("Hellow") to create message box.
In De...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/how-to-disable-notebooks-touchpad-on-linux/" rel="bookmark" title="Permanent Link: How to disable notebook&#8217;s touchpad on Linux" >How to disable notebook&#8217;s touchpad on Linux</a></span><div class="aizattos_related_posts_excerpt">In ubuntu, sometimes touchpad is irritating, especially when you are typing and sudddenly touchpad s...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/06/firefox-3-is-superbbbb/" rel="bookmark" title="Permanent Link: Firefox 3 is superbbbb" >Firefox 3 is superbbbb</a></span><div class="aizattos_related_posts_excerpt">I have tried the firefox 3 stable version. It's absolutely superbbbb. i can disable many plugins eg:...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/10/windows-7-the-official-successor-of-windows-vista/" rel="bookmark" title="Permanent Link: Windows 7, the official successor of Windows Vista" >Windows 7, the official successor of Windows Vista</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/04/a-tool-to-mount-iso-files-directly-on-windows-xp/" rel="bookmark" title="Permanent Link: A tool to mount iso files directly on Windows xp" >A tool to mount iso files directly on Windows xp</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/next-gen-windows-os-available-feb-2009/" rel="bookmark" title="Permanent Link: Next Gen Windows OS Available Feb 2009?" >Next Gen Windows OS Available Feb 2009?</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/04/will-windows-7-released-early/" rel="bookmark" title="Permanent Link: Will Windows 7 Released Early?" >Will Windows 7 Released Early?</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/windows-7-will-be-released-on-date-spokesperson-of-microsoft-said/" rel="bookmark" title="Permanent Link: Windows 7 will be released on date, spokesperson of Microsoft said" >Windows 7 will be released on date, spokesperson of Microsoft said</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/windows-xp-sp3-links-from-tipandtricknet/" rel="bookmark" title="Permanent Link: Windows XP SP3 links, from tipandtrick.net" >Windows XP SP3 links, from tipandtrick.net</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/what-to-do-if-your-printer-job-cannot-be-deleted/" rel="bookmark" title="Permanent Link: What to do if your printer job cannot be deleted" >What to do if your printer job cannot be deleted</a></span></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/09/how-to-disable-windows-xp-taskbar-using-delphi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Introduce GNOPE, an gui app creator using php-gtk</title>
		<link>http://computer.learnsimply.net/2008/09/introduce-gnope-an-gui-app-creator-using-php-gtk/</link>
		<comments>http://computer.learnsimply.net/2008/09/introduce-gnope-an-gui-app-creator-using-php-gtk/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 06:57:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[opensource]]></category>

		<category><![CDATA[php gtk]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/09/introduce-gnope-an-gui-app-creator-using-php-gtk/</guid>
		<description><![CDATA[Gnope is a program management environment, allowing you to download and deploy applications with a graphical user interface written in PHP-GTK2 on many platforms.

You can download it from http://www.gnope.org/download.php
You can see the forum section from http://www.gnope.org/forum/
For a faster development of GTK2 files, we recommend to design with Glade2, there is also a Windows port of [...]]]></description>
			<content:encoded><![CDATA[<p>Gnope is a program management environment, allowing you to download and deploy applications with a graphical user interface written in PHP-GTK2 on many platforms.</p>
<p align="center"><a href="http://www.gnope.org/download.php" target="_blank"><img style="WIDTH: 52px; HEIGHT: 42px" alt="" hspace="0" src="http://www.gnope.org/pics/download.gif" align="left" border="0" /></a></p>
<p>You can download it from <a href="http://www.gnope.org/download.php" target="_blank">http://www.gnope.org/download.php</a></p>
<p>You can see the forum section from <a href="http://www.gnope.org/forum/">http://www.gnope.org/forum/</a></p>
<p>For a faster development of GTK2 files, we recommend to design with Glade2, there is also a Windows port of that cool tool here: Glade on Windows. You could convert your XML files with the glade tool, for example.</p>
<p>Tags: <a href="http://technorati.com/tag/gnope" rel="tag">gnope</a>, <a href="http://technorati.com/tag/gnope+php-gtk" rel="tag">gnope php-gtk</a></p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/another-pdf-creator-software-to-try/" rel="bookmark" title="Permanent Link: Another PDF Creator software to try" >Another PDF Creator software to try</a></span><div class="aizattos_related_posts_excerpt">There are tons of pdf creator softwares, i just found another interesting software to try. Foxit PDF...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/06/another-free-pdf-creator-software-now-available-in-free-open-source-and-portable-version/" rel="bookmark" title="Permanent Link: Another Free PDF creator software, now available in free, open source, and portable version" >Another Free PDF creator software, now available in free, open source, and portable version</a></span><div class="aizattos_related_posts_excerpt">There are tons of pdf creator software, and once (again) i found a new superb one, it's free, powerf...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/paintnet-a-superb-yet-simple-image-manipulation-program-run-net-framework-its-open-source/" rel="bookmark" title="Permanent Link: PaintNET, a superb yet simple image manipulation program run Net Framework, it&#8217;s open source" >PaintNET, a superb yet simple image manipulation program run Net Framework, it&#8217;s open source</a></span><div class="aizattos_related_posts_excerpt">PaintNET is an open source program made by Visual Studio.NET. It has small size yet has great featur...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/how-to-create-pdf-from-microsoft-word-2/" rel="bookmark" title="Permanent Link: How to create pdf from Microsoft word 2" >How to create pdf from Microsoft word 2</a></span></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/09/introduce-gnope-an-gui-app-creator-using-php-gtk/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to instasll SNMP</title>
		<link>http://computer.learnsimply.net/2008/08/how-to-instasll-snmp/</link>
		<comments>http://computer.learnsimply.net/2008/08/how-to-instasll-snmp/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 22:52:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[opensource]]></category>

		<category><![CDATA[networking]]></category>

		<category><![CDATA[snmp]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/08/how-to-instasll-snmp/</guid>
		<description><![CDATA[First, download the file from http://ftp.yz.yamagata-u.ac.jp/pub/network/net-snmp/
Now, tar the file, using this command (this example use ver 5.1, but you may use it for other version).
#tar -zxvf net-snmp-5.1.4.tar.gz
#cd net-snmp-5.1.4
# ./configure –prefix=/usr/local/snmp
#make
#make install
# ee /usr/local/snmp/share/snmp/snmpd.conf
*******the content************
com2sec public HOSTNAME public
group public v1 public
group public v2c public
group public usm public
view all included .1
access public “” any noauth exact all [...]]]></description>
			<content:encoded><![CDATA[<p>First, download the file from <a href="http://ftp.yz.yamagata-u.ac.jp/pub/network/net-snmp/">http://ftp.yz.yamagata-u.ac.jp/pub/network/net-snmp/</a></p>
<p>Now, tar the file, using this command (this example use ver 5.1, but you may use it for other version).</p>
<p>#tar -zxvf net-snmp-5.1.4.tar.gz</p>
<p>#cd net-snmp-5.1.4</p>
<p># ./configure –prefix=/usr/local/snmp</p>
<p>#make</p>
<p>#make install</p>
<p># ee /usr/local/snmp/share/snmp/snmpd.conf</p>
<p>*******the content************</p>
<p>com2sec public HOSTNAME public</p>
<p>group public v1 public</p>
<p>group public v2c public</p>
<p>group public usm public</p>
<p>view all included .1</p>
<p>access public “” any noauth exact all none none</p>
<p>**** Change the HOSTNAME (or IP ADDRESS)***</p>
<p>After snmpd.conf created, now actiavate snmp using commands below:</p>
<p># /usr/local/snmp/sbin/snmpd -c /usr/local/snmp/share/snmp/snmpd.conf</p>
<p>checking whether snmp daemon runs flawlessly?</p>
<p># /usr/local/snmp/bin/snmpwalk -v 1 -c public HOSTNAME system</p>
<p>change the HOSTNAME with a hostname or IP Address you entered on “snmpd.conf”, if it works, you&#8217;ll get a message like this.</p>
<p>———</p>
<p>&#8230;&#8230;.</p>
<p>SNMPv2-MIB::sysObjectID.0 = OID: SNMPv2-SMI::enterprises.8072.3.2.255</p>
<p>SNMPv2-MIB::sysUpTime.0 = Timeticks: (7256) 0:01:12.56</p>
<p>SNMPv2-MIB::sysContact.0 = STRING: root@</p>
<p>SNMPv2-MIB::sysName.0 = STRING: host.hostname.org</p>
<p>SNMPv2-MIB::sysLocation.0 = STRING: Unknown</p>
<p>SNMPv2-MIB::sysORLastChange.0 = Timeticks: (0) 0:00:00.00</p>
<p>SNMPv2-MIB::sysORID.1 = OID: SNMPv2-MIB::snmpMIB</p>
<p>SNMPv2-MIB::sysORID.2 = OID: SNMP-VIEW-BASED-ACM-MIB::vacmBasicGroup</p>
<p>SNMPv2-MIB::sysORID.3 = OID: SNMP-FRAMEWORK-MIB::snmpFrameworkMIBCompliance</p>
<p>SNMPv2-MIB::sysORID.4 = OID: SNMP-MPD-MIB::snmpMPDCompliance</p>
<p>SNMPv2-MIB::sysORID.5 = OID: SNMP-USER-BASED-SM-MIB::usmMIBCompliance</p>
<p>SNMPv2-MIB::sysORDescr.1 = STRING: The MIB module for SNMPv2 entities</p>
<p>SNMPv2-MIB::sysORDescr.2 = STRING: View-based Access Control Model for SNMP.</p>
<p>SNMPv2-MIB::sysORDescr.3 = STRING: The SNMP Management Architecture MIB.</p>
<p>SNMPv2-MIB::sysORDescr.4 = STRING: The MIB for Message Processing and Dispatching.</p>
<p>SNMPv2-MIB::sysORDescr.5 = STRING: The management information definitions for the SNMP User-based Security Model.</p>
<p>SNMPv2-MIB::sysORUpTime.1 = Timeticks: (0) 0:00:00.00</p>
<p>SNMPv2-MIB::sysORUpTime.2 = Timeticks: (0) 0:00:00.00</p>
<p>SNMPv2-MIB::sysORUpTime.3 = Timeticks: (0) 0:00:00.00</p>
<p>SNMPv2-MIB::sysORUpTime.4 = Timeticks: (0) 0:00:00.00</p>
<p>SNMPv2-MIB::sysORUpTime.5 = Timeticks: (0) 0:00:00.00</p>
<p>Next, you can set the snmpd to dun from startup automatically by executing:</p>
<p># echo “usr/local/snmp/sbin/snmpd -c /usr/local/snmp/share/snmp/snmpd.conf” &gt;&gt; /etc/rc.local</p>
<p>Tags: <a href="http://technorati.com/tag/linux" rel="tag">linux</a>, <a href="http://technorati.com/tag/snmp" rel="tag">snmp</a></p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/real-player-11-for-linux-is-already-released/" rel="bookmark" title="Permanent Link: Real player 11 for Linux is already released" >Real player 11 for Linux is already released</a></span><div class="aizattos_related_posts_excerpt">One of (is it only one?) RM video/audio player for Linux is Real Media Player. The latest version of...</div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/08/how-to-instasll-snmp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to run Windows apps on LInux using Wine</title>
		<link>http://computer.learnsimply.net/2008/08/how-to-run-windows-apps-on-linux-using-wine/</link>
		<comments>http://computer.learnsimply.net/2008/08/how-to-run-windows-apps-on-linux-using-wine/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 22:36:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[opensource]]></category>

		<category><![CDATA[wine]]></category>

		<category><![CDATA[wine is not emulator]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/08/how-to-run-windows-apps-on-linux-using-wine/</guid>
		<description><![CDATA[Easy, you just have to install wine first:
$ sudo apt-get install wine
Then execute wine statement followed by the executable (.exe) file name you want to launch.
For example:
$wine photoshop.exe
Tags: linux, wine, wine is not emulator
Related PostsHow to install Turbo Pascal on Linux using WINE DOSBOX
First, download and install dosbox &#38; wine. If you use debian based [...]]]></description>
			<content:encoded><![CDATA[<p>Easy, you just have to install wine first:</p>
<p>$ sudo apt-get install wine</p>
<p>Then execute wine statement followed by the executable (.exe) file name you want to launch.</p>
<p>For example:</p>
<p>$wine photoshop.exe</p>
<p>Tags: <a href="http://technorati.com/tag/linux" rel="tag">linux</a>, <a href="http://technorati.com/tag/wine" rel="tag">wine</a>, <a href="http://technorati.com/tag/wine+is+not+emulator" rel="tag">wine is not emulator</a></p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/06/how-to-install-turbo-pascal-on-linux-using-wine-dosbox/" rel="bookmark" title="Permanent Link: How to install Turbo Pascal on Linux using WINE DOSBOX" >How to install Turbo Pascal on Linux using WINE DOSBOX</a></span><div class="aizattos_related_posts_excerpt">
First, download and install dosbox &amp; wine. If you use debian based distro (eg: Ubuntu): just ex...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/5-portable-softwares-you-should-try-from-portableappscom/" rel="bookmark" title="Permanent Link: 5 portable softwares you should try from Portableapps.com" >5 portable softwares you should try from Portableapps.com</a></span><div class="aizattos_related_posts_excerpt">Portableapps, no doubt , is the best provider of open source softwares for windows nowadays. It repa...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/06/how-to-create-a-disc-iso-copy-using-command-line-on-linux/" rel="bookmark" title="Permanent Link: How to create a disc iso copy using command line on Linux" >How to create a disc iso copy using command line on Linux</a></span><div class="aizattos_related_posts_excerpt">I have written a tutorial on how to create an ISO using visual software before, And i have just brow...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/06/another-free-pdf-creator-software-now-available-in-free-open-source-and-portable-version/" rel="bookmark" title="Permanent Link: Another Free PDF creator software, now available in free, open source, and portable version" >Another Free PDF creator software, now available in free, open source, and portable version</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/bored-with-your-linux-why-not-try-opensolaris/" rel="bookmark" title="Permanent Link: Bored with your Linux, why not try openSolaris?" >Bored with your Linux, why not try openSolaris?</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/linux-kernel-2626-finally-released/" rel="bookmark" title="Permanent Link: Linux kernel 2.6.26 finally released" >Linux kernel 2.6.26 finally released</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/real-player-11-for-linux-is-already-released/" rel="bookmark" title="Permanent Link: Real player 11 for Linux is already released" >Real player 11 for Linux is already released</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/04/how-to-make-ubuntu-looks-like-mac-os/" rel="bookmark" title="Permanent Link: How to make Ubuntu looks like Mac OS" >How to make Ubuntu looks like Mac OS</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/06/how-to-recover-deleted-icons-on-your-linux-panelstartbar/" rel="bookmark" title="Permanent Link: How to recover deleted icons on your Linux Panel/Startbar" >How to recover deleted icons on your Linux Panel/Startbar</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/how-to-disable-notebooks-touchpad-on-linux/" rel="bookmark" title="Permanent Link: How to disable notebook&#8217;s touchpad on Linux" >How to disable notebook&#8217;s touchpad on Linux</a></span></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/08/how-to-run-windows-apps-on-linux-using-wine/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hacking RPM packages using RPM rebuild</title>
		<link>http://computer.learnsimply.net/2008/08/hacking-rpm-packages-using-rpm-rebuild/</link>
		<comments>http://computer.learnsimply.net/2008/08/hacking-rpm-packages-using-rpm-rebuild/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 10:44:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[opensource]]></category>

		<category><![CDATA[rpm]]></category>

		<category><![CDATA[rpm rebuild]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/08/hacking-rpm-packages-using-rpm-rebuild/</guid>
		<description><![CDATA[Check it out, very interesting. http://www.redhatmagazine.com/2007/12/04/hacking-rpms-with-rpmrebuild/. The point is, you could customize the content file inside an rpm on the fly, or you may also rebuild a package from the existing files on your system (and adding your customized settings files, for example).
Tags: rpm rebuild, rpm, redhat
Related PostsHow to install vpn on Linux trixboxTrixbox is [...]]]></description>
			<content:encoded><![CDATA[<p>Check it out, very interesting. <a href="http://www.redhatmagazine.com/2007/12/04/hacking-rpms-with-rpmrebuild/">http://www.redhatmagazine.com/2007/12/04/hacking-rpms-with-rpmrebuild/</a>. The point is, you could customize the content file inside an rpm on the fly, or you may also rebuild a package from the existing files on your system (and adding your customized settings files, for example).</p>
<p>Tags: <a href="http://technorati.com/tag/rpm+rebuild" rel="tag">rpm rebuild</a>, <a href="http://technorati.com/tag/rpm" rel="tag">rpm</a>, <a href="http://technorati.com/tag/redhat" rel="tag">redhat</a></p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/how-to-install-vpn-on-linux-trixbox/" rel="bookmark" title="Permanent Link: How to install vpn on Linux trixbox" >How to install vpn on Linux trixbox</a></span><div class="aizattos_related_posts_excerpt">Trixbox is a distro dedicated mainly for VoIP. Now, i would like to add two packages, voip server an...</div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/08/hacking-rpm-packages-using-rpm-rebuild/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Another PHP tutorials</title>
		<link>http://computer.learnsimply.net/2008/08/another-php-tutorials/</link>
		<comments>http://computer.learnsimply.net/2008/08/another-php-tutorials/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 09:18:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[technique]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/08/another-php-tutorials/</guid>
		<description><![CDATA[To escape php from html, a PHP code block starts with “&#60;?php” and ends with “?&#62;”. A PHP code block can be placed anywhere in the HTML document. You may also use &#60;? ?&#62; but it&#8217;s not available on every servers.
To separate instructions, each instruction must end with a semicolon. The PHP closing tag also [...]]]></description>
			<content:encoded><![CDATA[<p>To escape php from html, a PHP code block starts with “&lt;?php” and ends with “?&gt;”. A PHP code block can be placed anywhere in the HTML document. You may also use &lt;? ?&gt; but it&#8217;s not available on every servers.</p>
<p>To separate instructions, each instruction must end with a semicolon. The PHP closing tag also implies the end of the instruction.</p>
<p>This is an example on how to write PHP between html tags:</p>
<blockquote>
<p>&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;title&gt;PHP is fun&lt;/title&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;?php echo “This text is generated using PHP”; ?&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
</blockquote>
<p>Tags: <a href="http://technorati.com/tag/PHP" rel="tag">PHP</a>, <a href="http://technorati.com/tag/programming" rel="tag">programming</a></p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/07/how-to-install-java-in-linux-ubuntu-as-the-case-study/" rel="bookmark" title="Permanent Link: How to install Java in Linux (ubuntu as the case study)" >How to install Java in Linux (ubuntu as the case study)</a></span><div class="aizattos_related_posts_excerpt">There are many tutorials on this subject, but you can use the CLI (command line interface) that is e...</div></li><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/05/bored-with-your-linux-why-not-try-opensolaris/" rel="bookmark" title="Permanent Link: Bored with your Linux, why not try openSolaris?" >Bored with your Linux, why not try openSolaris?</a></span><div class="aizattos_related_posts_excerpt">Open solaris 8.5 is a fork of a proprietary operating system named Solaris that was build by Sun Mic...</div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/08/another-php-tutorials/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to surf freely and bypass most firewall restrictions</title>
		<link>http://computer.learnsimply.net/2008/08/how-to-surf-freely-and-bypass-most-firewall-restrictions/</link>
		<comments>http://computer.learnsimply.net/2008/08/how-to-surf-freely-and-bypass-most-firewall-restrictions/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 04:06:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://computer.learnsimply.net/2008/08/how-to-surf-freely-and-bypass-most-firewall-restrictions/</guid>
		<description><![CDATA[It&#8217;s an amazing link, check it out. A complete guide on how to internet privately although you are firewalled.
Related Posts10 Tips to optimize your computer firewallRight now, building computer without additional security software such as firewall is very risk. In ...]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s an <a href="http://buzzsurf.com/surfatwork/" target="_blank">amazing link, check it out</a>. A complete guide on how to internet privately although you are firewalled.</p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://computer.learnsimply.net/2008/06/10-tips-to-optimize-your-computer-firewall/" rel="bookmark" title="Permanent Link: 10 Tips to optimize your computer firewall" >10 Tips to optimize your computer firewall</a></span><div class="aizattos_related_posts_excerpt">Right now, building computer without additional security software such as firewall is very risk. In ...</div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://computer.learnsimply.net/2008/08/how-to-surf-freely-and-bypass-most-firewall-restrictions/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
