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

<channel>
	<title>Tanveer's Weblog</title>
	<atom:link href="http://neeocis.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://neeocis.wordpress.com</link>
	<description>Tanveer's Weblog</description>
	<lastBuildDate>Thu, 28 May 2009 12:10:08 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='neeocis.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/240c0cd2d0c329c3823d97e0d5e0cb9d?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Tanveer's Weblog</title>
		<link>http://neeocis.wordpress.com</link>
	</image>
			<item>
		<title>C++/CLI: Object Clone</title>
		<link>http://neeocis.wordpress.com/2009/05/08/ccli-object-clone/</link>
		<comments>http://neeocis.wordpress.com/2009/05/08/ccli-object-clone/#comments</comments>
		<pubDate>Fri, 08 May 2009 09:21:18 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C++/CLI]]></category>
		<category><![CDATA[Tips' n Tricks']]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=128</guid>
		<description><![CDATA[Basically, Clone can be implemented either as a deep copy or a shallow copy. In a deep copy, all objects are duplicated; whereas, in a shallow copy, only the top-level objects are duplicated and the lower levels containreferences.
But here we work under System::Runtime::Serialization::Formatters::Binary
Step 1: Serialize your object
Step 2: And then Deserialize  your object
Step 3: Close [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=128&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Basically, <strong>Clone </strong>can be implemented either as a deep copy or a shallow copy. In a deep copy, all objects are duplicated; whereas, in a shallow copy, only the top-level objects are duplicated and the lower levels containreferences.</p>
<p>But here we work under System::Runtime::Serialization::Formatters::Binary</p>
<p><strong>Step 1: </strong>Serialize your object<br />
<strong>Step 2:</strong> And then Deserialize  your object<br />
<strong>Step 3: </strong>Close you MemoryStream instance<br />
<strong>Step 4:</strong> Return Object<br />
That&#8217;s it..</p>
<p>So here is the method,</p>
<blockquote><p>public: System::Object^ Clone(System::Object^ apObj )<br />
{<br />
MemoryStream^ ms = gcnew MemoryStream();<br />
BinaryFormatter^ bf = gcnew BinaryFormatter();<br />
bf-&gt;Serialize( ms, apObj );<br />
ms-&gt;Position = 0;<br />
System::Object^ obj = bf-&gt;Deserialize( ms );<br />
ms-&gt;Close();<br />
return obj;<br />
}</p></blockquote>
<p>This is most fast way to clone your object very easily. So fulks ..</p>
<p>enjoy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=128&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2009/05/08/ccli-object-clone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>
	</item>
		<item>
		<title>Communicating with C++/CLI to ActionScript</title>
		<link>http://neeocis.wordpress.com/2009/03/01/communicating-with-ccli-to-actionscript/</link>
		<comments>http://neeocis.wordpress.com/2009/03/01/communicating-with-ccli-to-actionscript/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 09:58:29 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C++/CLI]]></category>
		<category><![CDATA[Tips' n Tricks']]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=107</guid>
		<description><![CDATA[Inspired by Gabe Wishnie
As a matter of fact, i was tried to implement C# and the Flash Player 8 External API with my C++/CLI project. However,  i was using Visual Studio 2005.
My main goal of this post is to aware what is the most basic part to implement this kind of staff in project.
Troubleshooting
1. To [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=107&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Inspired by <a href="http://www.codeproject.com/script/Membership/Profiles.aspx?mid=1944251">Gabe Wishnie</a><br />
As a matter of fact, i was tried to implement <a href="http://www.codeproject.com/KB/audio-video/flashexternalapi.aspx">C# and the Flash Player 8 External API</a> with my C++/CLI project. However,  i was using Visual Studio 2005.<br />
My main goal of this post is to aware what is the most basic part to implement this kind of staff in project.<br />
<strong>Troubleshooting</strong><br />
<strong>1.</strong> To begin porting over the FLVPlayer it will be batter to use the most updated flash player.<br />
<strong>2.</strong> Most of the time people ask about the problem with <strong>CallFunction</strong> method as it said this method is not a member.<br />
<strong>3.</strong> If this kind of ambiguous problem faced then re-check your Flash Virsion. Flash 6,7 will the main cause of this error. Upgrade it into <strong>8, 9 or 10</strong><br />
<strong>4.</strong> In <strong>ActionScript</strong> you must add these lines first<br />
<code><br />
import flash.external.ExternalInterface;<br />
ExternalInterface.addCallback("YourMethod", null, YourMethod);<br />
function YourMethod(uri:String):Void<br />
{<br />
if(uri == "TANVEER")<br />
{<br />
// something my logic will be applicable;<br />
}<br />
}<br />
</code></p>
<p><strong>5.</strong> In <strong>C++/CLI</strong><br />
<code><br />
private: AxShockwaveFlashObjects::AxShockwaveFlash^  mpAxShockwaveFlashBee;<br />
private: System::Void mpButtonClick_Click(System::Object^  sender, System::EventArgs^  e)<br />
{</code></p>
<p>mpAxShockwaveFlashBee-&gt;CallFunction(&#8220;&lt;invoke&#8221; + &#8221; name=\&#8221;loadAndPlayVideo\&#8221; returntype=\&#8221;xml\&#8221;&gt;&lt;arguments&gt;&lt;string&gt;TANVEER&lt;/string&gt;&lt;/arguments&gt;&lt;/invoke&gt;&#8221;);</p>
<p>}</p>
<p><strong>6.</strong> Done! It is now that easy to pass data back ActionScript and C++/CLI.</p>
<p><strong>My Source code:</strong><a href="http://neeocis.files.wordpress.com/2009/03/needbeerar.pdf">needbee.rar.pdf<br />
</a></p>
<p>rename it as needbee.rar</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=107&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2009/03/01/communicating-with-ccli-to-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>
	</item>
		<item>
		<title>error PRJ0002 : Error result -1073741701 returned from &#8216;C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\resgen.exe&#8217;</title>
		<link>http://neeocis.wordpress.com/2008/12/23/error-prj0002-error-result-1073741701-returned-from-cprogram-filesmicrosoft-visual-studio-8sdkv20binresgenexe/</link>
		<comments>http://neeocis.wordpress.com/2008/12/23/error-prj0002-error-result-1073741701-returned-from-cprogram-filesmicrosoft-visual-studio-8sdkv20binresgenexe/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 09:23:37 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C++/CLI]]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=98</guid>
		<description><![CDATA[   SOLVED!!
While working with C++/CLI .NET  in Visual Studio 2005 and suddenly i got this compilation error.
error PRJ0002 : Error result -1073741701 returned from &#8216;C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\resgen.exe&#8217;
I don&#8217;t know why? but after googled some while i found that it was because of  some virus. huh!  
But I solved this in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=98&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  SOLVED!!</p>
<p>While working with C++/CLI .NET  in Visual Studio 2005 and suddenly i got this compilation error.</p>
<p><strong>error PRJ0002 : Error result -1073741701 returned from &#8216;C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\resgen.exe&#8217;</strong></p>
<p>I don&#8217;t know why? but after googled some while i found that it was because of  some virus. huh! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>But I solved this in my style. What i did just rreplace the file Resgen.exe in the same folder.</p>
<p>Just download this <a href="resgen.exe.pdf">resgenexe2</a> and <strong>rename</strong> it as <strong>ResGen.exe</strong> and replace the file ResGen.exe file into your /*C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin*/ directory if you have this compilation problem.</p>
<p><a href="resgen.exe.pdf"><br />
</a></p>
<p>enjoy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=98&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2008/12/23/error-prj0002-error-result-1073741701-returned-from-cprogram-filesmicrosoft-visual-studio-8sdkv20binresgenexe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>
	</item>
		<item>
		<title>বাংলা ফোনেটিক কি-প্যাড</title>
		<link>http://neeocis.wordpress.com/2008/11/03/%e0%a6%ac%e0%a6%be%e0%a6%82%e0%a6%b2%e0%a6%be-%e0%a6%ab%e0%a7%8b%e0%a6%a8%e0%a7%87%e0%a6%9f%e0%a6%bf%e0%a6%95-%e0%a6%95%e0%a6%bf-%e0%a6%aa%e0%a7%8d%e0%a6%af%e0%a6%be%e0%a6%a1/</link>
		<comments>http://neeocis.wordpress.com/2008/11/03/%e0%a6%ac%e0%a6%be%e0%a6%82%e0%a6%b2%e0%a6%be-%e0%a6%ab%e0%a7%8b%e0%a6%a8%e0%a7%87%e0%a6%9f%e0%a6%bf%e0%a6%95-%e0%a6%95%e0%a6%bf-%e0%a6%aa%e0%a7%8d%e0%a6%af%e0%a6%be%e0%a6%a1/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 17:25:53 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[আমার বাংলা]]></category>
		<category><![CDATA[Bangla Computing]]></category>
		<category><![CDATA[Bangla key-pad]]></category>
		<category><![CDATA[Bangla keyboard]]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=96</guid>
		<description><![CDATA[আজ অনেক দিন পর আমর ব্লগে লিখছি। আর সবচেয়ে মজার ব্যাপার হল&#8230; এই প্রথম আমি আমার ব্লগে লিখছি বাংলায় । খুবই ভাল লাগছে। একদম অন্য রকম। তাই আজ থেকে নতুন একটি ক্যারাগরি তৈরি করলাম আর নাম দিলাম &#8216;আমার বাংলা&#8217;। আর আমার ধারণা আমার মতন অনেকেই আছে যারা বাংলা লিখতে কি-বোর্ডের কি খুলে ফেলবার মতন অবস্থা [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=96&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>আজ অনেক দিন পর আমর ব্লগে লিখছি। আর সবচেয়ে মজার ব্যাপার হল&#8230; এই প্রথম আমি আমার ব্লগে লিখছি বাংলায় । খুবই ভাল লাগছে। একদম অন্য রকম। তাই আজ থেকে নতুন একটি ক্যারাগরি তৈরি করলাম আর নাম দিলাম &#8216;আমার বাংলা&#8217;। আর আমার ধারণা আমার মতন অনেকেই আছে যারা বাংলা লিখতে কি-বোর্ডের কি খুলে ফেলবার মতন অবস্থা &#8230; হা: হা: হা: ..। তাদের জন্য আছে বেশ ভাল কিছু উপায়। আর তা হল ওয়েব-বেস্ড বাংলা ফোনেটিক কি-প্যাড অথবা অথবা অভ্র ফোনেটিক কি-বোর্ড। এই কি-প্যাড গুলো খুবই উন্নত মানের এবং ফ্রি-সফ্টওয়্যার লাইসেন্স এর আওতা ভুক্ত। তাই সহজেই ব্যবহার যোগ্য। প্রথম দিকে লিখতে যদিও একটু কষ্ট হয়েছে তবে এখন পুরোপুরি হাতে চলে এসেছে ।  তাই এই লিংক গুলো সংগ্রহে রাকছি।<br />
১। <a title="ত্রিুজ প্যাড" href="http://trivuz.com/bangla/tpp.php" target="_blank">ত্রিভুজ প্যাড</a><br />
২। <a title="বাংলা অনলাইন টুল" href="http://bnwebtools.sourceforge.net/" target="_blank">বাংলা অনলাইন টুল</a><br />
৩। <a title="ার্চুয়াল কি-বোর্ড" href="http://gopsop.com/vk.html" target="_blank">ভার্চুয়াল কি-বোর্ড</a><br />
মাত্র ১০ মিনিট একটু মনযোগ দিয়ে প্র্যাকটিস করলেই আমার মনে হয় বাংলায় খুব সহজেই লিখতে পারা সম্ভব। যদি কার সত্যি ইচ্ছা হয় তাহলে একবার অন্তত সাইট গুলো ঘুরে আসতে পারেন।<br />
কষ্ট করে আমার এই লিখাটি পড়বার জন্য অনেক অনেক ধন্যবাদ।<br />
 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=96&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2008/11/03/%e0%a6%ac%e0%a6%be%e0%a6%82%e0%a6%b2%e0%a6%be-%e0%a6%ab%e0%a7%8b%e0%a6%a8%e0%a7%87%e0%a6%9f%e0%a6%bf%e0%a6%95-%e0%a6%95%e0%a6%bf-%e0%a6%aa%e0%a7%8d%e0%a6%af%e0%a6%be%e0%a6%a1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 8.10 (Intrepid Ibex) will be released on October 30th, 2008</title>
		<link>http://neeocis.wordpress.com/2008/10/06/ubuntu-810-intrepid-ibex-will-be-released-on-october-30th-2008/</link>
		<comments>http://neeocis.wordpress.com/2008/10/06/ubuntu-810-intrepid-ibex-will-be-released-on-october-30th-2008/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 09:30:04 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[UBUNTU]]></category>
		<category><![CDATA[Ubuntu 8.10]]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=83</guid>
		<description><![CDATA[&#8220;The most notable plans for subnotebook supremacy in Intrepid are better support for mobile networking, improved startup time, and official support for USB installation images. Network configuration in the current version of Ubuntu is handled by NetworkManager, which offers simple point-and-click support for connecting to WiFi access points. The new version of NetworkManager, which will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=83&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><em>&#8220;The most notable plans for subnotebook supremacy in Intrepid are better support for mobile networking, improved startup time, and official support for USB installation images. Network configuration in the current version of Ubuntu is handled by NetworkManager, which offers simple point-and-click support for connecting to WiFi access points. The new version of NetworkManager, which will be included in Ubuntu 8.10, adds basic support for 3G networking. In addition to integrating the new version of NetworkManager, the Ubuntu developers will also conduct testing to ensure compatibility with the most commonly used 3G networking devices and services.&#8221;</em></p>
<ul>
<li>3GNetworking &#8211; <a class="https" href="https://wiki.ubuntu.com/3GNetworkingIntrepid">https://wiki.ubuntu.com/3GNetworkingIntrepid</a>
<ul>
<li>Ship network-manager .7 and get as many 3G options fixed. Network-manager .7 already has basic support for CDMA and GSM connections.</li>
<li>Assemble a list of frequently used hardware and 3G providers in the markets with the highest 3G penetration.</li>
<li>Get most important hardware and subscriptions early in the release cycle to ensure that as many options as possible can be verified and get fixed.</li>
</ul>
</li>
<li>Education Edition
<ul>
<li>GUI for dynamic menus &#8211; The current edubuntu-menus package installs a fixed set of menus bound to Unix groups. To maintain the menus it is currently necessary to edit the .menu files by hand. The menu group also doesn&#8217;t show up in the ubuntu users and groups tool yet.</li>
</ul>
</li>
</ul>
<ul>
<li>Firefox KDE Integration &#8211; <a class="https" href="https://wiki.ubuntu.com/Firefox3KDEIntegrationIntrepid">https://wiki.ubuntu.com/Firefox3KDEIntegrationIntrepid</a></li>
<li>
<ul>
<li>Discussion for improving Firefox integration in KDE (mimetypes, setting the desktop background, protocols schemes)</li>
</ul>
</li>
<li>Boot Performance
<ul>
<li>Prefetch, better multithreading, dbus and hal moving to upstart, look at kernel based modesetting (ongoing)</li>
</ul>
</li>
<li>Ubuntu Distributed Development
<ul>
<li>Aim to have all of Ubuntu, possible Debian imported in Bazaar during the Intrepid cycle and use the upcoming features in Bazaar and Launchpad to make it quick to make small changes.</li>
</ul>
</li>
<li>
<p class="line862">Improve Flash Experience &#8211; <a class="https" href="https://wiki.ubuntu.com/FlashExperienceIntrepid">https://wiki.ubuntu.com/FlashExperienceIntrepid</a></p>
<ul>
<li>Provide the user with a seamless Flash experience; this includes ease of install as well as a pleasant Flash user-experience.</li>
<li>Support Free Flash as much as possible; the long-term goal is to ship a free Flash alternative by default.</li>
</ul>
</li>
<li>
<p class="line891"><a href="https://wiki.ubuntu.com/OpenOffice">OpenOffice</a>.org Upload Schedule &#8211; <a class="https" href="https://wiki.ubuntu.com/OOoIntrepidUploadSchedule">https://wiki.ubuntu.com/OOoIntrepidUploadSchedule</a></p>
<ul>
<li>
<p class="line862">Barring major problems the currently scheduled release date for <a href="https://wiki.ubuntu.com/OpenOffice">OpenOffice</a>.org 3.0 is September 2 and Intrepid release is scheduled for Oct 30.</p>
</li>
</ul>
</li>
<li>
<p class="line862">X.org in Intrepid &#8211; <a class="https" href="https://blueprints.launchpad.net/ubuntu/+spec/xorg-intrepid">https://blueprints.launchpad.net/ubuntu/+spec/xorg-intrepid</a></p>
<ul>
<li>We do not anticipate xserver 1.6 to be delivered in time for Intrepid, so we will focus on having xserver 1.5.</li>
<li>Upstream is developing two memory managers &#8211; TTM and GEM. We will wait to see which one is taken upstream, and pull that into Intrepid if there is time.</li>
<li>
<p class="line862">We have over 1600 Xorg bugs presently. Reducing this to &lt;1000 is a stretch goal for Intrepid.</p>
</li>
</ul>
</li>
<li>Wubi (Windows-based installer)
<ul>
<li>Possible new features: Online resizing, hibernation with swap files, support for DVD and larger distributions like Ubuntu Studio, bittorrent support for download manager, built in CD burner, native migration.</li>
</ul>
</li>
<li>Font Selector discussions, removing cruft after upgrades, DVD live installation performance hacks, gathering translation statistics, USB installation images, Python 3 support, and more.</li>
</ul>
<p>Ref : <a href="http://arstechnica.com/news.ars/post/20080629-horny-for-ubuntu-8-10-first-look-at-intrepid-ibex.html">Horny for Ubuntu 8.10: first look at Intrepid Ibex</a></p>
<p><a href="https://wiki.ubuntu.com/UDS-Intrepid/Report/Summary">wiki.ubuntu.com</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=83&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2008/10/06/ubuntu-810-intrepid-ibex-will-be-released-on-october-30th-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>
	</item>
		<item>
		<title>Thinking Ruby on Rails</title>
		<link>http://neeocis.wordpress.com/2008/09/07/thinking-ruby-on-rails/</link>
		<comments>http://neeocis.wordpress.com/2008/09/07/thinking-ruby-on-rails/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 17:42:03 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=73</guid>
		<description><![CDATA[After quite a bit of time; holding my breadth I scramble down with new dream that I have to know somthing new. Ruby on Rails makes me that choise. I googled and found some really interesting tutorials, e-books and some realy quality disscussion about Rails. And gathered all that tricks and tips on my hand [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=73&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After quite a bit of time; holding my breadth I scramble down with new dream that I have to know somthing new. Ruby on Rails makes me that choise. I googled and found some really interesting tutorials, e-books and some realy quality disscussion about Rails. And gathered all that tricks and tips on my hand to make my Thinking of Ruby on Rails (RoR). However, this is only for my personal interest. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<a href='http://neeocis.files.wordpress.com/2008/09/ror.pdf'>Thinking Ruby on Rails</a><br />
If any one has some interest please don&#8217;t hesitate to download.</p>
<p>Enjoy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neeocis.wordpress.com/73/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neeocis.wordpress.com/73/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=73&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2008/09/07/thinking-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>
	</item>
		<item>
		<title>[HotFixer] Transparent PNG support into IE6 using TwinHelix</title>
		<link>http://neeocis.wordpress.com/2008/07/29/hotfixer-transparent-png-support-into-ie6-using-twinhelix/</link>
		<comments>http://neeocis.wordpress.com/2008/07/29/hotfixer-transparent-png-support-into-ie6-using-twinhelix/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 19:07:21 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Tips' n Tricks']]></category>
		<category><![CDATA[HotFixer]]></category>
		<category><![CDATA[Transparent PNG support]]></category>
		<category><![CDATA[Transparent PNG support into IE6]]></category>
		<category><![CDATA[TwinHelix]]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=66</guid>
		<description><![CDATA[Couple of days ago one of my colleague asked my why ie6 couldn&#8217;t be able to show a trasparent png image ! He was so rock n roll mood about this matter !   n asked me is there any solution to fix this crap!! Unfortunatly i dont have any thing to say. So [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=66&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Couple of days ago one of my colleague asked my why ie6 couldn&#8217;t be able to show a trasparent png image ! He was so rock n roll mood about this matter ! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  n asked me is there any solution to fix this crap!! Unfortunatly i dont have any thing to say. So i googled for a while n got the answer. Here is the key things we can do to fix this bug.</p>
<p>1. Download TwinHelix <a href="http://www.twinhelix.com/css/iepngfix/iepngfix.zip">iepngfix.zip</a> v1.0 (37kb) under <a href="http://creativecommons.org/licenses/LGPL/2.1/">GNU LGPL,   version 2.1 or later</a>. After that you can open &#8220;iepngfix.html&#8221; in a browser; to find the step by step instructions.</p>
<p>2. Copy and paste <code>iepngfix.htc</code> and <code>blank.gif</code> into   your website folder.</p>
<p>3. Copy and paste this into your website&#8217;s CSS or HTML:</p>
<blockquote><p><code> &lt;style type="text/css"&gt;<br />
img, div { behavior: url(iepngfix.htc) }<br />
&lt;/style&gt; </code></p></blockquote>
<p>That CSS selector must include the tags/elements on which you want PNG   support &#8212; basically, give it a comma-separated list of tags you use.   It must also include the correct path to the .HTC <em>relative to the HTML   document location</em> (not relative to the CSS document!). For instance,   yours may look like this:</p>
<blockquote><p><code> &lt;style type="text/css"&gt;<br />
img, div, a, input { behavior: url(/css/resources/iepngfix.htc) }<br />
&lt;/style&gt; </code></p></blockquote>
<p>4. If your site uses subfolders, open the .HTC file in a text editor like   Windows Notepad and change the <code>blankImg</code> variable to include   a correct path to blank.gif like so:</p>
<blockquote><p><code> var blankImg = '/images/blank.gif'; </code></p>
<p>Again the path is relative to the HTML file.   Otherwise, you will see a &#8220;broken image&#8221; graphic!</p></blockquote>
<p>Now if you would like to use this behavior in your defined css class just use something like</p>
<p><code>&lt;style type="text/css"&gt;<br />
.myimg{ behavior: url(/css/resources/iepngfix.htc);padding-left:5px ... }<br />
&lt;/style&gt; </code></p>
<p>That&#8217;s it ! You are done. Now you can enjoy any transparent png image file any where in your web derictory</p>
<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Ref: <a href="http://www.twinhelix.com/">twinhelix</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neeocis.wordpress.com/66/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neeocis.wordpress.com/66/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=66&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2008/07/29/hotfixer-transparent-png-support-into-ie6-using-twinhelix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>
	</item>
		<item>
		<title>[Tips] MP3 support, DVD playback in Ubuntu</title>
		<link>http://neeocis.wordpress.com/2008/07/19/tips-mp3-support-dvd-playback-in-ubuntu/</link>
		<comments>http://neeocis.wordpress.com/2008/07/19/tips-mp3-support-dvd-playback-in-ubuntu/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 21:24:35 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips' n Tricks']]></category>
		<category><![CDATA[UBUNTU]]></category>
		<category><![CDATA[MP3 support in ubuntu]]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=64</guid>
		<description><![CDATA[Some times it is really disturbing after installed a new Ubuntu/Linux and cant play mp3 files. That&#8217;s why i need to make a note down here  
1. MP3 support, DVD playback, Java plugin, and Flash plugin
To install ubuntu-restricted-extras package. In terminal window, command is:
sudo apt-get install ubuntu-restricted-extras
For Kubuntu, command is :
sudo apt-get install kubuntu-restricted-extras
For [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=64&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Some times it is really disturbing after installed a new Ubuntu/Linux and cant play mp3 files. That&#8217;s why i need to make a note down here <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>1. MP3 support, DVD playback, Java plugin, and Flash plugin</strong></p>
<p>To install ubuntu-restricted-extras package. In terminal window, command is:</p>
<blockquote><p>sudo apt-get install ubuntu-restricted-extras</p></blockquote>
<p>For Kubuntu, command is :</p>
<blockquote><p>sudo apt-get install kubuntu-restricted-extras</p></blockquote>
<p>For Xubuntu, command is:</p>
<blockquote><p>sudo apt-get install xubuntu-restricted-extras</p></blockquote>
<p><strong>2. Install w32codecs</strong></p>
<p>This non-free multimedia codecs will be used for MPlayer and Xine. To install w32codecs, you can see also here.</p>
<p><strong>3. Install CompizConfig Settings Manager</strong></p>
<blockquote><p>sudo apt-get install compizconfig-settings-manager</p></blockquote>
<p><strong>4. Install Opera 9.24</strong></p>
<p>To use commercial repository for Ubuntu 7.10.</p>
<blockquote><p>sudo gedit /etc/apt/sources.list</p></blockquote>
<p>Add this line:</p>
<blockquote><p>deb http://archive.canonical.com/ gutsy partner</p></blockquote>
<p>After save file, run these commands:</p>
<blockquote><p>sudo apt-get update<br />
sudo apt-get install opera</p></blockquote>
<p><strong>5. Clean up Ubuntu</strong></p>
<p>To clean up Ubuntu 7.10, run the following commands:</p>
<blockquote><p>sudo apt-get autoclean<br />
sudo apt-get clean</p></blockquote>
<p>Or use:</p>
<blockquote><p>sudo apt-get autoremove</p></blockquote>
<p>Done!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neeocis.wordpress.com/64/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neeocis.wordpress.com/64/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=64&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2008/07/19/tips-mp3-support-dvd-playback-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>
	</item>
		<item>
		<title>[Apache] Loopback Interface Testing</title>
		<link>http://neeocis.wordpress.com/2008/07/15/apache-loopback-interface-testing/</link>
		<comments>http://neeocis.wordpress.com/2008/07/15/apache-loopback-interface-testing/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 19:21:12 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips' n Tricks']]></category>
		<category><![CDATA[Apache Loopback security tips]]></category>
		<category><![CDATA[apache tips and tricks]]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=62</guid>
		<description><![CDATA[Sometimes it&#8217;s really important to test multiple websites on localhost. How we can do that? Very easy!  .. Yes we can use different port for each site. Some days ago i found one of the windows hosting server did this for their different users. So we can also be able to to it in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=62&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="info">Sometimes it&#8217;s really important to test multiple websites on localhost. How we can do that? Very easy! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .. Yes we can use different port for each site. Some days ago i found one of the windows hosting server did this for their different users. So we can also be able to to it in apache..</p>
<p class="info">What we need is to initialize the port for each site.. here is an example</p>
<p class="info">We need to edit our httpd.conf file and paste these code in the suitable place</p>
<p class="data">Listen 127.0.0.1:8000<br />
Listen 127.0.0.1:1111<br />
BindAddress 127.0.0.1</p>
<p>Port 1111<br />
Port 8000</p>
<p>ServerName 127.0.0.1</p>
<p>NameVirtualHost *</p>
<p>&lt;VirtualHost *:8000&gt;<br />
DocumentRoot &#8220;/home/username/test/example.org/htdocs&#8221;<br />
&lt;Directory &#8220;/home/username/test/example.org/htdocs&#8221;&gt;<br />
Options Indexes FollowSymLinks MultiViews<br />
AllowOverride None</p>
<p>Order allow,deny<br />
Allow from all<br />
&lt;/Directory&gt;<br />
&lt;/VirtualHost&gt;</p>
<p>&lt;VirtualHost *:1111&gt;<br />
DocumentRoot &#8220;/home/username/test/example.com/htdocs/&#8221;<br />
&lt;Directory &#8220;/home/username/test/example.com/htdocs/&#8221;&gt;<br />
Options Indexes FollowSymLinks MultiViews<br />
AllowOverride None</p>
<p>Order allow,deny<br />
Allow from all<br />
&lt;/Directory&gt;<br />
&lt;/VirtualHost&gt;</p>
<p>done, now port 8000 is for our development and 1111 is for testing purpose</p>
<p>enjoy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Ref: <a href="http://httpd.apache.org/docs/1.3/misc/security_tips.html" target="_blank" title="Security Tips for Server Configuration">Security Tips for Server Configuration</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neeocis.wordpress.com/62/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neeocis.wordpress.com/62/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=62&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2008/07/15/apache-loopback-interface-testing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>
	</item>
		<item>
		<title>SAJAX : Synchronizes the Asynchronous JavaScript and XML</title>
		<link>http://neeocis.wordpress.com/2008/07/11/sajax-synchronizes-the-asynchronous-javascript-and-xml/</link>
		<comments>http://neeocis.wordpress.com/2008/07/11/sajax-synchronizes-the-asynchronous-javascript-and-xml/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 04:54:54 +0000</pubDate>
		<dc:creator>Tanveer</dc:creator>
				<category><![CDATA[SAjax]]></category>
		<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://neeocis.wordpress.com/?p=59</guid>
		<description><![CDATA[&#8221; What is Sajax?
The Simple Ajax Toolkit (Sajax) is synchronous asynchronous JavaScript and XML. What makes it synchronous is that the details of the XML HTTP object used in your current Ajax application are abstracted away using the Sajax.php library file. This makes developing Ajax applications much easier because the chance of programming errors are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=59&subd=neeocis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><em><strong>&#8221; What is Sajax?</strong><br />
The Simple Ajax Toolkit (Sajax) is synchronous asynchronous JavaScript and XML. What makes it synchronous is that the details of the XML HTTP object used in your current Ajax application are abstracted away using the Sajax.php library file. This makes developing Ajax applications much easier because the chance of programming errors are reduced. Your links will also be much simpler because they will contain only function calls. Basically, Sajax is a modular way of making Ajax applications through defined and dynamic function calls, making the application development process smoother. &#8220;</em></p>
<div id="attachment_61" class="wp-caption alignnone" style="width: 245px"><a href="http://neeocis.files.wordpress.com/2008/07/untitled-1-final_111.jpg"><img class="size-medium wp-image-61" src="http://neeocis.files.wordpress.com/2008/07/untitled-1-final_111.jpg?w=235&#038;h=243" alt="Overview of Ajax technology" width="235" height="243" /></a><p class="wp-caption-text">Overview of Ajax technology</p></div>
<p>1. Download <a href="http://www.modernmethod.com/sajax/sajax-0.12.tgz">Sajax</a></p>
<p>2. See this simple <a href="http://www.modernmethod.com/sajax/sajax-0.12/php/example_multiply.php" target="_blank">example</a> to have an idea</p>
<p>3. Let&#8217;s start playing with the <a href="http://www.modernmethod.com/sajax/sajax-0.12/php/example_multiply.php.txt" target="_blank">example code</a>. Just copy and paste into your workplace</p>
<p>Interested more ? then download this <a href="http://tanveer.awardspace.com/sajax/sajax.pdf">ibm-sajax.pdf</a></p>
<p>enjoy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Ref: <a href="http://www.modernmethod.com/sajax/index.phtml">modernmethod.com</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neeocis.wordpress.com/59/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neeocis.wordpress.com/59/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neeocis.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neeocis.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neeocis.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neeocis.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neeocis.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neeocis.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neeocis.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neeocis.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neeocis.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neeocis.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neeocis.wordpress.com&blog=3004464&post=59&subd=neeocis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neeocis.wordpress.com/2008/07/11/sajax-synchronizes-the-asynchronous-javascript-and-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5bfefeca90549cba372124e62d71c4da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neeocis</media:title>
		</media:content>

		<media:content url="http://neeocis.files.wordpress.com/2008/07/untitled-1-final_111.jpg?w=235" medium="image">
			<media:title type="html">Overview of Ajax technology</media:title>
		</media:content>
	</item>
	</channel>
</rss>