<?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>Alchemist</title>
	<atom:link href="http://alchemi.st/feed/" rel="self" type="application/rss+xml" />
	<link>http://alchemi.st</link>
	<description>Ramblings on the eclectic and dangerous.</description>
	<lastBuildDate>Wed, 22 Feb 2012 22:21:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The actual graylog2 installation instructions</title>
		<link>http://alchemi.st/the-actual-graylog2-installation-instructions/</link>
		<comments>http://alchemi.st/the-actual-graylog2-installation-instructions/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 06:01:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=760</guid>
		<description><![CDATA[Graylog2 rocks, however, the install instructions leave much to be desired, simply because they don&#8217;t mention any of the other required services and how those services should be setup. I&#8217;m here to help. This writeup is going to written for Ubuntu 10.04, however, if you&#8217;re installing graylog, I assume you know how to install packages [...]]]></description>
			<content:encoded><![CDATA[<p>Graylog2 rocks, however, the <a href="https://github.com/Graylog2/graylog2-server/wiki/Installing">install instructions</a> leave much to be desired, simply because they don&#8217;t mention any of the other required services and how those services should be setup.</p>
<p>I&#8217;m here to help.</p>
<p>This writeup is going to written for Ubuntu 10.04, however, if you&#8217;re installing graylog, I assume you know how to install packages on your linux distribution of choice.</p>
<p>First, we&#8217;re going to need all the prerequisite libraries and servers: mongo, elasticsearch, and the java jdk.<br />
 Here are some links that helped me:<br />
 <a href="http://www.mongodb.org/display/DOCS/Ubuntu+and+Debian+packages"> mongodb ppa instructions for Ubuntu</a><br />
 <a href="http://www.mongodb.org/display/DOCS/Security+and+Authentication#SecurityandAuthentication-ConfiguringAuthenticationandSecurity">Mongo user creation.</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
</pre></td><td class="code"><pre class="bash"><span class="kw2">wget</span> https:<span class="sy0">//</span>github.com<span class="sy0">/</span>downloads<span class="sy0">/</span>Graylog2<span class="sy0">/</span>graylog2-server<span class="sy0">/</span>graylog2-server-0.9.6.tar.gz
<span class="kw2">wget</span> https:<span class="sy0">//</span>github.com<span class="sy0">/</span>downloads<span class="sy0">/</span>Graylog2<span class="sy0">/</span>graylog2-web-interface<span class="sy0">/</span>graylog2-web-interface-0.9.6.tar.gz
<span class="kw2">tar</span> <span class="re5">-xzf</span> graylog2-server-0.9.6.tar.gz
<span class="kw2">tar</span> <span class="re5">-xzf</span> graylog2-web-interface-0.9.6.tar.gz
<span class="kw3">cd</span> graylog2-server-0.9.6
<span class="kw2">cp</span> graylog2.conf.example <span class="sy0">/</span>etc<span class="sy0">/</span>graylog2.conf
<span class="kw2">mv</span> graylog2-server-0.9.6 <span class="sy0">/</span>opt<span class="sy0">/</span>graylog2-server<span class="sy0">/</span>
<span class="kw2">tar</span> <span class="re5">-xzf</span> graylog2-web-interface-0.9.6.tar.gz
<span class="kw2">mv</span> graylog2-web-interface-0.9.6 <span class="sy0">/</span>opt<span class="sy0">/</span>graylog2-web-interface
&nbsp;
<span class="co0"># needed to compile ruby</span>
<span class="kw2">apt-get</span> <span class="kw2">install</span> build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-<span class="nu0">0</span> libsqlite3-dev sqlite3 libxml2-dev libxslt-dev <span class="kw2">autoconf</span> libc6-dev ncurses-dev <span class="kw2">automake</span> libtool <span class="kw2">bison</span> subversion libcurl4-openssl-dev
<span class="co0"># getting ruby for the web interface.</span>
<span class="kw2">bash</span> <span class="re5">-s</span> stable <span class="sy0">&lt;</span> http:<span class="sy0">//</span>www.mongodb.org<span class="sy0">/</span>display<span class="sy0">/</span>DOCS<span class="sy0">/</span>Ubuntu+and+Debian+packages
&nbsp;
<span class="co0"># the default ubuntu mongodb is horribly broken</span>
<span class="kw2">apt-key</span> adv <span class="re5">--keyserver</span> keyserver.ubuntu.com <span class="re5">--recv</span> 7F0CEB10
<span class="kw3">echo</span> <span class="st0">&quot;deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen&quot;</span> <span class="sy0">&gt;&gt;</span> <span class="sy0">/</span>etc<span class="sy0">/</span>apt<span class="sy0">/</span>sources.list
<span class="kw2">apt-get</span> update <span class="sy0">&amp;&amp;</span> <span class="kw2">apt-get</span> <span class="kw2">install</span> mongodb-10gen <span class="re5">-y</span>
&nbsp;
<span class="co0"># bind only on the localhost</span>
<span class="kw3">echo</span> <span class="st0">&quot;bind_ip = 127.0.0.1&quot;</span> <span class="sy0">&gt;&gt;</span> <span class="sy0">/</span>etc<span class="sy0">/</span>mongodb.conf
<span class="sy0">/</span>etc<span class="sy0">/</span>init.d<span class="sy0">/</span>mongodb restart
&nbsp;
<span class="co0"># elasticsearch</span>
<span class="kw2">wget</span> https:<span class="sy0">//</span>github.com<span class="sy0">/</span>downloads<span class="sy0">/</span>elasticsearch<span class="sy0">/</span>elasticsearch<span class="sy0">/</span>elasticsearch-0.18.7.tar.gz
<span class="kw2">tar</span> <span class="re5">-xzf</span> elasticsearch-0.18.7.tar.gz
<span class="kw2">mkdir</span> <span class="re5">-p</span> <span class="sy0">/</span>data<span class="sy0">/</span>elasticsearch<span class="sy0">/</span>data
<span class="kw2">mv</span> elasticsearch-0.18.7 <span class="sy0">/</span>usr<span class="sy0">/</span>share<span class="sy0">/</span>elasticsearch
<span class="kw2">mkdir</span> <span class="sy0">/</span>etc<span class="sy0">/</span>elasticsearch
<span class="kw2">cp</span> <span class="sy0">/</span>usr<span class="sy0">/</span>share<span class="sy0">/</span>elasticsearch<span class="sy0">/</span>config<span class="sy0">/</span>elasticsearch.yml <span class="sy0">/</span>etc<span class="sy0">/</span>elasticsearch<span class="sy0">/</span>
&nbsp;
<span class="co0"># only bind to localhost</span>
<span class="kw3">echo</span> <span class="st0">&quot;network.bind_host: 127.0.0.1&quot;</span> <span class="sy0">&gt;&gt;</span> <span class="sy0">/</span>etc<span class="sy0">/</span>elasticsearch<span class="sy0">/</span>elasticsearch.yml</pre></td></tr></table></div>

<p>here is the upstart script for elasticsearch, from <a href="https://gist.github.com/1052015">here</a> written by <a href="https://github.com/tobiasmcnulty"> tobias mcnulty</a>, slightly modified.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
</pre></td><td class="code"><pre class="bash"><span class="co0"># ElasticSearch Service</span>
&nbsp;
description     <span class="st0">&quot;ElasticSearch&quot;</span>
&nbsp;
start on <span class="br0">&#40;</span>net-device-up
          and local-filesystems
          and runlevel <span class="br0">&#91;</span><span class="nu0">2345</span><span class="br0">&#93;</span><span class="br0">&#41;</span>
&nbsp;
stop on runlevel <span class="br0">&#91;</span>016<span class="br0">&#93;</span>
&nbsp;
respawn limit <span class="nu0">10</span> <span class="nu0">5</span>
&nbsp;
<span class="kw2">env</span> <span class="re2">ES_HOME</span>=<span class="sy0">/</span>usr<span class="sy0">/</span>share<span class="sy0">/</span>elasticsearch<span class="sy0">/</span>
<span class="kw2">env</span> <span class="re2">ES_MIN_MEM</span>=256m
<span class="kw2">env</span> <span class="re2">ES_MAX_MEM</span>=2g
<span class="kw2">env</span> <span class="re2">DAEMON</span>=<span class="st0">&quot;<span class="es3">${ES_HOME}</span>/bin/elasticsearch&quot;</span>
<span class="kw2">env</span> <span class="re2">DATA_DIR</span>=<span class="sy0">/</span>data<span class="sy0">/</span>elasticsearch<span class="sy0">/</span>data
<span class="kw2">env</span> <span class="re2">CONFIG_DIR</span>=<span class="sy0">/</span>etc<span class="sy0">/</span>elasticsearch
&nbsp;
console output
&nbsp;
script
  <span class="kw1">if</span> <span class="br0">&#91;</span> <span class="re5">-f</span> <span class="sy0">/</span>etc<span class="sy0">/</span>default<span class="sy0">/</span>elasticsearch <span class="br0">&#93;</span>; <span class="kw1">then</span>
    . <span class="sy0">/</span>etc<span class="sy0">/</span>default<span class="sy0">/</span>elasticsearch
  <span class="kw1">fi</span>
&nbsp;
  <span class="kw2">su</span> <span class="re5">-s</span> <span class="sy0">/</span>bin<span class="sy0">/</span><span class="kw2">dash</span> <span class="re5">-c</span> <span class="st0">&quot;/usr/bin/elasticsearch -f -Des.path.conf=<span class="es2">$CONFIG_DIR</span> -Des.path.home=<span class="es2">$ES_HOME</span> -Des.path.logs=<span class="es2">$LOG_DIR</span> -Des.path.data=<span class="es2">$DATA_DIR</span> -Des.path.work=<span class="es2">$WORK_DIR</span>&quot;</span> elasticsearch
end script</pre></td></tr></table></div>

<p>setting up the mongodb user and database ( yes, I know, 123, but it&#8217;s the default, and mongodb should only be listening to loclahost.)</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="bash">$ .<span class="sy0">/</span>mongo
use admin
db.addUser<span class="br0">&#40;</span><span class="st0">&quot;theadmin&quot;</span>, <span class="st0">&quot;anadminpassword&quot;</span><span class="br0">&#41;</span>
db.auth<span class="br0">&#40;</span><span class="st0">&quot;theadmin&quot;</span>,<span class="st0">&quot;anadminpassword&quot;</span><span class="br0">&#41;</span>
use graylog2
db.addUser<span class="br0">&#40;</span><span class="st0">&quot;grayloguser&quot;</span>,<span class="st0">&quot;123&quot;</span><span class="br0">&#41;</span></pre></td></tr></table></div>

<p>you&#8217;ll also want to specify these values explicitly in the mongoid configuration file in the webserver. In /opt/graylog2-web-interface/config/mongoid.yml add these values, and delete the other production values.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="yml"># or specify values manually
production:
   host: localhost
   port: 27017
   username: grayloguser
   password: 123
   database: graylog2</pre></td></tr></table></div>

<p>the nginx upstart script</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td class="code"><pre class="bash"><span class="co0"># nginx</span>
&nbsp;
description <span class="st0">&quot;nginx http daemon&quot;</span>
start on <span class="br0">&#40;</span>filesystem and net-device-up <span class="re2">IFACE</span>=lo<span class="br0">&#41;</span>
stop on runlevel <span class="br0">&#91;</span><span class="sy0">!</span><span class="nu0">2345</span><span class="br0">&#93;</span>
&nbsp;
<span class="kw2">env</span> <span class="re2">DAEMON</span>=<span class="sy0">/</span>opt<span class="sy0">/</span>nginx<span class="sy0">/</span>sbin<span class="sy0">/</span>nginx
<span class="kw2">env</span> <span class="re2">PID</span>=<span class="sy0">/</span>opt<span class="sy0">/</span>nginx<span class="sy0">/</span>logs<span class="sy0">/</span>nginx.pid
&nbsp;
expect fork
respawn
&nbsp;
pre-start script
        <span class="re1">$DAEMON</span> <span class="re5">-t</span>
        <span class="kw1">if</span> <span class="br0">&#91;</span> <span class="re4">$?</span> <span class="re5">-ne</span> <span class="nu0">0</span> <span class="br0">&#93;</span>
                <span class="kw1">then</span> <span class="kw3">exit</span> <span class="re4">$?</span>
        <span class="kw1">fi</span>
end script
&nbsp;
post-stop script
    start-stop-daemon <span class="re5">--stop</span> <span class="re5">--pidfile</span> <span class="re1">$PID</span> <span class="re5">--name</span> nginx <span class="re5">--exec</span> <span class="re1">$DAEMON</span> <span class="re5">--signal</span> TERM
end script</pre></td></tr></table></div>

<p>and this is what your /opt/nginx/conf/nginx.conf should look like:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
</pre></td><td class="code"><pre class="nginx">#user  nobody;
worker_processes  1;
&nbsp;
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
&nbsp;
pid        logs/nginx.pid;
&nbsp;
events {
    worker_connections  1024;
}
&nbsp;
http {
    passenger_root /opt/graylog2-web-interface/vendor/ruby/1.9.1/gems/passenger-3.0.10;
    passenger_ruby /usr/local/rvm/wrappers/ruby-1.9.2-p290/ruby;
&nbsp;
    include       mime.types;
    default_type  application/octet-stream;
&nbsp;
    #log_format  main  '$remote_addr - $remote_user [$time_local] &quot;$request&quot; '
    #                  '$status $body_bytes_sent &quot;$http_referer&quot; '
    #                  '&quot;$http_user_agent&quot; &quot;$http_x_forwarded_for&quot;';
&nbsp;
    #access_log  logs/access.log  main;
&nbsp;
    sendfile        on;
    #tcp_nopush     on;
&nbsp;
    #keepalive_timeout  0;
    keepalive_timeout  65;
&nbsp;
    gzip  on;
&nbsp;
server {
      listen 80;
      server_name graylog2.headliner.fm;
      root /opt/graylog2-web-interface/public;   #</pre></td></tr></table></div>

<p>I used <a href="https://gist.github.com/1386421">this</a> upstart scripts for the graylog2-server. if you copy and paste it into your /etc/init files (it&#8217;s late, if you need the exact commands, write a comment&#8230;)</p>
<p>now, for the magic:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="bash"><span class="sy0">/</span>etc<span class="sy0">/</span>init.d<span class="sy0">/</span>mongodb start
service elasticsearch start
service graylog2-server start
service nginx start</pre></td></tr></table></div>

<p>and you&#8217;re off.</p>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/the-actual-graylog2-installation-instructions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Poetry! They should have sent a poet. So beautiful. So beautiful&#8230; I had no idea.</title>
		<link>http://alchemi.st/poetry-they-should-have-sent-a-poet-so-beautiful-so-beautiful-i-had-no-idea/</link>
		<comments>http://alchemi.st/poetry-they-should-have-sent-a-poet-so-beautiful-so-beautiful-i-had-no-idea/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 22:05:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[awesome]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=730</guid>
		<description><![CDATA[&#160; You develop an instant global consciousness, a people orientation, an intense dissatisfaction with the state of the world, and a compulsion to do something about it. From out there on the moon, international politics look so petty. You want to grab a politician by the scruff of the neck and drag him a quarter [...]]]></description>
			<content:encoded><![CDATA[<div style='text-align:center;'>
<object type="application/x-shockwave-flash" width="700" height="393" data="http://www.vimeo.com/moogaloop.swf?clip_id=32001208&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA">
	<param name="quality" value="best" />
	<param name="allowfullscreen" value="true" />
	<param name="scale" value="showAll" />
	<param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=32001208&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA" />
	<param name="wmode" value="opaque" />
</object>
</div>
<p>&nbsp;</p>
<blockquote><p>You develop an instant global consciousness, a people orientation, an intense dissatisfaction with the state of the world, and a compulsion to do something about it. From out there on the moon, international politics look so petty. You want to grab a politician by the scruff of the neck and drag him a quarter of a million miles out and say, &#8220;Look at that, you son of a bitch.
</p></blockquote>
<p>— Edgar Mitchell, Apollo 14 astronaut, People magazine, 8 April 1974.</p>
<p><a href="http://eol.jsc.nasa.gov/Videos/CrewEarthObservationsVideos/">High res original footage available from NASA.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/poetry-they-should-have-sent-a-poet-so-beautiful-so-beautiful-i-had-no-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gil Scott Heron and #OWS</title>
		<link>http://alchemi.st/gil-scott-heron-and-ows/</link>
		<comments>http://alchemi.st/gil-scott-heron-and-ows/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 21:27:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=722</guid>
		<description><![CDATA[Excellent remix from one of the greats.]]></description>
			<content:encoded><![CDATA[<object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F17198842&#038;g=1&#038;"></param><embed height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F17198842&#038;g=1&#038;" type="application/x-shockwave-flash" width="100%"> </embed> </object>
<p>Excellent remix from one of the greats.</p>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/gil-scott-heron-and-ows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Intuitive Mind is a sacred gift.</title>
		<link>http://alchemi.st/the-intuitive-mind-is-a-sacred-gift/</link>
		<comments>http://alchemi.st/the-intuitive-mind-is-a-sacred-gift/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 19:30:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[awesome]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=719</guid>
		<description><![CDATA[and the rational mind is a faithful servant. &#160;]]></description>
			<content:encoded><![CDATA[<p>and the rational mind is a faithful servant.</p>
<span style="text-align:center; display: block;"><a href="http://alchemi.st/the-intuitive-mind-is-a-sacred-gift/"><img src="http://img.youtube.com/vi/dFs9WO2B8uI/2.jpg" alt="" /></a></span>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/the-intuitive-mind-is-a-sacred-gift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Jobs</title>
		<link>http://alchemi.st/steve-jobs/</link>
		<comments>http://alchemi.st/steve-jobs/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 00:42:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=716</guid>
		<description><![CDATA[Remembering that I&#8217;ll be dead soon is the most important tool I&#8217;ve ever encountered to help me make the big choices in life. Because almost everything — all external expectations, all pride, all fear of embarrassment or failure &#8211; these things just fall away in the face of death, leaving only what is truly important. [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Remembering that I&#8217;ll be dead soon is the most important tool I&#8217;ve ever encountered to help me make the big choices in life. Because almost everything — all external expectations, all pride, all fear of embarrassment or failure &#8211; these things just fall away in the face of death, leaving only what is truly important. Remembering that you are going to die is the best way I know to avoid the trap of thinking you have something to lose. You are already naked. There is no reason not to follow your heart.</p></blockquote>
<p>&#8212;Steve Jobs</p>
<p><a href="http://www.youtube.com/watch?v=D1R-jKKp3NA">2006 Stamford Commencement Address</a></p>
<p>This quote changed my life when I heard it two years ago. You will be missed, Steve, but damn, well done.</p>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/steve-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh When The Saint Go Marching In.</title>
		<link>http://alchemi.st/oh-when-the-saint-go-marching-in/</link>
		<comments>http://alchemi.st/oh-when-the-saint-go-marching-in/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 22:21:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[awesome]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=709</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://alchemi.st/oh-when-the-saint-go-marching-in/"><img src="http://img.youtube.com/vi/wyLjbMBpGDA/2.jpg" alt="" /></a></span>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/oh-when-the-saint-go-marching-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Richard Feynman on doubt, uncertainty and religion</title>
		<link>http://alchemi.st/richard-feynman-on-doubt-uncertainty-and-religion/</link>
		<comments>http://alchemi.st/richard-feynman-on-doubt-uncertainty-and-religion/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 20:05:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[awesome]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=705</guid>
		<description><![CDATA[&#160; Update: Feynman on Beauty]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://alchemi.st/richard-feynman-on-doubt-uncertainty-and-religion/"><img src="http://img.youtube.com/vi/3zi699WzAL0/2.jpg" alt="" /></a></span>
<p>&nbsp;</p>
<p>Update: Feynman on Beauty</p>
<span style="text-align:center; display: block;"><a href="http://alchemi.st/richard-feynman-on-doubt-uncertainty-and-religion/"><img src="http://img.youtube.com/vi/cRmbwczTC6E/2.jpg" alt="" /></a></span>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/richard-feynman-on-doubt-uncertainty-and-religion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pleasure in Intelligent Dissent</title>
		<link>http://alchemi.st/pleasure-in-intelligent-dissent/</link>
		<comments>http://alchemi.st/pleasure-in-intelligent-dissent/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 18:36:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[awesome]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=703</guid>
		<description><![CDATA[Find more pleasure in intelligent dissent that in passive agreement, for, if you value intelligence as you should, the former implies a deeper agreement than the latter. - Bertrand Russell]]></description>
			<content:encoded><![CDATA[<blockquote><p>Find more pleasure in intelligent dissent that in passive agreement, for, if you value intelligence as you should, the former implies a deeper agreement than the latter.</p></blockquote>
<p>- Bertrand Russell</p>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/pleasure-in-intelligent-dissent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print Your Own Gun At Home</title>
		<link>http://alchemi.st/print-your-own-gun-at-home/</link>
		<comments>http://alchemi.st/print-your-own-gun-at-home/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 19:14:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=699</guid>
		<description><![CDATA[Anyone with a 3d printer, available from several different sources at prices close to or under $1,000, can now print out parts for an AR-15 assault rifle. The AR-15 lower receiver and A 3d printable model for a 5 round magazine . The Lower Receiver is the frame that holds together all the other pieces of the firearm. [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone with a 3d printer, available from <a href="http://www.origo3dprinting.com/what-is-origo/">several</a> <a href="http://www.makerbot.com/">different</a> <a href="http://blog.ultimaker.com/">sources</a> <a href="http://www.origo3dprinting.com/what-is-origo/">at</a> prices close to or under $1,000, can now print out parts for an <a href="http://en.wikipedia.org/wiki/AR-15">AR-15 assault rifle</a>.</p>

<a href='http://alchemi.st/print-your-own-gun-at-home/testcomponent_display_medium/' title='testComponent_display_medium'><img width="150" height="138" src="http://alchemi.st/files/2011/09/testComponent_display_medium-150x138.jpg" class="attachment-thumbnail" alt="testComponent_display_medium" title="testComponent_display_medium" /></a>
<a href='http://alchemi.st/print-your-own-gun-at-home/imag0247_display_medium/' title='IMAG0247_display_medium'><img width="150" height="100" src="http://alchemi.st/files/2011/09/IMAG0247_display_medium-150x100.jpg" class="attachment-thumbnail" alt="IMAG0247_display_medium" title="IMAG0247_display_medium" /></a>

<p>The <a href="http://www.thingiverse.com/thing:11669"> AR-15 lower receiver</a> and <a href="http://www.thingiverse.com/thing:11636">A 3d printable model for a 5 round magazine</a> .</p>
<blockquote><p>The Lower Receiver is the frame that holds together all the other pieces of the firearm. In the States, all the other pieces can be purchased without a permit &#8211; over the counter or through the post. The Lower Receiver is the only part which requires a background check or any other kind of paperwork before purchase.</p>
<p>Typically this part is made of aluminium. A rifle with a Lower Receiver made of plastic can be perfectly functional.</p></blockquote>
<p>The revolution will be printed at home.</p>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/print-your-own-gun-at-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Does It Feel Like to Fly Over Planet Earth?</title>
		<link>http://alchemi.st/what-does-it-feel-like-to-fly-over-planet-earth/</link>
		<comments>http://alchemi.st/what-does-it-feel-like-to-fly-over-planet-earth/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 22:36:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[awesome]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://alchemi.st/?p=695</guid>
		<description><![CDATA[Photographs from ISS the stitched together into a fantastic short video. This movie begins over the Pacific Ocean and continues over North and South America before entering daylight near Antarctica. Visible cities, countries and landmarks include (in order) Vancouver Island, Victoria, Vancouver, Seattle, Portland, San Fransisco, Los Angeles. Phoenix. Multiple cities in Texas, New Mexico [...]]]></description>
			<content:encoded><![CDATA[<p>Photographs from ISS the stitched together into a <a href="http://www.youtube.com/watch?v=74mhQyuyELQ">fantastic short video</a>.</p>
<blockquote><p>This movie begins over the Pacific Ocean and continues over North and South America before entering daylight near Antarctica. Visible cities, countries and landmarks include (in order) Vancouver Island, Victoria, Vancouver, Seattle, Portland, San Fransisco, Los Angeles. Phoenix. Multiple cities in Texas, New Mexico and Mexico. Mexico City, the Gulf of Mexico, the Yucatan Peninsula, Lightning in the Pacific Ocean, Guatemala, Panama, Columbia, Ecuador, Peru, Chile, and the Amazon. Also visible is the earths ionosphere (thin yellow line) and the stars of our galaxy.</p></blockquote>
<p><span style="text-align:center; display: block;"><a href="http://alchemi.st/what-does-it-feel-like-to-fly-over-planet-earth/"><img src="http://img.youtube.com/vi/74mhQyuyELQ/2.jpg" alt="" /></a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://alchemi.st/what-does-it-feel-like-to-fly-over-planet-earth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc (User agent is rejected)
Database Caching 53/55 queries in 0.008 seconds using apc
Object Caching 592/705 objects using apc

Served from: monkeyonfire.org @ 2012-02-23 01:59:36 -->
