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

<channel>
	<title>Paulmohr's Weblog</title>
	<atom:link href="http://paulmohr.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://paulmohr.wordpress.com</link>
	<description>Open source developer personal weblog</description>
	<lastBuildDate>Fri, 27 Mar 2009 21:44:04 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='paulmohr.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/ca293e2a5e816649af3ed35f1dc9d955?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Paulmohr's Weblog</title>
		<link>http://paulmohr.wordpress.com</link>
	</image>
			<item>
		<title>What I have been doing</title>
		<link>http://paulmohr.wordpress.com/2009/03/27/what-i-have-been-doing/</link>
		<comments>http://paulmohr.wordpress.com/2009/03/27/what-i-have-been-doing/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 21:38:35 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/?p=24</guid>
		<description><![CDATA[To see the antfarmgl project blog, use this link.[http://apps.sourceforge.net/wordpress/antfarmgl/]



#!/bin/bash
rm ants
gcc -pg antfarmgl.c sighandler.c afopengl.c listman.c files.c \
  -lglut -lGL -lGLU  -lm -lasound -ljpeg -lgpm -o ants
if [ -e ants ]
 then
 ./ants
echo "There are ants here!"
gprof -b ants gmon.out &#62; results-file.txt
kprof -p gprof -f results-file.txt
else
echo "There are no ants here!"
fi

The important thing to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=24&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To see the antfarmgl project blog, use this link.<a title="My sourceforce blog" href="http://apps.sourceforge.net/wordpress/antfarmgl/">[http://apps.sourceforge.net/wordpress/antfarmgl/]</a></p>
<pre>
<blockquote>

#!/bin/bash
rm ants
gcc -pg antfarmgl.c sighandler.c afopengl.c listman.c files.c \
  -lglut -lGL -lGLU  -lm -lasound -ljpeg -lgpm -o ants
if [ -e ants ]
 then
 ./ants
echo "There are ants here!"
gprof -b ants gmon.out &gt; results-file.txt
kprof -p gprof -f results-file.txt
else
echo "There are no ants here!"
fi</blockquote>
</pre>
<p>The important thing to notice in &#8220;gcc&#8221; is the use of the &#8220;-gp&#8221; option which generates the profile code in &#8220;gmon.out&#8221; .</p>
<p>I thought I would give this as an example of how to use gprof, gcc, and kprof to profile code for speed. I have used valgrind, ltrace, objdump, nm, strace, xtrace, mtrace, gdb, core analysis ( with ulimit -c 50000), and diagnostics incorporated in the code itself. I think that debugging and code analysis is an absolute necessity in any project. I discovered numerous little things that I did not know even existed. Documentation is another place that must be done right.</p>
<p>Interpretation of the results is a whole separate issue. Years of computer experience have taught me how and where to look and how to interpret the relationships. One interesting thing that I discovered is duplicate calls due to many levels of include. It is difficult to know when things like this happen without the proper tools. So I have a call that calls a library that in turn duplicates a call to an associated function. I would never expect that to happen, but it does.</p>
<p>I can bet that there is some really weird code running around in the Windows world. The reason I think that is because it grows in the dark under pressure and can never be checked. I have done commercial development and I know that I was not allowed to spend the time to do appropriate code testing and analysis, simply because it was extra cost. It can cost twice or even ten times as much to make gospel code. It is worth it to me, as I can easily find flaws in the code, because those thousands of little things that creep into a complex system have been removed proactively.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=24&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2009/03/27/what-i-have-been-doing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>
	</item>
		<item>
		<title>My sourceforge project</title>
		<link>http://paulmohr.wordpress.com/2009/03/14/20/</link>
		<comments>http://paulmohr.wordpress.com/2009/03/14/20/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 15:28:27 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/2009/03/14/20/</guid>
		<description><![CDATA[I have been developing an open source project for the last year and I am finally getting the hang of using all the tools. I can that I now can use SSH, sftp, Doxygen, automake, LaTex, Python, perl, HTML, CSS, &#8220;C&#8221;, C++, svn, diff, patch, XML, XUL, OpenGL, javascript, Pygame, and the debian package system. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=20&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have been developing an open source project for the last year and I am finally getting the hang of using all the tools. I can that I now can use SSH, sftp, Doxygen, automake, LaTex, Python, perl, HTML, CSS, &#8220;C&#8221;, C++, svn, diff, patch, XML, XUL, OpenGL, javascript, Pygame, and the debian package system. I should look at WordPress project as it seems it would be using XUL, but I guess I will find out when I have some time to look it up.<br />
My project at sourceforge is shaping up and there is a simple snapshot there, and I hope to have the Python and &#8220;C&#8221; &#8220;Ant Game&#8221; ready for download this week. I am also making a complete multipage tutorial that covers all the simple openGL techniques in &#8220;C&#8221; and Python. The range is from simply opening a window to compiled elements, perspective, joystick, models, terrains, and some Linux specific Xwindows methods to use xtrace.</p>
<p>I looked up the documentation on wordpress and I see it is PHP and Mysql. That seems to be very much like wikipedia source if I remember correctly when I installed it on my server. It has an interesting history. I, for one, welcome our new wordpress overlords. I have recently started doing PHP and Mysql seriously and perhaps I will get the source and do the nightlies to help out.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=20&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2009/03/14/20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress advantages</title>
		<link>http://paulmohr.wordpress.com/2009/03/14/wordpress-advantages/</link>
		<comments>http://paulmohr.wordpress.com/2009/03/14/wordpress-advantages/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 15:06:17 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/2009/03/14/wordpress-advantages/</guid>
		<description><![CDATA[I have been blogging with Google for some time and working on a project on sourceforge called antfarmgl. As part of the features of the hosting is WordPress and I have come to appreciate that it is a better interface and is open source so I think I will confine my efforts here. I have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=18&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have been blogging with Google for some time and working on a project on sourceforge called antfarmgl. As part of the features of the hosting is WordPress and I have come to appreciate that it is a better interface and is open source so I think I will confine my efforts here. I have a blog and web site for the project and they are:<br />
antfarmgl website<br />
<a href="http://sourceforge.net/projects/antfarmgl/"> sourceforge antfarmgl project</a><br />
anttfarmgl blog<br />
<a href="http://apps.sourceforge.net/wordpress/antfarmgl/">antfarm blog</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=18&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2009/03/14/wordpress-advantages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>
	</item>
		<item>
		<title>Near content addressable memory</title>
		<link>http://paulmohr.wordpress.com/2008/05/11/near-content-addressable-memory/</link>
		<comments>http://paulmohr.wordpress.com/2008/05/11/near-content-addressable-memory/#comments</comments>
		<pubDate>Sun, 11 May 2008 05:17:11 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ncam]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/?p=17</guid>
		<description><![CDATA[Definition
The expensive content addressable used in routers is very effective, however, &#8216;near&#8217; content addressable memory is even more powerful and represents the potential future of processing. In the same way that CAM a.k.a. cache can recognize one of any set of informations and it&#8217;s associated context or content, near content memory describes a dimensional space [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=17&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div style="text-align:center;"><span style="font-size:130%;">Definition</span></div>
<p style="text-align:left;">The expensive content addressable used in routers is very effective, however, &#8216;near&#8217; content addressable memory is even more powerful and represents the potential future of processing. In the same way that CAM a.k.a. cache can recognize one of any set of informations and it&#8217;s associated context or content, near content memory describes a dimensional space which is more like the way in which information and situations is handled. It represents that vagueness that defines groups like cats and dogs. It is equivalent to a circuit which is associative and upper/lower bounded. It represents the statement that an object or association is within the range of several variables simultaneously and is the highest scoring product of all elements. The cost of the circuit in terms of silicon is much higher than even CAM, however it&#8217;s ability to be self-programming is where it&#8217;s utility is recognized.</p>
<div style="text-align:center;"><span style="font-size:130%;">Applications</span></div>
<p style="text-align:left;">The single and foremost application of a NCAM is in the area of artificial intelligence and the establishment of a computer which is capable of dealing with the massive information flux of the world wide web.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/paulmohr.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/paulmohr.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=17&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2008/05/11/near-content-addressable-memory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>
	</item>
		<item>
		<title>Turning off snapshots</title>
		<link>http://paulmohr.wordpress.com/2008/05/10/turning-off-snapshots/</link>
		<comments>http://paulmohr.wordpress.com/2008/05/10/turning-off-snapshots/#comments</comments>
		<pubDate>Sat, 10 May 2008 15:32:19 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/?p=16</guid>
		<description><![CDATA[Edited post &#8211; corrected misconception mentioned in comments.
How to turn of snapshots by Lorelle VanFossen which is not out of date. 
I discovered that under Design &#62;&#62; Extras (click the item to turn off snapshots ). 
Also it seems that wordpress is driving it&#8217;s customers to BUY necessary features and I am deciding to stop [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=16&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Edited post &#8211; corrected misconception mentioned in comments.</p>
<p><a href="http://lorelle.wordpress.com/2007/09/05/how-to-turn-off-snap-preview-on-wordpress-blogs/">How to turn of snapshots by Lorelle VanFossen which is <em>not</em> out of date.</a><br /> <br />
I discovered that under Design &gt;&gt; Extras (click the item to turn off snapshots ). </p>
<p>Also it seems that wordpress is driving it&#8217;s customers to BUY necessary features and I am deciding to stop using wordpress because of this.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/paulmohr.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/paulmohr.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=16&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2008/05/10/turning-off-snapshots/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>
	</item>
		<item>
		<title>More association and style tests</title>
		<link>http://paulmohr.wordpress.com/2008/05/10/more-association-and-style-tests/</link>
		<comments>http://paulmohr.wordpress.com/2008/05/10/more-association-and-style-tests/#comments</comments>
		<pubDate>Sat, 10 May 2008 14:43:29 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/?p=15</guid>
		<description><![CDATA[A simple border and how it expands around the constant flow of text if it is multi-line. Here is a link to my associated web page.
This is the code to display this type of box, recursive
&#60;p style=&#8221;border: thin dotted black; padding: 3mm; background-color: rgb(243, 243, 243);&#8221;&#62;The Text to display&#60;/p&#62;
       [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=15&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="border:thin dotted black;padding:3mm;">A simple border and how it expands around the constant flow of text if it is multi-line. Here is a <a href="http://moteyalpha.googlepages.com/home" target="_blank">link to my associated web page.</a></p>
<p style="text-align:center;">This is the code to display this type of box, recursive</p>
<p style="border:thin dotted black;background-color:rgb(243, 243, 243);padding:3mm;">&lt;p style=&#8221;border: thin dotted black; padding: 3mm; background-color: rgb(243, 243, 243);&#8221;&gt;The Text to display&lt;/p&gt;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/paulmohr.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/paulmohr.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=15&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2008/05/10/more-association-and-style-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>
	</item>
		<item>
		<title>Addictive behavior personal study.</title>
		<link>http://paulmohr.wordpress.com/2008/05/10/addictive-behavior-personal-study/</link>
		<comments>http://paulmohr.wordpress.com/2008/05/10/addictive-behavior-personal-study/#comments</comments>
		<pubDate>Sat, 10 May 2008 12:14:02 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/?p=14</guid>
		<description><![CDATA[Addiction and other mind/body flaws.


Latest search of information on this subject

This old link on smoking at science daily.
Acetaldehyde, one of the main chemical components of tobacco smoke, appears to increase the addictive properties of nicotine, according to animal studies conducted by the UC Irvine Transdisciplinary Tobacco Use Research Center (TTURC).
It is my opinion, given the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=14&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Addiction and other mind/body flaws.<br />
<a href="http://infinitefuture.blogspot.com/search?q=addiction"><img style="cursor:pointer;margin:0 10px 10px 0;" src="http://bp3.blogger.com/_PS-g2GyUj9Q/R_fAMUNVhSI/AAAAAAAAAMA/NH86SkYQ8QQ/s400/cheesecigar.jpeg" alt="" border="0" /></a></p>
<hr />
<div style="text-align:center;"><span style="font-size:130%;">Latest search of information on this subject</span>
</div>
<p>This old link on <a href="http://www.sciencedaily.com/releases/2004/10/041029101333.htm">smoking at science daily</a>.</p>
<blockquote><p>Acetaldehyde, one of the main chemical components of tobacco smoke, appears to increase the addictive properties of nicotine, according to animal studies conducted by the UC Irvine Transdisciplinary Tobacco Use Research Center (TTURC).</p></blockquote>
<p>It is my opinion, given the nature of the process of smoking and it&#8217;s prevalence in the form smoking that there is additional addictive incentive chemically in the process of <span style="font-style:italic;"><span style="font-weight:bold;">smoking</span></span> that is not present in the simple use of nicotine. This study seems to suggest one of the associated factors. It is my conjecture that the understanding of the process of addiction has focussed on methods that stop addiction, which is mind control in my opinion. The process of reasoning and living is centered around the ideas of &#8216;addiction&#8217;. By destroying the pleasure reinforcement within the brain, one destroys the process which creates personality.</p>
<p>This is my ongoing study into this matter. and below is a list of chemicals I am studying in that process. The mere fact that modification of <a href="http://en.wikipedia.org/wiki/Heroin">morphine</a> enhances it&#8217;s addictive and analgesic effect so greatly seems to imply that minor changes in any  number of compounds can change their effect and the chemistry of smoking needs to be isolated to factors that can be tested. <a href="http://en.wikipedia.org/wiki/Fentanyl">Fentanyl</a> is an example of how much more powerful a drug can be with modification, either accidental or purposeful. <a href="http://en.wikipedia.org/wiki/Lsd">LSD-25</a> shows that even very small quantities of psychoactive compounds can produce profound and even &#8216;permanent&#8217; effects.  </p>
<div style="text-align:center;">New directions to explore</div>
<p>I intend to isolate these chemical compounds in sub sets and determine what if any results come from the combined sets in practice. Obviously I cannot cover all possible combinations as this is 400 (factorial)<sup> [1] </sup> and a virtual infinity. I need to select potential candidates and test if they suggest a direction to solution of this issue. I will play a little mental <a href="http://en.wikipedia.org/wiki/Monte_Carlo_method">Monte Carlo</a> with the possible solutions.<br />
<blockquote>Monte Carlo methods are a class of computational algorithms that rely on repeated random sampling to compute their results. Monte Carlo methods are often used when simulating physical and mathematical systems. Because of their reliance on repeated computation and random or pseudo-random numbers, Monte Carlo methods are most suited to calculation by a computer. Monte Carlo methods tend to be used when it is infeasible or impossible to compute an exact result with a deterministic algorithm.</p></blockquote>
<p>[ 1 ] 450 factorial is   1.7 × 10 to the 1,000 power.<br />
<hr />
<p>*list stored externally*</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/paulmohr.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/paulmohr.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=14&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2008/05/10/addictive-behavior-personal-study/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>

		<media:content url="http://bp3.blogger.com/_PS-g2GyUj9Q/R_fAMUNVhSI/AAAAAAAAAMA/NH86SkYQ8QQ/s400/cheesecigar.jpeg" medium="image" />
	</item>
		<item>
		<title>Linux as the new enterprise model ?</title>
		<link>http://paulmohr.wordpress.com/2008/04/30/linux-as-the-new-enterprise-model/</link>
		<comments>http://paulmohr.wordpress.com/2008/04/30/linux-as-the-new-enterprise-model/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 05:14:55 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/?p=12</guid>
		<description><![CDATA[Linux only

It was an odd thought, but is forming into a real adventure in open source revenue. I think it is completely feasible to have Linux computers connected in the background to a composite net that computes things which cannot be done with even the largest super computers. And it seems to me that every [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=12&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Linux only<br />
<a href="http://infinitefuture.blogspot.com/search?q=linux%20only"><img style="float:left;cursor:hand;margin:0 10px 10px 0;" src="http://bp0.blogger.com/_PS-g2GyUj9Q/R_v_PkNVhmI/AAAAAAAAAOo/mD0X4Vjj15s/s400/penguin.jpeg" border="0" /></a></p>
<hr />It was an odd thought, but is forming into a real adventure in open source revenue. I think it is completely feasible to have Linux computers connected in the background to a composite net that computes things which cannot be done with even the largest super computers. And it seems to me that every person connected to that project should share evenly in the revenue that is generated. An easy example is a blender movie concept. If 100,000 people agree to be part of an animated movie, they download the free blender software and <u>render a frame</u> ( a few minutes ) selected from a site, then place that frame back on the site and the movie is distributed. I know that it is possible to devise a matrix computer strategy that outperforms a super computer.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/paulmohr.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/paulmohr.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=12&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2008/04/30/linux-as-the-new-enterprise-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>

		<media:content url="http://bp0.blogger.com/_PS-g2GyUj9Q/R_v_PkNVhmI/AAAAAAAAAOo/mD0X4Vjj15s/s400/penguin.jpeg" medium="image" />
	</item>
		<item>
		<title>Cool Linux tool</title>
		<link>http://paulmohr.wordpress.com/2008/04/30/cool-linux-tool/</link>
		<comments>http://paulmohr.wordpress.com/2008/04/30/cool-linux-tool/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 01:01:48 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/?p=11</guid>
		<description><![CDATA[
This myname@mymachine:~$ sudo apt-get install spectoI suppose I could use Synaptic but I am an instant gratification person, so I just keep a console window open in case I need to script something. Suggested by Chanweiyee is something I am checking out today. It has a graphical interface and shows up on my KDE in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=11&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://bp0.blogger.com/_PS-g2GyUj9Q/SBeoOzBsEyI/AAAAAAAAAT8/vG44vSQZyCY/s1600-h/specto.png"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp0.blogger.com/_PS-g2GyUj9Q/SBeoOzBsEyI/AAAAAAAAAT8/vG44vSQZyCY/s400/specto.png" border="0" /></a></p>
<hr />This myname@mymachine:~$ sudo apt-get install specto<br />I suppose I could use Synaptic but I am an instant gratification person, so I just keep a console window open in case I need to script something. <br />Suggested by <a href="http://chanweiyee.blogspot.com/2008/03/specto-monitor-changes-to-web-pages.html">Chanweiyee</a> is something I am checking out today.<br /> It has a graphical interface and shows up on my KDE in &#8216;Utilities&#8217; category.<br />It has an interesting web based help system. It is very intuitive and I like the option for sound notification. Seems like a lean, clean checkin&#8217; machine.<br />
<hr />I am still working at setting an automated process to see how to use the various aspects of </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/paulmohr.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/paulmohr.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=11&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2008/04/30/cool-linux-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>

		<media:content url="http://bp0.blogger.com/_PS-g2GyUj9Q/SBeoOzBsEyI/AAAAAAAAAT8/vG44vSQZyCY/s400/specto.png" medium="image" />
	</item>
		<item>
		<title>Swimming with the babelfish</title>
		<link>http://paulmohr.wordpress.com/2008/04/29/swimming-with-the-babelfish/</link>
		<comments>http://paulmohr.wordpress.com/2008/04/29/swimming-with-the-babelfish/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 08:39:26 +0000</pubDate>
		<dc:creator>paulmohr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://paulmohr.wordpress.com/?p=10</guid>
		<description><![CDATA[I am learning other languages ( besides programming languages *chuckle* ) and I would consider this a Rosetta stone if I didn&#8217;t know better and I hope there is no conflict in using this with my translator to see what it means. The link. Is http://jenniferlinca.wordpress.com/2008/04/29/%e4%b8%80%e4%ba%9b%e7%ac%a6%e5%8f%b7%e7%9a%84%e8%8b%b1%e6%96%87%e8%af%bb%e6%b3%95/
And some samples to see whether what I see is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=10&subd=paulmohr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I am learning other languages ( besides programming languages *chuckle* ) and I would consider this a Rosetta stone if I didn&#8217;t know better and I hope there is no conflict in using this with my translator to see what it means. The link. Is http://jenniferlinca.wordpress.com/2008/04/29/%e4%b8%80%e4%ba%9b%e7%ac%a6%e5%8f%b7%e7%9a%84%e8%8b%b1%e6%96%87%e8%af%bb%e6%b3%95/</p>
<p>And some samples to see whether what I see is what I think I see. ．<br />
<blockquote><p>period 句号，comma 逗号：colon 冒号；semicolon 分号！exclamation 惊叹号？question mark 问号 __hyphen 连字符 ”apostrophe 省略号；所有格符号 —dash 破折号 ‘ ’single quotation marks 单引号 “ ”double quotation marks 双引号 ( )parentheses 圆括号 [ ]square brackets 方括号《 》French quotes 法文引号；书名号 …ellipsis 省略号 ¨tandem colon 双点号 “ditto 同上 ‖parallel 双线号／virgule 斜线号＆ampersand = and ～swung dash 代字号 §section; division 分节号 →arrow 箭号；参见号</p></blockquote>
<p>And from the babel fish <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>And some samples to see whether what I see is what I think I see.. period full stop, comma comma: colon colon; semicolon semicolon! exclamation exclamation point » question mark question mark __ hyphen hyphen &#8220;apostrophe apostrophe; possessive symbols &#8211; dash dash &#8221; single quotation marks the single quotation marks&#8221; &#8220;double quotation marks double quotes () parentheses parentheses [] square brackets in square brackets&#8221; &#8220;French quotes French quotes; Title, … Ellipsis apostrophe ¨ tandem colon double-point, &#8220;ditto, ditto ‖ parallel two-lane / virgule slash, &amp; ampersand = and ~ swung dash the hyphen § section; division of sub-section → arrow arrow; See,</p></blockquote>
<p>This is a <a href="http://infinitefuture.blogspot.com/2008/04/studying-language-and-communication.html">cross-link from my other blog</a> and I am experimenting with how the different blog and blog software work.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/paulmohr.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/paulmohr.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulmohr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulmohr.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulmohr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulmohr.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulmohr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulmohr.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulmohr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulmohr.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulmohr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulmohr.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulmohr.wordpress.com&blog=3566815&post=10&subd=paulmohr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://paulmohr.wordpress.com/2008/04/29/swimming-with-the-babelfish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c182b07713de59d4be72c6e9d15660d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">paulmohr</media:title>
		</media:content>
	</item>
	</channel>
</rss>