<?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/"
		>
<channel>
	<title>Comments for Marc Abramowitz</title>
	<atom:link href="http://marc-abramowitz.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://marc-abramowitz.com</link>
	<description></description>
	<lastBuildDate>Sat, 06 Oct 2012 22:18:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>Comment on Continuation of mod_wsgi setup by Graham Dumpleton</title>
		<link>http://marc-abramowitz.com/archives/2012/10/02/continuation-of-mod_wsgi-setup/comment-page-1/#comment-301652</link>
		<dc:creator>Graham Dumpleton</dc:creator>
		<pubDate>Sat, 06 Oct 2012 22:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://marc-abramowitz.com/?p=2544#comment-301652</guid>
		<description>The underlying problem here is actually likely to be the wsgi.py file generated by Django 1.4. In prior versions of Django they used:

os.environ[&#039;DJANGO_SETTINGS_MODULE&#039;] = &#039;mysite.settings&#039;

From 1.4 they use:

os.environ.setdefault(&#039;DJANGO_SETTINGS_MODULE&#039;, &#039;mysite.settings&#039;)

This change will break mod_wsgi where multiple Django sites are being run in separate sub interpreters of the same process.

This is because setting os.environ actually sets the process wide environment variable and so when they second site starts up, it sees the environment variable set by the first and use of setdefault() means it isn&#039;t overridden.

You can either change back to assignment rather than setdefault(), or delegate each site to a separate mod_wsgi daemon process group.</description>
		<content:encoded><![CDATA[<p>The underlying problem here is actually likely to be the wsgi.py file generated by Django 1.4. In prior versions of Django they used:</p>
<p>os.environ['DJANGO_SETTINGS_MODULE'] = &#8216;mysite.settings&#8217;</p>
<p>From 1.4 they use:</p>
<p>os.environ.setdefault(&#8216;DJANGO_SETTINGS_MODULE&#8217;, &#8216;mysite.settings&#8217;)</p>
<p>This change will break mod_wsgi where multiple Django sites are being run in separate sub interpreters of the same process.</p>
<p>This is because setting os.environ actually sets the process wide environment variable and so when they second site starts up, it sees the environment variable set by the first and use of setdefault() means it isn&#8217;t overridden.</p>
<p>You can either change back to assignment rather than setdefault(), or delegate each site to a separate mod_wsgi daemon process group.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some tips for setting up Apache and mod_wsgi by Marc</title>
		<link>http://marc-abramowitz.com/archives/2012/09/28/some-tips-for-setting-up-apache-and-mod_wsgi/comment-page-1/#comment-301627</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Fri, 05 Oct 2012 05:38:55 +0000</pubDate>
		<guid isPermaLink="false">http://marc-abramowitz.com/?p=2522#comment-301627</guid>
		<description>Hi Graham,

Thanks! I noticed that you reply pretty regularly to blog posts, Stack Overflow questions, etc. It seems that you&#039;re everywhere and I commend you for how voraciously you support mod_wsgi. 

That was my thought as well about mod_python vs. mod_wsgi. One thought I had: is it possible for mod_wsgi to detect that mod_python is loaded and to emit a big fat warning? In this case, it took me a while to realize that mod_python was enabled and I suspect that it had been enabled by default in CentOS 5.5, because I doubt that anyone in my company was using mod_python. 

If you see my later post at http://marc-abramowitz.com/archives/2012/10/02/continuation-of-mod_wsgi-setup/, I did explore process groups a bit, although I&#039;d call it trial and error and more getting lucky than actually understanding what I was doing :-)</description>
		<content:encoded><![CDATA[<p>Hi Graham,</p>
<p>Thanks! I noticed that you reply pretty regularly to blog posts, Stack Overflow questions, etc. It seems that you&#8217;re everywhere and I commend you for how voraciously you support mod_wsgi. </p>
<p>That was my thought as well about mod_python vs. mod_wsgi. One thought I had: is it possible for mod_wsgi to detect that mod_python is loaded and to emit a big fat warning? In this case, it took me a while to realize that mod_python was enabled and I suspect that it had been enabled by default in CentOS 5.5, because I doubt that anyone in my company was using mod_python. </p>
<p>If you see my later post at <a href="http://marc-abramowitz.com/archives/2012/10/02/continuation-of-mod_wsgi-setup/" rel="nofollow">http://marc-abramowitz.com/archives/2012/10/02/continuation-of-mod_wsgi-setup/</a>, I did explore process groups a bit, although I&#8217;d call it trial and error and more getting lucky than actually understanding what I was doing <img src='http://marc-abramowitz.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some tips for setting up Apache and mod_wsgi by Graham Dumpleton</title>
		<link>http://marc-abramowitz.com/archives/2012/09/28/some-tips-for-setting-up-apache-and-mod_wsgi/comment-page-1/#comment-301617</link>
		<dc:creator>Graham Dumpleton</dc:creator>
		<pubDate>Wed, 03 Oct 2012 00:48:40 +0000</pubDate>
		<guid isPermaLink="false">http://marc-abramowitz.com/?p=2522#comment-301617</guid>
		<description>You had to disable mod_python because it was likely still compiled against and loading the system Python 2.4. This would have conficted with mod_wsgi wanting Python 2.7. You were probably lucky the WSGI hello world even worked.

BTW, you should explore use of mod_wsgi daemon mode. It is a better way of doing things and allows you to separately define what user the web application process runs as, thereby avoiding needing to have Apache user able to write to directories, which could be a pain.</description>
		<content:encoded><![CDATA[<p>You had to disable mod_python because it was likely still compiled against and loading the system Python 2.4. This would have conficted with mod_wsgi wanting Python 2.7. You were probably lucky the WSGI hello world even worked.</p>
<p>BTW, you should explore use of mod_wsgi daemon mode. It is a better way of doing things and allows you to separately define what user the web application process runs as, thereby avoiding needing to have Apache user able to write to directories, which could be a pain.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing OmniFocus data as a sqlite database by RobTrew</title>
		<link>http://marc-abramowitz.com/archives/2011/03/08/accessing-omnifocus-data-as-a-sqlite-database/comment-page-1/#comment-301614</link>
		<dc:creator>RobTrew</dc:creator>
		<pubDate>Tue, 02 Oct 2012 20:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://marc-abramowitz.com/?p=2100#comment-301614</guid>
		<description>To see a way of retrieving the full and nested data hierarchy from OmniFocus by reading the Sqlite cache with Python, filtering the data retrieved with SQL conditions, and using a recursive trigger to get nested (rather than flat tabular) results,  you might find it interesting to look at this OmniFocus to OPML / iThoughtsHD / Markdown / FoldingText script at: http://forums.omnigroup.com/showthread.php?t=25965

Rob</description>
		<content:encoded><![CDATA[<p>To see a way of retrieving the full and nested data hierarchy from OmniFocus by reading the Sqlite cache with Python, filtering the data retrieved with SQL conditions, and using a recursive trigger to get nested (rather than flat tabular) results,  you might find it interesting to look at this OmniFocus to OPML / iThoughtsHD / Markdown / FoldingText script at: <a href="http://forums.omnigroup.com/showthread.php?t=25965" rel="nofollow">http://forums.omnigroup.com/showthread.php?t=25965</a></p>
<p>Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vertical split for GNU screen by konubinix</title>
		<link>http://marc-abramowitz.com/archives/2007/01/27/vertical-split-for-gnu-screen/comment-page-1/#comment-301562</link>
		<dc:creator>konubinix</dc:creator>
		<pubDate>Tue, 25 Sep 2012 06:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/01/27/vertical-split-for-gnu-screen/#comment-301562</guid>
		<description>With readline-complete and/or bash-completion (search the emacs wiki to know what I am talking about), it is now possible to have readline completion inside an emacs shell. It is still wip but it is promising.</description>
		<content:encoded><![CDATA[<p>With readline-complete and/or bash-completion (search the emacs wiki to know what I am talking about), it is now possible to have readline completion inside an emacs shell. It is still wip but it is promising.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix for oh-my-zsh git-svn prompt slowness by Matt</title>
		<link>http://marc-abramowitz.com/archives/2012/04/10/fix-for-oh-my-zsh-git-svn-prompt-slowness/comment-page-1/#comment-301537</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Thu, 20 Sep 2012 14:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://marc-abramowitz.com/?p=2436#comment-301537</guid>
		<description>This was driving me crazy... very helpful thanks.</description>
		<content:encoded><![CDATA[<p>This was driving me crazy&#8230; very helpful thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ctrl-left and Ctrl-right in bash and Emacs by Adam C</title>
		<link>http://marc-abramowitz.com/archives/2006/10/05/ctrl-left-and-ctrl-right-in-bash-and-emacs/comment-page-1/#comment-301522</link>
		<dc:creator>Adam C</dc:creator>
		<pubDate>Tue, 18 Sep 2012 18:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2006/10/05/ctrl-left-and-ctrl-right-in-bash-and-emacs/#comment-301522</guid>
		<description>Also make sure in OSX that System Preferences&gt;Keyboard&gt;Shortcuts does not have a binding for Ctl-left / Ctl-right arrow (which appears to capture the keystrokes even Expose/Mission control have been turned off).</description>
		<content:encoded><![CDATA[<p>Also make sure in OSX that System Preferences&gt;Keyboard&gt;Shortcuts does not have a binding for Ctl-left / Ctl-right arrow (which appears to capture the keystrokes even Expose/Mission control have been turned off).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Append to nvALT journal &#8211; Alfred.app extension for nvALT by sample</title>
		<link>http://marc-abramowitz.com/archives/2012/07/30/append-to-nvalt-journal-alfred-app-extension-for-nvalt/comment-page-1/#comment-301482</link>
		<dc:creator>sample</dc:creator>
		<pubDate>Wed, 12 Sep 2012 07:04:25 +0000</pubDate>
		<guid isPermaLink="false">http://marc-abramowitz.com/?p=2472#comment-301482</guid>
		<description>Thank you!</description>
		<content:encoded><![CDATA[<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Append to nvALT journal &#8211; Alfred.app extension for nvALT by Marc</title>
		<link>http://marc-abramowitz.com/archives/2012/07/30/append-to-nvalt-journal-alfred-app-extension-for-nvalt/comment-page-1/#comment-301480</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Wed, 12 Sep 2012 00:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://marc-abramowitz.com/?p=2472#comment-301480</guid>
		<description>Hey sample,

If you want to take out the timestamp, then look inside the .alfredextension bundle for a file called &lt;code&gt;info.plist&lt;/code&gt; and then remove all the stuff that references &lt;code&gt;theDate&lt;/code&gt;, etc.</description>
		<content:encoded><![CDATA[<p>Hey sample,</p>
<p>If you want to take out the timestamp, then look inside the .alfredextension bundle for a file called <code>info.plist</code> and then remove all the stuff that references <code>theDate</code>, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Append to nvALT journal &#8211; Alfred.app extension for nvALT by sample</title>
		<link>http://marc-abramowitz.com/archives/2012/07/30/append-to-nvalt-journal-alfred-app-extension-for-nvalt/comment-page-1/#comment-301478</link>
		<dc:creator>sample</dc:creator>
		<pubDate>Tue, 11 Sep 2012 16:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://marc-abramowitz.com/?p=2472#comment-301478</guid>
		<description>Great extension, thank you Marc! Additionally, what parts do I need to delete from your script to post without time stamp continuously into one file? I know, this is probably very easy, but as I am new to applescript I did not mange on my own. Thanks.</description>
		<content:encoded><![CDATA[<p>Great extension, thank you Marc! Additionally, what parts do I need to delete from your script to post without time stamp continuously into one file? I know, this is probably very easy, but as I am new to applescript I did not mange on my own. Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
