<?xml version="1.0" encoding="utf-8" ?><?xml-stylesheet type="text/xsl" href="http://www.daniweb.com/js/rss.xsl"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community
			 - Computer Science					</title>
		<link>http://www.daniweb.com/software-development/computer-science/14</link>
		<description>Our Computer Science forum is the place for Q&amp;A-style discussions related to software design and schema, mathematical theory, and algorithms.</description>
		<language>en-US</language>
		<ttl>60</ttl>
		<!-- PubSubHubbub Discovery -->
		<link rel="hub" href="http://daniweb.superfeedr.com/" xmlns="http://www.w3.org/2005/Atom" />
		<link rel="self" href="http://www.daniweb.com/rss/pull/14" xmlns="http://www.w3.org/2005/Atom" />
		<!-- End Of PubSubHubbub Discovery -->
				<item>
			<title>Flex HMAC SHA1 signature generation</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/454685/flex-hmac-sha1-signature-generation</link>
			<pubDate>Wed, 15 May 2013 17:36:02 +0000</pubDate>
			<description>Do anyone here knows flex builder? I'm a beginner in this language. I have written a code for HMAC SHA1 signature generation for authenticating account in cloudstack. No error is showing while compiling. But when i run, the browser opens blank. The url is correct, the signature is genetated. I ...</description>
			<content:encoded><![CDATA[ <p>Do anyone here knows flex builder?<br />
I'm a beginner in this language. I have written a code for HMAC SHA1 signature generation for authenticating account in cloudstack. No error is showing while compiling. But when i run, the browser opens blank. The url is correct, the signature is genetated. I can see it in the url.But the orginal output is xml commands it is not showing. the page is simply left blank. Can anyone help me?<br />
The code is as follows.</p>

<pre><code class="language-tex">&lt;fx:Script&gt;
    &lt;![CDATA[
        import com.adobe.crypto.HMAC;
        import com.adobe.crypto.SHA1;
        import com.adobe.utils.StringUtil;

        import flash.net.navigateToURL;

        import mx.controls.Alert;
        import mx.utils.Base64Encoder;
        import mx.utils.StringUtil;


        private var urlAPI:String;
        private var commandString:String;
        private var apiKey:String;
        private var apiKeyString:String;
        private var secretKey:String = "-kgkBuBUrGFeIC4gUvngSK_3Ypmi7fuF8XdVXIusnyyiEP2YUcG3FnPUGJGy3rp3Bw5ZNnqgS-9tIfyV1QnK1g";
        private var signature:String;
        private var urlRequestString:String

        [Bindable]
        private var encryptedString:String = "";

        [Bindable]
        private var encryptedByteArray:String = "";


        private function generateRequest():void
        {
            urlAPI = "<a href="http://10.176.14.26/client/api" rel="nofollow">http://10.176.14.26/client/api</a>";
            commandString = "command=listZones";
            apiKey = "";
            apiKey = encodeURI(apiKey.toLowerCase());
            apiKeyString = "apiKey=" + apiKey;
            signature = generateSignature();
            urlRequestString = urlAPI +"?"+commandString+"&amp;"+apiKeyString+"&amp;signature="+signature;// "command=listZones&amp;apiKey=Qo9Qwfatwz9ARB328Btn9PftzL2Cf5LOWd8OFyJmiM513tpTIm-zKxJoWkWqf353Df397xcLdKXGk8_JO8nM3Q&amp;signature=Lxx1DM40AjcXU%2FcaiK8RAP0O1hU%3D";
            var urlRequestObj:URLRequest = new URLRequest(urlRequestString);
            navigateToURL(urlRequestObj,"_blank");
        }

        private function generateSignature():String
        {

            var tempSignature:String = apiKey +"&amp;"+commandString;
            tempSignature = tempSignature.toLowerCase();

            return hashMessage(tempSignature,secretKey);

        }

        private function hashMessage(message:String, secretKey:String):String
        {           

            var algorithm:Object = SHA1;
            var encoder:Base64Encoder = new Base64Encoder();

            if(message.length &gt; 0)

            {
                encryptedString = HMAC.hash(secretKey,message,algorithm);

                var messageBytes:ByteArray = new ByteArray();

                messageBytes.writeMultiByte(message,"utf-8");

                encryptedByteArray = HMAC.hashBytes(getByteArray(),messageBytes,algorithm);



                encoder.encode(encryptedByteArray); 


            }

            //Alert.show(encoder.toString());
            return encoder.toString();      
        }

        private var byteArray:ByteArray;

        [Bindable("dummyEventType")]
        private function  getByteArray():ByteArray
        {

            if(!byteArray)
            {
                byteArray = new ByteArray();
                byteArray.writeMultiByte(secretKey,"utf-8");
                //byteArray.


            }


            return byteArray;

        }   


        //<a href="http://10.176.14.26/client/api?command=listZones&amp;apiKey=Qo9Qwfatwz9ARB328Btn9PftzL2Cf5LOWd8OFyJmiM513tpTIm-zKxJoWkWqf353Df397xcLdKXGk8_JO8nM3Q&amp;signature=" rel="nofollow">http://10.176.14.26/client/api?command=listZones&amp;apiKey=Qo9Qwfatwz9ARB328Btn9PftzL2Cf5LOWd8OFyJmiM513tpTIm-zKxJoWkWqf353Df397xcLdKXGk8_JO8nM3Q&amp;signature=</a>
        //<a href="http://10.176.14.26/client/api?command=listZones&amp;apiKey=Qo9Qwfatwz9ARB328Btn9PftzL2Cf5LOWd8OFyJmiM513tpTIm-zKxJoWkWqf353Df397xcLdKXGk8_JO8nM3Q&amp;signature=N2Y4NWU1N2E4ZjEyZGQ0ODJjOTFmZTM1OWMyMGEzZTMzMDYwMTMwMg==" rel="nofollow">http://10.176.14.26/client/api?command=listZones&amp;apiKey=Qo9Qwfatwz9ARB328Btn9PftzL2Cf5LOWd8OFyJmiM513tpTIm-zKxJoWkWqf353Df397xcLdKXGk8_JO8nM3Q&amp;signature=N2Y4NWU1N2E4ZjEyZGQ0ODJjOTFmZTM1OWMyMGEzZTMzMDYwMTMwMg==</a> 





    ]]&gt;
&lt;/fx:Script&gt;
&lt;s:Button x="102" y="64" label="Button" click="generateRequest()"/&gt;
&lt;ns1:CloudInterfaceComp x="196" y="213"&gt;
&lt;/ns1:CloudInterfaceComp&gt;
</code></pre>

<p>&lt;/s:Application&gt;</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>siss</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/454685/flex-hmac-sha1-signature-generation</guid>
		</item>
				<item>
			<title>Working with MARIE, Help</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/453943/working-with-marie-help</link>
			<pubDate>Sun, 05 May 2013 09:03:34 +0000</pubDate>
			<description>I've been working with MARIE but I have not been guided correctly and now I am stuck I have to write a code that would add two numbers and only print the output if the answer is &lt;0 i.e Negative. but the code I have written it prints th output ...</description>
			<content:encoded><![CDATA[ <p>I've been working with MARIE but I have not been guided correctly and now I am stuck<br />
I have to write a code that would add two numbers and only print the output if the answer is &lt;0 i.e Negative. but the code I have written it prints th output in both cases, below is my code, could anyone suggest?</p>

<pre><code class="language-tex">    ORG 100
    Load X
    Add Y
    If, Skipcond 000
    Jump Else
    Store Z
    Else, Output
    Halt
    X, Dec 10
    Y, Dec 100
    Z, Dec 0
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>SMYussef</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/453943/working-with-marie-help</guid>
		</item>
				<item>
			<title>Renaming txt files with firstline_seconline</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/453935/renaming-txt-files-with-firstline_seconline</link>
			<pubDate>Sun, 05 May 2013 03:23:37 +0000</pubDate>
			<description>Hi Everyone, have got this application that exports multiple files bit gives them random names, i would like to rename all the files in the folder to the first 3 characers on the firstline then put an underscore and then the first 5 characters on the seconline **example** randomfile_001.txt contain ...</description>
			<content:encoded><![CDATA[ <p>Hi Everyone,<br />
have got this application that exports  multiple files bit gives them random names,<br />
i would like to rename all the files in the folder to the first 3 characers on the firstline then put an underscore and then the first 5 characters on the seconline</p>

<p><strong>example</strong> randomfile_001.txt contain the following lines<br />
Abc/xyz<br />
def12/pqr</p>

<p>to become Abc_def12.txt<br />
is there a way to rename in vbs or .bat<br />
thanks alot</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>MODEY</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/453935/renaming-txt-files-with-firstline_seconline</guid>
		</item>
				<item>
			<title>Need one word description of &quot;static&quot;</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/453909/need-one-word-description-of-static</link>
			<pubDate>Sat, 04 May 2013 15:16:09 +0000</pubDate>
			<description>All, Anyone have any suggestions for completing the last line below: public/private define a variable's scope. int/char/double define a variable's type. static/non-static define a variable's ____________. I know what static variables are, I just can't think of a word or even 2 words to fill in the blank. (I'm building ...</description>
			<content:encoded><![CDATA[ <p>All,</p>

<p>Anyone have any suggestions for completing the last line below:</p>

<p>public/private define a variable's scope.<br />
int/char/double define a variable's type.<br />
static/non-static define a variable's ____________.</p>

<p>I know what static variables are, I just can't think of a word or even 2 words to fill in the blank. (I'm building a symbol table and I need a pidgeon hole for the "static" keyword.)</p>

<p>Thanks,<br />
-Bill</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>WDrago</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/453909/need-one-word-description-of-static</guid>
		</item>
				<item>
			<title>I have 40320 possible ways to represent a state </title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/453458/i-have-40320-possible-ways-to-represent-a-state-</link>
			<pubDate>Sat, 27 Apr 2013 18:12:54 +0000</pubDate>
			<description>I have the numbers 0-8 so I can represent a state as 012345678 012345687 .... 876543201 876543210 This gives me 40320 ways to represent a state so I have a HashMap of size 40320 and I need a good way to make sure each state only corresponds to 1 key ...</description>
			<content:encoded><![CDATA[ <p>I have the numbers 0-8 so I can represent a state as<br />
012345678<br />
012345687<br />
....<br />
876543201<br />
876543210<br />
This gives me 40320 ways to represent a state so I have a HashMap of size 40320 and I need a good way to make sure each state only corresponds to 1 key 1-40320</p>

<p>I'm not really sure how to even come close to making sure there are no possible collisions.  Any help would be greatly appreciated</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>Forte1292</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/453458/i-have-40320-possible-ways-to-represent-a-state-</guid>
		</item>
				<item>
			<title>Lady Ada Lovelace</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/453450/lady-ada-lovelace</link>
			<pubDate>Sat, 27 Apr 2013 12:40:30 +0000</pubDate>
			<description>I am doing a math research on mathematcians. I searched up Lady Ada Lovelace on wikipedia and many other websites and all it says is, &quot;Lady Ada Lovelace made the first computer&quot; If you know nything about her contributing to math please respond. Please help if you can Thanks</description>
			<content:encoded><![CDATA[ <p>I am doing a math research on mathematcians. I searched up Lady Ada Lovelace on wikipedia and many other websites and all it says is, "Lady Ada Lovelace made the first computer"</p>

<p>If you know nything about her contributing to math please respond.</p>

<p>Please help if you can</p>

<p>Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>cproger</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/453450/lady-ada-lovelace</guid>
		</item>
				<item>
			<title>Vector Quantization using LBG Algorithm</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/453239/vector-quantization-using-lbg-algorithm</link>
			<pubDate>Wed, 24 Apr 2013 18:42:25 +0000</pubDate>
			<description>I am in a small doubt of how to proceed to the next stage. 1. I have used im2col which basically turned gray-scale image into vector. 2. I have used the function vector quantization lbg algorithm which gave the VQ codebook as the output. I understand that the image I ...</description>
			<content:encoded><![CDATA[ <p>I am in a small doubt of how to proceed to the next stage.</p>

<ol><li>I have used im2col which basically turned gray-scale image into vector. 2. I have used the function vector quantization lbg algorithm which gave the VQ codebook as the output.</li>
</ol>

<p>I understand that the image I have used to create the codebook is the training image. So here's my doubt: **How and where am I going to provide the test image in order to test the codebook created from the training image? **</p>

<p>What are your suggestions?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>Sonia11</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/453239/vector-quantization-using-lbg-algorithm</guid>
		</item>
				<item>
			<title>Algebraic formulae for the intersection of a circle</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/453199/algebraic-formulae-for-the-intersection-of-a-circle</link>
			<pubDate>Wed, 24 Apr 2013 11:57:21 +0000</pubDate>
			<description>A little patience, please: I'm incredibly old, it's a long time since I did basic algebra so I'm a little confused. I have a line y = mx+c and a circle (x-h)*(x-h)+(y-k)*(y-k) = r*r I've expanded the circle: x*x-2*x*h+h*h+y*y-2*y*k+k*k = r*r and substituted mx+c for y: x*x-2*x*h+h*h+(m*x+c)*(m*x+c)-2*(m*x+c)*k+k*k = r*r expanding ...</description>
			<content:encoded><![CDATA[ <p>A little patience, please: I'm incredibly old, it's a long time since I did basic algebra so I'm a little confused.</p>

<pre><code class="language-tex">I have a line y = mx+c
and a circle (x-h)*(x-h)+(y-k)*(y-k) = r*r

I've expanded the circle: x*x-2*x*h+h*h+y*y-2*y*k+k*k = r*r

and substituted mx+c for y: x*x-2*x*h+h*h+(m*x+c)*(m*x+c)-2*(m*x+c)*k+k*k = r*r

expanding out: x*x-2*x*h+h*h+m*x*m*x+2*m*x*c+c*c-2*m*x*k+2*c*k+k*k = r*r

Now I want to get all x's on the one side so I can evaluate x:
x*x-2*x*h+m*x*m*x+2*m*x*c-2*m*x*k = r*r-h*h-c*c-2*c*k-k*k

I can refine it a wee bit further:
x*(x-2h+m*m*x+2*m*c-2*m*k) = r*r-h*h-c*c-2*c*k-k*k
</code></pre>

<p>But that's as far as I can go...</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>davecoventry</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/453199/algebraic-formulae-for-the-intersection-of-a-circle</guid>
		</item>
				<item>
			<title>Thread synchronization.</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452883/thread-synchronization</link>
			<pubDate>Sat, 20 Apr 2013 05:00:44 +0000</pubDate>
			<description>Hi, I have two threads A and B. Thread A prints only odd numbers. Thread B prints only even number. I want to synchronize it in such a way that on the screen I get continues numbers. How can I do that? I was thinking of using sockets. Thread A ...</description>
			<content:encoded><![CDATA[ <p>Hi,</p>

<p>I have two threads A and B. Thread A prints only odd numbers. Thread B prints only even number. I want to synchronize it in such a way that on the screen I get continues numbers. How can I do that?<br />
I was thinking of using sockets. Thread A prints and sends a message to thread B. Thread B prints and then sends a message to thread A. Any thread before printing checks for the message from other thread and prints only if they have received the message.</p>

<p>Is this the best design or any of you have a better design?</p>

<p>Thank-you in advance,<br />
Sri</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>srivardhanms</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452883/thread-synchronization</guid>
		</item>
				<item>
			<title>handover parameters and algorithims</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452881/handover-parameters-and-algorithims</link>
			<pubDate>Sat, 20 Apr 2013 04:33:09 +0000</pubDate>
			<description>handover paraeters and simple simple algorithms having atleast 3 parameters needed!!!</description>
			<content:encoded><![CDATA[ <p>handover paraeters and simple simple algorithms having atleast 3 parameters needed!!!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>rida.yashfa</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452881/handover-parameters-and-algorithims</guid>
		</item>
				<item>
			<title>matlab algorithm</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452829/matlab-algorithm</link>
			<pubDate>Fri, 19 Apr 2013 09:22:13 +0000</pubDate>
			<description>can someone post me an algorithm to do image processing,edge detection,filtering, texture analysis in matlab</description>
			<content:encoded><![CDATA[ <p>can someone post me an algorithm to do image processing,edge detection,filtering, texture analysis in matlab</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>nyashadhubha</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452829/matlab-algorithm</guid>
		</item>
				<item>
			<title>algo</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452813/algo</link>
			<pubDate>Fri, 19 Apr 2013 03:19:51 +0000</pubDate>
			<description>Can any give me algorithm for online railway reservation system?</description>
			<content:encoded><![CDATA[ <p>Can any give me algorithm for online railway reservation system?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>rkmehta</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452813/algo</guid>
		</item>
				<item>
			<title>Career Change to Comp Sci</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452797/career-change-to-comp-sci</link>
			<pubDate>Thu, 18 Apr 2013 19:52:06 +0000</pubDate>
			<description>Here is my question: How difficult will it be for a 41 year old, former CPA but recently graduated Computer Science major, to find a good programming job? I read another article on this forum that was somewhat related (e.g., CPAtoCompSci), but it did not directly answer the question about ...</description>
			<content:encoded><![CDATA[ <p>Here is my question: How difficult will it be for a 41 year old, former CPA but recently graduated Computer Science major, to find a good programming job?</p>

<p>I read another article on this forum that was somewhat related (e.g., CPAtoCompSci), but it did not directly answer the question about how the market would view a 40 year old beginning a career in programming?</p>

<p>I will say that I look to be in my early 30's, so no one will necessarily know that I am 40, but that does not change the fact of my age.  Also, I hope that my CPA credential will offset any age bias as it demonstrates a certain level of accomplishment, intelligence and general aptitude.</p>

<p>I also understand that getting a "first" programming job is as much about having a portfolio of projects/prior experience, as it is about a degree.  With that in mind, I am currently working on some open source projects that should help on that front.</p>

<p>Also, I am interested to know the viability of breaking into a gaming programming role?  ...possibly an Indy project that could be self-marketed through Microsoft (e.g., PEZ/Meathead).  Is this as easy it seems?</p>

<p>Thank you for any perspective that can be offered.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>AranTomoy</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452797/career-change-to-comp-sci</guid>
		</item>
				<item>
			<title>Designing of Algorithms</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452779/designing-of-algorithms</link>
			<pubDate>Thu, 18 Apr 2013 16:31:16 +0000</pubDate>
			<description>desing algorithms using flowchart and pseudocode to display sum of all even numbers between 7 and 2020213?</description>
			<content:encoded><![CDATA[ <p>desing algorithms using flowchart and pseudocode to display sum of all even numbers between 7 and 2020213?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>usmmnn</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452779/designing-of-algorithms</guid>
		</item>
				<item>
			<title>Bigint division algorithm</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452722/bigint-division-algorithm</link>
			<pubDate>Wed, 17 Apr 2013 19:29:15 +0000</pubDate>
			<description>Hi, My teacher asked us to implement the bigint data type in C, C++ or Java, we must also implement the basic operations (assignment, addition, subtracion, multiplication and division). I'm implementing in C, my ADT is implemented as an array of chars, the first char is used to represent the ...</description>
			<content:encoded><![CDATA[ <p>Hi,</p>

<p>My teacher asked us to implement the bigint data type in C, C++ or Java, we must also implement the basic operations (assignment, addition, subtracion, multiplication and division). I'm implementing in C, my ADT is implemented as an array of chars, the first char is used to represent the signal (+ or -) and the number is inserted using big endian notation and it has a fixed size, for example, representing the number 128 and 8 as the array size:</p>

<p>+82100000</p>

<p>I've already implemented addition, subtraction e multiplication, the problem is that we cannot use the repeated subtraction algorithm, we must implement something faster, for multiplication I used individual digit multiplication and left shifts, but for division I couldn't figure anything out yet.</p>

<p>Any suggestions?</p>

<p>Regards.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>modesto916</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452722/bigint-division-algorithm</guid>
		</item>
				<item>
			<title>HELP!!! Porject Topic needed</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452680/help-porject-topic-needed</link>
			<pubDate>Wed, 17 Apr 2013 09:09:39 +0000</pubDate>
			<description>Good day all...i am a final year student of computer science and am finding it hard to choose my project topic. Pls any idea cos i am seriously in a fix now? pls</description>
			<content:encoded><![CDATA[ <p>Good day all...i am a final year student of computer science and am finding it hard to choose my project topic. Pls any idea cos i am seriously in a fix now? pls</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>tobinhoadesanya</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452680/help-porject-topic-needed</guid>
		</item>
				<item>
			<title>File System Simulator in Java</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452539/file-system-simulator-in-java</link>
			<pubDate>Mon, 15 Apr 2013 17:23:26 +0000</pubDate>
			<description>Hi, I'm a computer science student, my O.S teacher asked us to write a operating system simulator in java, each group of students should write a piece of the simulator, like memory management, process scheduler, file system, etc. My group needs to make the file system part, it's more like ...</description>
			<content:encoded><![CDATA[ <p>Hi,</p>

<p>I'm a computer science student, my O.S teacher asked us to write a operating system simulator in java, each group of students should write a piece of the simulator, like memory management, process scheduler, file system, etc.</p>

<p>My group needs to make the file system part, it's more like a visual thing, it doesn't have to be as complex as an a complete file system. I'm not sure how I would do it, how would be the visual, or how we would simulate the disk blocks, sectors and stuff.</p>

<p>Does anyone have any suggestions?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>modesto916</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452539/file-system-simulator-in-java</guid>
		</item>
				<item>
			<title>Make your own programming language</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452472/make-your-own-programming-language</link>
			<pubDate>Mon, 15 Apr 2013 01:00:25 +0000</pubDate>
			<description>So I made a simple scripting language in C# based on batch. I made it compile into a batch file since it is a scripting language it had no compiler. Is there any program out there where you can customize a programming language and compiler?</description>
			<content:encoded><![CDATA[ <p>So I made a simple scripting language in C# based on batch. I made it compile into a batch file since it is a scripting language it had no compiler. Is there any program out there where you can customize a programming language and compiler?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>michael.yeh.18062</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452472/make-your-own-programming-language</guid>
		</item>
				<item>
			<title>HELP!!!!! C++ !! Creating a program that determines the language of a given</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452456/help-c-creating-a-program-that-determines-the-language-of-a-given</link>
			<pubDate>Sun, 14 Apr 2013 19:51:35 +0000</pubDate>
			<description>You will create a program that determines the language of a given input file based on the words in that file. The structure of the input files will be one word per line (all lowercase letters). You should read these words in one LETTER at a time. Each input file ...</description>
			<content:encoded><![CDATA[ <p>You will create a program that determines the language of a given input file based on the words in that file.  The structure of the input files will be one word per line (all lowercase letters).  You should read these words in one LETTER at a time.</p>

<p>Each input file will contain 100000 letters, and be in a different language.</p>

<p>The way you are able to tell the languages apart is as follows:</p>

<pre><code class="language-tex">English:  The top letter frequencies are e, i, and a respectively.
Danish:  The top letter frequencies are e, r, and n respectively. 
Italian:  The letters j, x, y do not exist in Italian (other than proper nouns, which are not           present in the input files). 
</code></pre>

<p>Your program MUST include 5 functions in addition to your main() function:</p>

<ol><li>A void function that will take an array of size 100000, where each element is a letter from the input file, and another array of size 26 (size of the alphabet), where each element is a number indicating the frequency of occurrence (how often the letter shows up in the first array).  This function will be used to fill the second (occurrence) array.  The occurrence should be a percentage.  HINT: The following code will be helpful when trying to determine which array position in the second array to increment:</li>
</ol>

<p>temp_char = a[i];       // array a is the array of size 100000, with all letters<br />
b[temp_char - 'a']++;   // b is the array of size 26</p>

<ol><li>A void function that will initialize an array of characters of size 26 so that element 0 = ‘a’, and so on until element 25 = ‘z’. HINT: The following code will be helpful:</li>
</ol>

<p>alpha[i] = (char)i+97;  // where alpha is the array is of type char, i is the element<br />
                // this uses type-casting to a char; 97 is ASCII-decimal code for ‘a’</p>

<ol><li><p>A void function that sorts two arrays in parallel, both of size 26.  One array will have the occurrence of letters, the other will be the char array of the alphabet. You want to sort in decreasing order so that the highest frequency is the first element (in one array) and its corresponding letter is also the first element (in the other array).</p></li>
<li><p>A value-returning function that returns the percentage of occurrence of a specific letter that is passed into the function.  You will use this function to determine if the occurrence of j, x, y is zero.  You may call it in other locations/situations if you wish.</p></li>
<li><p>A void function that takes in the occurrence array and the alphabet array and determines which language the file contains, based on the above assumptions of the languages. It will print out to standard output the language that was determined;   if it cannot determine the input to be one of the above languages then it should just print out “the language cannot be determined”.</p></li>
</ol>

<p>Your main function will open an input file and read the letters into an array.  Call the functions above to first get the occurrence as a percent for each letter, and then determine the language used.</p>

<p>Also, include the following for testing:</p>

<p>•   An if block based on a boolean flag</p>

<p>•   If the bool is set to true it will print out the occurrence of each letter (sorted) using 2 columns:  letters and frequency</p>

<p>•   If the bool is set to false, this printing will not happen</p>

<p>•   You will be setting the bool (manually, for each run).</p>

<p>Make sure you use appropriate data types and that your submission follows the assignment guidelines.</p>

<p>Note:  The input files may have 100000 letters, or they may have slightly less or slightly more.  Therefore, you should use appropriate file-handling procedures.</p>

<p>Part A:  Write the C++ source code, compile the program and fix syntax errors.</p>

<p>Part B: Run the program 4 times:</p>

<p>1)  input file is input_1.txt and the bool flag is off</p>

<p>2)  input file is input_2.txt and the bool flag is on</p>

<p>3)  input file is input_3.txt and the bool flag is off</p>

<p>4)  input file is input_4.txt and the bool flag is on</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>tdee</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452456/help-c-creating-a-program-that-determines-the-language-of-a-given</guid>
		</item>
				<item>
			<title>More random?</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/452198/more-random</link>
			<pubDate>Thu, 11 Apr 2013 11:41:29 +0000</pubDate>
			<description>Would I create &quot;more&quot; randomness if if I had the library random function selecting randomly a value from the logistic function,with initial values showing chaotic behaviour, which I then would use as a seed to the random function provided by the library? Phew, whole mouthfull I guess . . . ...</description>
			<content:encoded><![CDATA[ <p>Would I create "more" randomness if if I had the library random function selecting randomly a value from the logistic function,with initial values showing chaotic behaviour, which I then would use as a seed to the random function provided by the library? Phew, whole mouthfull I guess . . .<br />
My guess is no, but my math skills are not that big to confirm this.<br />
Any opinions?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>ddanbe</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/452198/more-random</guid>
		</item>
				<item>
			<title>data structures</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/451907/data-structures</link>
			<pubDate>Mon, 08 Apr 2013 02:40:38 +0000</pubDate>
			<description>1.write an algorithm to count the no of items in a queue 2.write an algorithm that searches a given item of information in a simple linked list (using algol or fortran)</description>
			<content:encoded><![CDATA[ <p>1.write an algorithm to count the no of items in a queue<br />
2.write an algorithm that searches a given item of information in a simple linked list<br />
(using algol or fortran)</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>octarock</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/451907/data-structures</guid>
		</item>
				<item>
			<title>How electric circuits really work</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/451866/how-electric-circuits-really-work</link>
			<pubDate>Sun, 07 Apr 2013 07:55:34 +0000</pubDate>
			<description>I know that if 1 and 0 goes through an OR gate, it gives 1. But how does the 1 come? how it works? thanks</description>
			<content:encoded><![CDATA[ <p>I know that if 1 and 0 goes through an OR gate, it gives 1. But how does the 1 come? how it works?<br />
thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>silvercats</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/451866/how-electric-circuits-really-work</guid>
		</item>
				<item>
			<title>Help with Computer Science Homework</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/451616/help-with-computer-science-homework</link>
			<pubDate>Wed, 03 Apr 2013 21:37:23 +0000</pubDate>
			<description>Can anybody help me write this HTML? I have no idea how to do this! HELP! We saw how to change the background color of a Web page by using the bgColor property of the document object. We can also use other document properties to change other colors: fgColor represents ...</description>
			<content:encoded><![CDATA[ <p>Can anybody help me write this HTML? I have no idea how to do this! HELP!</p>

<p>We saw how to change the background color of a Web page by using the bgColor property of the document object. We can also use other document properties to change other colors: fgColor represents the color of the text; linkColor represents the color of "unvisited" links (which are usually blue); and vlinkColor represents the color of "visited" links (which are usually purple.)<br />
Write an HTML page that will allow the user to customize the color scheme of the Web page. Use a series of prompts to allow the user to select colors for the background, text and link colors.</p>

<p>Make sure that your page contains some text and at least one link so that you can see that the colors get changed properly!</p>

<p>A MadLib is a game in which two people cooperate to create nonsensical (but often amusing) sentences.  It works like this.  One person creates a few sentences but leaves some words blank, noting instead what kind of word is intended to go there.  For example:<br />
A small [animal] started walking toward [place] when a big [color] [animal] [verb (past tense)] it.</p>

<p>Then the author asks the other person for words to fill in the blanks (without revealing the sentence itself).  So in this case the second person might say "porcupine," "Albuquerque," "purple," "giraffe," "ate".</p>

<p>Then the author reveals the complete sentence:  A small procupine started walking toward Albuquerque when a big purple giraffe ate it.</p>

<p>Some people find this funny, so in this exercise you'll create a webpage that allows users to fill in a simple Madlib.  Before you start the webpage, create a sentence with at least three blanks in it.  Your webpage should display a series of prompts to allow the user to fill in values to put in the blanks ("Name an animal."  "Name a place."  etc.).  When the user is finished the filled-in MadLib should be displayed.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>nycfunnygirl</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/451616/help-with-computer-science-homework</guid>
		</item>
				<item>
			<title>accessing elements of a 5-D column major order array</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/451528/accessing-elements-of-a-5-d-column-major-order-array</link>
			<pubDate>Tue, 02 Apr 2013 22:52:07 +0000</pubDate>
			<description>Suppose a program is accessing an 5-d array a[5][5][5][5][5], what is the order of the array if I want to present it in a one-dimentional array?</description>
			<content:encoded><![CDATA[ <p>Suppose a program is accessing an 5-d array a[5][5][5][5][5],<br />
what is the order of the array if I want to present it in a one-dimentional array?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>poisonousgu</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/451528/accessing-elements-of-a-5-d-column-major-order-array</guid>
		</item>
				<item>
			<title>Time complexity of nested array</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/451526/time-complexity-of-nested-array</link>
			<pubDate>Tue, 02 Apr 2013 22:01:52 +0000</pubDate>
			<description> int sum=0; for(i1=0,i1&lt;m,i++){ for(i2=0,i2&lt;m,i++){ for(i3=0,i3&lt;m,i++){ ... ... ... for(im=0,im&lt;m,i++){ sum += a[i1][i2][i3]...[im]; } } } } What is the time complexity of the above code? btw, I always having problems related to time complexity, do you guys got some good article on it? especially about the step count and loops ...</description>
			<content:encoded><![CDATA[ <pre><code class="language-tex">    int sum=0;

    for(i1=0,i1&lt;m,i++){
        for(i2=0,i2&lt;m,i++){
            for(i3=0,i3&lt;m,i++){
            ...
            ...
            ...
                for(im=0,im&lt;m,i++){
                    sum += a[i1][i2][i3]...[im]; 
                }
            }
        }
    }
</code></pre>

<p>What is the time complexity of the above code?</p>

<p>btw, I always having problems related to time complexity, do you guys got some good article on it?<br />
 especially about the step count and loops and the growth rate of big-oh</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>poisonousgu</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/451526/time-complexity-of-nested-array</guid>
		</item>
				<item>
			<title>Are modern languages the reason behind an &quot;inferior&quot; gen of programmers?</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/451392/are-modern-languages-the-reason-behind-an-inferior-gen-of-programmers</link>
			<pubDate>Mon, 01 Apr 2013 12:26:33 +0000</pubDate>
			<description>Some people will say that modern languages are the reason behind the production of generations of &quot;inferior&quot; programmers of late. Because they provide a lot of things in hand, people tend not to delve into the basics and learn the insides... Do you agree, or disagree? Please share your views ...</description>
			<content:encoded><![CDATA[ <p>Some people will say that modern languages are the reason behind the production of generations of "inferior" programmers of late. Because they provide a lot of things in hand, people tend not to delve into the basics and learn the insides... Do you agree, or disagree? Please share your views with me! :)</p>

<p>(Since this is only a matter of opinion, you are free to add anything you want)</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>deltascrow</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/451392/are-modern-languages-the-reason-behind-an-inferior-gen-of-programmers</guid>
		</item>
				<item>
			<title>Job outlook without a CS degree?</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/451213/job-outlook-without-a-cs-degree</link>
			<pubDate>Fri, 29 Mar 2013 15:22:31 +0000</pubDate>
			<description>Hey guys, I'm trying to get an idea of my job possibilities in a programming-related field without a degree. I've been going to my local university for far too long in persuit of a computer science degree, however, I now face the very real possibility of not being able to ...</description>
			<content:encoded><![CDATA[ <p>Hey guys, I'm trying to get an idea of my job possibilities in a programming-related field without a degree.</p>

<p>I've been going to my local university for far too long in persuit of a computer science degree, however, I now face the very real possibility of not being able to complete this degree program (about 3 high-end classes short).</p>

<p>I've been a freelance web developer for about 6 years (front and back-end), have knowledge in multiple languages throughout my years of going to school and personal programming, am familiar with several low to high levels of computer architecture, OOP, syntax and grammar, algorithm analysis (optimization), and of course all of my General education requirements, etc...</p>

<p>So the question becomes... what are my chances? what do I do next?</p>

<p>Any ideas (especially from people currently in the field) are greatly appreciated.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>PsychicTide</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/451213/job-outlook-without-a-cs-degree</guid>
		</item>
				<item>
			<title>Excel 2010 Customize Ribbon</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/451033/excel-2010-customize-ribbon</link>
			<pubDate>Tue, 26 Mar 2013 21:29:48 +0000</pubDate>
			<description>Heyy I have been creating Macros and then adding them to the customized ribbons on excel (2010). The problem I have is that each time I rename the original file (save as) that i created the macros and ribbon in and then click on the ribbon/macro it automatically opens up ...</description>
			<content:encoded><![CDATA[ <p>Heyy<br />
I have been creating Macros and then adding them to the customized ribbons on excel (2010). The problem I have is that each time I rename the original file (save as) that i created the macros and ribbon in and then click on the ribbon/macro it automatically opens up the original file for it to work on the new save as file. if i remove file from original path and then open again the renamed file and run macro using ribbon it doesn't run it gives me error file not found.</p>

<p>i have exported customized ribbon ui and when i open it using notepad++ i can see hardcoded paths of original file<br />
is there anyway to resolve this?? to rename those ribbons everytime i save file with different name or at different path....</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>Vaspar</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/451033/excel-2010-customize-ribbon</guid>
		</item>
				<item>
			<title>Need Journal International</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/450897/need-journal-international</link>
			<pubDate>Mon, 25 Mar 2013 04:46:10 +0000</pubDate>
			<description>Dear all Members here I need international Journal for Software Engineering Maybe some of u can help me to find the link or the journal thnk's before best regart ajonk</description>
			<content:encoded><![CDATA[ <p>Dear all Members here<br />
I need international Journal for Software Engineering Maybe some of u can help me to find the link or the journal<br />
thnk's before</p>

<p>best regart</p>

<p>ajonk</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>ajonk</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/450897/need-journal-international</guid>
		</item>
				<item>
			<title>Shortest Job Next Scheduling code logic help</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/450835/shortest-job-next-scheduling-code-logic-help</link>
			<pubDate>Sun, 24 Mar 2013 04:22:35 +0000</pubDate>
			<description>I'm trying to write code to simulate the shortest job next or shortest process next using bash and I'm having some trouble grasping the logic behind it. I read from a file that has proces name, arrival time, and burst time. So let say A | 1 | 5 B ...</description>
			<content:encoded><![CDATA[ <p>I'm trying to write code to simulate the shortest job next or shortest process next using bash and I'm having some trouble grasping the logic behind it. I read from a file that has proces name, arrival time, and burst time. So let say</p>

<p>A | 1 | 5<br />
B | 2 | 3<br />
C | 3 | 2<br />
D | 4 | 4<br />
E | 6 | 3</p>

<p>Heres my thought process so far. I'm using bash script so I broke up the data into 3 separate arrays. Process, arrival, and burst. I created a 4th array called totaltime. In reality I know that this is what the schedule should look like</p>

<p>|1|Process A|5|Process C|7|Process B|10|Process D|14|Process E|17|</p>

<p>My code logic is first check the arrival array and find the minimum and that row corresponds to the first process to be scheduled. Next Check which of the processes have arrival times that are less than the 1st process's burst time. Within that set of processes find the smartest burst time. Now this is where I'm stuck at. Do I use a if statement to check which of the processes are less than the 1st burst time and then use a for loop to find the smallest burst time of the set? After that how would I schedule the third process?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>supas14</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/450835/shortest-job-next-scheduling-code-logic-help</guid>
		</item>
				<item>
			<title>Which require stronger social skills Programmer or Network Administration</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/450812/which-require-stronger-social-skills-programmer-or-network-administration</link>
			<pubDate>Sat, 23 Mar 2013 20:40:47 +0000</pubDate>
			<description>I am 42 year old male returning to college fall 2013 to get an AS degree. Previous work experience I have is electronic / computer bench technician. I am going to major in 1. c# application development - to be a programmer 2. Network Administration - network administrations or 3. ...</description>
			<content:encoded><![CDATA[ <p>I am 42 year old male returning to college fall 2013 to get an AS degree. Previous work experience I have is electronic / computer bench technician. I am going to major in<br />
1. c# application development - to be a programmer<br />
2. Network Administration - network administrations or<br />
3. Computer Engineering Technology - advanced computer electronics PCB technician</p>

<p>I am a quite, shy person and need to know what work environment would be best for a person who is quite and shy and requires the least amount of teamwork, more of an individual effort.</p>

<p>As far as working as a computer bench technician I had to talk only a little bit. if I didnt have to talk I didn't and worked more as an individual. This really didnt hurt my work because work required fixing a set number of computers more production based.</p>

<p>From what I've seen of entry level programmer when I was a mail clerk they didn't do to much talking.  Just coding in a cubicle. This I can handle. Seems more of an individual effort which I have apptitude for.  When is there a lot of cummunicating for programmers? I am sure there is a part of the job process that require some communicating.</p>

<p>From what Ive seen in Network Administration when I was a mail clerk they usually sit in a room together. When somthing need fixing one or a group whent to hotspot to fix problem.  This seems like much more teamwork and interpersonal skills involved which is my weakness. Also Ive seen network admins work in a room with a glass window where everyone can walk by and stare at them.  This would make me very self concious rather then compfortable in a cubicle.</p>

<p>Please give me more input, thanks for your time and expertise.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>entry_level_IT</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/450812/which-require-stronger-social-skills-programmer-or-network-administration</guid>
		</item>
				<item>
			<title>help with multidimensional scaling in MATLAB</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/450663/help-with-multidimensional-scaling-in-matlab</link>
			<pubDate>Thu, 21 Mar 2013 19:02:21 +0000</pubDate>
			<description>Hello all!! I am new to MATLAB and am trying to do multidimensional scaling for some data I have. It is just a 24x24 correlation matrix and I keep getting an error message that it is not a square matrix, but it is!! I don't understand :/ I've been following ...</description>
			<content:encoded><![CDATA[ <p>Hello all!!</p>

<p>I am new to MATLAB and am trying to do multidimensional scaling for some data I have. It is just a 24x24 correlation matrix and I keep getting an error message that it is not a square matrix, but it is!! I don't understand :/ I've been following the MDS tutorial here (<a href="http://www.mathworks.com/help/stats/multidimensional-scaling.html#briu08r-2" rel="nofollow">http://www.mathworks.com/help/stats/multidimensional-scaling.html#briu08r-2</a>) and just replaced the map example numbers with my numbers. I also added some more titles to 24 since the city example only had 10. But I get this error! I made sure I had a ; after each of the 24 rows, so it should be square. Any advice on what I could have done wrong?</p>

<p>??? Error using ==&gt; cmdscale at 90<br />
Not a valid dissimilarity or distance matrix.</p>

<p>Thank you!!</p>

<p>-neuro</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>neuro</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/450663/help-with-multidimensional-scaling-in-matlab</guid>
		</item>
				<item>
			<title>pseudocode</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/450387/pseudocode</link>
			<pubDate>Mon, 18 Mar 2013 22:59:25 +0000</pubDate>
			<description>here's the problem I need help with. MAP needs a report which represents the monthly statement for these customers. The report will show all transactions on the customer's account. This report will first display the customer account number, beginning balance, the end of month date and the per transaction penalty ...</description>
			<content:encoded><![CDATA[ <p>here's the problem I need help with. MAP needs a report which represents the monthly statement for these customers. The report will show all transactions on the customer's account. This report will first display the customer account number, beginning balance, the end of month date and the per transaction penalty amount for overdrafts (each displayed only this one time).  Next the report will display a line for each (credit or debit) transaction showing the transaction number, type, date, amount, the running balance, and any applicable overdraft penalty amount. After all transactions are displayed a report summary is required to display the customer's ending balance, total credits, total debits, and average credit amount. Finally the summary must identify the "transaction with the smallest debit amount" by displaying the transaction amount and transaction number of the debit transaction with the smallest transaction amount.  In the event of multiple instances of the smallest only the first instance should be reported.</p>

<p>Here is what I hv so far, and I know it isn't right, but I am still working the issue, any insight besides my "language" and guidelines?</p>

<pre><code class="language-tex">Main
{
    Call InitMain.
    While (transaction date  &lt; 12/31/2012)
{
Call Input customer account number.
        {
            Call update customer account info
        }
        {
            Call ProcessTransactions.
        }
        {
        Call Calculate transactions.
        Call Calculate average.
        Call low debit amt.
        Call update overdraft penalty.
        Call outputdisplay.
}
        Stop!
}
Initialize Main.
{
    Counter=0, begbal=0, overdraft=0, running balance=0
}
Input customer account number
{
    Call process customer
    {
        Begbal=end bal prev month, 
. 
.

.end month date=12/31/2012
}
Update customer
{

Processaccount.
{
    Call customer detaIled input.   
        {
        Call update cust info.
        }
}
{
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>judyberk</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/450387/pseudocode</guid>
		</item>
				<item>
			<title>Big O, Theta and Omega confusion</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449828/big-o-theta-and-omega-confusion</link>
			<pubDate>Tue, 12 Mar 2013 04:18:35 +0000</pubDate>
			<description>What exactly does it mean when an algorithm has a run time of Omega(nlgn) or Theta(n^2), etc. From what I can tell, Big O is used to show the worst case(?) while Omega is best(?) and Theta is either(in between O and Omega?. I'm having a hard time understanding this ...</description>
			<content:encoded><![CDATA[ <p>What exactly does it mean when an algorithm has a run time of Omega(nlgn) or Theta(n^2), etc. From what I can tell, Big O is used to show the worst case(?) while Omega is best(?) and Theta is either(in between O and Omega?. I'm having a hard time understanding this topic. The reason I ask is because the book would ask questions like :</p>

<p>"<em>Show that the running time of QUICKSORT is Theta(n^2) when the array A contains distinct elements and is sorted in decreasing order.</em>"</p>

<p>or</p>

<p>"<em>What is the running time of QUICKSORT when all eleents of array A have the same value?</em>"</p>

<p>How do you solve problems like these?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>SeePlusPlus2</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449828/big-o-theta-and-omega-confusion</guid>
		</item>
				<item>
			<title>Help understanding final compiler piece</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449818/help-understanding-final-compiler-piece</link>
			<pubDate>Mon, 11 Mar 2013 23:03:38 +0000</pubDate>
			<description>hello, Iv recently been working on a compiler, so far i have a fairly decent working lexical analyzer and token scanner. So i can break down the code into a series of tokens and analyze them for correct strucutre. I also understand how to generate x86 instructions. However im lost ...</description>
			<content:encoded><![CDATA[ <p>hello,<br />
Iv recently been working on a compiler, so far i have a fairly decent working lexical analyzer and token scanner. So i can break down the code into a series of tokens and analyze them for correct strucutre.</p>

<p>I also understand how to generate x86 instructions. However im lost somewhere in between linking these two. The book i have describes the first and last step but seems to omit how i get from:</p>

<p>Have a series of tokens that are correct eg :</p>

<pre><code class="language-tex">import java.whatever;
Keyword | package Name | seperator | class name | seperator
</code></pre>

<p>It does not explain how i go from having a series of tokens that are known to be in the correct structure of the language to outputing binary or even assembly language from these tokens. Must i scan through the tokens again and generate binary or an assembly statement for each line? Or should it be implemented in a higher level of abstraction and add to the total value's of an executeable class?</p>

<p>I know its kind of a broad question, but any help on the general logic and filling the gap between correct tokens to outputing binary would be good :) its not something im grasping from the book.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>trishtren</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449818/help-understanding-final-compiler-piece</guid>
		</item>
				<item>
			<title>Difference between instruction set architecture and microarchitecture?</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449814/difference-between-instruction-set-architecture-and-microarchitecture</link>
			<pubDate>Mon, 11 Mar 2013 21:14:10 +0000</pubDate>
			<description>And the microprocessor? I want to know exactly how this all works. Wikipedia claims that an instruction set architecture determines the data, registers, addressing modes, memory, etc. It also claims that it dictates the opcodes on a microprocessor. Wikipedia says &quot;Microarchitecture&quot; is the way a given ISA is implemented on ...</description>
			<content:encoded><![CDATA[ <p>And the microprocessor?</p>

<p>I want to know exactly how this all works.</p>

<p>Wikipedia claims that an instruction set architecture determines the data, registers, addressing modes, memory, etc.</p>

<p>It also claims that it dictates the opcodes on a microprocessor.</p>

<p>Wikipedia says "Microarchitecture" is the way a given ISA is implemented on the chip itself.</p>

<p>But if the ISA dictates the specifications of the chip implemented on the micro side, what is the ISA? And how does it differ than the microarchitecture on the chip exactly?</p>

<p>This is unclear to me.</p>

<p>Like, let's say I want to develop for the chip in Assembly. Do I locate the ISAs for the microprocessor, or no?</p>

<p>Some experts told me the microarchitecture is the main selling point when developing in low level for the chip, but different ISAs can work on different chips?</p>

<p>I'm kind of confused....</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>Clan Onion</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449814/difference-between-instruction-set-architecture-and-microarchitecture</guid>
		</item>
				<item>
			<title>Help with Little&#039;s Law</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449658/help-with-littles-law</link>
			<pubDate>Sat, 09 Mar 2013 22:51:52 +0000</pubDate>
			<description>I am having a hard time applying Little's Law to two subsystems. A system is comprised of 100 smaller systems. 50 of these have a customer arrival rate of 10 per second and a expected delay time of 5 seconds. The other 50 have a customer arrival rate of 20 ...</description>
			<content:encoded><![CDATA[ <p>I am having a hard time applying Little's Law to two subsystems.</p>

<p>A system is comprised of 100 smaller systems. 50 of these have a customer arrival rate of 10 per second and a expected delay time of 5 seconds. The other 50 have a customer arrival rate of 20 per second and an expected queue lengths of 1. Compute the expected delay time for the system as a whole.</p>

<p>I found out the queue length for the first one and got 50. I also figured out the wait time for the second with .05. I am unsure of how to get the delay time for the complete system. Is it just an average of the two subsystems?</p>

<p>Thank you for any help.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>Wnt2bsleepin</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449658/help-with-littles-law</guid>
		</item>
				<item>
			<title>Matlab:Constants and variables in a matrix</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449641/matlabconstants-and-variables-in-a-matrix</link>
			<pubDate>Sat, 09 Mar 2013 15:42:14 +0000</pubDate>
			<description>I have a variable x which varies from -160 to 160 through steps of 10. `x = -160:10:160;` I have a matrix T1 which is of the form ` cos(x) 0 +sin(x) 0.00; sin(x) 0 -cos(x) 0.00; 0.0000 1 0.00000 0.67; 0.0000 0 0.00000 1.00 ` How can that be ...</description>
			<content:encoded><![CDATA[ <p>I have a variable x which varies from -160 to 160 through steps of 10.<br /><code>x = -160:10:160;</code></p>

<p>I have a matrix T1 which is of the form</p>

<p><code>cos(x) 0 +sin(x) 0.00;
sin(x) 0 -cos(x) 0.00;
0.0000 1 0.00000 0.67;
0.0000 0 0.00000 1.00</code><br />
How can that be represented in Matlab ?</p>

<p>I have seen that setting T1 to the following and displaying T1 produces only the <code>sin</code> and <code>cos</code> terms in the matrix,but not the zeroes.<br /><code>T1 = [cos(x) 0 sin(x) 0;sin(x) 0 -cos(x) 0];</code></p>

<p>How do I get this done ?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>delta_frost</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449641/matlabconstants-and-variables-in-a-matrix</guid>
		</item>
				<item>
			<title>If we open a lot of program and fill up the RAM, does this mean more ram us</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449584/if-we-open-a-lot-of-program-and-fill-up-the-ram-does-this-mean-more-ram-us</link>
			<pubDate>Fri, 08 Mar 2013 15:55:14 +0000</pubDate>
			<description>If we open a lot of program and fill up the RAM, does this mean more ram usage equals more power consumption?</description>
			<content:encoded><![CDATA[ <p>If we open a lot of program and fill up the RAM, does this mean more ram usage equals more power consumption?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>silvercats</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449584/if-we-open-a-lot-of-program-and-fill-up-the-ram-does-this-mean-more-ram-us</guid>
		</item>
				<item>
			<title>Is that possible to write a program to burn a computer literally?</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449548/is-that-possible-to-write-a-program-to-burn-a-computer-literally</link>
			<pubDate>Fri, 08 Mar 2013 08:24:23 +0000</pubDate>
			<description>A VGA,HDD</description>
			<content:encoded><![CDATA[ <p>A VGA,HDD</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>silvercats</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449548/is-that-possible-to-write-a-program-to-burn-a-computer-literally</guid>
		</item>
				<item>
			<title>Question about this quick sort example</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449404/question-about-this-quick-sort-example</link>
			<pubDate>Wed, 06 Mar 2013 19:45:05 +0000</pubDate>
			<description>In the graphic representation of Hoare's parititon: http://i.imgur.com/OtMaNsn.png Why does 'j' decrement by 1 when 'i' reaches 6? Since A[j] &lt;= pivot and A[i] &gt;= pivot at that point, shouldn't A[i] swap with A[j]? I am a bit confused about this part. The pseudo code I am following is this: ...</description>
			<content:encoded><![CDATA[ <p>In the graphic representation of Hoare's parititon:<br />
<a href="http://i.imgur.com/OtMaNsn.png" rel="nofollow">http://i.imgur.com/OtMaNsn.png</a></p>

<p>Why does 'j' decrement by 1 when 'i' reaches 6? Since A[j] &lt;= pivot and A[i] &gt;= pivot at that point, shouldn't A[i] swap with A[j]? I am a bit confused about this part.</p>

<p>The pseudo code I am following is this:</p>

<pre><code class="language-tex">//Partition array from A[p] to A[r] with pivot A[p]
//Result: A[i] ≤ A[j] for p ≤ i ≤ q and q + 1 ≤ j ≤ r

x = A[p] 
i  = p - 1
j  = r + 1
while true  // infinite loop, repeat forever
    repeat j = j - 1 
         until A[j] &lt;= x
    repeat i = i +1 
         until A[i] &gt;= x
    if  i &lt; j 
            swap A[i] &lt;-&gt; A[j]
    else  return j
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>NoUserNameHere</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449404/question-about-this-quick-sort-example</guid>
		</item>
				<item>
			<title>EmguCV absolute difference</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449349/emgucv-absolute-difference</link>
			<pubDate>Wed, 06 Mar 2013 05:57:35 +0000</pubDate>
			<description>hello ! .. i'm working with images in EmguCv.. i've subtracted the background of a image frame, based on the difference between them, using Absolute difference.. but i want to obtain the digital (double) value in my double type variable.. how can i get that??</description>
			<content:encoded><![CDATA[ <p>hello ! .. i'm working with images in EmguCv.. i've subtracted the background of a image frame, based on the difference between them, using Absolute difference.. but i want to obtain the digital (double) value in my double type variable.. how can i get that??</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>Z33shan</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449349/emgucv-absolute-difference</guid>
		</item>
				<item>
			<title>Basic Binary</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449254/basic-binary</link>
			<pubDate>Tue, 05 Mar 2013 00:34:49 +0000</pubDate>
			<description>This is a basic tutorial I wrote on binary, it explains what binary is and how to convert between binary and decimal. This is only for absolute beginners. This is the link: [Basic Binary](http://sterotech.cixx6.com/tutorials/Binary%20Tutorial.pdf)</description>
			<content:encoded><![CDATA[ <p>This is a basic tutorial I wrote on binary, it explains what binary is and how to convert between binary and decimal. This is only for absolute beginners.<br />
This is the link: <a href="http://sterotech.cixx6.com/tutorials/Binary%20Tutorial.pdf" rel="nofollow">Basic Binary</a></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>Sterotech</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449254/basic-binary</guid>
		</item>
				<item>
			<title>Help tweak this code</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449213/help-tweak-this-code</link>
			<pubDate>Mon, 04 Mar 2013 12:58:12 +0000</pubDate>
			<description>I must write Analysis, IPOChart, Hierarchy Chart, Flowchart, GUI Design, Pseudocode, and Test Cases for an office supply inventory tracking program Here is the Pseudocode that i have so far: Main Module 1 Declare PensAmount As float 2 Declare PaperAmount As float 3 Declare MarkerAmount As float 4 Declare PaperclipAmount ...</description>
			<content:encoded><![CDATA[ <p>I must write Analysis, IPOChart, Hierarchy Chart, Flowchart, GUI Design,<br />
Pseudocode, and Test Cases for an office supply inventory tracking program</p>

<p>Here is the Pseudocode that i have so far:</p>

<pre><code class="language-tex">Main Module 

1 Declare PensAmount As float 
2 Declare PaperAmount As float 
3 Declare MarkerAmount As float 
4 Declare PaperclipAmount As float 
5 Write “Welcome to the Office Supply inventory program, please enter the requested data at the prompts.”
 6 Call Input_Data module 
7 Call Process_Data module 
8 Call Output_Results module 

Input Data Module 
1. Write “Please select the item you require” 
2. Display “Pens[] Paper[] Marker[] Paper Clip[] Nothing[]” 
3. If Pens is selected then go to Input Data Module Submodule-Pens 
4. If Paper is selected then go to Input Data Module Submodule-Paper 
5. If Marker is selected then go to Input Data Module Submodule-Marker 
6. If Paper Clip is selected then go to Input Data Module Submodule-PaperClip 
7. If Nothing is selected then go to Output Results Module 

Submodule-Pens 
Write “Please enter the amount of pens in inventory” 
Input PensOnHand 
Write “Please enter the amount of pens you have added to inventory” 
Input PensAdded 
Write “Please enter the amount of pens you are taking from inventory” 
Input PensTaken 
End Module 

Submodule-Paper 
Write “Please enter the amount of Paper in inventory” 
Input PaperOnHand 
Write “Please enter the amount of paper you have added to inventory” 
Input PaperAdded 
Write “Please enter the amount of paper you are taking from inventory” 
Input PaperTaken 
End Module 

Submodule-Marker 
Write “Please enter the amount of markers in inventory” 
Input MarkersOnHand 
Write “Please enter the amount of markers you have added to inventory” 
Input MarkersAdded 
Write “Please enter the amount of markers you are taking from inventory” 
Input MarkersTaken 
End Module 

Submodule-PaperClip 
Write “Please enter the amount of paperclip in inventory” 
Input PaperClipOnHand 
Write “Please enter the amount of paperclip you have added to inventory” 
Input PaperClipAdded 
Write “Please enter the amount of paperclip you are taking from inventory” 
Input PaperClipTaken 
End Module 
Process Data Module 
Set PensAmount = PensOnHand+PensAdded-PensTaken 
If PensAmount &lt; 20 Then Display [Warning: Pen supply is low, please order more] 
Set PaperAmount = PaperOnHand+PaperAdded-PaperTaken 
If PaperAmount &lt; 200 Then Display [Warning: Paper supply is low, please order more]
 Set MarkerAmount = MarkersOnHand + MarkersAdded - MarkersTaken 
If MarkerAmount &lt; 20 Then Display [Warning: Marker supply is low, please order more]
 Set PaperclipAmount = PaperClipOnHand + PaperClipAdded - PaperClipTaken 
If PaperclipAmount &lt; 50 Then Display [Warning: Paperclip supply is low, please order more]
 End Module 

Output Results Module 
Write “The current amount of Pens in inventory is:” 
Display PensAmount 
Write “The current amount of Paper in inventory is:” 
Display PaperAmount 
Write “The current amount of Markers in inventory is:” 
Display MarkerAmount 
Write “the current amount of Paperclips in inventory is:” 
Display PaperclipAmount 
Write “Thank you for using the inventory program” 
End Program 
</code></pre>

<p>Can anyone help with this or is this pseudocode ok? I figure once I get the Pseudocode nailed down the rest should fall into place.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>jim45682</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449213/help-tweak-this-code</guid>
		</item>
				<item>
			<title>online matrimonial portal</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449212/online-matrimonial-portal</link>
			<pubDate>Mon, 04 Mar 2013 12:52:01 +0000</pubDate>
			<description>Hi everyone...im doing final year project for the coming semester.i m making it on 'online matrimonial portal' where i can get diz easily. can anyone email me diz.. my email id &lt;email removed&gt;</description>
			<content:encoded><![CDATA[ <p>Hi everyone...im doing final year project for the coming semester.i m making it on 'online matrimonial portal' where i can get diz easily.  can anyone email me diz..  my email id &lt;email removed&gt;</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>almighty_08</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449212/online-matrimonial-portal</guid>
		</item>
				<item>
			<title>Microsoft EXCEL , help</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/449005/microsoft-excel-help</link>
			<pubDate>Fri, 01 Mar 2013 11:15:32 +0000</pubDate>
			<description>I want to delete the contents from cell if the content of that cell are similar to the content of the previous cell of last column. i.e If the 10th cell of column 'A' &amp; 10th cell of column 'B' have the identical content then I need to clear that ...</description>
			<content:encoded><![CDATA[ <p>I want to delete the contents from cell if the content of that cell are similar to the content of the previous cell of last column. i.e If the 10th cell of column 'A' &amp; 10th cell of column 'B' have the identical content then I need to clear that content from column 'B',without deleting the cell itself (i.e content of the cell only not the cell itself).</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>boy.frenzy</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/449005/microsoft-excel-help</guid>
		</item>
				<item>
			<title>MS Excel Help for deleting the contents of cells (without deleting the cell</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/448943/ms-excel-help-for-deleting-the-contents-of-cells-without-deleting-the-cell</link>
			<pubDate>Thu, 28 Feb 2013 14:51:46 +0000</pubDate>
			<description>I want to delete specific values from a column in excel, without deleting the cells themselves i.e the contents of the cell if the content meets certain conditions. In my case I have a column of almost 0.5M cells &amp; I want to delete the contents from the cells which ...</description>
			<content:encoded><![CDATA[ <p>I want to delete specific values from a column in excel, without deleting the cells themselves i.e the contents of the cell if the content meets certain conditions.<br />
In my case I have a column of almost 0.5M cells &amp; I want to delete the contents from the cells which contains the word "Impact" without deleting the cell itself.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>boy.frenzy</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/448943/ms-excel-help-for-deleting-the-contents-of-cells-without-deleting-the-cell</guid>
		</item>
				<item>
			<title>Help with Pseudocode assignment</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/448524/help-with-pseudocode-assignment</link>
			<pubDate>Sat, 23 Feb 2013 19:23:39 +0000</pubDate>
			<description>Hello everyone: I am new here. I am taking an entry-level programming class at an online school. We are in our 5th week of pseudocode and learning to use loops and sentininels. I have just completed and individual assignment and was wondering if anyone would be nice enough to look ...</description>
			<content:encoded><![CDATA[ <p>Hello everyone:</p>

<p>I am new here.  I am taking an entry-level programming class at an online school.  We are in our 5th week of pseudocode and learning to use loops and sentininels.  I have just completed and individual assignment and was wondering if anyone would be nice enough to look at it and see if I left anything out. The assignment is to write a code that allows the user to enter a series of temperatures in degrees Celsius (C) terminated by the input of –999, using the conversion formula of F = 9 * C/ 5 + 32. For each one, find the corresponding temperature in degrees Fahrenheit (F).</p>

<p>This is what I came up with using the supplied template...</p>

<pre><code class="language-tex">Declare C As Float
Declare F As Float
Declare Temperature As Float
Write “Temperature Conversion Program”
Write “This program will convert a temperature, entered in”
Write “degrees Celsius, to degrees Fahrenheit.”
    Write “enter a temperature  number or press -999 to quit”
    Input Temperature
    While Temperature != -999
        Set F = 9 * C/ 5 + 32
    Write “The Temparture in Fahrenheit is”
End While
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>christinocasio</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/448524/help-with-pseudocode-assignment</guid>
		</item>
				<item>
			<title>Frabric overlay on furniture models</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/448450/frabric-overlay-on-furniture-models</link>
			<pubDate>Fri, 22 Feb 2013 17:24:56 +0000</pubDate>
			<description>All, If you've ever visited the L.L. Bean website or some of the furniture manufacture websites you may have seen how you can pick a color and frabic and see how it's going to look on a particlular piece of cothing or furniture. Car manufucturers do it too on their ...</description>
			<content:encoded><![CDATA[ <p>All,</p>

<p>If you've ever visited the L.L. Bean website or some of the furniture manufacture websites you may have seen how you can pick a color and frabic and see how it's going to look on a particlular piece of cothing or furniture. Car manufucturers do it too on their websites...you can see what the vehicle is going to look like in any color.</p>

<p>Is there software that does this, or are they just creating tons of images files for each possiblke combination of color and fabric, and then displaying the appropriate image for the visitor's selction?</p>

<p>Thanks,<br />
Bill</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>WDrago</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/448450/frabric-overlay-on-furniture-models</guid>
		</item>
				<item>
			<title>best encryption algorithm? SHA-2,MD5?</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/448311/best-encryption-algorithm-sha-2md5</link>
			<pubDate>Thu, 21 Feb 2013 05:27:51 +0000</pubDate>
			<description>What is the best encryption system now?un crackable of course. And why do many people use SHA-2 ,MD5? also what is the most pipular one too?</description>
			<content:encoded><![CDATA[ <p>What is the best encryption system now?un crackable of course. And why do many people use SHA-2 ,MD5?</p>

<p>also what is the most pipular one too?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>silvercats</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/448311/best-encryption-algorithm-sha-2md5</guid>
		</item>
				<item>
			<title>gannt chart</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/448281/gannt-chart</link>
			<pubDate>Wed, 20 Feb 2013 18:30:51 +0000</pubDate>
			<description>how to develop a gannt chart like this , i mean same like this, having time slices in bottom, like in the attached image. ![gant_chart__cut](/attachments/fetch/L2ltYWdlcy9hdHRhY2htZW50cy8zL2dhbnRfY2hhcnRfX2N1dC5wbmc%3D/272 &quot;align-left&quot;)</description>
			<content:encoded><![CDATA[ <p>how to develop a gannt chart like this , i mean same like this, having time slices in bottom, like in the attached image.</p>

<p><img src="/attachments/fetch/L2ltYWdlcy9hdHRhY2htZW50cy8zL2dhbnRfY2hhcnRfX2N1dC5wbmc%3D/272" alt="gant_chart__cut" title="align-left" /></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>HunainHafeez</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/448281/gannt-chart</guid>
		</item>
			</channel>
</rss>