<?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>skettle.com &#187; S.A.S.Q.</title>
	<atom:link href="http://skettle.com/category/sasq/feed/" rel="self" type="application/rss+xml" />
	<link>http://skettle.com</link>
	<description>The Blog Is Not The Point</description>
	<lastBuildDate>Fri, 25 Jun 2010 05:24:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>AppleScript Code for Converting an AVI to an MP4 in QuickTime Pro</title>
		<link>http://skettle.com/2007/11/19/applescript-code-for-converting-an-avi-to-an-mp4/</link>
		<comments>http://skettle.com/2007/11/19/applescript-code-for-converting-an-avi-to-an-mp4/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 12:38:10 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[S.A.S.Q.]]></category>

		<guid isPermaLink="false">http://skettle.com/2007/11/19/applescript-code-for-converting-an-avi-to-an-mp4/</guid>
		<description><![CDATA[Anther Simple Answer to a Specific Quesion: As part of my ongoing obsession with converting and storing video on the Mac, one of the obvious tools I&#8217;ve looked at for converting from .avi files .mp4 files QuickTime. Assuming you can get your video to play (hint: http://www.divx.com/), Quicktime Pro has an Export feature that produces [...]]]></description>
			<content:encoded><![CDATA[<p>Anther Simple Answer to a Specific Quesion:</p>
<p>As part of my ongoing obsession with converting and storing video on the Mac, one of the obvious tools I&#8217;ve looked at for converting from .avi files .mp4 files QuickTime.  Assuming you can get your video to play (hint: <a href="http://www.divx.com/" target="_new">http://www.divx.com/</a>), Quicktime Pro has an Export feature that produces very acceptable video using the H.264 codec.  </p>
<p>Since there didn&#8217;t seem to be any mechanism for batch processing, I looked into using Applescript to automate the task.  I found numerous examples online that <i>almost</i> did what I needed, but nothing that was exactly right.  In every case, the format was wrong, and the script in question did way more than I wanted.  So here&#8217;s the bare bones, stripped down AppleScript code for&#8230;</p>
<p>&#8230;saving MPEG4 export settings to an external file:</p>
<pre>
tell app "QuickTime Player"
    tell first movie
        save export settings for MPEG4 to file "Users:yourname:MPEG4 Settings"
    end tell
end tell
</pre>
<p>&#8230;and converting an .avi file to an .mp4 using a saved external settings file:</p>
<pre>
tell application "QuickTime Player"
    activate
    close every window
end tell
tell application "QuickTime Player"
    open "Data:Upload:Harvey Birdman - 4x02 - Incredible Hippo.avi"
    if (can export front movie as MPEG4) then
        set theTime to duration of front movie
        with timeout of theTime seconds
            export front movie to ("Data:Upload:Harvey Birdman - 4x02 - Incredible Hippo.mp4") as MPEG4 using settings file "Users:yourname:MPEG4 Settings"
        end timeout
    end if
end tell
quit application "Quicktime Player"
</pre>
]]></content:encoded>
			<wfw:commentRss>http://skettle.com/2007/11/19/applescript-code-for-converting-an-avi-to-an-mp4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set a value as &#8220;Primary&#8221; in the Mac Address Book</title>
		<link>http://skettle.com/2007/10/22/how-to-set-a-value-as-primary-in-the-mac-address-book/</link>
		<comments>http://skettle.com/2007/10/22/how-to-set-a-value-as-primary-in-the-mac-address-book/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 01:14:05 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[S.A.S.Q.]]></category>

		<guid isPermaLink="false">http://skettle.com/2007/10/22/how-to-set-a-value-as-primary-in-the-mac-address-book/</guid>
		<description><![CDATA[Another Simple Answer to a Specific Question: As of OS X 10.4.10, at least, the Mac Address has the concept of &#8220;Primary&#8221; email addresses, phone numbers and street addresses for each contact, but you cannot change them unless you install a plug-in.]]></description>
			<content:encoded><![CDATA[<p>Another Simple Answer to a Specific Question:</p>
<p>As of OS X 10.4.10, at least, the Mac Address has the concept of &#8220;Primary&#8221; email addresses, phone numbers and street addresses for each contact, but you cannot change them unless you <a href="http://mac.rbytes.net/cat/mac/utilities/set-primary-addresses/">install a plug-in</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://skettle.com/2007/10/22/how-to-set-a-value-as-primary-in-the-mac-address-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing a PHP CLI segmentation fault</title>
		<link>http://skettle.com/2007/09/17/fixing-a-php-cli-segmentation-fault/</link>
		<comments>http://skettle.com/2007/09/17/fixing-a-php-cli-segmentation-fault/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 10:29:35 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[S.A.S.Q.]]></category>

		<guid isPermaLink="false">http://skettle.com/2007/09/17/fixing-a-php-cli-segmentation-fault/</guid>
		<description><![CDATA[Another Short Answer to a Specific Question: Sometimes, after an upgrade, any PHP script run from the command line causes a segmentation fault, even though the script seems to run fine. For example: [03:13:01 argon:~]$ php -v PHP 5.2.4 with Suhosin-Patch 0.9.6.2 (cli) (built: Sep 17 2007 02:28:25) Copyright (c) 1997-2007 The PHP Group Zend [...]]]></description>
			<content:encoded><![CDATA[<p>Another Short Answer to a Specific Question:</p>
<p>Sometimes, after an upgrade, any PHP script run from the command line causes a segmentation fault, even though the script seems to run fine.  For example:</p>
<pre lang="bash">
[03:13:01 argon:~]$ php -v
PHP 5.2.4 with Suhosin-Patch 0.9.6.2 (cli) (built: Sep 17 2007 02:28:25)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
Segmentation fault: 11 (core dumped)
[03:13:02 argon:~]$</pre>
<p>Whenever this happens, I can usually resolve the problem by changing the order of the modules listed in extensions.ini. Three times out of four, moving &#8220;extension=session.so&#8221; to the top of the file fixes the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://skettle.com/2007/09/17/fixing-a-php-cli-segmentation-fault/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>No Thumbnail for an Uploaded Image in WordPress</title>
		<link>http://skettle.com/2007/09/13/no-thumbnail-for-an-uploaded-image-in-wordpress/</link>
		<comments>http://skettle.com/2007/09/13/no-thumbnail-for-an-uploaded-image-in-wordpress/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 14:26:28 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[S.A.S.Q.]]></category>

		<guid isPermaLink="false">http://skettle.com/2007/09/13/no-thumbnail-for-an-uploaded-image-in-wordpress/</guid>
		<description><![CDATA[A Short Answer to a Specific Question: If you upload an image in WordPress, and you don&#8217;t get the option to &#8220;Show Thumbnail&#8221; in the &#8220;Send to Editor&#8221;, it&#8217;s probably because the image was too big. Also: there is no good way to resize an image in iPhoto. A free tool to resize images on [...]]]></description>
			<content:encoded><![CDATA[<p>A Short Answer to a Specific Question:</p>
<p>If you upload an image in WordPress, and you don&#8217;t get the option to &#8220;Show Thumbnail&#8221; in the &#8220;Send to Editor&#8221;, it&#8217;s probably because the image was too big.</p>
<p>Also: there is no good way to resize an image in iPhoto.</p>
<p>A free tool to resize images on the Mac is <a href="http://xtralean.com/index.html" title="A free tool for resizing images on the Mac.">ImageWell</a>, from XtraLean Software.</p>
]]></content:encoded>
			<wfw:commentRss>http://skettle.com/2007/09/13/no-thumbnail-for-an-uploaded-image-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Short Answers to Specific Questions</title>
		<link>http://skettle.com/2007/09/13/short-answers-to-specific-questions/</link>
		<comments>http://skettle.com/2007/09/13/short-answers-to-specific-questions/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 14:18:45 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[S.A.S.Q.]]></category>

		<guid isPermaLink="false">http://skettle.com/2007/09/13/short-answers-to-specific-questions/</guid>
		<description><![CDATA[I&#8217;ll be perfectly frank; I don&#8217;t like blogs. For the most part, I think they&#8217;re pretentious, self centered, and everytime someone references &#8220;my audience&#8221; when they&#8217;re not talking about a show they were headlining at Shoreline, I have the mild urge to cram a squirrel in &#8216;em. That being said, though, I&#8217;ve often thought that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be perfectly frank; I don&#8217;t like blogs.  For the most part, I think they&#8217;re pretentious, self centered, and everytime someone references &#8220;my audience&#8221; when they&#8217;re not talking about a show they were headlining at Shoreline, I have the mild urge to cram a squirrel in &#8216;em.</p>
<p>That being said, though, I&#8217;ve often thought that if I were ever to start a blog, in addition to whatever hare-brained reason I had for doing it in the first place, I would also try to add a little bit to the sum total of human knowledge by occasionally posting the one thing I&#8217;m always grateful for when I&#8217;m lucky enough to find it: the short answer to the specific question.</p>
<p>From now on, when I&#8217;m searching for one specific piece of information, or the answer to a very direct technical question, I&#8217;ll try to post it here, so on the off chance that someone else is looking for it, they might stumble on it.  You never know.</p>
]]></content:encoded>
			<wfw:commentRss>http://skettle.com/2007/09/13/short-answers-to-specific-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
