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

<channel>
	<title>Daniel Snider</title>
	<atom:link href="http://danielsnider.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://danielsnider.wordpress.com</link>
	<description>My random blog for random things</description>
	<lastBuildDate>Sun, 06 Mar 2011 17:58:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='danielsnider.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Daniel Snider</title>
		<link>http://danielsnider.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://danielsnider.wordpress.com/osd.xml" title="Daniel Snider" />
	<atom:link rel='hub' href='http://danielsnider.wordpress.com/?pushpress=hub'/>
		<item>
		<title>chroot tips</title>
		<link>http://danielsnider.wordpress.com/2011/02/02/chroot-tips/</link>
		<comments>http://danielsnider.wordpress.com/2011/02/02/chroot-tips/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 03:02:57 +0000</pubDate>
		<dc:creator>danielsnider</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://danielsnider.wordpress.com/?p=138</guid>
		<description><![CDATA[What is chroot? chroot is a standard Unix command that changes the apparent root directory for the current running process and its children. chroot can be used to create a &#8220;jailed&#8221; user who is locked into a chosen directory, unable to access anything outside. The thing about chroot is within the &#8220;jailed&#8221; directory you must copy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=138&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:20px;font-weight:bold;"><strong>What is chroot?</strong></span></p>
<p>chroot is a standard Unix command that changes the apparent root directory for the current running process and its children. chroot can be used to create a &#8220;jailed&#8221; user who is locked into a chosen directory, unable to access anything outside. The thing about chroot is within the &#8220;jailed&#8221; directory you must copy over all the files, commands and libraries for basic operation of a shell. If you want to use it in a production environment I suggest you check out <a href="http://olivier.sessink.nl/jailkit/jailkit.8.html">jailkit</a> for a more secure and featured solution.  I setup a chroot to run Cognos 10.</p>
<p><img class="alignleft size-full wp-image-140" title="jail" src="http://danielsnider.files.wordpress.com/2011/02/jail.png?w=450&#038;h=96" alt="" width="450" height="96" /></p>
<h2>Here are some tips:</h2>
<p>-To force a user to always operates in a chroot set their shell (the 7th field in /etc/passwd) to be a file that executes something like below[1]. You can also set the user&#8217;s shell when creating it with the -s option [2]</p>
<p>[1] sudo /usr/bin/chroot /home/$USER /bin/bash</p>
<p>[2] useradd -d /tmp -s /bin/chrootshell $user</p>
<p>-To copying the commands you want to the chroot consists of two commands: &#8216;which [COMMAND]&#8216; to find where the command binary is located and &#8216;ldd [PATH/OF/A/COMMAND]&#8216; to find the libraries required by that command. Copy the resulting files for each of these commands and they will work in the chroot.</p>
<p>-When in doubt copy all the libraries at /lib/ and /usr/lib/ if chroot programs arn&#8217;t working</p>
<p>-don&#8217;t put a C compiler into the chroot or they will be able to bust out (so I hear)</p>
<p>-I found that Cognos 10 requires a couple /etc/ files to be copied to the chroot to run in addition to passwd, profile and hostname. I just copied everything in /etc/ to the chroot (this is probably unsecure, can anyone confirm my suspicion?)</p>
<p>-If the program your running in chroot is complicated, you may need to give it proc access. Cognos needed it for java to be able to schedule itself on the CPU. You can mount it like this:<br />
mount -t proc linprocfs /home/c10dp05c/proc</p>
<p>to make this persist after reboots copy the code below into the file /etc/init.d/boot.local</p>
<pre style="padding-left:30px;">users=$(cat /etc/passwd | grep [something that identifies the user you want proc access for]  | cut -d: -f1)
for u in $users #if you have multiple users
do
 u=/home/$u/proc
 mount -t proc linprocfs $u
done</pre>
<p>-Best tutorial <a href="http://www.antionline.com/showthread.php?t=248890">http://www.antionline.com/showthread.php?t=248890</a> lots to learn here&#8230; some of what I learned is on this post.</p>
<p>-Again check out <a href="http://olivier.sessink.nl/jailkit/jailkit.8.html">jailkit</a> for a more secure and featured solution.</p>
<p>Good luck!</p>
<br />Filed under: <a href='http://danielsnider.wordpress.com/category/linux/'>Linux</a>, <a href='http://danielsnider.wordpress.com/category/security/'>Security</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsnider.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsnider.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsnider.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsnider.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielsnider.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielsnider.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielsnider.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielsnider.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsnider.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsnider.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsnider.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsnider.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsnider.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsnider.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=138&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielsnider.wordpress.com/2011/02/02/chroot-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/462abc9c38835c836365fd20bbd428c7?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=R" medium="image">
			<media:title type="html">danielsnider</media:title>
		</media:content>

		<media:content url="http://danielsnider.files.wordpress.com/2011/02/jail.png" medium="image">
			<media:title type="html">jail</media:title>
		</media:content>
	</item>
		<item>
		<title>New Google Maps Imagery for GTA</title>
		<link>http://danielsnider.wordpress.com/2009/12/23/new-google-maps-imagery-for-gta/</link>
		<comments>http://danielsnider.wordpress.com/2009/12/23/new-google-maps-imagery-for-gta/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 05:49:40 +0000</pubDate>
		<dc:creator>danielsnider</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[gta]]></category>
		<category><![CDATA[uoit]]></category>
		<category><![CDATA[satellite]]></category>

		<guid isPermaLink="false">http://danielsnider.wordpress.com/?p=96</guid>
		<description><![CDATA[Google has updated the satellite images on Google Maps from Oshawa all the way to Hamilton. It looks great. No clouds and perfect lighting, the Greater Toronto Area has never looked so crisp! You can now zoom in to the max, which is new I believe is new. The pictures seem to be from the summer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=96&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-97" href="http://danielsnider.wordpress.com/2009/12/23/new-google-maps-imagery-for-gta/toronto-ex-2009-sat/"><img class="alignleft size-full wp-image-97" title="toronto ex 2009 sat" src="http://danielsnider.files.wordpress.com/2009/12/toronto-ex-2009-sat.png?w=510&#038;h=350" alt="" width="510" height="350" /></a></p>
<p>Google has updated the satellite images on Google Maps from Oshawa all the way to Hamilton. It looks great. No clouds and perfect lighting, the Greater Toronto Area has never looked so crisp! You can now zoom in to the max, which is new I believe is new. The pictures seem to be from the summer as the above image shows Toronto&#8217;s EX in progress. That narrows it the date down to between August 21 and September 7th, 2009. How nice! My University, UOIT, now displays the new engineering building and wind tunnel that are under construction.</p>
<p><a rel="attachment wp-att-98" href="http://danielsnider.wordpress.com/2009/12/23/new-google-maps-imagery-for-gta/uoit-new-sat-image/"><img class="alignleft size-full wp-image-98" title="UOIT new sat image" src="http://danielsnider.files.wordpress.com/2009/12/uoit-new-sat-image.png?w=510&#038;h=309" alt="" width="510" height="309" /></a></p>
<br />Posted in Uncategorized Tagged: google, google maps, gta, maps, satellite, uoit <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsnider.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsnider.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsnider.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsnider.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielsnider.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielsnider.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielsnider.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielsnider.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsnider.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsnider.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsnider.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsnider.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsnider.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsnider.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=96&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielsnider.wordpress.com/2009/12/23/new-google-maps-imagery-for-gta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/462abc9c38835c836365fd20bbd428c7?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=R" medium="image">
			<media:title type="html">danielsnider</media:title>
		</media:content>

		<media:content url="http://danielsnider.files.wordpress.com/2009/12/toronto-ex-2009-sat.png" medium="image">
			<media:title type="html">toronto ex 2009 sat</media:title>
		</media:content>

		<media:content url="http://danielsnider.files.wordpress.com/2009/12/uoit-new-sat-image.png" medium="image">
			<media:title type="html">UOIT new sat image</media:title>
		</media:content>
	</item>
		<item>
		<title>End of UOIT Mobile Learning Laptops (Update: DISPROVED)</title>
		<link>http://danielsnider.wordpress.com/2009/11/17/end-of-uoit-mobile-learning-laptops/</link>
		<comments>http://danielsnider.wordpress.com/2009/11/17/end-of-uoit-mobile-learning-laptops/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 21:00:11 +0000</pubDate>
		<dc:creator>danielsnider</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://danielsnider.wordpress.com/?p=84</guid>
		<description><![CDATA[Update: Only Durham College students will have a choice of laptops next year. UOIT students will still have to buy into the mobile learning program. A reporter from The Chronicle today was interviewing students in the Commons about what they think about UOIT ending the laptop program. She stated that next year students will have the choice of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=84&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Update: Only Durham College students will have a choice of laptops next year. UOIT students will still have to buy into the mobile learning program.</p>
<p>A reporter from The Chronicle today was interviewing students in the Commons about what they think about UOIT ending the laptop program. She stated that next year students will have the choice of either having their own laptop or purchasing the school laptop at a discount. The reported said that the decison has already been made (for Durham College students).</p>
<p><a href="http://danielsnider.files.wordpress.com/2009/11/uoit-laptop.png"><img class="alignleft size-full wp-image-86" title="uoit laptop" src="http://danielsnider.files.wordpress.com/2009/11/uoit-laptop.png?w=510&#038;h=158" alt="" width="510" height="158" /></a></p>
<p><span style="background-color:#ffffff;">Durham college technology students use the same model of laptops as the UOIT students. In the past they were sold to their students at the discounted price of $600 each. Note that none of the schools plans have been officially announced.</span></p>
<p><span style="background-color:#ffffff;">And now my rant:</span></p>
<p>The mobile learning program is really not useful. It&#8217;s expensive. It support is unhelpful, for example: 3 months waiting for a replacement battery &amp; their solution to any problem is reimaging your computer, meaning you lose everything.  The version of Windows XP they put on the computer and want you to use is so slow and buggy. It really makes it not worth getting having their software. I put my own operating system on my computer, and many of my friends do too. It defeats the point of everything. Which is where I find myself at the start again, there is no good point in having the laptop program.</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsnider.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsnider.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsnider.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsnider.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielsnider.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielsnider.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielsnider.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielsnider.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsnider.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsnider.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsnider.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsnider.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsnider.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsnider.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=84&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielsnider.wordpress.com/2009/11/17/end-of-uoit-mobile-learning-laptops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/462abc9c38835c836365fd20bbd428c7?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=R" medium="image">
			<media:title type="html">danielsnider</media:title>
		</media:content>

		<media:content url="http://danielsnider.files.wordpress.com/2009/11/uoit-laptop.png" medium="image">
			<media:title type="html">uoit laptop</media:title>
		</media:content>
	</item>
		<item>
		<title>Alexisonfire and Metric at UOIT &#8211; The Library Skybox Experience</title>
		<link>http://danielsnider.wordpress.com/2009/09/14/alexisonfire-metric-at-uoit-the-library-skybox-experience/</link>
		<comments>http://danielsnider.wordpress.com/2009/09/14/alexisonfire-metric-at-uoit-the-library-skybox-experience/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 21:51:20 +0000</pubDate>
		<dc:creator>danielsnider</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://danielsnider.wordpress.com/?p=59</guid>
		<description><![CDATA[Just 7 year&#8217;s into the world of academia, the University of Ontario Institute of Technology is having both Alexisonfire and Metric on the Quad for a night of fun and mayhem. Our school has the best O-week band from what I&#8217;ve heard and because of the popularity of the bands they sold out of tickets [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=59&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just 7 year&#8217;s into the world of academia, the University of Ontario Institute of Technology is having both Alexisonfire and Metric on the Quad for a night of fun and mayhem.</p>
<p>Our school has the best O-week band from what I&#8217;ve heard and because of the popularity of the bands they sold out of tickets several days in advance. So I&#8217;m in the library now, sitting a in a comfy arm chair watching everything happen just outside the window. Sound is great too!</p>

<a href='http://danielsnider.wordpress.com/2009/09/14/alexisonfire-metric-at-uoit-the-library-skybox-experience/dsci1359/' title='DSCI1359'><img width="150" height="112" src="http://danielsnider.files.wordpress.com/2009/09/dsci1359.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="DSCI1359" title="DSCI1359" /></a>
<a href='http://danielsnider.wordpress.com/2009/09/14/alexisonfire-metric-at-uoit-the-library-skybox-experience/dsci1360/' title='DSCI1360'><img width="150" height="112" src="http://danielsnider.files.wordpress.com/2009/09/dsci1360.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="DSCI1360" title="DSCI1360" /></a>
<a href='http://danielsnider.wordpress.com/2009/09/14/alexisonfire-metric-at-uoit-the-library-skybox-experience/dsci1361/' title='Comfort Class'><img width="150" height="112" src="http://danielsnider.files.wordpress.com/2009/09/dsci1361.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Comfort Class" title="Comfort Class" /></a>

<p>Update:</p>
<span style="text-align:center; display: block;"><a href="http://danielsnider.wordpress.com/2009/09/14/alexisonfire-metric-at-uoit-the-library-skybox-experience/"><img src="http://img.youtube.com/vi/ut2cT5GxN7U/2.jpg" alt="" /></a></span>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsnider.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsnider.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsnider.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsnider.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielsnider.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielsnider.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielsnider.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielsnider.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsnider.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsnider.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsnider.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsnider.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsnider.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsnider.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=59&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielsnider.wordpress.com/2009/09/14/alexisonfire-metric-at-uoit-the-library-skybox-experience/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/462abc9c38835c836365fd20bbd428c7?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=R" medium="image">
			<media:title type="html">danielsnider</media:title>
		</media:content>
	</item>
		<item>
		<title>Ask Randall Munroe (xkcd)</title>
		<link>http://danielsnider.wordpress.com/2009/09/14/ask-randall-munroe-xkcd/</link>
		<comments>http://danielsnider.wordpress.com/2009/09/14/ask-randall-munroe-xkcd/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 08:49:39 +0000</pubDate>
		<dc:creator>danielsnider</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://danielsnider.wordpress.com/?p=44</guid>
		<description><![CDATA[Randall Munroe is probably the most respected cewebrity for his age. A very talented pencil and paper webcomic artist who depicts math, programming, romance and drama. He&#8217;s a fan of just answering questions and making jokes so I want give a heads up that he&#8217;ll be answering questions September 21th viewable live from Justive.tv. The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=44&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Randall Munroe is probably the most respected cewebrity for his age. A very talented pencil and paper webcomic artist who depicts math, programming, romance and drama. He&#8217;s a fan of just answering questions and making jokes so I want give a heads up that he&#8217;ll be answering questions September 21th viewable live from Justive.tv. The questions come from redditers and the event is hosted by the Electrontic Frontier Foundation. So it should be fun!</p>
<p>More details to come, maybe we&#8217;ll do a viewing party!</p>
<p><img class="aligncenter size-full wp-image-45" title="symbol" src="http://danielsnider.files.wordpress.com/2009/09/symbol1.jpg?w=510&#038;h=119" alt="symbol" width="510" height="119" /></p>
<p><a href="http://blog.reddit.com/2009/09/ask-randall-munroe-xkcd-anything-hear.html">read</a>, <a href="http://breadpig.com/blog/2009/09/08/xkcd-book-tour-announced/">read</a></p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsnider.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsnider.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsnider.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsnider.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielsnider.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielsnider.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielsnider.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielsnider.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsnider.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsnider.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsnider.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsnider.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsnider.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsnider.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsnider.wordpress.com&amp;blog=8263334&amp;post=44&amp;subd=danielsnider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielsnider.wordpress.com/2009/09/14/ask-randall-munroe-xkcd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/462abc9c38835c836365fd20bbd428c7?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=R" medium="image">
			<media:title type="html">danielsnider</media:title>
		</media:content>

		<media:content url="http://danielsnider.files.wordpress.com/2009/09/symbol1.jpg" medium="image">
			<media:title type="html">symbol</media:title>
		</media:content>
	</item>
	</channel>
</rss>
