<?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>/dev/null</title>
	<atom:link href="http://notthinking.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://notthinking.wordpress.com</link>
	<description>Emacs, Linux , and all things open</description>
	<lastBuildDate>Mon, 19 Apr 2010 11:08:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='notthinking.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>/dev/null</title>
		<link>http://notthinking.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://notthinking.wordpress.com/osd.xml" title="/dev/null" />
	<atom:link rel='hub' href='http://notthinking.wordpress.com/?pushpress=hub'/>
		<item>
		<title>First Attempt</title>
		<link>http://notthinking.wordpress.com/2009/05/16/first-attempt/</link>
		<comments>http://notthinking.wordpress.com/2009/05/16/first-attempt/#comments</comments>
		<pubDate>Sat, 16 May 2009 11:40:04 +0000</pubDate>
		<dc:creator>notthinking</dc:creator>
				<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://notthinking.wordpress.com/2009/05/16/first-attempt/</guid>
		<description><![CDATA[I took, my first stab at my own emacs-lisp function. The purpose being to make the *compilation* buffer disapear if there is no error. Initial plans had a few more things I wanted, however they would have resulted in a very inflexable function, which appears to be the very opposite of emacs. My first attempt [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=notthinking.wordpress.com&amp;blog=6380428&amp;post=83&amp;subd=notthinking&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I took, my first stab at my own emacs-lisp function. The purpose being<br />
to make the *compilation* buffer disapear if there is no error. Initial<br />
plans had a few more things I wanted, however they would have resulted<br />
in a very inflexable function, which appears to be the very opposite of emacs.</p>
<p>My first attempt</p>
<pre>
(defun wramp-build (input) ;; how about filename
  ;;interactive?
  if ((compile ./build.sh input)
      (switch-to-buffer(remote))))
</pre>
<p>However a kind user bpalmer on #emacs pointed out that compile is an<br />
asynchronous<br />
process, which is a good thing, a different approach was neccesery. In<br />
case anyones curious remote is program based on minicom used for serial<br />
communication with computer designed and build at the Waikato University<br />
for teaching assembly on, wramp is the name of said computer. The<br />
following was supplied by bpalmer from the emacs-wiki</p>
<pre>

(setq compilation-finish-functions 'compile-autoclose)
(defun compile-autoclose (buffer string)
  (cond ((string-match "finished" string)
	 (bury-buffer "*compilation*")
	 (winner-undo)
	 (message "Build successful."))
	(t
	 (message "Compilation exited abnormally: %s" string))))
</pre>
<p>While I know I wouldnt have written that myself Im pretty sure I<br />
understand what it does. All I know is I cant wait till exams finnish<br />
as I will have time to start learning more emacs lisp.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/notthinking.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/notthinking.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/notthinking.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/notthinking.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/notthinking.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/notthinking.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/notthinking.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/notthinking.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/notthinking.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/notthinking.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/notthinking.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/notthinking.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/notthinking.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/notthinking.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=notthinking.wordpress.com&amp;blog=6380428&amp;post=83&amp;subd=notthinking&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://notthinking.wordpress.com/2009/05/16/first-attempt/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8531338b5d5f9565b2ecc3becc4ae2b1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">notthinking</media:title>
		</media:content>
	</item>
		<item>
		<title>Section 92A</title>
		<link>http://notthinking.wordpress.com/2009/03/12/section-92a/</link>
		<comments>http://notthinking.wordpress.com/2009/03/12/section-92a/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 05:42:57 +0000</pubDate>
		<dc:creator>notthinking</dc:creator>
				<category><![CDATA[Copyright]]></category>

		<guid isPermaLink="false">http://notthinking.wordpress.com/?p=66</guid>
		<description><![CDATA[Just doing my part to prevent Section 92A being passed of the copyright bill. Giving the rights for users internet connections for being suspected of copyright is not acceptable espically after reading this news posting availble here. Do what you can do to help by visiting creative freedom and signing the partition, joining the blackout [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=notthinking.wordpress.com&amp;blog=6380428&amp;post=66&amp;subd=notthinking&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just doing my part to prevent Section 92A being passed of the copyright bill. Giving the rights for users internet connections for being suspected of copyright is not acceptable espically after reading this news posting <a href="http://scoop.co.nz/stories/PO0903/S00121.htm">availble here</a>. Do what you can do to help by visiting <a href="http://creativefreedom.org.nz/thanks.html"> creative freedom</a> and signing the partition, joining the blackout or posting <a href="http://creativefreedom.org.nz"><img src="http://creativefreedom.org.nz/library/offsite/s92a.gif" alt="New Zealand's new Copyright Law presumes 'Guilt Upon Accusation' and will Cut Off Internet Connections without a trial. CreativeFreedom.org.nz is against this unjust law - help us"></a>this image on your website. What ive read of the rest of the bill sounds bennifial for both the artists and us the enjoyer of good music and movies.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/notthinking.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/notthinking.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/notthinking.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/notthinking.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/notthinking.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/notthinking.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/notthinking.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/notthinking.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/notthinking.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/notthinking.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/notthinking.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/notthinking.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/notthinking.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/notthinking.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=notthinking.wordpress.com&amp;blog=6380428&amp;post=66&amp;subd=notthinking&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://notthinking.wordpress.com/2009/03/12/section-92a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8531338b5d5f9565b2ecc3becc4ae2b1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">notthinking</media:title>
		</media:content>

		<media:content url="http://creativefreedom.org.nz/library/offsite/s92a.gif" medium="image">
			<media:title type="html">New Zealand's new Copyright Law presumes 'Guilt Upon Accusation' and will Cut Off Internet Connections without a trial. CreativeFreedom.org.nz is against this unjust law - help us</media:title>
		</media:content>
	</item>
		<item>
		<title>Arch Linux Dialup</title>
		<link>http://notthinking.wordpress.com/2009/02/03/arch-linux-dialup/</link>
		<comments>http://notthinking.wordpress.com/2009/02/03/arch-linux-dialup/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 09:38:38 +0000</pubDate>
		<dc:creator>notthinking</dc:creator>
				<category><![CDATA[Arch Linux]]></category>

		<guid isPermaLink="false">http://notthinking.wordpress.com/2009/02/03/arch-linux-dialup/</guid>
		<description><![CDATA[My first useful post and the first from emacs. Coming up to christmas I, decided that a change in distro was in order. Arch Linux sounded right up my alley, but unfortuntley I was stuck on a dialup internet connection at the time, and the Arch Linux installer doesnt include pppconfig. Of course I didnt [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=notthinking.wordpress.com&amp;blog=6380428&amp;post=41&amp;subd=notthinking&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My first useful post and the first from emacs.</p>
<p>Coming up to christmas I, decided that a change in distro was in<br />
order. Arch Linux sounded right up my alley, but unfortuntley I was<br />
stuck on a dialup internet connection at the time, and the Arch Linux<br />
installer doesnt include pppconfig. Of course I didnt think of this<br />
until I had fdisked my old Gentoo partition. This left my in a bit of a<br />
predicument. Do I wait a few days and borrow a mates broadband<br />
connection, (yeah right) or try hack up the pkgbuild to install from a<br />
locally downloaded package (downloaded on different computer). That<br />
worked but the syntax was a bit odd it still thought it needed to be on<br />
the web. So I thought I would share the compiled packages for anyone in<br />
a similar situtation. These can be installed simply by pacman -U<br />
&lt;pkgname&gt; </p>
<p>Unfortunaley I can&#8217;t upload the packages, leave me a comment and I will<br />
email them or something.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/notthinking.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/notthinking.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/notthinking.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/notthinking.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/notthinking.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/notthinking.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/notthinking.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/notthinking.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/notthinking.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/notthinking.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/notthinking.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/notthinking.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/notthinking.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/notthinking.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=notthinking.wordpress.com&amp;blog=6380428&amp;post=41&amp;subd=notthinking&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://notthinking.wordpress.com/2009/02/03/arch-linux-dialup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8531338b5d5f9565b2ecc3becc4ae2b1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">notthinking</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://notthinking.wordpress.com/2009/01/30/hello-world/</link>
		<comments>http://notthinking.wordpress.com/2009/01/30/hello-world/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 05:20:13 +0000</pubDate>
		<dc:creator>notthinking</dc:creator>
				<category><![CDATA[Announcment]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Thanks for looking at my new blog, It will mainly be about programming and open source software, but anything else may also appear. In the short term I intend to set it up so I can post directly from emacs, and change the theme (not sure on which yet). At some point I also intend [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=notthinking.wordpress.com&amp;blog=6380428&amp;post=1&amp;subd=notthinking&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>Thanks for looking at my new blog, It will mainly be about programming and open source software, but anything else may also appear. In the short term I intend to set it up so I can post directly from <span lang="en-NZ">emacs, and change the theme (not sure on which yet). At some point I also intend to migrate to a dedicated web host (I also need a domain name, feel free to leave suggestions.)</p>
<p>My main reason for starting this blog, was to hopefully give back to the communinty by any way possible, secondly I enjoy reading other peoples tech blogs and it would be a bit sad if I didnt attempt something similar.</span></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/notthinking.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/notthinking.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/notthinking.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/notthinking.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/notthinking.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/notthinking.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/notthinking.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/notthinking.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/notthinking.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/notthinking.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/notthinking.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/notthinking.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/notthinking.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/notthinking.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=notthinking.wordpress.com&amp;blog=6380428&amp;post=1&amp;subd=notthinking&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://notthinking.wordpress.com/2009/01/30/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8531338b5d5f9565b2ecc3becc4ae2b1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">notthinking</media:title>
		</media:content>
	</item>
	</channel>
</rss>
