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

<channel>
	<title>Elemental Computing</title>
	<atom:link href="http://elementalcomputing.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://elementalcomputing.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 02 Apr 2010 23:07:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='elementalcomputing.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Elemental Computing</title>
		<link>http://elementalcomputing.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://elementalcomputing.wordpress.com/osd.xml" title="Elemental Computing" />
	<atom:link rel='hub' href='http://elementalcomputing.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Project Euler #2</title>
		<link>http://elementalcomputing.wordpress.com/2009/06/02/project-euler-2/</link>
		<comments>http://elementalcomputing.wordpress.com/2009/06/02/project-euler-2/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 06:46:39 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[Logic]]></category>
		<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[Euler]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=37</guid>
		<description><![CDATA[As promised in my tweet, I am doing some of ProjectEuler now. I first started it some time ago, doing problem #1 using Scheme, but now I&#8217;m going through them, in order of &#8220;difficulty&#8221; (the more people who have finished, the easier) In various programming languages. For today I have my solution to problem #2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=37&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As promised in my tweet, I am doing some of ProjectEuler now. I first started it some time ago, doing problem #1 using Scheme, but now I&#8217;m going through them, in order of &#8220;difficulty&#8221; (the more people who have finished, the easier) In various programming languages. For today I have my solution to problem #2 in Ruby.</p>
<p>Find the sum of all the even-valued terms in the sequence which do not exceed four million. Sounds simple enough, right? Well it is.</p>
<p>At the time of my tweet, I had the following solution, it was on the right track, but it was ever so slightly off.</p>
<pre>counter = 0

fibo = 1

fibo2 = 1

while (fibo + fibo2) &lt; 4000000

	if (fibo2 % 2) == 0

		counter += fibo2

	end

	fibo2 += fibo

	fibo = fibo2 - fibo

end

print counter</pre>
<p>So I decided to first write out plainly a function that would plainly compute fibonacci</p>
<pre>def fib(a,b)
	c = b
	d = a + b
	return c,d
end</pre>
<p>So when I did it for getting the answer I ended up using that function, with the following code for execution:</p>
<pre>counter,num1,num2 = 0,1,1
32.times do |i|
	num1,num2 = fib(num1,num2)
	if num2%2 == 0
		counter += num2
	end
end
puts counter</pre>
<p>Which admittedly isn&#8217;t fair, since you have to know that the 32nd Fibonacci is the last one below 4,000,000.</p>
<p>But this got me thinking, and I started cutting and shortening, cutting and shortening until I was able to reduce it quite a bit. I took out the function definition, and left that to a single line of logic, as well as compounded it so it would calculate three at a time, since every third number in the Fibonacci sequence is even. The end result:</p>
<pre>counter, a, b = 0,0,1
while b &lt; 4000000 do
	a, b = a+2*b, a+2*b, 2*a+3*b
	counter += a
end
puts counter</pre>
<p>I&#8217;m fairly certain I can cut it down some more, but I feel like I&#8217;ve already done a fair job of it so far, so I will move on to either implementing this in another language, or Euler #6.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=37&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2009/06/02/project-euler-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>
	</item>
		<item>
		<title>Intuitive Language</title>
		<link>http://elementalcomputing.wordpress.com/2009/05/20/intuitive-language/</link>
		<comments>http://elementalcomputing.wordpress.com/2009/05/20/intuitive-language/#comments</comments>
		<pubDate>Wed, 20 May 2009 14:46:56 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[Language]]></category>
		<category><![CDATA[linguistics]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=33</guid>
		<description><![CDATA[There is a certain thing about a language that become a part of you and your mind. It's to the point that if you trust it, you can turn a language you know well, into greater mastery through use of intuitive language.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=33&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my present study of German, as happened while I was learning Spanish, I became more aware of certain features of English, things that I just did because that&#8217;s what I knew to do. This is just what happens with familiar languages, particularly someone&#8217;s native language. They think in that language, and have a brain wired to put the component parts together.</p>
<p>Evidence of this can be seen by using a very simple rule to determine if the grammar of a phrase is correct. Does it <em>sound</em> natural? If it does, it&#8217;s probably right, if it doesn&#8217;t, it&#8217;s usually wrong.</p>
<p>Last night I stumbled on this page about adjectives in English. The first part talked about adjective order, to which I responded, &#8220;I don&#8217;t remember learning anything about that in school!&#8221; While this may have been the case, or I might have just forgotten, because without studying the proper order, I was able to take some online quizes testing this at 99% accuracy just by judging if it was natural or awkward.</p>
<p>One example I found that appears to be related is from a commercial put out by Sprint for its mobile broadband product. (you can hear it if you want <a href="http://audio.wwl.com/m/audio/22435241/6-5-9am-jim-hawthorn.htm?pageid=238910&amp;seek=179">http://audio.wwl.com/m/audio/22435241/6-5-9am-jim-hawthorn.htm?pageid=238910&amp;seek=179</a>) The annoying part is a certain word choice at &#8220;Your crew gets what&#8217;s most important to them whenever they need it. <strong>Practically instantaneously</strong>&#8220;</p>
<p>My problem is the bold portion. When I first heard it while in the car, I stopped listening after that point due to the awkwardness. I tried to think of better constructions and came up with two alternatives. &#8220;Practically instantly&#8221; which is a slight improvement, and &#8220;Practically in an instant&#8221; which sounds much more natural. On top of that, my second solution emphasises the immediately following words &#8220;an instant internet&#8230;&#8221;</p>
<p>Another aspect of language that is intuitive are the existance of certain common elements to similar words in languages developing separately. Like how the term for &#8220;Mother&#8221;/&#8221;Mom&#8221;/&#8221;Mama&#8221; in American English, particularly the equivalents of the last, are typically represented by &#8220;easily pronounced syllables&#8221;, because that&#8217;s what babies first learning to talk are able to do. While not enough to divine the key to translation between the two, it gives insight on how concepts are formed in the mind and how a language develops into existance.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=33&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2009/05/20/intuitive-language/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>
	</item>
		<item>
		<title>Books and Social Networking</title>
		<link>http://elementalcomputing.wordpress.com/2009/05/10/books-and-social-networking/</link>
		<comments>http://elementalcomputing.wordpress.com/2009/05/10/books-and-social-networking/#comments</comments>
		<pubDate>Mon, 11 May 2009 02:48:31 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[German]]></category>
		<category><![CDATA[Literature]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[goodreads]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[LibraryThing]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=26</guid>
		<description><![CDATA[With the explosion of Social Networking, there have shown to be many niche markets for this kind of website. Books and reading are definitely no exception. And I'm learning a new Language.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=26&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If there is any one thing I like, it&#8217;s books. I love just having a book. It&#8217;s my favorite gift to receive(though I don&#8217;t really like gift cards to book stores) or give. It&#8217;s the reason I got my Sony Digital Reader. One of the great things now is the networking that exists through books.<br />
<div id="attachment_29" class="wp-caption aligncenter" style="width: 260px"><img src="http://elementalcomputing.com/blog/wp-content/uploads/2009/05/0510091920.jpg" alt="My Library as it is now" title="Books" width="250" class="size-full wp-image-29" /><p class="wp-caption-text">My Library as it is now</p></div></p>
<p>About one and a half years ago, I joined <a href="http://goodreads.com">goodreads</a>, and it&#8217;s so great. It&#8217;s main use is for communicating books you&#8217;ve read, want to read, and mainly what you&#8217;re reading now and then network with others based on the books.</p>
<p>More recently I found <a href="http://librarything.com">LibraryThing</a>. It&#8217;s different in that it&#8217;s oriented towards books you have, which is how I use it. It has a limit for a free account to 200 books, which is more than my current library, but if it comes to it, you can get a monthly or lifetime membership at a reasonable, variable rate. The great thing is you choosing how much, $1-20 per month, or $19-55 for lifetime.</p>
<p>My current profiles for those are located <a href="http://www.librarything.com/catalog/heril">here for LibraryThing</a> and <a href="http://www.goodreads.com/user/show/328637">here for goodreads</a>, which will soon be placed in my links section, as well as links to my Amazon Wishlist, Picasa gallery and other similar things.</p>
<p>While I&#8217;m actually writing something on the ElementalComputing blog, I might as well give some news about myself. I have been mulling for a little bit recently(you would know if you follow me on twitter) about foreign languages, and for at least a year I have always wanted to get started learning a language for the purpose of reading literature in said language. Well, I&#8217;ve finally decided on which to learn. The final three contestants were Latin, Italian, and German with German winning. I remember starting this mini German course in the 6th grade, which I dropped out of after a week due to it conflicting with participating in Mock Trial. This past week of teaching myself has been interesting and fun. One thing I decided to do just today was to start writing/speaking bits of my journal in German.</p>
<p>Overall it should be a fun experience. Auf Wiedersehen!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=26&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2009/05/10/books-and-social-networking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>

		<media:content url="http://elementalcomputing.com/blog/wp-content/uploads/2009/05/0510091920.jpg" medium="image">
			<media:title type="html">Books</media:title>
		</media:content>
	</item>
		<item>
		<title>Translating, Copyrights and Literature</title>
		<link>http://elementalcomputing.wordpress.com/2009/04/28/translating-copyrights-and-literature/</link>
		<comments>http://elementalcomputing.wordpress.com/2009/04/28/translating-copyrights-and-literature/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 04:53:28 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[Copyright]]></category>
		<category><![CDATA[Literature]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=23</guid>
		<description><![CDATA[Throughout American History, the duration of copyright term has gone up and up. Critics say that the Constitution says there needs to be a limit, supporters say congress can say that to be whatever they want. Let's look at the issues with lengthened copyright are in this the Information Age.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=23&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For now I&#8217;m taking my multi-blogs and reducing it down to this one.</p>
<p>To start this I&#8217;m going to talk about copyright law. My biggest issue with the lengthened terms of copyrights in the United States deals with translation of works into other languages in relation to social relevance. Take this scenario:</p>
<p>I write a moderately succesful novel when I am about 35 years old. My publisher or I decide that we will retain the rights to translating this into other languages and do not translate it ourselves. I die 45 years later. Now, assuming someone in France is waitng for the copyright to expire 70 years after my death and immediately publishes a translation, and the translator just happes to be 35 at this time as well.(and similar people are around the world, translating), and also die 45 years after the translation. It would come into public domain in French 230 years later. 230 years ago, my great-great-great-great-great-granfather(7 generations back) was giving supplies to revolutionaries in the American Revolution.</p>
<p>By the time my novel arrives into public domain in other languages, it has lost significant relevance. You tell me, does this sound reasonably &#8220;limited&#8221;. Proponents of copyright extentions in the U.S. claim it&#8217;s up to congress to decide how to define &#8220;limited&#8221;, but my claim is there has to be reasonability, which is not the case. I even remember once reading someone suggesting it should last forever minus one day. This to me is scary.</p>
<p>The second factor with translations is the difficulty of creating quality translations. Many classic books that have been translated have multiple available translations, each having a different quality, if there is a licensed translation, there is only one quality available, which should be questioned.</p>
<p>Obviously I think there should be translation competition, as well as opportunity of the translators to communicate to the original author to understand their mind while retelling their story in another language, and while authors decide to be unaware of this issue in this, the supposed &#8220;Age of Information, but you can&#8217;t use it yet&#8221;, we will continue to not use a fraction of the potential of the technologies available. Movable type revolutionized the spread of information in the time of Gutenberg, while copyright laws try and take a step backwards.</p>
<p>With that said, if I ever write something, I plan to open it to translating, as long as the translator is willing to negotiate some sort of shared license between me and them, and in addition arrange for my works to move to completely open licenses when I die.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=23&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2009/04/28/translating-copyrights-and-literature/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>
	</item>
		<item>
		<title>Re: Re: Math Problems</title>
		<link>http://elementalcomputing.wordpress.com/2009/01/21/re-re-math-problems/</link>
		<comments>http://elementalcomputing.wordpress.com/2009/01/21/re-re-math-problems/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 02:12:28 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[Logic]]></category>
		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=21</guid>
		<description><![CDATA[So I managed to locate my math notebook and I figured I would just transcribe it, and since I&#8217;ve described the solution in Math Problems already, I&#8217;ll give it directly. If a part of an equation becomes such as x^x=c; where c is a non-zero, complex number, you can determine x with a manipulation to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=21&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I managed to locate my math notebook and I figured I would just transcribe it, and since I&#8217;ve described the solution in Math Problems already, I&#8217;ll give it directly.<br />
<blockquote>If a part of an equation becomes such as x^x=c; where c is a non-zero, complex number, you can determine x with a manipulation to the form x = c^(1/x), x can then be solved by reforming this equation into a method such as :</p>
<p>c^(1/x0)=x1, c^(1/x1)=x2, c^(1/x2)=x3&#8230;c^(1/(xInfinity-1))=xInfinity</p>
<p>It is determined that, lim n-&gt;Infinity c^(1/xn), which can be manipulated to the form c=xn^xn and c=x^x where x=xn. This method works as long as the initial x value, x0 is any non-zero, complex number.</p>
<p>For Example. If x^x=9 =&gt; 9^(1/x)=x =&gt; 9^(1/x0)=x1, where 2 is assigned x0. 9^(1/2) = 3, 9^(1/3) = 2.08008, lim n-&gt;Infinity 9^(1/xn) = 2.450953928 where 2.45&#8230;28^2.45&#8230;28=9</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=21&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2009/01/21/re-re-math-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>
	</item>
		<item>
		<title>Re: Math Problems</title>
		<link>http://elementalcomputing.wordpress.com/2008/12/22/re-math-problems/</link>
		<comments>http://elementalcomputing.wordpress.com/2008/12/22/re-math-problems/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 16:27:09 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[Logic]]></category>
		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=18</guid>
		<description><![CDATA[So its been a little bit since I&#8217;ve posted that math problem. Unfortunately I&#8217;m having trouble finding my notebook that I have my personal formal answer for the problem, so I&#8217;ll try to do it from memory. Like I said, when I tried to use logarithms, at least with my knowledge, I could never get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=18&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So its been a little bit since I&#8217;ve posted that math problem. Unfortunately I&#8217;m having trouble finding my notebook that I have my personal formal answer for the problem, so I&#8217;ll try to do it from memory.</p>
<p>Like I said, when I tried to use logarithms, at least with my knowledge, I could never get x solved for. There is one way though.</p>
<p>As long as y is a complex, non-zero number this should work. First make an estimate(also complex, non-zero), preferably one that is reasonable, as that improves accuracy, we will call this X0. Now take the X0 root of y, this answer we will call X1. Now take the X1 root of y. You can stop here and take the mean of X0 and X1 to get a fairly good estimate(usually), or you can continue the process as I like to say, lim n-&gt;infinity of Xn root of y where Xn= X(n-1) root of y.</p>
<p>Hopefully that all makes sense, and if I ever find my formal definition, I&#8217;ll post it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=18&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2008/12/22/re-math-problems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>
	</item>
		<item>
		<title>Math Problems for those desiring challenge</title>
		<link>http://elementalcomputing.wordpress.com/2008/11/20/math-problems-for-those-desiring-challenge/</link>
		<comments>http://elementalcomputing.wordpress.com/2008/11/20/math-problems-for-those-desiring-challenge/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 15:15:18 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[Logic]]></category>
		<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[Problem]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=13</guid>
		<description><![CDATA[Okay, so this one is a little different, so let me explain something first. Back when I was still in high school and was taking Calculus, I would frequently just mess around with my calculator, a reliable TI-83 plus. I was messing with powers in a way that I *thought* would eventually lead whatever I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=13&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Okay, so this one is a little different, so let me explain something first. Back when I was still in high school and was taking Calculus, I would frequently just mess around with my calculator, a reliable TI-83 plus. I was messing with powers in a way that I *thought* would eventually lead whatever I put in to 0, but I misentered it.</p>
<p>I found that it would eventually come to a certain other number, depending on the starting value. I checked it and realized my mistake, but I was curious as to what exactly was happening, so I fiddled some more.</p>
<p>It turns out that I had figured a way to solve for an interesting equation by accident. To this day I don&#8217;t know of a better way to solve it, though one may very well exist.</p>
<p>So to start this off, for now I will just put up a challenge for coming up with a non-graphical solution (that is, one that doesn&#8217;t rely on guesstimating off of a graph.)</p>
<p>The equation is simple. In TI notation its x^x=y, solving for x. (that is, for clarification, &#8220;X to the X power equals Y&#8221;). Y can be any number, as long as it is complex and non-zero.</p>
<p>Good luck! In a couple days I&#8217;ll post my solution.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=13&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2008/11/20/math-problems-for-those-desiring-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>
	</item>
		<item>
		<title>Thoughts of Programmer</title>
		<link>http://elementalcomputing.wordpress.com/2008/11/17/thoughts-of-programmer/</link>
		<comments>http://elementalcomputing.wordpress.com/2008/11/17/thoughts-of-programmer/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 17:15:29 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Logic]]></category>
		<category><![CDATA[Thought]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=10</guid>
		<description><![CDATA[I program, that&#8217;s what it is that I&#8217;ve been doing. For the past two years I thought programming would be my future and now I&#8217;m not so sure. So I&#8217;m pushing the concept of &#8220;Elemental Computing&#8221; to a new level and at the same time splitting it up. I introduce, Elemental Thinking (http://elementalthinking.blogspot.com), an additional [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=10&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I program, that&#8217;s what it is that I&#8217;ve been doing. For the past two years I thought programming would be my future and now I&#8217;m not so sure. So I&#8217;m pushing the concept of &#8220;Elemental Computing&#8221; to a new level and at the same time splitting it up.</p>
<p>I introduce, Elemental Thinking (<a href="http://elementalthinking.blogspot.com">http://elementalthinking.blogspot.com</a>), an additional blog created by me.</p>
<p>Now I know I don&#8217;t post on Elemental Computing much, so I&#8217;m making a new blog? Well, I&#8217;m also creating a third one as well, but we wont get there.</p>
<p>What has been happening is a period of my life, at the young age of 20, of deep reflection. What have I accomplished thus far? Where do my talents lie? What do I really enjoy doing?</p>
<p>So what does this have to do with my &#8220;Elemental&#8221; blogs?</p>
<p>I&#8217;m expanding the computing side to a more broad definition, one that more overlaps thinking than just &#8220;those electronic computers&#8221;. The more logical side to be precise, while the more creative, emotional side for the thinking half.</p>
<p>The final part to look at is the shared component &#8220;Elemental&#8221;. Everything is composed of component elements. Whether the classical Fire, Earth, Air and Water of Greece &#8212; which describe four states of matter &#8212; or the periodic table of elements, or even the quarks that make up sub-atomic particles and beyond.</p>
<p>Each expresses that everything is made up of something smaller, something simpler. Elemental looks at finding the simplest way to express the concepts, and in terms of this blogging network, the simplest expression of logic and thought.</p>
<p>As for programming, it looks like I may end up dropping it as a profession. This is good for me, because happiness is the trump, bad for the programmers, because you lost a good one. But don&#8217;t worry too much, I won&#8217;t abandon it completely.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=10&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2008/11/17/thoughts-of-programmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>
	</item>
		<item>
		<title>Robots + Emotions = End of the World?</title>
		<link>http://elementalcomputing.wordpress.com/2008/06/26/robots-emotions-end-of-the-world/</link>
		<comments>http://elementalcomputing.wordpress.com/2008/06/26/robots-emotions-end-of-the-world/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 20:47:18 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[Artificial Intelligence]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=8</guid>
		<description><![CDATA[I&#8217;ve been hearing in some news somewhere recently concerning the advancements of emotion in Artificial Intelligence. This was mainly in the direction of questioning whether us humans would ever begin to have meaningful relationships in the future with robots. Of course to some people something akin to SkyNet comes to mine. That if an AI [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=8&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been hearing in some news somewhere recently concerning the advancements of emotion in Artificial Intelligence. This was mainly in the direction of questioning whether us humans would ever begin to have meaningful relationships in the future with robots.<span id="more-8"></span></p>
<p>Of course to some people something akin to SkyNet comes to mine. That if an AI has reached the point that we can have relationships with them, given the physical superiority of robots, why wouldn&#8217;t they take us out as would be competitors with them for the same resources.</p>
<p>Then there are the ethical and social implications of the situation of relationships. Is it healthy for a person to have a relationship with something that humanity built completely from scratch as well as of purchasing a feeling entity.</p>
<p>However in my mind I get the impression that such technology could be used in the field of emotional therapy for those with such damage.</p>
<p>But in the end you have to return to the final question of if we can develop such a technology. I say that I don&#8217;t think humans can develop an artificial duplication of our mind on our own, though I do believe that given time we will be able to make a &#8220;cheap&#8221; copy.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elementalcomputing.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elementalcomputing.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=8&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2008/06/26/robots-emotions-end-of-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>
	</item>
		<item>
		<title>Flash, Mathematics and DLLs</title>
		<link>http://elementalcomputing.wordpress.com/2008/04/11/flash-mathematics-and-dlls/</link>
		<comments>http://elementalcomputing.wordpress.com/2008/04/11/flash-mathematics-and-dlls/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 23:22:22 +0000</pubDate>
		<dc:creator>heril</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://elementalcomputing.com/blog/?p=5</guid>
		<description><![CDATA[Last semester while attending my university I worked as an evening janitor, not something I would consider &#8220;aiming towards my future job&#8221;. Fortunately, this semester I was able to get a programming related job, as a Flash Programmer/Designer. While I had never worked with Flash prior to this, because I was studying Computer Science, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=5&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last semester while attending my university I worked as an evening janitor, not something I would consider &#8220;aiming towards my future job&#8221;. Fortunately, this semester I was able to get a programming related job, as a Flash Programmer/Designer. While I had never worked with Flash prior to this, because I was studying Computer Science, and I had shown that I had taught myself in the past, they hired me.</p>
<p>However, most of my time hasn&#8217;t been spent doing Flash or ActionScript. There is a pet project in the works to create an in-house development tool using Flash and mdm Zinc. This requires the ability to generate as well as import existing SWF files in order to work on them. For this we are looking towards the Ming SWF library, and converting that into a DLL that is compatible with mdm Zinc 3.0. Thus, almost everything I&#8217;ve done to this point has been in C working on getting that library turned into a DLL. Which has also proven to be more difficult than I thought, particularly since I&#8217;ve done so little with DLLs.</p>
<p>However, now I&#8217;m working more with ActionScript while that project gets put on hold for a bit. Now I get to work on revisiting and enhancing an older project, a flash Math Lab, where you can practice math from some lessons. The primary component of the revamp is integrating the ability to render mathematical equations.</p>
<p>All in all, I enjoy it, particularly the fact that I am closer to programming that I was before.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elementalcomputing.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elementalcomputing.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elementalcomputing.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elementalcomputing.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elementalcomputing.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elementalcomputing.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elementalcomputing.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elementalcomputing.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elementalcomputing.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elementalcomputing.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elementalcomputing.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elementalcomputing.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elementalcomputing.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elementalcomputing.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elementalcomputing.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elementalcomputing.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elementalcomputing.wordpress.com&amp;blog=9862129&amp;post=5&amp;subd=elementalcomputing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elementalcomputing.wordpress.com/2008/04/11/flash-mathematics-and-dlls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508213fba5730799c5b8739f577fa08c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heril</media:title>
		</media:content>
	</item>
	</channel>
</rss>
