<?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 incrementalism.net</title>
	<atom:link href="http://incrementalism.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://incrementalism.net</link>
	<description></description>
	<lastBuildDate>Tue, 30 Aug 2011 04:38:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Veg-Table.net Vegetarian Restaurant and Travel Guide by Tim Moore</title>
		<link>http://incrementalism.net/veganism/veg-table-net-vegetarian-restaurant-and-travel-guide/comment-page-1#comment-18361</link>
		<dc:creator>Tim Moore</dc:creator>
		<pubDate>Tue, 30 Aug 2011 04:38:05 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/?p=137#comment-18361</guid>
		<description>Amy,

Veg-Table still exists, but you now have to go to http://veg-table.wikidot.com/ to reach it. It hasn&#039;t had much activity lately, and I think Sharon has since moved on to other projects, but it is still possible to sign up and add or edit pages, and all of the existing content is still there.</description>
		<content:encoded><![CDATA[<p>Amy,</p>
<p>Veg-Table still exists, but you now have to go to <a href="http://veg-table.wikidot.com/" rel="nofollow">http://veg-table.wikidot.com/</a> to reach it. It hasn&#8217;t had much activity lately, and I think Sharon has since moved on to other projects, but it is still possible to sign up and add or edit pages, and all of the existing content is still there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Veg-Table.net Vegetarian Restaurant and Travel Guide by Amy</title>
		<link>http://incrementalism.net/veganism/veg-table-net-vegetarian-restaurant-and-travel-guide/comment-page-1#comment-18360</link>
		<dc:creator>Amy</dc:creator>
		<pubDate>Mon, 29 Aug 2011 14:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/?p=137#comment-18360</guid>
		<description>Veg-Table is gone?! Seemed like it would be a great resource.</description>
		<content:encoded><![CDATA[<p>Veg-Table is gone?! Seemed like it would be a great resource.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 10 Reasons Why Being 30 is Better Than Being 20 by Mennyi? 30! Mi harminc? Mi mennyi? &#171; sT</title>
		<link>http://incrementalism.net/personal/thirty-vs-twenty/comment-page-1#comment-18336</link>
		<dc:creator>Mennyi? 30! Mi harminc? Mi mennyi? &#171; sT</dc:creator>
		<pubDate>Sat, 21 May 2011 13:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/personal/thirty-vs-twenty#comment-18336</guid>
		<description>[...] olvasgattam, hogy ki mit gondol, hogy pánikol ett?l a számtól. Ekkor akadtam bele ebbe: http://incrementalism.net/personal/thirty-vs-twenty/ Gondoltam összeállítom én is, szigorúan a fenti [...]</description>
		<content:encoded><![CDATA[<p>[...] olvasgattam, hogy ki mit gondol, hogy pánikol ett?l a számtól. Ekkor akadtam bele ebbe: <a href="http://incrementalism.net/personal/thirty-vs-twenty/" rel="nofollow">http://incrementalism.net/personal/thirty-vs-twenty/</a> Gondoltam összeállítom én is, szigorúan a fenti [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Centering Windows in Mac OS X with AppleScript by Lri</title>
		<link>http://incrementalism.net/tech/centering-windows-in-mac-os-x-with-applescript/comment-page-1#comment-17386</link>
		<dc:creator>Lri</dc:creator>
		<pubDate>Wed, 09 Mar 2011 14:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/?p=124#comment-17386</guid>
		<description>I posted yet another version at the &lt;a href=&quot;http://apple.stackexchange.com/questions/9632/center-window-on-screen/9742#9742&quot; rel=&quot;nofollow&quot;&gt;apple.stackexchange thread&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>I posted yet another version at the <a href="http://apple.stackexchange.com/questions/9632/center-window-on-screen/9742#9742" rel="nofollow">apple.stackexchange thread</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Centering Windows in Mac OS X with AppleScript by Andrew Goodrick-Werner</title>
		<link>http://incrementalism.net/tech/centering-windows-in-mac-os-x-with-applescript/comment-page-1#comment-17385</link>
		<dc:creator>Andrew Goodrick-Werner</dc:creator>
		<pubDate>Mon, 07 Mar 2011 21:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/?p=124#comment-17385</guid>
		<description>I&#039;ve updated my version of the script to take into account dock position and menu bar height — I also made sure to include your Terminal workaround, Tim. Enjoy! :)

tell application &quot;Finder&quot;
	set screenSize to bounds of window of desktop
	set screenWidth to item 3 of screenSize
	set screenHeight to item 4 of screenSize
end tell

tell application &quot;System Events&quot;
	tell dock preferences
		if screen edge is bottom then
			tell application &quot;System Events&quot; to tell process &quot;Dock&quot;
				set dockSize to size in list 1
				set dockHeight to item 2 of dockSize
				set screenHeight to (screenHeight - dockHeight)
			end tell
		else if screen edge is left then
			tell application &quot;System Events&quot; to tell process &quot;Dock&quot;
				set dockSize to size in list 1
				set dockHeight to item 1 of dockSize
				set screenWidth to (screenWidth + dockHeight)
			end tell
		else
			tell application &quot;System Events&quot; to tell process &quot;Dock&quot;
				set dockSize to size in list 1
				set dockHeight to item 1 of dockSize
				set screenWidth to (screenWidth - dockHeight)
			end tell
		end if
	end tell
	
	set screenHeight to (screenHeight + 22)
	set myFrontMost to name of first item of ¬
		(processes whose frontmost is true)
end tell

try
	tell application myFrontMost
		set windowSize to bounds of window 1
		set windowXl to item 1 of windowSize
		set windowYt to item 2 of windowSize
		set windowXr to item 3 of windowSize
		set windowYb to item 4 of windowSize
		
		set windowWidth to windowXr - windowXl
		set windowHeight to windowYb - windowYt
		
		if myFrontMost is &quot;Terminal&quot; then
			set bounds of window 1 to {¬
				round ((screenWidth - windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight - windowHeight) / 2) rounding as taught in school, ¬
				round ((screenWidth + windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight + windowHeight) / 2) rounding as taught in school}
		else
			set bounds of window 1 to {¬
				round ((screenWidth - windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight - windowHeight) / 2) rounding as taught in school, ¬
				round ((screenWidth + windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight + windowHeight) / 2) rounding as taught in school}
		end if
		
		set the result to bounds of window 1
		
	end tell
end try</description>
		<content:encoded><![CDATA[<p>I&#8217;ve updated my version of the script to take into account dock position and menu bar height — I also made sure to include your Terminal workaround, Tim. Enjoy! <img src='http://static.incrementalism.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>tell application &#8220;Finder&#8221;<br />
	set screenSize to bounds of window of desktop<br />
	set screenWidth to item 3 of screenSize<br />
	set screenHeight to item 4 of screenSize<br />
end tell</p>
<p>tell application &#8220;System Events&#8221;<br />
	tell dock preferences<br />
		if screen edge is bottom then<br />
			tell application &#8220;System Events&#8221; to tell process &#8220;Dock&#8221;<br />
				set dockSize to size in list 1<br />
				set dockHeight to item 2 of dockSize<br />
				set screenHeight to (screenHeight &#8211; dockHeight)<br />
			end tell<br />
		else if screen edge is left then<br />
			tell application &#8220;System Events&#8221; to tell process &#8220;Dock&#8221;<br />
				set dockSize to size in list 1<br />
				set dockHeight to item 1 of dockSize<br />
				set screenWidth to (screenWidth + dockHeight)<br />
			end tell<br />
		else<br />
			tell application &#8220;System Events&#8221; to tell process &#8220;Dock&#8221;<br />
				set dockSize to size in list 1<br />
				set dockHeight to item 1 of dockSize<br />
				set screenWidth to (screenWidth &#8211; dockHeight)<br />
			end tell<br />
		end if<br />
	end tell</p>
<p>	set screenHeight to (screenHeight + 22)<br />
	set myFrontMost to name of first item of ¬<br />
		(processes whose frontmost is true)<br />
end tell</p>
<p>try<br />
	tell application myFrontMost<br />
		set windowSize to bounds of window 1<br />
		set windowXl to item 1 of windowSize<br />
		set windowYt to item 2 of windowSize<br />
		set windowXr to item 3 of windowSize<br />
		set windowYb to item 4 of windowSize</p>
<p>		set windowWidth to windowXr &#8211; windowXl<br />
		set windowHeight to windowYb &#8211; windowYt</p>
<p>		if myFrontMost is &#8220;Terminal&#8221; then<br />
			set bounds of window 1 to {¬<br />
				round ((screenWidth &#8211; windowWidth) / 2) rounding as taught in school, ¬<br />
				round ((screenHeight &#8211; windowHeight) / 2) rounding as taught in school, ¬<br />
				round ((screenWidth + windowWidth) / 2) rounding as taught in school, ¬<br />
				round ((screenHeight + windowHeight) / 2) rounding as taught in school}<br />
		else<br />
			set bounds of window 1 to {¬<br />
				round ((screenWidth &#8211; windowWidth) / 2) rounding as taught in school, ¬<br />
				round ((screenHeight &#8211; windowHeight) / 2) rounding as taught in school, ¬<br />
				round ((screenWidth + windowWidth) / 2) rounding as taught in school, ¬<br />
				round ((screenHeight + windowHeight) / 2) rounding as taught in school}<br />
		end if</p>
<p>		set the result to bounds of window 1</p>
<p>	end tell<br />
end try</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Centering Windows in Mac OS X with AppleScript by Tim Moore</title>
		<link>http://incrementalism.net/tech/centering-windows-in-mac-os-x-with-applescript/comment-page-1#comment-17384</link>
		<dc:creator>Tim Moore</dc:creator>
		<pubDate>Mon, 07 Mar 2011 10:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/?p=124#comment-17384</guid>
		<description>I found a &lt;a href=&quot;http://apple.stackexchange.com/questions/9632/center-window-on-screen&quot; rel=&quot;nofollow&quot;&gt;post on Stack Exchange&lt;/a&gt; that links to this post but asks about the issue with the Terminal. It&#039;s just a bug in Terminal&#039;s Apple Events support, but there is a workaround. Here it is:

[applescript]
tell application &quot;Finder&quot;
	set screenSize to bounds of window of desktop
	set screenWidth to item 3 of screenSize
	set screenHeight to item 4 of screenSize
end tell

tell application &quot;System Events&quot;
	set myFrontMost to name of first item of ¬
		(processes whose frontmost is true)
end tell

try
	tell application myFrontMost
		set windowSize to bounds of window 1
		set windowXl to item 1 of windowSize
		set windowYt to item 2 of windowSize
		set windowXr to item 3 of windowSize
		set windowYb to item 4 of windowSize
		
		set windowWidth to windowXr - windowXl
		set windowHeight to windowYb - windowYt
		
		if myFrontMost is &quot;Terminal&quot; then
			set bounds of window 1 to {¬
				round ((screenWidth - windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight + windowHeight) / 2) rounding as taught in school, ¬
				round ((screenWidth + windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight + windowHeight) / 2 + windowHeight) rounding as taught in school}
		else
			set bounds of window 1 to {¬
				round ((screenWidth - windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight - windowHeight) / 2) rounding as taught in school, ¬
				round ((screenWidth + windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight + windowHeight) / 2) rounding as taught in school}
		end if
		
		set the result to bounds of window 1
		
	end tell
end try
[/applescript]</description>
		<content:encoded><![CDATA[<p>I found a <a href="http://apple.stackexchange.com/questions/9632/center-window-on-screen" rel="nofollow">post on Stack Exchange</a> that links to this post but asks about the issue with the Terminal. It&#8217;s just a bug in Terminal&#8217;s Apple Events support, but there is a workaround. Here it is:</p>
<pre class="brush: applescript; title: ; notranslate">
tell application &quot;Finder&quot;
	set screenSize to bounds of window of desktop
	set screenWidth to item 3 of screenSize
	set screenHeight to item 4 of screenSize
end tell

tell application &quot;System Events&quot;
	set myFrontMost to name of first item of ¬
		(processes whose frontmost is true)
end tell

try
	tell application myFrontMost
		set windowSize to bounds of window 1
		set windowXl to item 1 of windowSize
		set windowYt to item 2 of windowSize
		set windowXr to item 3 of windowSize
		set windowYb to item 4 of windowSize

		set windowWidth to windowXr - windowXl
		set windowHeight to windowYb - windowYt

		if myFrontMost is &quot;Terminal&quot; then
			set bounds of window 1 to {¬
				round ((screenWidth - windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight + windowHeight) / 2) rounding as taught in school, ¬
				round ((screenWidth + windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight + windowHeight) / 2 + windowHeight) rounding as taught in school}
		else
			set bounds of window 1 to {¬
				round ((screenWidth - windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight - windowHeight) / 2) rounding as taught in school, ¬
				round ((screenWidth + windowWidth) / 2) rounding as taught in school, ¬
				round ((screenHeight + windowHeight) / 2) rounding as taught in school}
		end if

		set the result to bounds of window 1

	end tell
end try
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 10 Reasons Why Being 30 is Better Than Being 20 by Tim Moore</title>
		<link>http://incrementalism.net/personal/thirty-vs-twenty/comment-page-1#comment-17383</link>
		<dc:creator>Tim Moore</dc:creator>
		<pubDate>Mon, 07 Mar 2011 09:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/personal/thirty-vs-twenty#comment-17383</guid>
		<description>Wow, &lt;em&gt;the&lt;/em&gt; Andrew Martinez, Berkeley’s infamous &lt;a href=&quot;http://en.wikipedia.org/wiki/Andrew_Martinez&quot; rel=&quot;nofollow&quot;&gt;&quot;Naked Guy&quot;&lt;/a&gt;? I was sure you were dead, but it’s awfully nice of you to rise from the grave to leave a zombie comment on a three-year-old blog post to let me know how you feel.

Anyway, if any other readers out there want to send the Naked Guy a nice hello message or subscribe him to any gay porn mailing lists, he can be reached at &lt;a href=&quot;mailto:andrewmartinez78@yahoo.com&quot; rel=&quot;nofollow&quot;&gt;andrewmartinez78@yahoo.com&lt;/a&gt;. Have fun!

&lt;img src=&quot;http://www.berkeleydailyplanet.com/photos/05-23-06/webNaked.jpg&quot; alt=&quot;Andrew Martinez being arrested&quot; /&gt;</description>
		<content:encoded><![CDATA[<p>Wow, <em>the</em> Andrew Martinez, Berkeley’s infamous <a href="http://en.wikipedia.org/wiki/Andrew_Martinez" rel="nofollow">&#8220;Naked Guy&#8221;</a>? I was sure you were dead, but it’s awfully nice of you to rise from the grave to leave a zombie comment on a three-year-old blog post to let me know how you feel.</p>
<p>Anyway, if any other readers out there want to send the Naked Guy a nice hello message or subscribe him to any gay porn mailing lists, he can be reached at <a href="mailto:andrewmartinez78@yahoo.com" rel="nofollow">andrewmartinez78@yahoo.com</a>. Have fun!</p>
<p><img src="http://www.berkeleydailyplanet.com/photos/05-23-06/webNaked.jpg" alt="Andrew Martinez being arrested" /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 10 Reasons Why Being 30 is Better Than Being 20 by Andrew Martinez</title>
		<link>http://incrementalism.net/personal/thirty-vs-twenty/comment-page-1#comment-17382</link>
		<dc:creator>Andrew Martinez</dc:creator>
		<pubDate>Sun, 06 Mar 2011 16:00:22 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/personal/thirty-vs-twenty#comment-17382</guid>
		<description>You are such a fag!</description>
		<content:encoded><![CDATA[<p>You are such a fag!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Centering Windows in Mac OS X with AppleScript by Tim Moore</title>
		<link>http://incrementalism.net/tech/centering-windows-in-mac-os-x-with-applescript/comment-page-1#comment-17355</link>
		<dc:creator>Tim Moore</dc:creator>
		<pubDate>Fri, 21 Jan 2011 22:52:11 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/?p=124#comment-17355</guid>
		<description>Good tip, Andrew. Thanks!</description>
		<content:encoded><![CDATA[<p>Good tip, Andrew. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Centering Windows in Mac OS X with AppleScript by Andrew Goodrick-Werner</title>
		<link>http://incrementalism.net/tech/centering-windows-in-mac-os-x-with-applescript/comment-page-1#comment-17354</link>
		<dc:creator>Andrew Goodrick-Werner</dc:creator>
		<pubDate>Thu, 20 Jan 2011 05:22:26 +0000</pubDate>
		<guid isPermaLink="false">http://incrementalism.net/?p=124#comment-17354</guid>
		<description>Also, here&#039;s a tip I&#039;ve found to be extremely useful.

You can make this AppleScript a Service that is accessible from any application&#039;s menu in the Menu Bar. Open Automator, create a new Service — setting the options at the top to &quot;no input&quot; and &quot;any application&quot; — drag &quot;Run AppleScript&quot; into the workflow, and paste one of the scripts posted above into the text field. Save the Service, and run it from the Services menu in the Menu Bar.

I prefer this method to having the Scripts menu always visible in my menu bar, since this is the only AppleScript I use regularly.</description>
		<content:encoded><![CDATA[<p>Also, here&#8217;s a tip I&#8217;ve found to be extremely useful.</p>
<p>You can make this AppleScript a Service that is accessible from any application&#8217;s menu in the Menu Bar. Open Automator, create a new Service — setting the options at the top to &#8220;no input&#8221; and &#8220;any application&#8221; — drag &#8220;Run AppleScript&#8221; into the workflow, and paste one of the scripts posted above into the text field. Save the Service, and run it from the Services menu in the Menu Bar.</p>
<p>I prefer this method to having the Scripts menu always visible in my menu bar, since this is the only AppleScript I use regularly.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 4/18 queries in 0.055 seconds using disk: basic
Object Caching 437/443 objects using disk: basic
Content Delivery Network via static.incrementalism.net

Served from: incrementalism.net @ 2012-05-29 06:43:01 -->
