<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for Mac &amp; Tech</title>
	
	<link>http://www.macandtech.com</link>
	<description>Tech talk on Apple - Macs - OS X - Switching to Mac - High Tech - PC Tech - Gadgets - macandtech.com</description>
	<lastBuildDate>Sun, 08 Nov 2009 16:11:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/macandtech-comments" /><feedburner:info uri="macandtech-comments" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Comment on iPhoto ‘09: Force iPhoto to rebuild all Faces data by Jørgen Tietze</title>
		<link>http://www.macandtech.com/2009/01/29/iphoto-%e2%80%9809-force-iphoto-to-rebuild-all-faces-data/comment-page-1/#comment-86</link>
		<dc:creator>Jørgen Tietze</dc:creator>
		<pubDate>Sun, 08 Nov 2009 16:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.macandtech.com/?p=234#comment-86</guid>
		<description>You do not have to delete your faces database. You can just select all your photos, right click and select "Detect Missing Faces"</description>
		<content:encoded><![CDATA[<p>You do not have to delete your faces database. You can just select all your photos, right click and select &#8220;Detect Missing Faces&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhoto ‘09: Force iPhoto to rebuild all Faces data by Chris Milne</title>
		<link>http://www.macandtech.com/2009/01/29/iphoto-%e2%80%9809-force-iphoto-to-rebuild-all-faces-data/comment-page-1/#comment-85</link>
		<dc:creator>Chris Milne</dc:creator>
		<pubDate>Sun, 19 Jul 2009 22:32:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.macandtech.com/?p=234#comment-85</guid>
		<description>Thanks for the advice, in my case I had tagged too many images to reset the database. I did find a way to recreate the images, though it is time consuming. When I browser the library in Faces some of the thumbnails were there, others were missing. I selected the missing ones, right-clicked and selected "Detect Missing Faces" and it recreated the thumbnails.</description>
		<content:encoded><![CDATA[<p>Thanks for the advice, in my case I had tagged too many images to reset the database. I did find a way to recreate the images, though it is time consuming. When I browser the library in Faces some of the thumbnails were there, others were missing. I selected the missing ones, right-clicked and selected &#8220;Detect Missing Faces&#8221; and it recreated the thumbnails.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apple Mail won’t add attachments. by Jason Webster</title>
		<link>http://www.macandtech.com/2008/07/06/apple-mail-wont-add-attachments/comment-page-1/#comment-84</link>
		<dc:creator>Jason Webster</dc:creator>
		<pubDate>Mon, 13 Jul 2009 19:29:12 +0000</pubDate>
		<guid isPermaLink="false">http://netnothing.net/?p=20#comment-84</guid>
		<description>This started causing problems for me in early 90, seemed to be introduced by a security update or possibly iLife Media Browser Update (just a hunch). Images couldn't be pasted or dragndropped into a Mail message, and it was annoying to me that the default became "Insert Attachments at End of Message".

I opened up the com.apple.mail.plist and changed the "AttachAtEnd" entry from "1" to "0" fixed both issues.

Hope that helps someone, even though this thread is a bit old!</description>
		<content:encoded><![CDATA[<p>This started causing problems for me in early 90, seemed to be introduced by a security update or possibly iLife Media Browser Update (just a hunch). Images couldn&#8217;t be pasted or dragndropped into a Mail message, and it was annoying to me that the default became &#8220;Insert Attachments at End of Message&#8221;.</p>
<p>I opened up the com.apple.mail.plist and changed the &#8220;AttachAtEnd&#8221; entry from &#8220;1&#8243; to &#8220;0&#8243; fixed both issues.</p>
<p>Hope that helps someone, even though this thread is a bit old!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhoto ‘09: What is Faces doing behind the scenes by Darryl</title>
		<link>http://www.macandtech.com/2009/01/29/iphoto-09-what-is-faces-doing-behind-the-scenes/comment-page-1/#comment-80</link>
		<dc:creator>Darryl</dc:creator>
		<pubDate>Wed, 20 May 2009 18:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.macandtech.com/?p=232#comment-80</guid>
		<description>OS X includes the sqlite3 database client that lets you poke around in those *.db files (which are sqlite databases).  Here's some useful queries:

echo 'select image_key from detected_face, face_name where detected_face.face_key=face_name.face_key and name="Luke";' | sqlite3 face.db

echo 'select relativePath from SqFileInfo, SqFileImage where SqFileImage.photokey=1288 and imageType=6 and SqFileImage.primaryKey=SqFileInfo.primaryKey ;' | sqlite3 iPhotoMain.db

The first query dumps a list of all of the photokeys (unique identifiers for every photo in your iPhoto library) for the tag "Luke".

The second query lets you find the location of the original photo that matches photoKey 1288 (one of the "Luke" photos listed in the previous query.

If and when I ever get my 200GB+ of photos sufficiently face-tagged, I plan to use those queries in conjunction with Perl and a library called exiftool to embed tags into the photos themselves as IPTC Keywords.  (Meaning they will follow me whereever I take my photos, be it Aperture, Lightroom, Flickr, SmugMug, whatever.)

I'll get around to publishing the Perl scripts when I finish writing 'em.</description>
		<content:encoded><![CDATA[<p>OS X includes the sqlite3 database client that lets you poke around in those *.db files (which are sqlite databases).  Here&#8217;s some useful queries:</p>
<p>echo &#8217;select image_key from detected_face, face_name where detected_face.face_key=face_name.face_key and name=&#8221;Luke&#8221;;&#8217; | sqlite3 face.db</p>
<p>echo &#8217;select relativePath from SqFileInfo, SqFileImage where SqFileImage.photokey=1288 and imageType=6 and SqFileImage.primaryKey=SqFileInfo.primaryKey ;&#8217; | sqlite3 iPhotoMain.db</p>
<p>The first query dumps a list of all of the photokeys (unique identifiers for every photo in your iPhoto library) for the tag &#8220;Luke&#8221;.</p>
<p>The second query lets you find the location of the original photo that matches photoKey 1288 (one of the &#8220;Luke&#8221; photos listed in the previous query.</p>
<p>If and when I ever get my 200GB+ of photos sufficiently face-tagged, I plan to use those queries in conjunction with Perl and a library called exiftool to embed tags into the photos themselves as IPTC Keywords.  (Meaning they will follow me whereever I take my photos, be it Aperture, Lightroom, Flickr, SmugMug, whatever.)</p>
<p>I&#8217;ll get around to publishing the Perl scripts when I finish writing &#8216;em.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WHDH-TV News goes HD….and switches to Mac by KB</title>
		<link>http://www.macandtech.com/2008/08/09/whdh-tv-news-goes-hd-and-switches-to-mac/comment-page-1/#comment-78</link>
		<dc:creator>KB</dc:creator>
		<pubDate>Wed, 11 Feb 2009 23:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.macandtech.com/?p=130#comment-78</guid>
		<description>Wow....took them long enough to add them.  Guess they didn't want to give Apple any free advertising!</description>
		<content:encoded><![CDATA[<p>Wow&#8230;.took them long enough to add them.  Guess they didn&#8217;t want to give Apple any free advertising!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WHDH-TV News goes HD….and switches to Mac by mike</title>
		<link>http://www.macandtech.com/2008/08/09/whdh-tv-news-goes-hd-and-switches-to-mac/comment-page-1/#comment-77</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Wed, 11 Feb 2009 23:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.macandtech.com/?p=130#comment-77</guid>
		<description>those laptops now have 7 logos on them</description>
		<content:encoded><![CDATA[<p>those laptops now have 7 logos on them</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apple Mail won’t add attachments. by Doug</title>
		<link>http://www.macandtech.com/2008/07/06/apple-mail-wont-add-attachments/comment-page-1/#comment-76</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Sat, 31 Jan 2009 12:21:17 +0000</pubDate>
		<guid isPermaLink="false">http://netnothing.net/?p=20#comment-76</guid>
		<description>It is worse than you think, unfortunately.  We have seen a repeatable bug with Apple Mail where if you drop an attachment mid-way through the body of you message, when sent it occasionally deletes all body text below where the message was dropped.  This doesn't happen all the time, but is repeatable when it does happen between a particular sender and recipient.</description>
		<content:encoded><![CDATA[<p>It is worse than you think, unfortunately.  We have seen a repeatable bug with Apple Mail where if you drop an attachment mid-way through the body of you message, when sent it occasionally deletes all body text below where the message was dropped.  This doesn&#8217;t happen all the time, but is repeatable when it does happen between a particular sender and recipient.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apple Mail won’t add attachments. by Neil</title>
		<link>http://www.macandtech.com/2008/07/06/apple-mail-wont-add-attachments/comment-page-1/#comment-74</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Tue, 16 Dec 2008 02:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://netnothing.net/?p=20#comment-74</guid>
		<description>I spent an hour debugging this.</description>
		<content:encoded><![CDATA[<p>I spent an hour debugging this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Disable the Genre column in the iTunes 8 browser by Luke</title>
		<link>http://www.macandtech.com/2008/09/10/disable-the-genre-column-in-the-itunes-8-browser/comment-page-1/#comment-62</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Wed, 10 Sep 2008 18:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.macandtech.com/?p=148#comment-62</guid>
		<description>Apple why did you change this, plus a lot of other options like in preference:


-Show genre when browsing
-Group compilations when browsing
-Show links to the iTunes Store
-Show content ratings in library
-Automatically download missing album artwork
-Remember view setting for each source</description>
		<content:encoded><![CDATA[<p>Apple why did you change this, plus a lot of other options like in preference:</p>
<p>-Show genre when browsing<br />
-Group compilations when browsing<br />
-Show links to the iTunes Store<br />
-Show content ratings in library<br />
-Automatically download missing album artwork<br />
-Remember view setting for each source</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apple Mac OS X 10.6 – Snow Leopard by Jody Rusnak</title>
		<link>http://www.macandtech.com/2008/07/08/apple-mac-os-x-snow-leopard-grandcentral-quicktimex/comment-page-1/#comment-46</link>
		<dc:creator>Jody Rusnak</dc:creator>
		<pubDate>Tue, 26 Aug 2008 15:39:02 +0000</pubDate>
		<guid isPermaLink="false">http://netnothing.net/?p=21#comment-46</guid>
		<description>I think the future of adding the GPU to the supercomputer equation lies in OpenCL. If Apple is implementing it you know it is going to be a great solution. I think this alone will completely eclipse anything Windows will be able to offer in raw computational horsepower.

Since ATI has decided to implement OpenCL I think this will be the main threat to Intel's Larrabee conecpt. GPU's are far too advanced for raw number crunching power compared to anything Intel will ever be able to produce using a complex instruction set instead of the stream processor. CPU for the main application. GPU for accelerating programs processing realtime HD 1080p imagery and video through OpenCL.</description>
		<content:encoded><![CDATA[<p>I think the future of adding the GPU to the supercomputer equation lies in OpenCL. If Apple is implementing it you know it is going to be a great solution. I think this alone will completely eclipse anything Windows will be able to offer in raw computational horsepower.</p>
<p>Since ATI has decided to implement OpenCL I think this will be the main threat to Intel&#8217;s Larrabee conecpt. GPU&#8217;s are far too advanced for raw number crunching power compared to anything Intel will ever be able to produce using a complex instruction set instead of the stream processor. CPU for the main application. GPU for accelerating programs processing realtime HD 1080p imagery and video through OpenCL.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
