<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comments for Plebian Design: Blog</title>
	<atom:link href="http://plebiandesign.com/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://plebiandesign.com/blog</link>
	<description>Plebian Design</description>
	<pubDate>Sun, 26 May 2013 00:07:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on One Minute Per Day instructions, b1 by dan</title>
		<link>http://plebiandesign.com/blog/?p=552&cpage=1#comment-71298</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Tue, 11 Oct 2011 14:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=552#comment-71298</guid>
		<description>this is relevant to the blurring portion of the script.
http://timelapsefarm.wordpress.com/2011/07/05/blur-or-iir-filter-for-timelapse-movies/</description>
		<content:encoded><![CDATA[<p>this is relevant to the blurring portion of the script.<br />
<a href="http://timelapsefarm.wordpress.com/2011/07/05/blur-or-iir-filter-for-timelapse-movies/" rel="nofollow">http://timelapsefarm.wordpress.com/2011/07/05/blur-or-iir-filter-for-timelapse-movies/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One Minute Per Day instructions, b1 by dan</title>
		<link>http://plebiandesign.com/blog/?p=552&cpage=1#comment-69842</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Sun, 02 Oct 2011 18:45:01 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=552#comment-69842</guid>
		<description>#this is what is running on my mac laptop.

#! /bin/sh

# THIS VERSION TAKES A WEBCAM PIC AND BLENDS IT WITH SCREENSHOT
# ***************************************
# ******OMPD - One Minute Per Day - Voluntary Anthropology
# ******public timelapse wall
# need to install ffmpeg and imagemagick for this to work
# maybe wacaw too 
# **************
# **************

# whatever you want to be your directory of files
cd ~/Pictures/OMPD
# make a subdirectory with today's date, then go to it.
mkdir `date +%Y-%m`
cd `date +%Y-%m`

screencapture -m -x -t jpg last.jpg

DDDATE=`date +%Y%m`
DATETIME=`date +%Y%m%d%H%M%S`

RAMP=9
counter=10000
# at 15 seconds per shot, 4/min, 240/hr, 10 hours = 2400 shots
# while [ $counter -ne 3400 ] # run a fixed number of shots.
#while [ `date +%H` -lt 23 ] # if it's less that 11pm
while [ 1 ] # run all the time
do
DATETIME=`date +%Y%m%d%H%M%S`

NOWDATE=`date +%Y%m`
	if [ $NOWDATE -gt $DDDATE ]
	then
		echo "month change"
		counter=100000
		for f in screen*.jpg; do
		let "counter+=1"
		mv $f renum${counter:1}.jpg 
		done
		# convert *.jpg ~/Movies/AUTOUPLOAD/OMPD-$DDDATE-$DATETIME.mp4
# 		for f in *.jpg; do let "counter+=1"; mv $f screen${counter:1}.jpg ; done 
		#done
# -g sets keyframes. useful if you ever edit the file later
		ffmpeg -r 20 -b 5000 -g 1 -i renum%05d.jpg -sameq -s 720x450 ~/Movies/AUTOUPLOAD/OMPD-$DDDATE.mp4
		#ffmpeg -r 10 -sameq -i webcam%04d.jpg ~/Movies/AUTOUPLOAD/camTL-$DDDATE.mp4
		#ffmpeg -r 15 -b 5000 -i webcam%04d.jpg ~/Movies/AUTOUPLOAD/`
		# -b 5000 to limit movie size.	
		cd ~/Pictures/OMPD
		mkdir `date +%Y-%m-%d`
		cd `date +%Y-%m-%d`
		sleep 1
		screencapture -m -x -t jpg last.jpg
		screencapture -m -x -t jpg new.jpg
		screencapture -m -x -t jpg middle.jpg
		counter=10000
		DDDATE=`date +%Y%m`
	fi

#let "counter+=1"
echo $DATETIME
#echo $counter # if you want to see the progression on the terminal window
# capture a JPG screenshot

let "RAMP%=6"
let "RAMP+=1"
echo $RAMP
#screencapture -m -x -t jpg screen${counter:1}.jpg
rm -rf new.jpg
rm -rf webcam.jpeg
wacaw --jpeg -n 4 webcam
screencapture -m -x -t jpg -T 2 new.jpg
#composite /Users/danielpaluska/Pictures/OMPD/wave_gradient6.png new.jpg -displace 3x3 middle.jpg #screen$DATETIME.jpg
composite -blend 35 new.jpg last.jpg -matte middle.jpg

convert webcam.jpeg -resize %200 webcam.jpg
composite -blend 50 webcam.jpg middle.jpg last.jpg
#composite -blend 50 -gravity center /Users/danielpaluska/OneMinutePerDay/label.gif middle.jpg middle.jpg
#cp middle.jpg last.jpg
#mv temp.jpg screen$DATETIME.jpg
convert last.jpg -resize %50 screen$DATETIME.jpg

#wacaw --jpeg -n 4 webcam${counter:1}.jpg
echo "captured images"
# resize images using imagemagick here?

#mogrify screen$DATETIME.jpg -resize 720x450

# add additional imagemagick filters that intentionally art-ify the images?
echo "made screen smaller"
# convert webcam${counter:1}.jpg.jpeg -resize 95% webcam${counter:1}.jpg
# mv webcam$DATETIME.jpg.jpeg webcam$DATETIME.jpg



#convert screen${counter:1}.jpg -resize 50% screen${counter:1}.jpg

# capture an image from the webcam using wacaw package. get from sourceforge
#
# download zip file. unzip. run these two things at command line
# sudo cp wacaw /usr/local/bin; sudo chmod +x /usr/local/bin/wacaw
echo yofool
# number of seconds between shots
sleep 20
# make a beep here? display a shot onscreen?
done
# one shot/15sec, played at 10 fps = 150x speedup. 150min(2.5hr) = 1 min vid. 10hrs = 4min
# about mac cron jobs on laptops and sleep times
# http://www.thexlab.com/faqs/maintscri...</description>
		<content:encoded><![CDATA[<p>#this is what is running on my mac laptop.</p>
<p>#! /bin/sh</p>
<p># THIS VERSION TAKES A WEBCAM PIC AND BLENDS IT WITH SCREENSHOT<br />
# ***************************************<br />
# ******OMPD - One Minute Per Day - Voluntary Anthropology<br />
# ******public timelapse wall<br />
# need to install ffmpeg and imagemagick for this to work<br />
# maybe wacaw too<br />
# **************<br />
# **************</p>
<p># whatever you want to be your directory of files<br />
cd ~/Pictures/OMPD<br />
# make a subdirectory with today&#8217;s date, then go to it.<br />
mkdir `date +%Y-%m`<br />
cd `date +%Y-%m`</p>
<p>screencapture -m -x -t jpg last.jpg</p>
<p>DDDATE=`date +%Y%m`<br />
DATETIME=`date +%Y%m%d%H%M%S`</p>
<p>RAMP=9<br />
counter=10000<br />
# at 15 seconds per shot, 4/min, 240/hr, 10 hours = 2400 shots<br />
# while [ $counter -ne 3400 ] # run a fixed number of shots.<br />
#while [ `date +%H` -lt 23 ] # if it&#8217;s less that 11pm<br />
while [ 1 ] # run all the time<br />
do<br />
DATETIME=`date +%Y%m%d%H%M%S`</p>
<p>NOWDATE=`date +%Y%m`<br />
	if [ $NOWDATE -gt $DDDATE ]<br />
	then<br />
		echo &#8220;month change&#8221;<br />
		counter=100000<br />
		for f in screen*.jpg; do<br />
		let &#8220;counter+=1&#8243;<br />
		mv $f renum${counter:1}.jpg<br />
		done<br />
		# convert *.jpg ~/Movies/AUTOUPLOAD/OMPD-$DDDATE-$DATETIME.mp4<br />
# 		for f in *.jpg; do let &#8220;counter+=1&#8243;; mv $f screen${counter:1}.jpg ; done<br />
		#done<br />
# -g sets keyframes. useful if you ever edit the file later<br />
		ffmpeg -r 20 -b 5000 -g 1 -i renum%05d.jpg -sameq -s 720&#215;450 ~/Movies/AUTOUPLOAD/OMPD-$DDDATE.mp4<br />
		#ffmpeg -r 10 -sameq -i webcam%04d.jpg ~/Movies/AUTOUPLOAD/camTL-$DDDATE.mp4<br />
		#ffmpeg -r 15 -b 5000 -i webcam%04d.jpg ~/Movies/AUTOUPLOAD/`<br />
		# -b 5000 to limit movie size.<br />
		cd ~/Pictures/OMPD<br />
		mkdir `date +%Y-%m-%d`<br />
		cd `date +%Y-%m-%d`<br />
		sleep 1<br />
		screencapture -m -x -t jpg last.jpg<br />
		screencapture -m -x -t jpg new.jpg<br />
		screencapture -m -x -t jpg middle.jpg<br />
		counter=10000<br />
		DDDATE=`date +%Y%m`<br />
	fi</p>
<p>#let &#8220;counter+=1&#8243;<br />
echo $DATETIME<br />
#echo $counter # if you want to see the progression on the terminal window<br />
# capture a JPG screenshot</p>
<p>let &#8220;RAMP%=6&#8243;<br />
let &#8220;RAMP+=1&#8243;<br />
echo $RAMP<br />
#screencapture -m -x -t jpg screen${counter:1}.jpg<br />
rm -rf new.jpg<br />
rm -rf webcam.jpeg<br />
wacaw &#8211;jpeg -n 4 webcam<br />
screencapture -m -x -t jpg -T 2 new.jpg<br />
#composite /Users/danielpaluska/Pictures/OMPD/wave_gradient6.png new.jpg -displace 3&#215;3 middle.jpg #screen$DATETIME.jpg<br />
composite -blend 35 new.jpg last.jpg -matte middle.jpg</p>
<p>convert webcam.jpeg -resize %200 webcam.jpg<br />
composite -blend 50 webcam.jpg middle.jpg last.jpg<br />
#composite -blend 50 -gravity center /Users/danielpaluska/OneMinutePerDay/label.gif middle.jpg middle.jpg<br />
#cp middle.jpg last.jpg<br />
#mv temp.jpg screen$DATETIME.jpg<br />
convert last.jpg -resize %50 screen$DATETIME.jpg</p>
<p>#wacaw &#8211;jpeg -n 4 webcam${counter:1}.jpg<br />
echo &#8220;captured images&#8221;<br />
# resize images using imagemagick here?</p>
<p>#mogrify screen$DATETIME.jpg -resize 720&#215;450</p>
<p># add additional imagemagick filters that intentionally art-ify the images?<br />
echo &#8220;made screen smaller&#8221;<br />
# convert webcam${counter:1}.jpg.jpeg -resize 95% webcam${counter:1}.jpg<br />
# mv webcam$DATETIME.jpg.jpeg webcam$DATETIME.jpg</p>
<p>#convert screen${counter:1}.jpg -resize 50% screen${counter:1}.jpg</p>
<p># capture an image from the webcam using wacaw package. get from sourceforge<br />
#<br />
# download zip file. unzip. run these two things at command line<br />
# sudo cp wacaw /usr/local/bin; sudo chmod +x /usr/local/bin/wacaw<br />
echo yofool<br />
# number of seconds between shots<br />
sleep 20<br />
# make a beep here? display a shot onscreen?<br />
done<br />
# one shot/15sec, played at 10 fps = 150x speedup. 150min(2.5hr) = 1 min vid. 10hrs = 4min<br />
# about mac cron jobs on laptops and sleep times<br />
# <a href="http://www.thexlab.com/faqs/maintscri.." rel="nofollow">http://www.thexlab.com/faqs/maintscri..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One Minute Per Day instructions, b1 by Cullen Corley</title>
		<link>http://plebiandesign.com/blog/?p=552&cpage=1#comment-69841</link>
		<dc:creator>Cullen Corley</dc:creator>
		<pubDate>Sun, 02 Oct 2011 18:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=552#comment-69841</guid>
		<description>cool!  I figured it was something to be made beforehand.  ImageMagick is new to me so I'm still working through all that stuff.

Can I see what your capture.sh looks like now so I can figure out where a few other things are not working?  would like to try to "teach myself to penguin" here

the layered Broadcaster Project video is a great idea, and looks great as well!</description>
		<content:encoded><![CDATA[<p>cool!  I figured it was something to be made beforehand.  ImageMagick is new to me so I&#8217;m still working through all that stuff.</p>
<p>Can I see what your capture.sh looks like now so I can figure out where a few other things are not working?  would like to try to &#8220;teach myself to penguin&#8221; here</p>
<p>the layered Broadcaster Project video is a great idea, and looks great as well!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One Minute Per Day instructions, b1 by dan</title>
		<link>http://plebiandesign.com/blog/?p=552&cpage=1#comment-69684</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Sat, 01 Oct 2011 22:46:41 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=552#comment-69684</guid>
		<description>woop!
ok, i must be honest i have played around with this a lot and not necessarily kept the github gist up to date with all the options.
composite is part of imagemagick and i use it to do a couple different things depending on the situation. 
2 main things. 1 - overlay blend images. and in the line you ask about, 2. warp images with an underlying template.
see how this movie has a wavy texture? http://www.youtube.com/watch?v=DYFlGMv24XI 
that's what that line does. you have to create the gradient file ahead of time, just once. then you can use it whenever. and -displace 7x10 can be changed to make the effect more or less noticeable. a little more about things composite can do here: http://broadcasterproject.wordpress.com/2010/05/18/how-to-layerremix-videos-with-free-command-line-tools/
make sense?
rock!</description>
		<content:encoded><![CDATA[<p>woop!<br />
ok, i must be honest i have played around with this a lot and not necessarily kept the github gist up to date with all the options.<br />
composite is part of imagemagick and i use it to do a couple different things depending on the situation.<br />
2 main things. 1 - overlay blend images. and in the line you ask about, 2. warp images with an underlying template.<br />
see how this movie has a wavy texture? <a href="http://www.youtube.com/watch?v=DYFlGMv24XI" rel="nofollow">http://www.youtube.com/watch?v=DYFlGMv24XI</a><br />
that&#8217;s what that line does. you have to create the gradient file ahead of time, just once. then you can use it whenever. and -displace 7&#215;10 can be changed to make the effect more or less noticeable. a little more about things composite can do here: <a href="http://broadcasterproject.wordpress.com/2010/05/18/how-to-layerremix-videos-with-free-command-line-tools/" rel="nofollow">http://broadcasterproject.wordpress.com/2010/05/18/how-to-layerremix-videos-with-free-command-line-tools/</a><br />
make sense?<br />
rock!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One Minute Per Day instructions, b1 by Cullen Corley</title>
		<link>http://plebiandesign.com/blog/?p=552&cpage=1#comment-69640</link>
		<dc:creator>Cullen Corley</dc:creator>
		<pubDate>Sat, 01 Oct 2011 16:47:05 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=552#comment-69640</guid>
		<description>Hey Dan,

this is awesome!  just tried it and with only a little bit of editing it worked on my netbook.  also happy about the relatively small HD and CPU footprint these processes seem to have.

one question: what is this line doing?

#composite /home/cullen/Pictures/OMPD/wave_gradient6.png temp.jpg -displace 7x10 screen$DATETIME.jpg

I commented it out because terminal was giving me errors.  but is that the line that puts the webcam and screen capture together?  I'd like to preserve that effect but my setup doesn't seem to know what to do with that line.  error:

composite: unable to open image `/home/cullen/Pictures/OMPD/wave_gradient6.png':  @ error/blob.c/OpenBlob/2498.
composite: unable to open file `/home/cullen/Pictures/OMPD/wave_gradient6.png' @ error/png.c/ReadPNGImage/3072.
composite: unable to open image `temp.jpg':  @ error/blob.c/OpenBlob/2498.
composite: missing an image filename `screen20111001124612.jpg' @ error/composite.c/CompositeImageCommand/1607.</description>
		<content:encoded><![CDATA[<p>Hey Dan,</p>
<p>this is awesome!  just tried it and with only a little bit of editing it worked on my netbook.  also happy about the relatively small HD and CPU footprint these processes seem to have.</p>
<p>one question: what is this line doing?</p>
<p>#composite /home/cullen/Pictures/OMPD/wave_gradient6.png temp.jpg -displace 7&#215;10 screen$DATETIME.jpg</p>
<p>I commented it out because terminal was giving me errors.  but is that the line that puts the webcam and screen capture together?  I&#8217;d like to preserve that effect but my setup doesn&#8217;t seem to know what to do with that line.  error:</p>
<p>composite: unable to open image `/home/cullen/Pictures/OMPD/wave_gradient6.png&#8217;:  @ error/blob.c/OpenBlob/2498.<br />
composite: unable to open file `/home/cullen/Pictures/OMPD/wave_gradient6.png&#8217; @ error/png.c/ReadPNGImage/3072.<br />
composite: unable to open image `temp.jpg&#8217;:  @ error/blob.c/OpenBlob/2498.<br />
composite: missing an image filename `screen20111001124612.jpg&#8217; @ error/composite.c/CompositeImageCommand/1607.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on There&#8217;s a Zoo in Us by Martin Weiss</title>
		<link>http://plebiandesign.com/blog/?p=271&cpage=1#comment-58690</link>
		<dc:creator>Martin Weiss</dc:creator>
		<pubDate>Tue, 26 Jul 2011 20:08:10 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=271#comment-58690</guid>
		<description>I do programs for children about evolution and i would like to see this video. However, I cannot get it to play and can't find it on You Tube. Can you help?

Martin</description>
		<content:encoded><![CDATA[<p>I do programs for children about evolution and i would like to see this video. However, I cannot get it to play and can&#8217;t find it on You Tube. Can you help?</p>
<p>Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Manifestivus by on_a_side</title>
		<link>http://plebiandesign.com/blog/?p=580&cpage=1#comment-24639</link>
		<dc:creator>on_a_side</dc:creator>
		<pubDate>Sun, 28 Nov 2010 00:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=580#comment-24639</guid>
		<description>We don't need this, but "the other side" does.</description>
		<content:encoded><![CDATA[<p>We don&#8217;t need this, but &#8220;the other side&#8221; does.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Manifestivus by ashish nayak</title>
		<link>http://plebiandesign.com/blog/?p=580&cpage=1#comment-23472</link>
		<dc:creator>ashish nayak</dc:creator>
		<pubDate>Thu, 18 Nov 2010 07:05:41 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=580#comment-23472</guid>
		<description>hi !!! nice blog :-)...i'm  an ug student @ iit guwahati...i'l tell wat i feel...


after many many years of thorough scientific reasearch involving huge amounts of wealth and labour invested in it...we humans finally came 2 the "string theory"...which i think says that the world is full of some type of strings..and if those strings vibrate in one manner they behave wat v call as an electron r else if in some other way as som other particles etc...

tell u wat...

decades ago...Lord gautam budha found out the fact that we humans r all composed of vibrations and that if u just calmly sit and do vipassana(it is a meditation technique invented by budha which involves observing various sensations goin on in ur body)...u can infact FEEL THE VIBRATIONS , FEEL THE ENERGY of urself and also the world aroun you...

which i think how much ever science u put can't make u feel...

wat i feel is... hw muchsoever one knows science unless humanity isn't there it's just worth nothing ... and humanity can only be brought through religion ... which i think is the sole cause for the formation of various religions...

we humans are ofcourse potential enough for having a direct experience of the interconnectedness of all  things...

there are many people, many saints in this world who have felt and are feeling...

but y only so few...

may be because , if everyone were able 2 , then this wouldn't be earth !!!

i think this link helps you to know that wat u wanted is possible and many people around the world are infact experiencing this wonderful feeling of interconnectdness ...http://www.dhamma.org/...

                                                                          --thanks for reading =)</description>
		<content:encoded><![CDATA[<p>hi !!! nice blog :-)&#8230;i&#8217;m  an ug student @ iit guwahati&#8230;i&#8217;l tell wat i feel&#8230;</p>
<p>after many many years of thorough scientific reasearch involving huge amounts of wealth and labour invested in it&#8230;we humans finally came 2 the &#8220;string theory&#8221;&#8230;which i think says that the world is full of some type of strings..and if those strings vibrate in one manner they behave wat v call as an electron r else if in some other way as som other particles etc&#8230;</p>
<p>tell u wat&#8230;</p>
<p>decades ago&#8230;Lord gautam budha found out the fact that we humans r all composed of vibrations and that if u just calmly sit and do vipassana(it is a meditation technique invented by budha which involves observing various sensations goin on in ur body)&#8230;u can infact FEEL THE VIBRATIONS , FEEL THE ENERGY of urself and also the world aroun you&#8230;</p>
<p>which i think how much ever science u put can&#8217;t make u feel&#8230;</p>
<p>wat i feel is&#8230; hw muchsoever one knows science unless humanity isn&#8217;t there it&#8217;s just worth nothing &#8230; and humanity can only be brought through religion &#8230; which i think is the sole cause for the formation of various religions&#8230;</p>
<p>we humans are ofcourse potential enough for having a direct experience of the interconnectedness of all  things&#8230;</p>
<p>there are many people, many saints in this world who have felt and are feeling&#8230;</p>
<p>but y only so few&#8230;</p>
<p>may be because , if everyone were able 2 , then this wouldn&#8217;t be earth !!!</p>
<p>i think this link helps you to know that wat u wanted is possible and many people around the world are infact experiencing this wonderful feeling of interconnectdness &#8230;http://www.dhamma.org/&#8230;</p>
<p>                                                                          &#8211;thanks for reading =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Manifestivus by plebiandesign</title>
		<link>http://plebiandesign.com/blog/?p=580&cpage=1#comment-23448</link>
		<dc:creator>plebiandesign</dc:creator>
		<pubDate>Thu, 18 Nov 2010 00:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=580#comment-23448</guid>
		<description>Hi Brian -- 

Thanks for comments. To be very clear - this has nothing to do with 'believing in gods' -- it has to do specifically with the potential for having a direct experience of the interconnectedness of all things [something conceptually grasped by science], and getting beyond exactly the typical battle between anthropomorphic gods and science. Both sides are spending a lot of energy on that level of a discussion that potentially goes much deeper... thanks again for taking the time. -J</description>
		<content:encoded><![CDATA[<p>Hi Brian &#8212; </p>
<p>Thanks for comments. To be very clear - this has nothing to do with &#8216;believing in gods&#8217; &#8212; it has to do specifically with the potential for having a direct experience of the interconnectedness of all things [something conceptually grasped by science], and getting beyond exactly the typical battle between anthropomorphic gods and science. Both sides are spending a lot of energy on that level of a discussion that potentially goes much deeper&#8230; thanks again for taking the time. -J</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Manifestivus by Brian Baum</title>
		<link>http://plebiandesign.com/blog/?p=580&cpage=1#comment-23447</link>
		<dc:creator>Brian Baum</dc:creator>
		<pubDate>Thu, 18 Nov 2010 00:42:08 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=580#comment-23447</guid>
		<description>Provisionally agreeable; however, humanity along with all life is also distinguished by our existance in an ever changing universe that has a tendency to extinguish the same as does the planet itself. All of our technology is worthless if we're not here to enjoy it; and if anything, science has taught me that Gods do not exist : (</description>
		<content:encoded><![CDATA[<p>Provisionally agreeable; however, humanity along with all life is also distinguished by our existance in an ever changing universe that has a tendency to extinguish the same as does the planet itself. All of our technology is worthless if we&#8217;re not here to enjoy it; and if anything, science has taught me that Gods do not exist : (</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Manifestivus by Brian</title>
		<link>http://plebiandesign.com/blog/?p=580&cpage=1#comment-23411</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Wed, 17 Nov 2010 14:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=580#comment-23411</guid>
		<description>Yeah. Let's get it! 
How do I post a blog on here?</description>
		<content:encoded><![CDATA[<p>Yeah. Let&#8217;s get it!<br />
How do I post a blog on here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One Minute Per Day instructions, b1 by dan</title>
		<link>http://plebiandesign.com/blog/?p=552&cpage=1#comment-21830</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Tue, 02 Nov 2010 21:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=552#comment-21830</guid>
		<description>for windows users, i finally got around to trying out jeison's rework.

installed cygwin. http://www.cygwin.com/
installed irfanview , http://www.irfanview.com/ (instead of imagemagick or scrot)
installed ffmpeg (http://ffmpeg.arrozcru.org/)

then a little of messing around with script to get it happy. i also installed emacs as a text editor.

a usefull command is dos2unix.exe which you can run on any text file to clean it off many of the annoying carraige return characters that get left around by windows and cause problems when running scripts in cygwin.</description>
		<content:encoded><![CDATA[<p>for windows users, i finally got around to trying out jeison&#8217;s rework.</p>
<p>installed cygwin. <a href="http://www.cygwin.com/" rel="nofollow">http://www.cygwin.com/</a><br />
installed irfanview , <a href="http://www.irfanview.com/" rel="nofollow">http://www.irfanview.com/</a> (instead of imagemagick or scrot)<br />
installed ffmpeg (http://ffmpeg.arrozcru.org/)</p>
<p>then a little of messing around with script to get it happy. i also installed emacs as a text editor.</p>
<p>a usefull command is dos2unix.exe which you can run on any text file to clean it off many of the annoying carraige return characters that get left around by windows and cause problems when running scripts in cygwin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One Minute Per Day instructions, b1 by Zeitgeist NYC Panel discussion, Tuesday, 19 October, 7pm &#171; Plainfront.com/Dan Paluska</title>
		<link>http://plebiandesign.com/blog/?p=552&cpage=1#comment-20784</link>
		<dc:creator>Zeitgeist NYC Panel discussion, Tuesday, 19 October, 7pm &#171; Plainfront.com/Dan Paluska</dc:creator>
		<pubDate>Fri, 22 Oct 2010 16:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=552#comment-20784</guid>
		<description>[...] making timelpase movies of my computer screen and timelapse movies of my life. Computer screen: http://plebiandesign.com/blog/?p=552 Life: &#60;a href=&#34;http://youtube.com/usemoreproduct &#8220;&#62;http://youtube.com/usemoreproduct  and a ten minute excerpt from a movie compilation i [...]</description>
		<content:encoded><![CDATA[<p>[...] making timelpase movies of my computer screen and timelapse movies of my life. Computer screen: <a href="http://plebiandesign.com/blog/?p=552" rel="nofollow">http://plebiandesign.com/blog/?p=552</a> Life: &lt;a href=&quot;http://youtube.com/usemoreproduct &#8220;&gt;http://youtube.com/usemoreproduct  and a ten minute excerpt from a movie compilation i [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One Minute Per Day instructions, b1 by dan</title>
		<link>http://plebiandesign.com/blog/?p=552&cpage=1#comment-20669</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Thu, 21 Oct 2010 21:28:28 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=552#comment-20669</guid>
		<description>mac users can use macport for both ffmpeg and imagemagick install. 
much easier than ffmpeg install described above.</description>
		<content:encoded><![CDATA[<p>mac users can use macport for both ffmpeg and imagemagick install.<br />
much easier than ffmpeg install described above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kinesthetic Sculpture by Caramoan&#38;nbsp;</title>
		<link>http://plebiandesign.com/blog/?p=215&cpage=1#comment-20521</link>
		<dc:creator>Caramoan&#38;nbsp;</dc:creator>
		<pubDate>Wed, 20 Oct 2010 21:13:13 +0000</pubDate>
		<guid isPermaLink="false">http://plebiandesign.com/blog/?p=215#comment-20521</guid>
		<description>my kids just love to jump all day lon on trampolines, they are addicted to it-"*</description>
		<content:encoded><![CDATA[<p>my kids just love to jump all day lon on trampolines, they are addicted to it-&#8221;*</p>
]]></content:encoded>
	</item>
</channel>
</rss>
