<?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/"
	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>Comments for What keramida said...</title>
	<atom:link href="http://keramida.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://keramida.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 06:07:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Greek FreeBSD doc/ update by juicing recipe Book Review</title>
		<link>http://keramida.wordpress.com/2007/12/02/greek-freebsd-doc-update/#comment-18077</link>
		<dc:creator><![CDATA[juicing recipe Book Review]]></dc:creator>
		<pubDate>Thu, 23 May 2013 06:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/2007/12/02/greek-freebsd-doc-update/#comment-18077</guid>
		<description><![CDATA[I pay a visit daily some web sites and websites to read posts, however this web site presents feature based content.]]></description>
		<content:encoded><![CDATA[<p>I pay a visit daily some web sites and websites to read posts, however this web site presents feature based content.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding Up Emacs and Parsing Emacs Lisp from Emacs Lisp by Chad</title>
		<link>http://keramida.wordpress.com/2013/04/13/speeding-up-emacs-and-parsing-emacs-lisp-from-emacs-lisp/#comment-17943</link>
		<dc:creator><![CDATA[Chad]]></dc:creator>
		<pubDate>Tue, 16 Apr 2013 08:24:46 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=2231#comment-17943</guid>
		<description><![CDATA[Depending on your platform, you might be able to move things like (tool-bar-mode -1) into system resources (defaults, X resources, etc). I don&#039;t generally advocate taking configuration settings out of elisp, but disabling some of the Emacs chrome at the window-system level can prevent emacs from building them before it loads .emacs, speeding things up over-all.]]></description>
		<content:encoded><![CDATA[<p>Depending on your platform, you might be able to move things like (tool-bar-mode -1) into system resources (defaults, X resources, etc). I don&#8217;t generally advocate taking configuration settings out of elisp, but disabling some of the Emacs chrome at the window-system level can prevent emacs from building them before it loads .emacs, speeding things up over-all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding Up Emacs and Parsing Emacs Lisp from Emacs Lisp by John Wiegley</title>
		<link>http://keramida.wordpress.com/2013/04/13/speeding-up-emacs-and-parsing-emacs-lisp-from-emacs-lisp/#comment-17932</link>
		<dc:creator><![CDATA[John Wiegley]]></dc:creator>
		<pubDate>Sun, 14 Apr 2013 21:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=2231#comment-17932</guid>
		<description><![CDATA[If you clone my dot-emacs repository from GitHub, you can see lots of examples of how I use use-package.  Even though I have over 80 packages in my configuration, load-time is still around a second -- and that&#039;s without byte-compiling my init file!]]></description>
		<content:encoded><![CDATA[<p>If you clone my dot-emacs repository from GitHub, you can see lots of examples of how I use use-package.  Even though I have over 80 packages in my configuration, load-time is still around a second &#8212; and that&#8217;s without byte-compiling my init file!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding Up Emacs and Parsing Emacs Lisp from Emacs Lisp by keramida</title>
		<link>http://keramida.wordpress.com/2013/04/13/speeding-up-emacs-and-parsing-emacs-lisp-from-emacs-lisp/#comment-17931</link>
		<dc:creator><![CDATA[keramida]]></dc:creator>
		<pubDate>Sun, 14 Apr 2013 13:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=2231#comment-17931</guid>
		<description><![CDATA[John, that&#039;s a wonderful package! Thanks :-)

I&#039;ve been wondering if there&#039;s a good way I can organize the current configuration &quot;by package&quot; instead of the current &quot;by feature type&quot; scheme. I think I&#039;ll give `use-package&#039; a try.]]></description>
		<content:encoded><![CDATA[<p>John, that&#8217;s a wonderful package! Thanks :-)</p>
<p>I&#8217;ve been wondering if there&#8217;s a good way I can organize the current configuration &#8220;by package&#8221; instead of the current &#8220;by feature type&#8221; scheme. I think I&#8217;ll give `use-package&#8217; a try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding Up Emacs and Parsing Emacs Lisp from Emacs Lisp by John Wiegley</title>
		<link>http://keramida.wordpress.com/2013/04/13/speeding-up-emacs-and-parsing-emacs-lisp-from-emacs-lisp/#comment-17929</link>
		<dc:creator><![CDATA[John Wiegley]]></dc:creator>
		<pubDate>Sat, 13 Apr 2013 22:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=2231#comment-17929</guid>
		<description><![CDATA[Note that my `use-package` macro can greatly simplify -- and automate -- the proper use of eval-after-load.  See https://github.com/jwiegley/use-package.]]></description>
		<content:encoded><![CDATA[<p>Note that my `use-package` macro can greatly simplify &#8212; and automate &#8212; the proper use of eval-after-load.  See <a href="https://github.com/jwiegley/use-package" rel="nofollow">https://github.com/jwiegley/use-package</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding Up Emacs and Parsing Emacs Lisp from Emacs Lisp by keramida</title>
		<link>http://keramida.wordpress.com/2013/04/13/speeding-up-emacs-and-parsing-emacs-lisp-from-emacs-lisp/#comment-17927</link>
		<dc:creator><![CDATA[keramida]]></dc:creator>
		<pubDate>Sat, 13 Apr 2013 17:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=2231#comment-17927</guid>
		<description><![CDATA[The startup files described in this blog post are now uploaded at http://bitbucket.org/keramida/dotfiles/]]></description>
		<content:encoded><![CDATA[<p>The startup files described in this blog post are now uploaded at <a href="http://bitbucket.org/keramida/dotfiles/" rel="nofollow">http://bitbucket.org/keramida/dotfiles/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding Up Emacs and Parsing Emacs Lisp from Emacs Lisp by keramida</title>
		<link>http://keramida.wordpress.com/2013/04/13/speeding-up-emacs-and-parsing-emacs-lisp-from-emacs-lisp/#comment-17926</link>
		<dc:creator><![CDATA[keramida]]></dc:creator>
		<pubDate>Sat, 13 Apr 2013 16:03:40 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=2231#comment-17926</guid>
		<description><![CDATA[This should be fixed now, thanks bjr!

I&#039;m going to upload the full configuration to bitbucket later today, once I check that it doesn&#039;t include any sensitive personal information. Once it&#039;s uploaded I&#039;ll post a comment here with the repository info. Then, please feel free to copy anything you like.]]></description>
		<content:encoded><![CDATA[<p>This should be fixed now, thanks bjr!</p>
<p>I&#8217;m going to upload the full configuration to bitbucket later today, once I check that it doesn&#8217;t include any sensitive personal information. Once it&#8217;s uploaded I&#8217;ll post a comment here with the repository info. Then, please feel free to copy anything you like.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding Up Emacs and Parsing Emacs Lisp from Emacs Lisp by bjr</title>
		<link>http://keramida.wordpress.com/2013/04/13/speeding-up-emacs-and-parsing-emacs-lisp-from-emacs-lisp/#comment-17925</link>
		<dc:creator><![CDATA[bjr]]></dc:creator>
		<pubDate>Sat, 13 Apr 2013 13:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=2231#comment-17925</guid>
		<description><![CDATA[Good work, there is a missing &quot;)&quot; in the 8th line of function file-forms-list. Would be happy to have similar startup times !!]]></description>
		<content:encoded><![CDATA[<p>Good work, there is a missing &#8220;)&#8221; in the 8th line of function file-forms-list. Would be happy to have similar startup times !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding Up Emacs and Parsing Emacs Lisp from Emacs Lisp by alexkaltsas</title>
		<link>http://keramida.wordpress.com/2013/04/13/speeding-up-emacs-and-parsing-emacs-lisp-from-emacs-lisp/#comment-17923</link>
		<dc:creator><![CDATA[alexkaltsas]]></dc:creator>
		<pubDate>Sat, 13 Apr 2013 08:51:14 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=2231#comment-17923</guid>
		<description><![CDATA[Now you won&#039;t be able to blink during start up... :D :D :D]]></description>
		<content:encoded><![CDATA[<p>Now you won&#8217;t be able to blink during start up&#8230; :D :D :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving &amp; Restoring Mate Terminal&#8217;s Color-Profile Information by Call for testing - MATE SlackBuilds - Page 11</title>
		<link>http://keramida.wordpress.com/2013/03/29/saving-and-restoring-mate-terminal-colors/#comment-17876</link>
		<dc:creator><![CDATA[Call for testing - MATE SlackBuilds - Page 11]]></dc:creator>
		<pubDate>Mon, 08 Apr 2013 22:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=2190#comment-17876</guid>
		<description><![CDATA[[...] Thanks. I&#039;ll wait for the maintainer to update it then.  http://keramida.wordpress.com/2013/0...#comment-17875 [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Thanks. I&#039;ll wait for the maintainer to update it then.  <a href="http://keramida.wordpress.com/2013/0" rel="nofollow">http://keramida.wordpress.com/2013/0</a>&#8230;#comment-17875 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
