<?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>Parks Computing &#187; Lisp</title>
	<atom:link href="http://www.parkscomputing.com/labels/lisp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.parkscomputing.com</link>
	<description>Pedagogy for the autodidactic programmer</description>
	<lastBuildDate>Thu, 12 Jan 2012 22:48:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Lisp Interpreter in JavaScript</title>
		<link>http://www.parkscomputing.com/2005/02/lisp-interpreter-in-javascript/</link>
		<comments>http://www.parkscomputing.com/2005/02/lisp-interpreter-in-javascript/#comments</comments>
		<pubDate>Wed, 23 Feb 2005 21:55:00 +0000</pubDate>
		<dc:creator>Paul Parks</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Lisp]]></category>

		<guid isPermaLink="false">http://nightowl/?p=15</guid>
		<description><![CDATA[>Lisp is becoming a theme here, apparently. I suppose I&#8217;ve read so many Paul Graham essays that I&#8217;m becoming a fan of the language. In order to become more familiar with it, I decided to write a Lisp interpreter in JavaScript. It&#8217;s not quite complete, and the semantics are definitely not entirely correct, but it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>>Lisp is becoming a theme here, apparently. I suppose I&#8217;ve read so many <a href="http://www.paulgraham.com/paulgraham/articles.html">Paul Graham</a>  essays that I&#8217;m becoming a fan of the language. In order to become more familiar with it, I decided to write a  <a href="http://www.parkscomputing.com/lisptest.html">Lisp interpreter in JavaScript</a>. It&#8217;s not quite complete, and the semantics are definitely not  entirely correct, but it&#8217;s at least usable. The page is even partially scripted in Lisp, and as I debug the interpreter and add  more to it (such as loop constructs) I&#8217;ll convert more (and eventually all) of the JavaScript to Lisp. Once you  <a href="http://www.parkscomputing.com/lisptest.html">browse to the page</a>, view the source and scroll down until you see a <code>&lt;script type="text/lisp"&gt;</code> block.</p>
<p>I have only tested the interpreter in Firefox and Internet Explorer 6, so I&#8217;d <a href="mailto:paul@parkscomputing.com?subject=Lisp">like to know</a> how it works in  other browsers. If you want to look over the interpreter code, <a href="http://www.parkscomputing.com/js/lisp.js">download it</a> and play around with it. If you make any additions, changes, or corrections, I&#8217;d love to <a href="mailto:paul@parkscomputing.com?subject=Lisp">hear about them</a>  so I can incorporate them into the code.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.parkscomputing.com%2F2005%2F02%2Flisp-interpreter-in-javascript%2F&amp;t=Lisp%20Interpreter%20in%20JavaScript" id="facebook_share_button_15" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_15') || document.getElementById('facebook_share_icon_15') || document.getElementById('facebook_share_both_15') || document.getElementById('facebook_share_button_15');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_15') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://www.parkscomputing.com/2005/02/lisp-interpreter-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lisp for C++ Templates</title>
		<link>http://www.parkscomputing.com/2004/12/lisp-for-c-templates/</link>
		<comments>http://www.parkscomputing.com/2004/12/lisp-for-c-templates/#comments</comments>
		<pubDate>Thu, 16 Dec 2004 22:16:00 +0000</pubDate>
		<dc:creator>Paul Parks</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Lisp]]></category>

		<guid isPermaLink="false">http://nightowl/?p=14</guid>
		<description><![CDATA[>I&#8217;m not working quite as many hours as I was earlier in the year, so I&#8217;m able to concentrate on more long-term projects of my own in addition to my regular work responsibilities. Before I get back to the Accelerated C++ Solutions I&#8217;m going to play around a little bit with extreme template meta-programming in [...]]]></description>
			<content:encoded><![CDATA[<p>>I&#8217;m not working quite as many hours as I was earlier in the year, so I&#8217;m able to concentrate on more long-term projects of my own in addition to my regular work responsibilities. Before I get back to the <a href="http://www.parkscomputing.com/acpp/">Accelerated C++ Solutions</a> I&#8217;m going to play around a little bit with extreme template meta-programming in C++. Toward this end, I am implementing Lisp primitives with C++ templates for manipulating typelists. So far <a href="http://www.parkscomputing.com/tlp/">I only have the primitives online</a>, but I&#8217;ll hopefully have some examples of their usage up soon.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.parkscomputing.com%2F2004%2F12%2Flisp-for-c-templates%2F&amp;t=Lisp%20for%20C%2B%2B%20Templates" id="facebook_share_button_14" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_14') || document.getElementById('facebook_share_icon_14') || document.getElementById('facebook_share_both_14') || document.getElementById('facebook_share_button_14');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_14') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://www.parkscomputing.com/2004/12/lisp-for-c-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

