<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>Disqus - Latest Comments for Pistos</title><link xmlns="http://www.w3.org/2005/Atom" rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#usercomments-a3203409" type="application/json"/><link>http://disqus.com/people/Pistos/</link><description></description><language>en</language><lastBuildDate>Fri, 14 Aug 2009 14:15:14 -0000</lastBuildDate><item><title>Re: Every Friday, rain or shine (Scripting News)</title><link>http://www.scripting.com/stories/2009/08/13/everyFridayRainOrShine.html#comment-14843700</link><description>Indeed, I perhaps shouldn't have employed the wording "either that or".  Nevertheless, I still think that both full blogging and comment threads are solutions, even if perhaps to different problems.  I'll continue to employ both.  :)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Fri, 14 Aug 2009 14:15:14 -0000</pubDate></item><item><title>Re: Every Friday, rain or shine (Scripting News)</title><link>http://www.scripting.com/stories/2009/08/13/everyFridayRainOrShine.html#comment-14842740</link><description>I hope nothing bad happens to FriendFeed, I really like it. :(  But certainly, I'm of the opinion that we should posting more than just to microblogs.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Fri, 14 Aug 2009 13:56:49 -0000</pubDate></item><item><title>Re: Every Friday, rain or shine (Scripting News)</title><link>http://www.scripting.com/stories/2009/08/13/everyFridayRainOrShine.html#comment-14842232</link><description>Either that, or you use a microblogging service that has comment threads, wherein you can place extended thoughts and discussion about your short message.  Like FriendFeed.  &lt;a href="http://friendfeed.com/" rel="nofollow"&gt;http://friendfeed.com/&lt;/a&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Fri, 14 Aug 2009 13:46:28 -0000</pubDate></item><item><title>Re: Awesomeful</title><link>http://awesomeful.net/posts/45-postgresql-rails-and-why-you-should-care#comment-13862303</link><description>I'm certainly a PostgreSQL user (and MySQL avoider), but I find it curious that you mention Rails at all in this post.  I thought ActiveRecord does most (everything?) on its own, and uses only the bare bones of the database simply to persist.  Meaning to say, many of the advantages you cite, some of which are absent in MySQL, won't even be used by ActiveRecord.  For example, views, triggers, rules, and plpgsql functions.  As such, a Rails user switching DBs from MySQL to PostgreSQL won't see much difference.&lt;br&gt;&lt;br&gt;A _Ruby_ user on the other hand...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Mon, 03 Aug 2009 22:54:13 -0000</pubDate></item><item><title>Re: Rails Alternatives: Merb, Sinatra &amp;#038; Ramaze</title><link>http://blog.xambr.com/2009/05/28/rails-alternatives-merb-sinatra-ramaze/#comment-10149968</link><description>Nice, brief overview of the three.  Thanks for sharing your thoughts on them, and thanks for the positive mention of Ramaze, as well as the linkage.  :)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Thu, 28 May 2009 09:02:24 -0000</pubDate></item><item><title>Re: Ruby Best Practices - Blog</title><link>http://blog.rubybestpractices.com/posts/rklemme/002_Writing_Block_Methods.html#comment-8817440</link><description>Robert: Ah, of course!  Well that's certainly one situation you'd want to use it.  However, I'm not sure how often I'd find myself in that situation.  :)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Wed, 29 Apr 2009 13:23:52 -0000</pubDate></item><item><title>Re: Ruby Best Practices - Blog</title><link>http://blog.rubybestpractices.com/posts/rklemme/002_Writing_Block_Methods.html#comment-8567785</link><description>You can't take what is in the ensure block and put it after the end of begin-end.  This code example should elucidate:&lt;br&gt;&lt;br&gt;&lt;code&gt;&lt;br&gt;begin&lt;br&gt;  puts 1&lt;br&gt;  raise "Oh no!"&lt;br&gt;rescue Exception =&amp;gt; e&lt;br&gt;  puts 2&lt;br&gt;  raise e&lt;br&gt;ensure&lt;br&gt;  puts 3&lt;br&gt;end&lt;br&gt;puts 4&lt;br&gt;&lt;/code&gt;&lt;br&gt;&lt;br&gt;Output:&lt;br&gt;&lt;br&gt;&lt;code&gt;&lt;br&gt;1&lt;br&gt;2&lt;br&gt;3&lt;br&gt;-:3: Oh no! (RuntimeError)&lt;br&gt;&lt;/code&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Wed, 22 Apr 2009 09:01:27 -0000</pubDate></item><item><title>Re: Comment formatting?</title><link>http://disqus.disqus.com/comment_formatting/#comment-8567648</link><description>Code doesn't really work.  REAL code has at least one level of indentation, which &amp;amp;lt;code&amp;amp;gt; doesn't preserve:&lt;br&gt;&lt;br&gt;&lt;code&gt;&lt;br&gt;if condition&lt;br&gt;  do_something  # supposed to be indented&lt;br&gt;else&lt;br&gt;  do_something_else   # supposed to be indented&lt;br&gt;end&lt;br&gt;&lt;/code&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Wed, 22 Apr 2009 08:54:34 -0000</pubDate></item><item><title>Re: Ruby Best Practices - Blog</title><link>http://blog.rubybestpractices.com/posts/rklemme/002_Writing_Block_Methods.html#comment-8567559</link><description>ehsanul: I think you misunderstood my question.  :)  Perhaps a code example will help.  I was wondering why we need this:&lt;br&gt;&lt;br&gt;&lt;code&gt;&lt;br&gt;    begin  &lt;br&gt;      do_work&lt;br&gt;      something_at_end_of_begin_block&lt;br&gt;    rescue Exception =&amp;gt; e  &lt;br&gt;    else  &lt;br&gt;      something_in_else_block&lt;br&gt;    end&lt;br&gt;&lt;/code&gt;&lt;br&gt;    &lt;br&gt;When we can do this instead:&lt;br&gt;    &lt;br&gt;&lt;code&gt;&lt;br&gt;    begin  &lt;br&gt;      do_work&lt;br&gt;      something_at_end_of_begin_block&lt;br&gt;      something_in_else_block&lt;br&gt;    rescue Exception =&amp;gt; e  &lt;br&gt;    end&lt;br&gt;&lt;/code&gt;&lt;br&gt;&lt;br&gt;(Gah, can't format code blocks.  Disqus: fail)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Wed, 22 Apr 2009 08:50:37 -0000</pubDate></item><item><title>Re: Ruby Best Practices - Blog</title><link>http://blog.rubybestpractices.com/posts/rklemme/002_Writing_Block_Methods.html#comment-8500023</link><description>I'm having trouble seeing the utility of an else block after a rescue block.  Why not just put the contents of the else at the end of the begin block?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Tue, 21 Apr 2009 14:30:13 -0000</pubDate></item><item><title>Re: Does Ruby Dream A Shell?</title><link>http://www.metacircus.com/hacking/2009/03/17/does-ruby-dream-a-shell.html#comment-7355782</link><description>I've skimmed the README.  This looks like it has the most promise of all Ruby shells I've seen, but I have to say that I am too used to classic shells (currently zsh is my choice).  If I have to use : instead of - for switches, and put filenames in quotes, that is too much of a change for my comfort zone.  I think a successful Ruby shell would never punish me for using classic shell syntax, but would have some sugar on top to let me manipulate things with Ruby once in a while.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Thu, 19 Mar 2009 16:07:17 -0000</pubDate></item><item><title>Re: Comments Are Now Enabled
 -
{ |one, step, back| }</title><link>http://onestepback.org/index.cgi/General/DiscusComments.red#comment-2956632</link><description>I tried Disqus for a [very] short while on my blog, but I found two problems that made me switch back [to plain Wordpress comments]:&lt;br&gt;&lt;br&gt;(1) There is no comment preview.  (Related: It wasn't immediately obvious if they supported a markup syntax of some kind)&lt;br&gt;&lt;br&gt;(2) It took away the Markdown support that I already had installed on my blog comments.&lt;br&gt;&lt;br&gt;I do admit that it has its pluses, and I also observed a non-negligible boost in referred visits.  But lack of a preview in a text box that supports markup, and the deactivation of my Markdown support are showstoppers.  Oh, not to mention that Wordpress will be officially adopting a direct competitor to Disqus, namely Intense Debate.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Wed, 08 Oct 2008 23:52:58 -0000</pubDate></item><item><title>Re: The problem of the ensoulment of identical twins</title><link>http://blog.purepistos.net/index.php/2007/11/18/the-problem-of-the-ensoulment-of-identical-twins/#comment-2734386</link><description>This article was quoted in &lt;a href="http://www.surprisedbytruth.com/forum/topic.asp?TOPIC_ID=6147" rel="nofollow"&gt;a forum thread&lt;/a&gt; in August 2008.  Reknowned Catholic apologist &lt;a href="http://en.wikipedia.org/wiki/Patrick_Madrid" rel="nofollow"&gt;Patrick Madrid&lt;/a&gt; argues that the Catholic Church's teaching is that humans are ensouled at conception.  (I personally remain unconvinced that there is a clear teaching from the Church on ensoulment.  In my opinion, Patrick's argumentation did not definitively prove otherwise.)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Mon, 29 Sep 2008 13:34:51 -0000</pubDate></item><item><title>Re: Free classical sheet music</title><link>http://blog.purepistos.net/index.php/2007/06/03/free-classical-sheet-music/#comment-2654714</link><description>The IMSLP reopened on June 30, 2008.  Yay!  :)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Sat, 27 Sep 2008 01:19:50 -0000</pubDate></item><item><title>Re: My programming language is my dance partner</title><link>http://blog.purepistos.net/index.php/2008/06/16/my-programming-language-is-my-dance-partner/#comment-2574972</link><description>&lt;p&gt;Kareem: Just keep having fun with Ruby.  Over time, you improve.  It helps to find successful programmers and look at the source code of their work, to see how they solve problems.  You could begin browsing at &lt;a href="http://github.com" rel="nofollow"&gt;github&lt;/a&gt;.&lt;/p&gt;&lt;br&gt;&lt;p&gt;Start small: Rather than trying to accomplish something big all on your own, instead, find a program or library that you like, and then adjust or tweak it slightly.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Sun, 21 Sep 2008 02:31:26 -0000</pubDate></item><item><title>Re: Catholic Reference Extension</title><link>http://blog.purepistos.net/index.php/cre/#comment-2574470</link><description>&lt;p&gt;Lee: Thank you for your kind comments.  Could you describe your situation in greater detail?  What version of WP or WP-MU do you have?  What version of the CRE?  Can you give me a screenshot of the Upload Media icon(s)?  Because I see the Add Media icons in my installations regardless of whether the CRE is activated or not.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Sat, 16 Aug 2008 00:14:18 -0000</pubDate></item><item><title>Re: Catholic Reference Extension</title><link>http://blog.purepistos.net/index.php/cre/#comment-2574616</link><description>&lt;p&gt;alberto: Thanks for your comments.  Your request falls under the notion of me making the CRE use any generic texts which are appropriately formatted.  The code as it stands is not capable of doing this.  I'm not sure when I can get around to developing that.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Thu, 17 Jul 2008 14:18:53 -0000</pubDate></item><item><title>Re: Catholic Reference Extension</title><link>http://blog.purepistos.net/index.php/cre/#comment-2574638</link><description>&lt;p&gt;Okay, Bob, I have finally wrestled WordPress' hackish nature to the ground, and managed to get it to let things play nicely.  Try this updated &lt;a href="/wp-content/uploads/catholic-reference/catholic-reference-0.8.14.tar.gz" rel="nofollow"&gt;0.8.14 tarball&lt;/a&gt;.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Thu, 03 Jul 2008 13:42:39 -0000</pubDate></item><item><title>Re: Catholic Reference Extension</title><link>http://blog.purepistos.net/index.php/cre/#comment-2574661</link><description>&lt;p&gt;Glad it's working for you, Bob.  Beware about the drop shadow, because it affects your RSS feed insofar as it adds a duplicate block of text.&lt;/p&gt;&lt;br&gt;&lt;p&gt;As well, I think you should be able to go back and edit your own comments on my blog.  Look for an "Edit This" link on your comments.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Wed, 25 Jun 2008 23:15:06 -0000</pubDate></item><item><title>Re: Catholic Reference Extension</title><link>http://blog.purepistos.net/index.php/cre/#comment-2574557</link><description>&lt;p&gt;Bob: I have fixed the issue, and am running the latest CRE now on my own blog before I release it publicly.  The problem has to do with the fact that WordPress loads all plugins' admin headers all the time, so each plugins' headers (CSS, Javascript, etc.) has the chance to fight with one another.  Bad design on WordPress' part, though I hear there is a way to make your admin_header appear only on specific admin pages (such as your own plugin's admin page!); and not using a hackish if() statement.&lt;/p&gt;&lt;br&gt;&lt;p&gt;Anyway, the fix is to upgrade to the latest jQuery.  If you want to beta test this along with me, download &lt;a href="http://blog.purepistos.net/wp-content/uploads/catholic-reference/catholic-reference-0.8.14.tar.gz" rel="nofollow"&gt;version 0.8.14&lt;/a&gt; and unpack that over your existing installation.  Otherwise just wait a few days for me to make sure I didn't break anything.  :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Wed, 25 Jun 2008 15:08:23 -0000</pubDate></item><item><title>Re: Catholic Q&amp;#038;A: The oldest Christian religion</title><link>http://blog.purepistos.net/index.php/2007/08/19/catholic-qa-the-oldest-christian-religion/#comment-2574777</link><description>&lt;p&gt;Seth: You can begin by browsing &lt;a href="http://ewtn.com" rel="nofollow"&gt;EWTN&lt;/a&gt; and &lt;a href="http://www.catholic.com/library.asp" rel="nofollow"&gt;Catholic Answers&lt;/a&gt;.  If you have particular questions, let me know.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Sat, 14 Jun 2008 00:44:24 -0000</pubDate></item><item><title>Re: Faster applications by using SQL over ORM</title><link>http://blog.purepistos.net/index.php/2008/02/14/faster-applications-by-using-sql-over-orm/#comment-2574807</link><description>&lt;p&gt;I've more formally created/released better-benchmark &lt;a href="http://github.com/Pistos/better-benchmark/tree/master" rel="nofollow"&gt;here&lt;/a&gt;.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Thu, 05 Jun 2008 08:49:42 -0000</pubDate></item><item><title>Re: Catholic Reference Extension</title><link>http://blog.purepistos.net/index.php/cre/#comment-2574631</link><description>&lt;p&gt;Lukas: You are not the first to bring up markup validity.  As I've mentioned to others (elsewhere), I am creating invalid markup for the sake of making the plugin code easier to develop and maintain (it is simpler).  I don't anticipate aiming for 100% validity soon; sorry.&lt;/p&gt;&lt;br&gt;&lt;p&gt;Are the admin panel errors fatal, or do they otherwise prevent you from configuring the CRE?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Thu, 29 May 2008 08:19:00 -0000</pubDate></item><item><title>Re: Catholic Reference Extension</title><link>http://blog.purepistos.net/index.php/cre/#comment-2574561</link><description>&lt;p&gt;Lukas: Sorry, I've been busy with various things.  Could you provide me with homepages or download links to the gzip plugin/module that you think you would settle with?  I will try to test it with my own server and blog.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Tue, 27 May 2008 09:28:03 -0000</pubDate></item><item><title>Re: Catholic Reference Extension</title><link>http://blog.purepistos.net/index.php/cre/#comment-2574482</link><description>&lt;p&gt;Okay, thanks.  I will investigate those two.  Meanwhile, have you considered using server-level gzip compression?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pistos</dc:creator><pubDate>Fri, 16 May 2008 13:11:35 -0000</pubDate></item></channel></rss>