<?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>comp-e.com</title>
	<atom:link href="http://comp-e.com/feed" rel="self" type="application/rss+xml" />
	<link>http://comp-e.com</link>
	<description>Computer Engineering</description>
	<lastBuildDate>Fri, 13 May 2011 06:11:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Python &#8211; State Machine Code</title>
		<link>http://comp-e.com/python-state-machine-code</link>
		<comments>http://comp-e.com/python-state-machine-code#comments</comments>
		<pubDate>Fri, 13 May 2011 06:06:32 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[regex]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=165</guid>
		<description><![CDATA[This is a template for a finite state machine that is dynamically built based
on the function names and docstring for the given functions <a href="http://comp-e.com/python-state-machine-code">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<pre>'''
    COMP-E, reposted as __nero on activestate
    Monday, May 08, 2011
'''

import inspect
import sys
import re

class StateMachineFoo(object):
    '''
        This is a template for a finite state machine that is dynamically built based
        on the function names and docstring for the given functions
    '''

    def __init__(self):
        # find all the states based on the regex
        m = re.compile(r'_state.*',re.I)

        # return a list of matches
        state_names = filter(m.search,dir(self))

        # get the function pointers to all of our states
        state_ptrs = [getattr(self,state) for state in state_names]

        # from the function pointers, suck up our dockstring and get our transitions
        dictm = re.compile(r"{.*}",re.S)
        state_trans = [eval(dictm.search(getattr(state, 'func_doc', '')).group(0)) for state in state_ptrs]

        # use zip to create a tuple containing our state_name/state_transition pairings, and add
        # them to the dictionary as key/value pairs
        self.state_machine = dict(zip(state_names,state_trans))

    def start(self, start_state):
        '''
            you should specify your beginning state
        '''
        if type('') == type(start_state):
            getattr(self,start_state)()
        else:
            self._stateA()

    def stop(self):
        '''
            A state to exit nicely from
        '''
        return

    def _stateA(self):
        '''
            {'SUCCESS': self._stateB,'FAIL':self.error}
        '''
        error = False
        fname = inspect.stack()[0][3]

        print "I'm in '%s'" % fname

        if error:
            self.state_machine[fname]['FAIL']()
        else:
            self.state_machine[fname]['SUCCESS']()

    def _stateB(self):
        '''
            {'SUCCESS': self._stateD,'FAIL':self.error}
        '''
        error = False
        fname = inspect.stack()[0][3]

        print "I'm in '%s'" % fname

        if error:
            self.state_machine[fname]['FAIL']()
        else:
            self.state_machine[fname]['SUCCESS']()

    def _stateC(self):
        '''
            {'SUCCESS': self._stateA,'FAIL':self.error}
        '''
        error = True
        fname = inspect.stack()[0][3]

        print "I'm in '%s'" % fname

        if error:
            self.state_machine[fname]['FAIL']()
        else:
            self.state_machine[fname]['SUCCESS']()

    def _stateD(self):
        '''
            {'SUCCESS': self._stateE,'FAIL':self.error}
        '''
        error = False
        fname = inspect.stack()[0][3]

        print "I'm in '%s'" % fname

        if error:
            self.state_machine[fname]['FAIL']()
        else:
            self.state_machine[fname]['SUCCESS']()

    def _stateE(self):
        '''
            {'SUCCESS': self._stateC,'FAIL':self.error}
        '''
        error = False
        fname = inspect.stack()[0][3]

        print "I'm in '%s'" % fname

        if error:
            self.state_machine[fname]['FAIL']()
        else:
            self.state_machine[fname]['SUCCESS']()

    def error(self):
        print "OH NO, AN ERROR!!! "
        sys.exit(-1)

if __name__ == '__main__':

    my_self     = StateMachineFoo()
    start_state = None

    # this is a really bad way to do this, probably want python argparse module, but for
    # demo purposes, this should allow you to change your start state from the command line
    # the simple/dirty way

    if len(sys.argv) &gt; 1:
        start_state = sys.argv[1]

    my_self.start(start_state)</pre>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/python-state-machine-code/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Python &#8211; Filter directory contents</title>
		<link>http://comp-e.com/python-filter-directory-contents</link>
		<comments>http://comp-e.com/python-filter-directory-contents#comments</comments>
		<pubDate>Mon, 28 Mar 2011 02:55:23 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=158</guid>
		<description><![CDATA[short and sweet, this python snippet will return a list containing your filtered directory import re import os filter = ".*" + searchstr + ".*" m = re.compile(filter,re.I) #if you want to ignore case use re.I, otherwise remove it filter(m.search,os.listdir(os.getcwd())) &#8230; <a href="http://comp-e.com/python-filter-directory-contents">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>short and sweet, this python snippet will return a list containing your filtered directory </p>
<p><code><br />
import re<br />
import os</p>
<p>filter = ".*" + searchstr + ".*"<br />
m = re.compile(filter,re.I) #if you want to ignore case use re.I, otherwise remove it<br />
filter(m.search,os.listdir(os.getcwd()))</p>
<p>#that's it, you can see that the reason for compiling the regex is so you can use m.search as a function pointer which accepts the list of all items in the directory<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/python-filter-directory-contents/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python &#8211; Use regex to split hyphenated words</title>
		<link>http://comp-e.com/python-use-regex-to-split-hyphenated-words</link>
		<comments>http://comp-e.com/python-use-regex-to-split-hyphenated-words#comments</comments>
		<pubDate>Mon, 28 Mar 2011 02:41:17 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=154</guid>
		<description><![CDATA[I was asked this question on stackoverflow, and figured I&#8217;d repost it here since I wrote it after all. s = "-this is. A - sentence;one-word what's" re.findall("\w+-\w+&#124;[\w']+",s) result: ['this', 'is', 'A', 'sentence', 'one-word', "what's"] make sure you notice that &#8230; <a href="http://comp-e.com/python-use-regex-to-split-hyphenated-words">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was asked this question on stackoverflow, and figured I&#8217;d repost it here since I wrote it after all.</p>
<p><code><br />
s = "-this is. A - sentence;one-word what's"<br />
re.findall("\w+-\w+|[\w']+",s)<br />
</code></p>
<p>result: ['this', 'is', 'A', 'sentence', 'one-word', "what's"]</p>
<p>make sure you notice that the correct ordering is to look for hypenated words first!</p>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/python-use-regex-to-split-hyphenated-words/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python &#8211; Chunk string or data buffer</title>
		<link>http://comp-e.com/python-chunk-string-or-data-buffer</link>
		<comments>http://comp-e.com/python-chunk-string-or-data-buffer#comments</comments>
		<pubDate>Mon, 28 Mar 2011 02:33:16 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=148</guid>
		<description><![CDATA[I was disappointed that there was no good way to chunk up data for string formatting or packetzing UDP data. After a bit of thought, and a desire to avoid using python code to do loops, I came up with &#8230; <a href="http://comp-e.com/python-chunk-string-or-data-buffer">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was disappointed that there was no good way to chunk up data for string formatting or packetzing UDP data.  After a bit of thought, and a desire to avoid using python code to do loops, I came up with a nice simple regex-based solution.<br />
<code><br />
import re<br />
buff = #some data buffer<br />
m = re.compile(r'.{##}|.+',re.S)<br />
chunks = m.findall(buff)</p>
<p>example:<br />
>>> import re<br />
>>> m = re.compile(r'.{5}|.*',re.S)<br />
>>> data = "HELLO_WORLD_HOW_ARE_YOU"<br />
>>> m.findall(data)<br />
['HELLO', '_WORL', 'D_HOW', '_ARE_', 'YOU']<br />
</code></p>
<p>I would assume that this is the most efficient way to do this, as it uses underlying c functions, and there&#8217;s nothing better than zippy python : )</p>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/python-chunk-string-or-data-buffer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python &#8211; Convert 16bit image to 24bit image 565 to 888</title>
		<link>http://comp-e.com/python-convert-16bit-image-to-24bit-image-565-to-888</link>
		<comments>http://comp-e.com/python-convert-16bit-image-to-24bit-image-565-to-888#comments</comments>
		<pubDate>Mon, 28 Mar 2011 02:12:34 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[Image Processing]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[comp-e]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[numpy]]></category>
		<category><![CDATA[pil]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=139</guid>
		<description><![CDATA[Doing the following is much better than using putpixel and a for loop, as numpy uses c-functions. The actual execution speed is about .3 seconds faster on a 240&#215;320 RGBA image. import numpy as np arr = np.fromstring(buff,dtype=np.uint16).astype(np.uint32) arr = &#8230; <a href="http://comp-e.com/python-convert-16bit-image-to-24bit-image-565-to-888">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Doing the following is much better than using putpixel and a for loop, as numpy uses c-functions.  The actual execution speed is about .3 seconds faster on a 240&#215;320 RGBA image.</p>
<p><code><br />
import numpy as np<br />
arr = np.fromstring(buff,dtype=np.uint16).astype(np.uint32)<br />
arr = 0xFF000000 + ((arr &amp; 0xF800) &gt;&gt; 8 ) + ((arr &amp; 0x07E0) &lt;&lt; 5) + ((arr &amp; 0x001F) &lt;&lt; 19)<br />
return Image.frombuffer('RGBA', (xdim,ydim), arr, 'raw', 'RGBA', 0, 1)<br />
</code></p>
<p>While it may seem like an odd bit shift, stuffing the channels into an int requires that it get stuffed as  (most significant bit) ABGR (least significant bit).  If you were to use the PIL call to putpixel, it would get stuffed as RGBA.</p>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/python-convert-16bit-image-to-24bit-image-565-to-888/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Analysis Using Python</title>
		<link>http://comp-e.com/image-analysis-using-python</link>
		<comments>http://comp-e.com/image-analysis-using-python#comments</comments>
		<pubDate>Fri, 13 Nov 2009 06:57:43 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[comp-e]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=137</guid>
		<description><![CDATA[/* work inprogress ;p */ While I may be a fan of embedded systems, I have to admit that python has become my new love. Thought taking into account that you can do sweet Matlab style dsp with it, you &#8230; <a href="http://comp-e.com/image-analysis-using-python">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>/* work inprogress ;p */</p>
<p>While I may be a fan of embedded systems, I have to admit that python has become my new love.  Thought taking into account that you can do sweet Matlab style dsp with it, you can&#8217;t really blame me.  Assuming you have raw data from an image, you can do some awesome stuff with it using python.  You will of course need python 2.6 as well as the numPy module installed.  The techniques I&#8217;m going to discuss are already out there if you look for Matlab references but I thought I&#8217;d bring to light that you can do the same things using python as well.  You will need to go to http://www.pythonware.com/products/pil/ to get the image module.  After installing, I will suggest that you compile your entire python directory. To do that, open the python console and type:</p>
<p>import compileall<br />
compileall.compile_dir(&#8216;C:\python26&#8242;,force = True,maxlevels=20)</p>
<p>Now,lets start off simple by doing some masking. However, you should first create a 100&#215;100 maroonish jpg in mspaint</p>
<p>Open your python console and type the following</p>
<p>from numpy import *<br />
import Image</p>
<p>#import the jpg<br />
im = Image.open(&#8220;test.jpg&#8221;)</p>
<p>#split the image into numpy arrays so we can do all kinds of matrix voodoo on it<br />
[r,g,b] = [array(im.split()[i] for i in range(3)]<br />
image = array([r,g,b])</p>
<p># create a mask and define the region we will want to keep when we mask our image<br />
mask = zeros((13,13),dtype=int) # make a 100&#215;100 integer array of zeros<br />
mask[0:25,0:25] = 0xFF #define the positive mask region noting that RGB has a max value of FF,FF,FF</p>
<p>The upper corner of your image should now be maroon while the rest of your image is white.<br />
test = array[0:3] &#038; mask</p>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/image-analysis-using-python/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verilog Examples For The Spartan 3 / Nexys 2 Boards</title>
		<link>http://comp-e.com/verilog-examples-for-the-spartan-3-nexys-2-boards</link>
		<comments>http://comp-e.com/verilog-examples-for-the-spartan-3-nexys-2-boards#comments</comments>
		<pubDate>Thu, 06 Aug 2009 07:07:19 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[Verilog]]></category>
		<category><![CDATA[comp-e]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[FPGA]]></category>
		<category><![CDATA[Nexys 2]]></category>
		<category><![CDATA[Spartan3]]></category>
		<category><![CDATA[Xilinx]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=135</guid>
		<description><![CDATA[Well, I thought I&#8217;d be extra generous since I haven&#8217;t posted in so long, and have uploaded 4 verilog examples for your viewing pleasure. I have been a bit busy to comment them but I hope that they may be &#8230; <a href="http://comp-e.com/verilog-examples-for-the-spartan-3-nexys-2-boards">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well, I thought I&#8217;d be extra generous since I haven&#8217;t posted in so long, and have uploaded 4 verilog examples for your viewing pleasure.</p>
<p>I have been a bit busy to comment them but I hope that they may be useful still as just coding examples.</p>
<p>Enjoy</p>
<p><a class="topictitle" title="Posted: Thu Aug 06, 2009 6:59 am" href="../forum/viewtopic.php?f=8&amp;t=41">Verilog &#8211; 14-bit BCD ( Binary Converted to Decimal)</a><br />
<a class="topictitle" title="Posted: Thu Aug 06, 2009 6:57 am" href="../forum/viewtopic.php?f=8&amp;t=40">Verilog &#8211; 4 to 1 and 2 to 1 multiplexor</a><br />
<a class="topictitle" title="Posted: Thu Aug 06, 2009 6:53 am" href="../forum/viewtopic.php?f=8&amp;t=39">Verilog &#8211; Seven Segment Display on Spartan 3 Board</a><br />
<a class="topictitle" title="Posted: Thu Aug 06, 2009 6:50 am" href="../forum/viewtopic.php?f=8&amp;t=38">Verilog &#8211; Simle PB Debounce Code For Spartan 3 Boards</a></p>
<p>- comp-e</p>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/verilog-examples-for-the-spartan-3-nexys-2-boards/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pythons in the &#8216;C&#8217;ircus</title>
		<link>http://comp-e.com/pythons-in-the-circus</link>
		<comments>http://comp-e.com/pythons-in-the-circus#comments</comments>
		<pubDate>Thu, 06 Aug 2009 06:39:59 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[comp-e]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Matlab]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=131</guid>
		<description><![CDATA[Spiffy code that is.  Stubby has made a few contributions as of late, so check them out.  I will be ragging on him to put his battleship game up, but alas it seems it&#8217;s lacking comments so we&#8217;ll see how &#8230; <a href="http://comp-e.com/pythons-in-the-circus">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Spiffy code that is.  Stubby has made a few contributions as of late, so check them out.  I will be ragging on him to put his battleship game up, but alas it seems it&#8217;s lacking comments so we&#8217;ll see how long that takes.</p>
<p>I on the other hand, appologize for not tossing up any new coding examples.  As of late I&#8217;ve been rather busy but fear not for I&#8217;ve been dabbling in Python and have some fun stuff to share.  To give a bit of a hint, I&#8217;ve been playing with the Numpy module and have found it incredibly useful as it ties in exceptionally well with Matlab.  I also plan on making a mini program to poll USB for those of you who rely on antiquated RS232 and are left without an easy means of switching over : )</p>
<p>Lastly, I encourage more of you to join and contribute well documented examples to the site.  As always, there are no ads and questions will be answered without the arrogant charm of other such code collaborative sites</p>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/pythons-in-the-circus/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Morse Code Using The HCS08 Microcontroller</title>
		<link>http://comp-e.com/creating-morse-code-using-the-hcs08-microcontroller</link>
		<comments>http://comp-e.com/creating-morse-code-using-the-hcs08-microcontroller#comments</comments>
		<pubDate>Sun, 22 Mar 2009 15:21:51 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Microcontrollers]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[computer engineering]]></category>
		<category><![CDATA[Freescale]]></category>
		<category><![CDATA[microcontroller]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=125</guid>
		<description><![CDATA[Recently I was faced with the task of sending data out of a HCS08 microcontroller wirelessly.  I had only one pin available to me and decided to effectively create Morse Code so that my receiver could decode the signal without &#8230; <a href="http://comp-e.com/creating-morse-code-using-the-hcs08-microcontroller">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I was faced with the task of sending data out of a HCS08 microcontroller wirelessly.  I had only one pin available to me and decided to effectively create Morse Code so that my receiver could decode the signal without having some sort of reference clock to distinguish the 1&#8242;s and 0&#8242;s.   What took many hours to conceptualize and diagram out on the blackboard, turned out to be a very small bit of code.</p>
<p>On the sender side is a simple function written in C that takes a byte and loops through masking each bit.  This masking is done inside an if / else block and the result determines whether or not you are getting a dit or a dash.</p>
<p>Tied to the RF receiver is another MC9S08QG8 which takes in the signal via interrupts and assembles eight interrupts into eight bytes.  It then does a series of bitwise operations on each of the eight bytes in order to reconstruct the original byte.  You will find that a few parts of the code are subject to change (the time for 0&#8242;s and 1&#8242;s can be adjusted and must be adjusted if you plan on implementing PLL or have a different desired data rate).  That byte is then sent to a PC vie RS232 serial port and stored using a free program called RS232 Data Logger from Eltima Software.  The code will be posted shortly under the microcontroller section on the COMP-E forum for you to use and <a title="Wireless Morse Code HCS08" href="http://comp-e.com/forum/viewtopic.php?f=40&amp;t=30">enjoy</a>.</p>
<p>- COMP-E</p>
<p>~ ALERT: This post does not return to main !!!</p>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/creating-morse-code-using-the-hcs08-microcontroller/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Examples</title>
		<link>http://comp-e.com/javascript-examples</link>
		<comments>http://comp-e.com/javascript-examples#comments</comments>
		<pubDate>Sun, 15 Mar 2009 18:48:00 +0000</pubDate>
		<dc:creator>COMP-E</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[computer science]]></category>

		<guid isPermaLink="false">http://comp-e.com/?p=121</guid>
		<description><![CDATA[In addition to fixing the forum today, I also decided to post a couple &#8216;fun&#8217; javascript applications that I&#8217;ve made.  I&#8217;m not the best with java script and these two apps are my first attempts.  However, they are functional and &#8230; <a href="http://comp-e.com/javascript-examples">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In addition to fixing the forum today, I also decided to post a couple &#8216;fun&#8217; javascript applications that I&#8217;ve made.  I&#8217;m not the best with java script and these two apps are my first attempts.  However, they are functional and kind of cool.  One is <a title="Javascript Magnetic Poetry" href="http://comp-e.com/forum/viewtopic.php?f=59&amp;t=27">magnetic poetry</a> and the other is a <a title="Javascript Calculator" href="http://comp-e.com/forum/viewtopic.php?f=59&amp;t=26">javascript scientific calculator</a> of sorts.   I&#8217;m not sure how much more I&#8217;ll post for javascript examples, but I encourage you to add your apps or examples to the forum : )</p>
<p>-  COMP-E</p>
]]></content:encoded>
			<wfw:commentRss>http://comp-e.com/javascript-examples/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

