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

<channel>
	<title>Reference Designer &#187; Uncategorized</title>
	<atom:link href="http://referencedesigner.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://referencedesigner.com/blog</link>
	<description>A Technology Blog</description>
	<lastBuildDate>Sun, 05 Feb 2012 12:55:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PHP Tutorial &#8211; checkbox form</title>
		<link>http://referencedesigner.com/blog/php-tutorial-checkbox-form/2019/</link>
		<comments>http://referencedesigner.com/blog/php-tutorial-checkbox-form/2019/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 12:52:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=2019</guid>
		<description><![CDATA[Let us assume that you want to present a user with two or more than 2 choices and want him to take action based upon one or more selections he makes in the checkboxes. To give you more exact example look at the following picture, where you are presented to choose one or more programming [...]]]></description>
			<content:encoded><![CDATA[<p>Let us assume that you want to present a user with two or more than 2 choices and want him to take action based upon one or more selections he makes in the checkboxes.</p>
<p>To give you more exact example look at the following picture, where you are presented to choose one or more programming languages that you like.</p>
<p><a href="http://referencedesigner.com/blog/wp-content/uploads/2012/02/form1.png"><img class="aligncenter size-full wp-image-2020" title="form1" src="http://referencedesigner.com/blog/wp-content/uploads/2012/02/form1.png" alt="" width="316" height="138" /></a></p>
<p>Let us say you choose PHP and Javascript</p>
<p><a href="http://referencedesigner.com/blog/wp-content/uploads/2012/02/form2.png"><img class="aligncenter size-full wp-image-2021" title="form2" src="http://referencedesigner.com/blog/wp-content/uploads/2012/02/form2.png" alt="" width="301" height="130" /></a></p>
<p>If you hit the submit button the program should give the output something similar to</p>
<p><a href="http://referencedesigner.com/blog/wp-content/uploads/2012/02/form3.png"><img class="aligncenter size-full wp-image-2022" title="form3" src="http://referencedesigner.com/blog/wp-content/uploads/2012/02/form3.png" alt="" width="302" height="178" /></a></p>
<p>Here is the example code to do it.<br />
&lt;code&gt;<br />
&lt;form action=&#8221;check_programs.php&#8221; method=&#8221;post&#8221;&gt;<br />
Which Programmming Languages do you like ? &lt;br /&gt;<br />
&lt;input type=&#8221;checkbox&#8221; name=&#8221;chsarp&#8221; value=&#8221;No&#8221; /&gt; Csharp &lt;br /&gt;<br />
&lt;input type=&#8221;checkbox&#8221; name=&#8221;php&#8221; value=&#8221;Yes&#8221; /&gt; PHP &lt;br /&gt;<br />
&lt;input type=&#8221;checkbox&#8221; name=&#8221;javascript&#8221; value=&#8221;Yes&#8221; /&gt; Javascript&lt;br /&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;checkform&#8221; value=&#8221;Submit&#8221; /&gt;<br />
&lt;/form&gt;</p>
<p>&lt;?<br />
if (isset($_POST['checkform']))</p>
<p>{<br />
if  ($_POST['csharp'] == &#8216;Yes&#8217;)<br />
{<br />
echo &#8220;You like csharp&#8221;; echo &#8220;&lt;br /&gt;&#8221;;<br />
}</p>
<p>if  ($_POST['php'] == &#8216;Yes&#8217;)<br />
{<br />
echo &#8220;You like PHP&#8221;;echo &#8220;&lt;br /&gt;&#8221;;<br />
}</p>
<p>if  ($_POST['javascript'] == &#8216;Yes&#8217;)<br />
{<br />
echo &#8220;You like javascript&#8221;; echo &#8220;&lt;br /&gt;&#8221;;<br />
}</p>
<p>}<br />
?&gt;<br />
&lt;/code&gt;</p>
<p>You may like to check<a href="http://referencedesigner.com/tutorials/php/php_01.php"> PHP Tutoria</a>l, if you are looking for getting started.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/php-tutorial-checkbox-form/2019/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Regular Expression &#8211; Greedy Vs Lazy &#8211; Quiz</title>
		<link>http://referencedesigner.com/blog/javascript-regular-expression-greedy-vs-lazy-quiz/2015/</link>
		<comments>http://referencedesigner.com/blog/javascript-regular-expression-greedy-vs-lazy-quiz/2015/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 15:40:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=2015</guid>
		<description><![CDATA[Take the following quiz for enhancing your understanding of the Regular Expression &#8211; Greedy Vs Lazy. You may like to ready the Javascript Regular Expression &#8211; Greedy Vs Lazy, before you take up this quiz. Q1. Consider the following section of the code var pattern = /^.*([\d]+)/; var str = &#8220;Which year was known as [...]]]></description>
			<content:encoded><![CDATA[<p>Take the following quiz for enhancing your understanding of the Regular Expression &#8211; Greedy Vs Lazy. You may like to ready the <a href="http://referencedesigner.com/blog/javascript-regular-expression-greedy-vs-lazy/2010/">Javascript Regular Expression &#8211; Greedy Vs Lazy</a>, before you take up this quiz. </p>
<p><strong>Q1. </strong>Consider the following section of the code</p>
<p>var pattern = /^.*([\d]+)/;<br />
var str = &#8220;Which year was known as great depression &#8211; 1929&#8243;;<br />
var newstr = str.replace(pattern, &#8220;$1&#8243;);</p>
<p>what is the value of newstr</p>
<p><strong>A.</strong> 1929<br />
<strong>B.</strong> 9<br />
<strong>C.</strong> Which year was known as great depression &#8211; 1929<br />
<strong>D.</strong> 29</p>
<p><strong>Q2.</strong> Consider the following section of code</p>
<p>var pattern = /^.*([\d]*)/;<br />
var str = &#8220;Which year was known as great depression &#8211; 1929&#8243;;</p>
<p>What is captured in the parenthesis</p>
<p><strong>A.</strong> 1929<br />
<strong>B.</strong> 9<br />
<strong>C.</strong> Nothing<br />
<strong>D.</strong> Which year was known as great depression &#8211; 1929</p>
<p>Try to do the above two questions yourself before you check the answers. The answers are at the end of this topic. You may also like to check</p>
<p>1. <a href="http://referencedesigner.com/books/re/code/index.php">Javascript Tutorial for beginners</a></p>
<p>2.  <a href="http://www.amazon.com/gp/product/0982136919/ref=as_li_ss_tl?ie=UTF8&#038;tag=referedesign-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0982136919" rel ="nofollow">Regular Expression In Javascript on amazon</a> </p>
<p>Answers and explanations<br />
Q1. B<br />
We are tempted to think that the parenthesis will capture 1929. However the .* keeps<br />
matching anything including the digits. Finally to make the match successful the last<br />
digit 9 is left to match to [\d]+. This is captured by the parenthesis.<br />
Q2. C<br />
Note that the our greed to attempt to capture 1929 gives a blank result. All the literals<br />
are captured in .* and for the search to be successful, no match is required</p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/javascript-regular-expression-greedy-vs-lazy-quiz/2015/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Regular Expression greedy vs lazy</title>
		<link>http://referencedesigner.com/blog/javascript-regular-expression-greedy-vs-lazy/2010/</link>
		<comments>http://referencedesigner.com/blog/javascript-regular-expression-greedy-vs-lazy/2010/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 15:15:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=2010</guid>
		<description><![CDATA[We will understand the concept of greedy Vs. Lazy regular expression with the help of an example. Consider part of an html page consisting of some words in bold. Here is an example &#60;p&#62; This is an example page &#60;/p&#62; &#60;b&#62; First Bold &#60;/b&#62; Something here &#60;b&#62; Second Bold &#60;/b&#62; Something else here &#60;p&#62; Finish [...]]]></description>
			<content:encoded><![CDATA[<p>We will understand the concept of greedy Vs. Lazy regular expression with the help of<br />
an example.</p>
<p>Consider part of an html page consisting of some words in bold. Here is an example</p>
<p><em><strong>&lt;p&gt; This is an example page &lt;/p&gt;</strong></em><br />
<em><strong>&lt;b&gt; First Bold &lt;/b&gt;</strong></em><br />
<em><strong>Something here</strong></em><br />
<em><strong>&lt;b&gt; Second Bold &lt;/b&gt;</strong></em><br />
<em><strong>Something else here</strong></em><br />
<em><strong>&lt;p&gt; Finish &lt;/p&gt;</strong></em><br />
Now, we want to write a regular expression which will match &lt;b&gt; First Bold<br />
&lt;/b&gt; in the above example. To do this we use the following regular expression<br />
/&lt;b&gt;.*&lt;/b&gt;/<br />
Hoping it to work. This regular expression, however, matches the following part of the<br />
subject<br />
&lt;b&gt; First Bold &lt;/b&gt;<br />
Something here<br />
&lt;b&gt; Second Bold &lt;/b&gt;<br />
Why ? To understand it we would like to understand the mechanism of match. In the<br />
regular expression /&lt;b&gt;.*&lt;/b&gt;/ . The regular expression first looks for &lt;b&gt; in the<br />
subject. Once &lt;b&gt; is found, .* all way to the end of the subject. In the process, it eats<br />
up the whole subject, right all way to the finish &lt;/p&gt;. When its stomach is full, it looks<br />
in the regular expression, for what next to match. It is &lt;/b&gt;. So what it does is<br />
backtracking.</p>
<p>&nbsp;</p>
<p>It tries to match &lt; of &lt;/b&gt; in the regular expression with &gt; of &lt;/p&gt; in the subject. The<br />
match fails. Now it tries matching &lt; of &lt;/b&gt; with p of &lt;/p&gt;. This also fails. It keeps<br />
doing this till it matches &lt; of &lt;/b&gt; in the regular expression with &lt; of &lt;/p&gt; in the<br />
subject</p>
<p>&lt;html&gt;<br />
&lt;body&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
&lt;!&#8211;<br />
/*<br />
********************************************************<br />
Javascript Regular Expression Example ch4 Ex 01<br />
Understanding Greedy Vs. Lazy Match<br />
********************************************************<br />
*/<br />
var pattern1=/&lt;b&gt;(.*)&lt;\/b&gt;/;<br />
var string1 = &#8220;&lt;p&gt; This is an example page &lt;/p&gt;&lt;b&gt; First Bold &lt;/b&gt;Something here<br />
&lt;b&gt; Second Bold &lt;/b&gt; Something else here&lt;p&gt; Finish &lt;/p&gt;&#8221; ;<br />
var string2 = string1.match(pattern1);<br />
document.write(&#8220;string2[0] is : &#8220;, string2[0] , &#8220;&lt;br /&gt;&#8221;);<br />
//&#8211;&gt;<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>&nbsp;</p>
<p>If we run this code we get the following output</p>
<p>string2[0] is : First Bold Something here Second Bold</p>
<p>Notice that, since we are displaying the output on an html, we do not see &lt;b&gt; and &lt;/b&gt;.<br />
We instead see the actual bold letters. But you should be able to feel the idea. The<br />
regular expression /&lt;b&gt;(.*)&lt;\/b&gt;/; matches all the text between the first &lt;b&gt; and all<br />
way to the last &lt;/b&gt;.</p>
<p>If we change the statement</p>
<p>var pattern1=/&lt;b&gt;(.*)&lt;\/b&gt;/;<br />
to<br />
var pattern1=/&lt;b&gt;(.*?)&lt;\/b&gt;/;</p>
<p>we get the following output</p>
<p>string2[0] is : First Bold</p>
<p>You may also like to take a small quiz about Regex ( greedy vs lazy)</p>
<p>Also check</p>
<p>1. <a href="http://referencedesigner.com/books/re/code/index.php">Javascript Tutorial for beginners</a></p>
<p>2.  <a href="http://www.amazon.com/gp/product/0982136919/ref=as_li_ss_tl?ie=UTF8&#038;tag=referedesign-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0982136919" rel ="nofollow">Regular Expression In Javascript on amazon</a> </p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/javascript-regular-expression-greedy-vs-lazy/2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Textarea Tutorial</title>
		<link>http://referencedesigner.com/blog/javascript-textarea-tutorial/2005/</link>
		<comments>http://referencedesigner.com/blog/javascript-textarea-tutorial/2005/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 13:34:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=2005</guid>
		<description><![CDATA[Javascript texarea is useful construct that you can use to input a large area of text for further processing and output. A typical example could be entering simple text for further processing. In today&#8217;s tutorial let us learn about Javascript Textarea with an example. In the example we will present user with a text area [...]]]></description>
			<content:encoded><![CDATA[<p>Javascript texarea is useful construct that you can use to input a large area of text for further processing and output. A typical example could be entering simple text for further processing. In today&#8217;s tutorial let us learn about Javascript Textarea with an example.</p>
<p>In the example we will present user with a text area and a button. We need to accomplish some task, based upon clicking the button. Let us get started. Copy the following text and start seeing its effects.</p>
<p><code></p>
<p><html></p>
<p><html><br />
    <head><br />
    <script language="JavaScript">
    <!--
    function openWin(){
      var formData = document.myForm.myTextArea.form;
      var myWin = open("", "","width=450,height=200");
	  myWin.document.write("The tutorial is provided by Reference Designer"<br />");
      myWin.document.write("The name of the form is: " + formData.name + "<br />");
      myWin.document.write(formData.myTextArea.value + "<br />");
      myWin.document.write(formData.elements[1].name + "<br />");
	  myWin.document.write("Thanks for checking reference designer javascript tutorial <br />");
      myWin.document.close();
    }
    -->
    </script><br />
    </head><br />
    <body></p>
<form name="myForm">
      <textarea name="myTextArea" rows=20 cols=80><br />
      This example is provided by reference designer. Please enter some text here<br />
      </textarea></p>
<input type=BUTTON value="Click to Process" name="myButton" onClick="openWin()">
    </form>
<p>    </body><br />
    </html><br />
</code></p>
<p>If you are a beginner &#8211; you may like to take a look at the <a href="http://referencedesigner.com/tutorials/js/js_1.php">Javascript Tutorial</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/javascript-textarea-tutorial/2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find the Number of Cores and Logical Processors using C#.net</title>
		<link>http://referencedesigner.com/blog/how-to-find-the-number-of-cores-and-logical-processors-using-c-net/1999/</link>
		<comments>http://referencedesigner.com/blog/how-to-find-the-number-of-cores-and-logical-processors-using-c-net/1999/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 03:00:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=1999</guid>
		<description><![CDATA[This is a pre cusrsor to something more that we are trying to achieve. The goal is to develop a simple code that will find the processor and memory details and then will benchmark the computer. We will then let users run this program to help him benchmark and compare the processors. Today we will [...]]]></description>
			<content:encoded><![CDATA[<p>This is a pre cusrsor to something more that we are trying to achieve. The goal is to develop a simple code that will find the processor and memory details and then will benchmark the computer. We will then let users run this program to help him benchmark and compare the processors. </p>
<p>Today we will show you how to get the information about the number of processors. Here is the code that has been compiled in C#.Net ( 2010 Express Edition). </p>
<p>A note on compilation. </p>
<p>- Copy paste this code in console application and then go to Projects -> Add reference &#8211; > .NET &#8211; > System.Management</p>
<p>Happy coding.</p>
<p><code><br />
using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;<br />
using System.Management;</p>
<p>namespace ConsoleApplication1<br />
{<br />
    class Program<br />
    {<br />
        static void Main(string[] args)<br />
        {</p>
<p>            foreach (var item in new System.Management.ManagementObjectSearcher("Select * from Win32_ComputerSystem").Get())<br />
            {<br />
                Console.WriteLine("Number Of Physical Processors: {0} ", item["NumberOfProcessors"]);<br />
            }</p>
<p>            // Number of Cores</p>
<p>            int coreCount = 0;<br />
            foreach (var item in new System.Management.ManagementObjectSearcher("Select * from Win32_Processor").Get())<br />
            {<br />
                coreCount += int.Parse(item["NumberOfCores"].ToString());<br />
            }<br />
            Console.WriteLine("Number Of Cores: {0}", coreCount);</p>
<p>            // Number of Logical Processors</p>
<p>            foreach (var item in new System.Management.ManagementObjectSearcher("Select * from Win32_ComputerSystem").Get())<br />
            {<br />
                Console.WriteLine("Number Of Logical Processors: {0}", item["NumberOfLogicalProcessors"]);<br />
            }</p>
<p>            Console.ReadLine();<br />
        }<br />
    }<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/how-to-find-the-number-of-cores-and-logical-processors-using-c-net/1999/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allegro PCB Viewer</title>
		<link>http://referencedesigner.com/blog/allegro-pcb-viewer/1996/</link>
		<comments>http://referencedesigner.com/blog/allegro-pcb-viewer/1996/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 01:09:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=1996</guid>
		<description><![CDATA[If you have been given an Allegro PCB Design to review and you do not have the access to complete Allegro Design Suites, you may like to download the Allegro PCB Viewer from http://www.cadence.com/products/pcb/Pages/downloads.aspx. The Allegro PCB viewer is a free tool to view the Allegro PCB Design files. If you have the complete tool [...]]]></description>
			<content:encoded><![CDATA[<p>If you have been given an Allegro PCB Design to review and you do not have the access to complete Allegro Design Suites, you may like to download the Allegro PCB Viewer from <a href="http://www.cadence.com/products/pcb/Pages/downloads.aspx" rel ="nofollow">http://www.cadence.com/products/pcb/Pages/downloads.aspx</a>. The Allegro PCB viewer is a free tool to view the Allegro PCB Design files. </p>
<p>If you have the complete tool available to you, you may like to check the <a href="referencedesigner.com/tutorials/allegro/allegro_page_1.php">Allegro PCB tutorial</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/allegro-pcb-viewer/1996/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Calculators &#8211; Post errors in Comment</title>
		<link>http://referencedesigner.com/blog/new-calculators-post-errors-in-comment/1987/</link>
		<comments>http://referencedesigner.com/blog/new-calculators-post-errors-in-comment/1987/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 02:47:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=1987</guid>
		<description><![CDATA[We have upoloaded a large number of new Calculators for daily use. In case you come across any errors in these calculators, please mention them in the comment section here. Here goes the list of new Calculators 1. Cylinder Lateral Surface Area Calculator 2. Cylinder Total Surface Area Calculator 3. Cone Lateral Surface Area Calculator [...]]]></description>
			<content:encoded><![CDATA[<p>We have upoloaded a large number of new Calculators for daily use. In case you come across any errors in these calculators, please mention them in the comment section here. </p>
<p>Here goes the list of new Calculators</p>
<p>1. <a href="http://referencedesigner.com/calc/cylinder-lateral-surface-area-calculator-11.php">Cylinder Lateral Surface Area Calculator </a><br />
2. <a href="http://referencedesigner.com/calc/cylinder-surface-area-calculator-12.php">Cylinder Total Surface Area Calculator </a><br />
3. <a href="http://referencedesigner.com/calc/cone-lateral-surface-area-calculator-13.php">Cone Lateral Surface Area Calculator </a><br />
4. <a href="http://referencedesigner.com/calc/cone-total-surface-area-calculator-14.php">Cone Total Surface Area Calculator</a><br />
5. <a href="http://referencedesigner.com/calc/cone-slant-height-calculator-15.php">Cone Slant Height Calculator</a><br />
6. <a href="http://referencedesigner.com/calc/acre-to-square-meter-calculator-16.php">Acre to Square Meter Calculator </a><br />
7. <a href="http://referencedesigner.com/calc/acre-to-square-miles-calculator-17.php">Acre to Square Miles Calculator </a><br />
8. <a href="http://referencedesigner.com/calc/square-kilometer-acres-calculator-18.php"> Square Kilometers to Acres Calculator</a><br />
9. <a href="http://referencedesigner.com/calc/hectares-to-acres-calculator-19.php">Hectare to Acres Calculator </a><br />
10. <a href="http://referencedesigner.com/calc/square-miles-to-hectares-20.php">Square Miles to Hectare Calculator</a><br />
11. <a href="http://referencedesigner.com/calc/hectares-to-square-feet-21.php">Hectares to Square Feet</a><br />
12. <a href="http://referencedesigner.com/calc/hectare-square-kilometer-22.php">Hectares to Square Kilometers</a><br />
13. <a href="http://referencedesigner.com/calc/">Hectares to Square Yards</a><br />
14. <a href="http://referencedesigner.com/calc/hectare-square-yards-23.php">Hectare to Sq Yards</a><br />
15. <a href="http://referencedesigner.com/calc/square-meter-square-yards-24.php">Square Meter to Square Yards</a><br />
16. <a href="http://referencedesigner.com/calc/square-meter-square-inch-25.php">Square Meter to Sq Inch</a><br />
17. <a href="http://referencedesigner.com/calc/square-kilometer-square-meter-26.php">Square Km to Sq meter</a><br />
18. <a href="http://referencedesigner.com/calc/cubic-meters-to-gallons-us-27.php">Cubic Meters to Galons</a><br />
19. <a href="http://referencedesigner.com/calc/square-feet-to-square-inches-28.php">Square Feet to Sq Inches</a></p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/new-calculators-post-errors-in-comment/1987/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AMD Athlon ii P340 Processor review</title>
		<link>http://referencedesigner.com/blog/amd-athlon-ii-p340-processor-review/1268/</link>
		<comments>http://referencedesigner.com/blog/amd-athlon-ii-p340-processor-review/1268/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 18:12:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=1268</guid>
		<description><![CDATA[[ad#2] AMD has launched in the market an Athlon II dual-core processor P340. The features of this processor make it a great competition for the recently released Intel Pentium P6100 series. Let’s have a look at the characteristics that make the Athlon II P340 a good option for customers in their search for a good [...]]]></description>
			<content:encoded><![CDATA[<p>[ad#2]<br />
AMD has launched in the market an Athlon II dual-core processor P340. The features of this processor make it a great competition for the recently released Intel Pentium P6100 series. Let’s have a look at the characteristics that make the Athlon II P340 a good option for customers in their search for a good processor for their laptops and/or notepads. The Athlon II P340 has a frequency of operation of 2.2 GHz. Another feature we should mention is that it has a CPU multiplier is of 16. When compared to the Intel Pentium p6100 series, the Athlon II P340 processor offers a memory controller of the DDR3, this means that the there is a reduction of the memory interval and it also means that there is an improvement in the processor as a whole. The dual-core has been built with 45nm lithography technology, and has a  data width of 64 bits. It also offers a level 2 cache memory separated in the dual core and with 512 KB each level. Another striking characteristic of the Athlon II P340 processor is that the power consumption is of only 25 watts, the lowest power consumption processor when compared to other CPUs in the same market segment.<br />
[ad]<br />
The Athlon ii supports Hardware virtualization. The advantage of such feature is that you will be able to have different operating systems in the same device without having to cope with a decrease in performance. One thing you should take into account when considering to purchase a laptop with this type of processor is that it has a revolutionary technology to avoid heating problems (Powernow and Cool’n’Quit). Some other things that the Athlon II P340 processor includes are an adjustable controller, hardware to help you control temperature of the processor, and some integration based samples. The new dual-core processor from AMD also includes an outstanding feature to help you protect the timer support. The reason why I believe this is a good processor to get is because all the available graphic cards in the market can be used with the Athlon II P340. Nevertheless, as the speed for processing data is not much it does not offer an excellent performance when the customer uses applications that require multi threading. You will find this type of Athlon II P340 processor in brands such as Sony Vaio, HP and Acer, but not all models come with a dual-core processor P340.</p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/amd-athlon-ii-p340-processor-review/1268/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Intel Pentium P6000 P6100 and P6200 processors</title>
		<link>http://referencedesigner.com/blog/intel-pentium-p6000-p6100-and-p6200-processors/1247/</link>
		<comments>http://referencedesigner.com/blog/intel-pentium-p6000-p6100-and-p6200-processors/1247/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 22:30:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=1247</guid>
		<description><![CDATA[[ad#2] Intel Pentium P6000 P6100 and P6200 processors The Intel pentium P6000, P6100 and P6200 are based upon the Arrandale architecture. It is intel&#8217;s attempt to keep the Pentium brand alive and at the same time offer the benefits of the Arrandale Architecture. If you are not aware of the Arrandale architecture, it is basically [...]]]></description>
			<content:encoded><![CDATA[<p>[ad#2]<br />
<strong>Intel Pentium P6000 P6100 and P6200 processors</strong></p>
<p>The Intel pentium P6000, P6100 and P6200 are based upon the Arrandale architecture. It is intel&#8217;s attempt to keep the Pentium brand alive and at the same time offer the benefits of the Arrandale Architecture. </p>
<p>If you are not aware of the Arrandale architecture, it is basically the same architecture that powers the intel core i3, core i5 and core i7 processors, which means that they have integrated memory controller and a DMI bus to communicate with the chipset.<br />
[ad]<br />
The core frequency of P6000 is 1.86 GHz while that of the P6100 and P6200 are 2 GHz and 2.13 GHz respectively. The intel P6000 series does not have turbo boost functionality as in the core i5 processors. Also, there is no Hyperthreading supported in the intel P6000 series processor.</p>
<p>The Intel P6000 series contain 3 MB of smart cache.  Built with 32 nm technology, the intel Pentium P6000, P6100 and P6200 processors have a moderate TDP rating of 35 Watts. </p>
<p>The P6000 series has integrated DDR3 memory controller that can support a maximum of 8 GB DDR3 memory. </p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/intel-pentium-p6000-p6100-and-p6200-processors/1247/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Honda CRV 2012</title>
		<link>http://referencedesigner.com/blog/honda-crv-2012/1220/</link>
		<comments>http://referencedesigner.com/blog/honda-crv-2012/1220/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 14:56:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://referencedesigner.com/blog/?p=1220</guid>
		<description><![CDATA[Honda CRV 2012 Discussions [ad#2] This topic has been started with the intention of starting the discussions about the Honda CRV 2012. You may have several questions in your mind. And some of you may have the right answers. If you have any information please contribute by commenting below. If you have some questions, you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Honda CRV 2012</strong> Discussions<br />
[ad#2]<br />
This topic has been started with the intention of starting the discussions about the  Honda CRV 2012. You may have several questions in your mind. And some of you may have the right answers. If you have any information please contribute by commenting below. If you have some questions, you may still comment and ask any question relevant to  Honda CRV 2012. All relevant question and most answers will be approved. </p>
<p>[ad]<br />
Here are some common questions that you may have in your mind about  Honda CRV 2012</p>
<p>Q. Who are the nearest competitors of the  Honda CRV 2012 ?</p>
<p>Q. Do we have any pricing information or any guess about the  Honda CRV 2012 ? How about previous year models ?</p>
<p>Q. Who are different  trims and variations of  Honda CRV 2012 ?</p>
<p>Q. Do we have EPA Fuel Economy figures available for the  Honda CRV 2012 ? How about older models ?</p>
<p>Q. What safety rating has been given to the  Honda CRV 2012  ?</p>
<p>Q. Mechanically what are the engine horsepower figures and what type of transmission (manual, automatic or contnuous) for the  Honda CRV 2012 ?</p>
<p>Q. When do we expect the   Honda CRV 2012 to be available ?</p>
<p>Once again, if you know answer to these questions, please comment. If you have more questions. Please feel free to ask it in the comment itself.</p>
]]></content:encoded>
			<wfw:commentRss>http://referencedesigner.com/blog/honda-crv-2012/1220/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

