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

<channel>
	<title>funkboxing</title>
	<atom:link href="http://funkboxing.com/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://funkboxing.com/wordpress</link>
	<description>we apologize for the inconvenience</description>
	<lastBuildDate>Fri, 27 Apr 2012 00:22:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>More Ragdolls?</title>
		<link>http://funkboxing.com/wordpress/?p=1263</link>
		<comments>http://funkboxing.com/wordpress/?p=1263#comments</comments>
		<pubDate>Wed, 28 Mar 2012 16:26:40 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Blender]]></category>
		<category><![CDATA[ragdoll]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1263</guid>
		<description><![CDATA[Take this! Mr. hasn&#8217;t-posted-in-months. Just playing around with Blender and Cycles.]]></description>
			<content:encoded><![CDATA[<p>Take this! Mr. hasn&#8217;t-posted-in-months.</p>
<p>Just playing around with Blender and Cycles.</p>
<p><iframe src="http://www.youtube.com/embed/N1hSKoEWhvM" frameborder="0" width="560" height="315"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1263</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blender Dynamic Paint w/ Conway&#8217;s Life</title>
		<link>http://funkboxing.com/wordpress/?p=1248</link>
		<comments>http://funkboxing.com/wordpress/?p=1248#comments</comments>
		<pubDate>Tue, 27 Dec 2011 02:02:10 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Blender]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1248</guid>
		<description><![CDATA[This is an attempt to merge Blenders Dynamic Paint feature with cellular automata. It started as a python script but then became even more of an educational experience when I realized python wasn&#8217;t going to be fast enough to run conway&#8217;s life on a 64x grid, let alone a 4Kx one, which was my initial <a href='http://funkboxing.com/wordpress/?p=1248'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/fxgGhBIXg94" frameborder="0" width="420" height="315"></iframe></p>

<a href='http://funkboxing.com/wordpress/?attachment_id=1252' title='0430'><img width="150" height="150" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/12/0430-150x150.jpg" class="attachment-thumbnail" alt="0430" title="0430" /></a>
<a href='http://funkboxing.com/wordpress/?attachment_id=1253' title='0696'><img width="150" height="150" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/12/0696-150x150.jpg" class="attachment-thumbnail" alt="0696" title="0696" /></a>
<a href='http://funkboxing.com/wordpress/?attachment_id=1254' title='1041'><img width="150" height="150" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/12/1041-150x150.jpg" class="attachment-thumbnail" alt="1041" title="1041" /></a>

<p>This is an attempt to merge Blenders Dynamic Paint feature with cellular automata. It started as a python script but then became even more of an educational experience when I realized python wasn&#8217;t going to be fast enough to run conway&#8217;s life on a 64x grid, let alone a 4Kx one, which was my initial goal. These ended up being 512x grids. I could have gone bigger but I&#8217;m using a little netbook for all this so I didn&#8217;t go nuts.</p>
<p>After figuring out that python wasn&#8217;t going to be fast enough I set out to make a c++ version, not in Blender, just in c++. Long story short it&#8217;s an atrocity of loops inside a main function. I didn&#8217;t even bother to pass any arguments, just recompiled every time I changed paths. Anyway it ended up being lots faster than the py scripts and I finally had an excuse to write a function I knew very well in a language I&#8217;ve been intimidated by for some time (and still very much am).</p>
<p>The c++ code uses the ImageMagick++ library, which made things much easier, but you&#8217;ll have to get this lib if you want to compile and use this. Hopefully this whole process has prepared me to get on porting the lighting generator to c++, which really needs to happen if if it&#8217;s ever going to be more than a gimmick.</p>
<p>So anyway, here&#8217;s the c++ code and here&#8217;s the Blender python script that I abandoned in favor of doing it in c++. For the record- this is bad, bad code. Very bad. Also here&#8217;s the command line to compile with g++ and imageMagick++, since that took awhile to get past.</p>
<p><a href="http://funkboxing.com/wordpress/wp-content/blendfiles/conway_cpp_py.zip">conway_cpp_py.zip</a></p>
<p>user@pc:~$ g++ `Magick++-config &#8211;cxxflags &#8211;cppflags` conway.cpp -o conway `Magick++-config &#8211;ldflags &#8211;libs`</p>
<p>Here&#8217;s the process for using this to dynamic paint with conways life.</p>
<p>1) dynamically paint a canvas with a brush. This will paint &#8216;live&#8217; cells onto the canvas<br />
Turn on &#8216;dissolve&#8217; and set to dissolve in 1-3 frames. Otherwise these become &#8216;immortal&#8217; cells, which makes for a weird simulation.<br />
I used red channel only for these demos.</p>
<p>2) compile and run the c++ code.<br />
This will run the simulation on the dynamic paint cache images. It runs the simulation from the initial frame, but always includes the red cells from the next dynamic paint frame so they will be used in the next simulation step.</p>
<p>3) use this simulation output as a map in place of the dynamic paint output.<br />
Sounds easy, and it kind of is, and kind of isn&#8217;t.<br />
So if you want to do this yourself- if you know c++ it should be easy. If you don&#8217;t it will be very hard. If you&#8217;re just learning c++ it may be worthwile to try.</p>
<p>Not sure where I&#8217;m going with all this, as usual it was just something to do. Hope you dig it.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1248</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Blender Camera Marks</title>
		<link>http://funkboxing.com/wordpress/?p=1243</link>
		<comments>http://funkboxing.com/wordpress/?p=1243#comments</comments>
		<pubDate>Sun, 18 Dec 2011 20:36:04 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Blender]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1243</guid>
		<description><![CDATA[Here&#8217;s a simple script that lets you &#8216;bookmark&#8217; camera positions. It&#8217;s a little redundant since the same thing can be accomplished a number of different ways but after a discussion with another BR BUG member I thought I&#8217;d take a swing. So here&#8217;s the script (right-clk&#62;save as) camera_marks Just uncompress, then copy the script to <a href='http://funkboxing.com/wordpress/?p=1243'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a simple script that lets you &#8216;bookmark&#8217; camera positions.</p>
<p>It&#8217;s a little redundant since the same thing can be accomplished a number of different ways but after a discussion with another BR BUG member I thought I&#8217;d take a swing. So here&#8217;s the script (right-clk&gt;save as)</p>
<p><a href="http://funkboxing.com/wordpress/wp-content/blendfiles/camera_marks.zip">camera_marks</a></p>
<p>Just uncompress, then copy the script to your addons folder and then activate.</p>
<p>You get a panel in the 3DView&gt;Toolbar that lets you add, delete, and change marks.</p>
<p><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/12/cameramarks.jpg"><img class="alignleft size-medium wp-image-1244" title="cameramarks" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/12/cameramarks-300x168.jpg" alt="" width="300" height="168" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>It saves the loc/rot/dofdist/lens to a textblock called CAMERAMARKS. I know this is a hacky implementation but I&#8217;m a hack and that&#8217;s just what I do. It&#8217;s super rudimentary now but it was only about 3 hours of coding and most of that was looking through old code to remember how to setup the UI, which I needed a refresher on anyway so this was a good little project. So tell me what you think, if it&#8217;s useful, what it needs to become useful, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1243</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gratitude</title>
		<link>http://funkboxing.com/wordpress/?p=1228</link>
		<comments>http://funkboxing.com/wordpress/?p=1228#comments</comments>
		<pubDate>Thu, 24 Nov 2011 02:54:51 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1228</guid>
		<description><![CDATA[My family Imagination Resourceful Teachers Peace wherever it can be found Open-Source Free Speech Forgiveness Mortality Reeces peanut-butter cups Coffee The Christmas Truce What I know What I have to learn Unabashed enthusiasm The Apollo Program Fallen Astronauts, Cosmonauts, and Tychonauts Dedicated Engineers Macgyver Musicians with day jobs Artists with soul The &#8220;Not on My <a href='http://funkboxing.com/wordpress/?p=1228'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>My family<br />
Imagination<br />
Resourceful Teachers<br />
Peace wherever it can be found<br />
Open-Source<br />
Free Speech<br />
Forgiveness<br />
Mortality<br />
Reeces peanut-butter cups<br />
Coffee<br />
The Christmas Truce<br />
What I know<br />
What I have to learn<br />
Unabashed enthusiasm<br />
The Apollo Program<br />
Fallen Astronauts, Cosmonauts, and Tychonauts<br />
Dedicated Engineers<br />
Macgyver<br />
Musicians with day jobs<br />
Artists with soul<br />
The &#8220;Not on My Watch&#8221; Attitude<br />
Purpose<br />
Solitude<br />
The right tool for the job<br />
The tool that works anyway<br />
Opposable thumbs<br />
Light<br />
Rage against the dying of the light<br />
Honey mustard<br />
Creole mustard<br />
Futurama<br />
Albert Einstein<br />
Sir Isaac Newton<br />
Ton Rosendaal<br />
Ludwig van Beethoven<br />
Jonas Sark<br />
Stomatopods, especially Peacock Mantis Shrimp<br />
Caring Doctors and Nurses<br />
Loyal Dogs<br />
Friendly Ferrets<br />
Tireless Horses<br />
Deadly and beautiful creatures<br />
Cameras with low f-stop telephoto Lenses<br />
Brave but cautious nature photographers<br />
Miester Eckhart<br />
Dreams<br />
Employing my demons for good<br />
Anonymous gifts<br />
SETI<br />
Unselfish prayers<br />
Originality<br />
Luigi Serafini and The Codex Seraphinianus<br />
Copper heat-sinks<br />
Balsa Planes<br />
The stone that missed my head when I was little<br />
The poor Lego-man that was crushed by that stone instead<br />
Model Rockets<br />
Cannabis<br />
Robert Heinlein<br />
Ray Bradbury<br />
Isaac Asimov<br />
Douglas Adams<br />
Firefly<br />
Orsen Scott Card<br />
When truth and reconciliation defeat revenge<br />
When right breaks with law<br />
When reason prevails over violence<br />
Elegant solutions<br />
Unapproachable enigmas<br />
Commitment to quality<br />
Chiropractors<br />
Self-education<br />
Wikipedia<br />
Public Librarys<br />
IEEE and ISO<br />
Those sounds only I can hear<br />
Knowing deep down where those sounds really come from<br />
History<br />
The future<br />
This moment<br />
Protecting something truly precious<br />
The certainty that I am alone, but that we are not<br />
Consequences<br />
Elephants<br />
Logos (The Word)<br />
Wishing for nothing<br />
The infinite, uncountable, and unquantifiable<br />
Unknowable truths<br />
Calculated defiance<br />
Thich Quang Duc<br />
Falon Gong<br />
Tank Man<br />
George Washington<br />
Clair Cameron Patterson<br />
Journalists with scruples<br />
Terry Gilliam Films<br />
Transcendence<br />
Khentrul Lodrö Thayé Rinpoche<br />
Beauty in all its forms<br />
Especially the female form<br />
Bernadette Peters<br />
That girl, whether or not we ever find each other<br />
The fact that the universe is witnessing itself through my eyes<br />
The true belief that vanity is not an inevitable cost of consciousness<br />
The undeserved gifts bestowed upon humanity by Gautama Buddha, Jesus of Nazareth and all those unknown souls that should be recognized as synonymous with those names.</p>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1228</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Balsa Planes</title>
		<link>http://funkboxing.com/wordpress/?p=1115</link>
		<comments>http://funkboxing.com/wordpress/?p=1115#comments</comments>
		<pubDate>Sat, 29 Oct 2011 03:37:30 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1115</guid>
		<description><![CDATA[Here are pictures of some balsa planes I made with balsa planks (1&#8243;x12&#8243;) I got from a pallet of donated educational stuff. They were with the expendables marked for the mechanical demonstration &#8216;modules&#8217; on the pallet. One of the modules probably cracked them under a given load. Now they are planes. I still have a <a href='http://funkboxing.com/wordpress/?p=1115'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Here are pictures of some balsa planes I made with balsa planks (1&#8243;x12&#8243;) I got from a pallet of donated educational stuff. They were with the expendables marked for the mechanical demonstration &#8216;modules&#8217; on the pallet. One of the modules probably cracked them under a given load. Now they are planes.</p>
<p><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/000allIMG_0036.jpg"><img class="alignnone size-medium wp-image-1116" title="000allIMG_0036" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/000allIMG_0036-300x200.jpg" alt="" width="300" height="200" /></a><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/00ftIMG_00561.jpg"><img class="alignnone size-medium wp-image-1121" title="00ftIMG_0056" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/00ftIMG_00561-300x200.jpg" alt="" width="300" height="200" /></a><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/01dtIMG_00211.jpg"><img class="alignnone size-medium wp-image-1122" title="01dtIMG_0021" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/01dtIMG_00211-300x200.jpg" alt="" width="300" height="200" /></a><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/04hbIMG_0024.jpg"><img class="alignnone size-medium wp-image-1125" title="04hbIMG_0024" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/04hbIMG_0024-300x200.jpg" alt="" width="300" height="200" /></a><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/05mmIMG_0010.jpg"><img class="alignnone size-medium wp-image-1126" title="05mmIMG_0010" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/05mmIMG_0010-300x200.jpg" alt="" width="300" height="200" /></a><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/06mnIMG_0050.jpg"><img class="alignnone size-medium wp-image-1127" title="06mnIMG_0050" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/06mnIMG_0050-300x200.jpg" alt="" width="300" height="200" /></a><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/07wwIMG_0018.jpg"><img class="alignnone size-medium wp-image-1128" title="07wwIMG_0018" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/07wwIMG_0018-300x200.jpg" alt="" width="300" height="200" /></a><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/08uIMG_0026.jpg"><img class="alignnone size-medium wp-image-1129" title="08uIMG_0026" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/08uIMG_0026-300x200.jpg" alt="" width="300" height="200" /></a><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/09ttIMG_0016.jpg"><img title="09ttIMG_0016" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/09ttIMG_0016-300x200.jpg" alt="" width="300" height="200" /></a><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/10tiIMG_0012.jpg"><img class="alignnone size-medium wp-image-1131" title="10tiIMG_0012" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/10tiIMG_0012-300x200.jpg" alt="" width="300" height="200" /></a></p>
<p>I still have a bunch of planks left too.</p>
<p>Hope you like. Thanks.</p>
<p>Thomas</p>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1115</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adventures in Software Defined Radio with the FUNcube</title>
		<link>http://funkboxing.com/wordpress/?p=1112</link>
		<comments>http://funkboxing.com/wordpress/?p=1112#comments</comments>
		<pubDate>Wed, 26 Oct 2011 00:59:34 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1112</guid>
		<description><![CDATA[I recently received a FUNcube dongle SDR for filling in teaching a class. I don&#8217;t know much about HAM radio or SDR but I&#8217;ve been wanting to learn and now I have a great toy to motivate me to learn. It took me awhile to get the thing recognized on Lubuntu. Had to add a <a href='http://funkboxing.com/wordpress/?p=1112'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I recently received a FUNcube dongle SDR for filling in teaching a class. I don&#8217;t know much about HAM radio or SDR but I&#8217;ve been wanting to learn and now I have a great toy to motivate me to learn.</p>
<p>It took me awhile to get the thing recognized on Lubuntu. Had to add a rule in udev, also had to get qthid2.2 to update the firmware so I could use qthid3.1. Then had to compile quisk and finally started getting lots and lots of static.</p>
<p>Then I started reading more about HAM radio and found about about IF and OF and got far enough to get some garbled non-static from the local NPR station. Then I took a little video on my phone. Then I uploaded it to youtube, then I typed this. So here it is.</p>
<p><iframe src="http://www.youtube.com/embed/cNeLG3Q01zs?hl=en&amp;fs=1" frameborder="0" width="425" height="349"></iframe></p>
<p>Looking forward to spending lots and lots of time learning and playing with this thing.</p>
<p>Maybe by next post I&#8217;ll have decoded some telemetry data from an AMSAT. That would be cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1112</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Baton Rouge Blender User Group</title>
		<link>http://funkboxing.com/wordpress/?p=1095</link>
		<comments>http://funkboxing.com/wordpress/?p=1095#comments</comments>
		<pubDate>Sun, 09 Oct 2011 03:17:45 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Blender]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1095</guid>
		<description><![CDATA[&#8212;&#8211;UPDATE&#8212;&#8211; Another great meeting everyone! Next meeting will be January 21st, 2012 &#8211; at the Cajun Clickers HQ &#8211; 3:00pm-6:00pm &#160; &#8212;&#8211;UPDATE-DEC17th&#8212;- Great meeting everyone. I enjoyed sharing Blender with some new folks, and I enjoyed meeting some local BlenderHeads I didn&#8217;t know about and as one 3D veteran offered &#8220;It&#8217;s good to know you&#8217;re <a href='http://funkboxing.com/wordpress/?p=1095'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/brbugflyer-lores1.jpg"><img class="size-medium wp-image-1108 aligncenter" title="brbugflyer-lores" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/brbugflyer-lores1-231x300.jpg" alt="" width="231" height="300" /></a></p>
<p>&#8212;&#8211;UPDATE&#8212;&#8211;</p>
<p>Another great meeting everyone!<br />
Next meeting will be <span style="text-decoration: underline;">January 21st, 2012</span> &#8211; at the Cajun Clickers HQ &#8211; 3:00pm-6:00pm</p>
<p>&nbsp;</p>
<p>&#8212;&#8211;UPDATE-DEC17th&#8212;-</p>
<p>Great meeting everyone. I enjoyed sharing Blender with some new folks, and I enjoyed meeting some local BlenderHeads I didn&#8217;t know about and as one 3D veteran offered &#8220;It&#8217;s good to know you&#8217;re not in a vacuum.&#8221;</p>
<p>December 17th is the date for the next meeting, at the Cajun Clicker HQ. (See below for link to map.)</p>
<p>I&#8217;ll probably make another flyer with the new date and send them out so you can send them to anyone you&#8217;d like to share Blender with. Or print them and put them up at your school or work or something if that&#8217;s appropriate.</p>
<p>I&#8217;ll also be working on scheduling a beginners series, and since we had some interest on Game Engine and Texturing we&#8217;ll work on putting together some workshops on those too.</p>
<p>So thanks again for the great meeting and feel free to contact me!</p>
<p>&nbsp;</p>
<p>&#8212;&#8211;ORIGINAL POST&#8212;&#8211;</p>
<p>On November 12, 2011 from 4:00pm &#8211; 6:00pm the Baton Rouge Blender User Group will meet at the <a href="http://www.clickers.org/">Cajun Clickers Computer Club</a>. (<a href="http://maps.google.com/maps?client=ubuntu&amp;channel=cs&amp;um=1&amp;ie=UTF-8&amp;q=cajun+clicker&amp;fb=1&amp;gl=us&amp;hq=cajun+clicker&amp;cid=0,0,8499050848621238162&amp;ei=Vw-RTpanL8uDtged_N2EDA&amp;sa=X&amp;oi=local_result&amp;ct=image&amp;ved=0CAQQ_BI">MAP</a>)</p>
<p>BLENDER USERS<br />
If you&#8217;re a Blender user or are interested in learning to use <a href="http://www.blender.org">Blender</a>, the free, open-source, 3D content creation suite, then come to this meeting!</p>
<p>Meet other Blender Users in the Baton Rouge area and find out more about the exiting developments in this rapidly growing software!</p>
<p>MEETING TOPICS<br />
At this meeting we will discuss some of the new features in 2.6 and the <a href="http://code.blender.org/index.php/2011/08/google-summer-of-code-round-up/">Google Summer of Code</a> and other <a href="http://graphicall.org/">branches</a> that include 3D audio, the new photo-realistic rendering engine Cycles, and camera tracking integration in the Tomato branch. We&#8217;ll also check out <a href="http://www.sintel.org/">Sintel</a>, and look at some impressive work from <a href="http://projectlondonmovie.com/">Project London</a>.</p>
<p>Baton Rouge area Blender users are encouraged to bring their artwork and demos to show off! Feel free to send it in advance or just bring a thumb drive with some .blends and/or renders.</p>
<p>We will also discuss plans for another Blender introduction class series for beginners and plans for group projects.</p>
<p>MEMBERSHIP<br />
If you use Blender and live in/near Baton Rouge then you&#8217;re already a member of the Baton Rouge Blender User Group!</p>
<p>The Cajun Clickers Computer Club offers a wonderful classroom facility for learning Blender and also offers a wide range of other computer related classes.</p>
<p>Blender User Groups members will be encouraged to join the Cajun Clickers Computer Club and enjoy all the classes and opportunities offered for a very reasonable price of $40/year for a whole family.</p>
<p>RSVP<br />
If you plan to attend please let me know through <a title="Contact" href="http://funkboxing.com/wordpress/?page_id=50">this contact form</a>, or reply to this post, or email me at teldredge at funkboxing dot com. Also if you can&#8217;t attend but would like to know about future events, please contact me.</p>
<p>PC&#8217;S FOR BLENDER USERS<br />
The system requirements to run Blender are very modest. If you are looking for a PC to run Blender we can work with the <a href="http://www.cacrc.com/">CACRC</a> to provide you a PC to be used as capable Blender workstation. The cost may vary depending on need and availability but I will try to arrange for a workable PC (no monitor) for around $180.00. The CACRC has monitors for sale from $60.00. If you are interested in a dual-monitor setup or something specific we can work on that too.</p>
<p><span style="text-decoration: underline;">CACRC Blender PC Specs</span><br />
OpenGL 2.0 Capable Graphics Card<br />
PentiumD 2.8Ghz<br />
2 Gb RAM<br />
80 Gb HDD<br />
Preloaded and tested with Ubuntu Linux and Blender</p>
<div id="attachment_1099" class="wp-caption alignnone" style="width: 310px"><a href="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/ClassroomWide.jpg"><img class="size-medium wp-image-1099" title="ClassroomWide" src="http://funkboxing.com/wordpress/wp-content/uploads/2011/10/ClassroomWide-300x149.jpg" alt="" width="300" height="149" /></a><p class="wp-caption-text">A class session at the Cajun Clickers.</p></div>
<p>A NOTE TO ATTENDEES OF THE 2009-2010 CLASSES<br />
If you atteneded <a href="http://www.blendernation.com/2009/12/13/baton-rouge-cajun-clickers-blender-classes/">these classes</a> and have not heard from me please email me. I am sorry to say I&#8217;ve lost some of your email addresses since then so I&#8217;d love to hear from you and to get you back on an email list.</p>
<p>&nbsp;</p>
<p>Thanks for reading and I hope to see you there. In the meantime and as usual- keep Blending!</p>
<p>teldredge (Thomas Eldredge)</p>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1095</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lightning Generator Script added to Blender Contrib SVN!</title>
		<link>http://funkboxing.com/wordpress/?p=1082</link>
		<comments>http://funkboxing.com/wordpress/?p=1082#comments</comments>
		<pubDate>Wed, 28 Sep 2011 23:24:28 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Blender]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1082</guid>
		<description><![CDATA[My Blender Laplacian Lightning Generator has been accepted into the Blender Contrib SVN! That means it&#8217;s an &#8216;official&#8217; add-on but is not included in the trunk. I&#8217;ve been using and coding in Blender for nearly 5 years this is a very special moment for me. Blender means a great deal to me and this script <a href='http://funkboxing.com/wordpress/?p=1082'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>My <a title="Blender Laplacian Lightning" href="http://funkboxing.com/wordpress/?p=301">Blender Laplacian Lightning Generator</a> has been accepted into the Blender Contrib SVN!</p>
<p>That means it&#8217;s an &#8216;official&#8217; add-on but is not included in the trunk.</p>
<p>I&#8217;ve been using and coding in Blender for nearly 5 years this is a very special moment for me. Blender means a great deal to me and this script is the least I can do to show my appreciation.</p>
<p>I am very proud and honored to have some of my code accepted as part of Blender. I am also very grateful for the intelligent and friendly support I&#8217;ve received from Blender coders and from the author of <a href="http://gamma.cs.unc.edu/FRAC/">FSLG</a>. I sincerely hope this add-on proves useful to the Blender community.</p>
<p>Thanks to the Blender community for everything. I will keep doing what I can.</p>
<p>Thomas</p>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1082</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Message from Outer Space</title>
		<link>http://funkboxing.com/wordpress/?p=1077</link>
		<comments>http://funkboxing.com/wordpress/?p=1077#comments</comments>
		<pubDate>Sun, 28 Aug 2011 22:40:20 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1077</guid>
		<description><![CDATA[this one came in through a low-band electron shell quantizer. I decomposed the background loop to within the refactored Schwarzschild radius (compensating for dilation by reducing common background proton parity to 1/pi per cubic irrelevance). After that it was a pretty straight forward phase adjustment series that brought up the d-gains inside a tracking relay <a href='http://funkboxing.com/wordpress/?p=1077'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>this one came in through a low-band electron shell quantizer. I decomposed the background loop to within the refactored Schwarzschild radius (compensating for dilation by reducing common background proton parity to 1/pi per cubic irrelevance).</p>
<p>After that it was a pretty straight forward phase adjustment series that brought up the d-gains inside a tracking relay I established about 2 degrees clockwise from the EM band.</p>
<p>Long story short- I got another message from outer space. It&#8217;s nothing new, just a poetic rephrasing of the answer to the ultimate question of life, the universe and everything.</p>
<p>Here it is.</p>
<p><img class="alignnone" title="Message" src="http://funkboxing.com/wordpress/wp-content/gallery/lagniappe/message000-a.jpg" alt="" width="474" height="378" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1077</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blinded with Science &#8211; Repost Archive</title>
		<link>http://funkboxing.com/wordpress/?p=1075</link>
		<comments>http://funkboxing.com/wordpress/?p=1075#comments</comments>
		<pubDate>Mon, 22 Aug 2011 05:06:13 +0000</pubDate>
		<dc:creator>teldredge</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[redshtick]]></category>

		<guid isPermaLink="false">http://funkboxing.com/wordpress/?p=1075</guid>
		<description><![CDATA[Some of my early Blinded with Science articles dropped off the internet so I thought I&#8217;d post the whole series here, what with the apes about to take over and all. This is actually for their benefit. Hey future hyper intelligent apes of the future, careful with that hyper intelligence, it can make you stupid. <a href='http://funkboxing.com/wordpress/?p=1075'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Some of my early Blinded with Science articles dropped off the internet so I thought I&#8217;d post the whole series here, what with the apes about to take over and all. This is actually for their benefit.</p>
<p>Hey future hyper intelligent apes of the future, careful with that hyper intelligence, it can make you stupid.</p>
<ul>
<li><a href="http://funkboxing.com/wordpress/?p=1063">Blinded with Science &#8211; Lasers: Pointing to the Future</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1061">Blinded with Science &#8211; Freestyle Science, Part II: Cryptozoology</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1058">Blinded with Science &#8211; Freestyle Science, Part I: Paranormal Research</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1055">Blinded with Science &#8211; 2012: Countdown to the Big Whatever</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1053">Blinded with Science &#8211; Who Gives a Crap about Open Source Software?</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1051">Blinded with Science &#8211; Television: Better than Reading</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1049">Blinded with Science &#8211; Election Technology: Rise of the Voting Machine</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1045">Blinded with Science &#8211; Criminal Chemicals</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1043">Blinded with Science &#8211; The 300 Million Dollar Battery</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1041">Blinded with Science &#8211; Mr. Wizard: The Last Action Hero</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1029">Blinded with Science &#8211; Picking Bones</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1027">Blinded with Science &#8211; Relativity &#8211; Part 2: General</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1023">Blinded with Science &#8211; Relativity &#8211; Part 1: Special</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1020">Blinded with Science &#8211; Stem Cells: The Root of All Evil</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1017">Blinded with Science &#8211; Earth: Magnet for Change</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1015">Blinded with Science &#8211; Thinking: The Mental Challenge</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1013">Blinded with Science &#8211; E.T.: Illegal Alien</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1005">Conservatruth is Stranger than Fiction</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1003">Blinded with Science &#8211; Cellulosic Ethanol: Tomorrows Fuel for Drinking and Driving</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=1001">Blinded with Science &#8211; War on Wires</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=999">Mortal Values</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=997">Blinded with Science &#8211; Super Collider? I barely know her!</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=995">Blinded with Science &#8211; Trekonomic Incentives</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=992">The Curses of Science Fiction</a></li>
<li><a href="http://funkboxing.com/wordpress/?p=988">The Calculus Conspiracy</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://funkboxing.com/wordpress/?feed=rss2&#038;p=1075</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

