<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>CogDogBlog &#187; search</title>
	<atom:link href="http://cogdogblog.com/tag/search/feed/" rel="self" type="application/rss+xml" />
	<link>http://cogdogblog.com</link>
	<description>Alan Levine&#039;s space for barking about and playing with technology</description>
	<lastBuildDate>Mon, 13 Feb 2012 03:36:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/us/</creativeCommons:license>
		<item>
		<title>Rigging Up Chrome Search Shortcuts</title>
		<link>http://cogdogblog.com/2011/04/08/search-shortcuts/</link>
		<comments>http://cogdogblog.com/2011/04/08/search-shortcuts/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 01:38:55 +0000</pubDate>
		<dc:creator>Alan Levine aka CogDog</dc:creator>
				<category><![CDATA[Blog Pile]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://cogdogblog.com/?p=6624</guid>
		<description><![CDATA[cc licensed ( BY ) flickr photo shared by Pink Sherbet Photography Summoning a deep toned Don Fontaine voice In a world of 140 characters&#8230; every keystroke, every picosecond saved counts. There is one who can get to their search results the quickest&#8230; There are times when it benefits you to be the quickest search to get the URL to tweet or toss into a webinar chat, but it is also efficient to make the finding process less tedious. I had long ago forgotten how I got them into Chrome (I think it was first done in Firefox and brought over), but I had a few quick search short cuts set up, like typing &#8220;f&#8221; in the address bar, pressing space- then a keyword, press return (enter), and boom! I get flickr search results from my photos right away. Somewhere in the process of moving off of the development version [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Beach Shell Searching Girl Free Creative Commons" href="http://flickr.com/photos/pinksherbet/2124297225/"><img src="http://farm3.static.flickr.com/2190/2124297225_bb41696a8b.jpg" /></a><br /><small><a title="Beach Shell Searching Girl Free Creative Commons" href="http://flickr.com/photos/pinksherbet/2124297225/">cc licensed ( BY )  flickr photo</a> shared by <a href="http://flickr.com/people/pinksherbet/">Pink Sherbet Photography</a></small></p>
<p><em>Summoning a deep toned <a href="http://www.youtube.com/watch?v=7QPMvj_xejg">Don Fontaine</a> voice</em> In a world of 140 characters&#8230; every keystroke, every picosecond saved counts. There is one who can get to their search results the quickest&#8230;</p>
<p>There are times when it benefits you to be the quickest search to get the URL to tweet or toss into a webinar chat, but it is also efficient to make the finding process less tedious. I had long ago forgotten how I got them into Chrome (I think it was first done in Firefox and brought over), but I had a few quick search short cuts set up, like typing &#8220;f&#8221; in the address bar, pressing space- then a keyword, press return (enter), and boom! I get flickr search results from my photos right away.</p>
<p>Somewhere in the process of moving off of the development version of Chrome I had been running (for some unknown reason) which started doing weird things (putting pieces of pages in other tabs down at the bottom) back to the production version&#8211; I lost my short cut searches.</p>
<p>Where did they go? How do I get them back? What do I do?</p>
<p>I search for the answer&#8230; and find about 15&#8230; here was <a href="http://www.wolf-howl.com/google/how-to-add-search-shortcuts-to-google-chrome/">my refresher from Michael Greywolf</a>.</p>
<p>What you need to do is pull up your Chrome Preferences (on Mac) or Options (on that other platform), either under the Chrome menu or that little settings wrench on the top right of your bar.</p>
<p>Have you seen this yet? It&#8217;s access to your settings for chrome, look under the Basics section, and click on <strong>Manage Search Engines</strong></p>
<p><img src="http://cogdogblog.com/wp-content/uploads/2011/04/chrome-preferences.jpg" alt="" title="chrome preferences" width="500" height="306" class="alignnone size-full wp-image-6625" /></p>
<p>From what I could see Chrome listed the last few search sites I had used; the three columns are the name of the site, in the middle the url of the site, and a search string on the right (that is actually a special string as we can see).</p>
<p><img src="http://cogdogblog.com/wp-content/uploads/2011/04/chrome-search-engines.jpg" alt="" title="chrome search engines" width="500" height="288" class="alignnone size-full wp-image-6626" /></p>
<p>I had already started editing the middle column, but if you replace what is there with a short code, like I used &#8220;tw&#8221; for a twitter search, that means, for a quick twitter search, I just go to the address bar, type &#8220;tw&#8221;, press space, then type my keywords, like &#8220;grand canyon&#8221;, press return, and shaboom! I did a twitter search w/o having to go to their form first.</p>
<p>If you look at the URL, it is:</p>
<p><pre><pre>
http://search.twitter.com/search?q=%s
</pre></pre></p>
<p>That %s is a variable that represents whatever string you type into the bar, say my &#8220;grand canyon&#8221; and it makes that url into </p>
<p><pre><pre>
http://search.twitter.com/search?q=grand+canyon
</pre></pre></p>
<p>Now here is what&#8217;s cool- you can make your own search short cuts. You just need to go to the site you want to search, run the query with the settings you want, and parse out the search results url and replace where ever you see your entered keywords with &#8220;%s&#8221;. You can then go to the Manage Search Engines thingie, and create your own short cut.</p>
<p>Let&#8217;s walk i through for something useful. How about making one to search flickr creative common photos? That might be handy to do quickly, eh?</p>
<p>I go to flickr&#8217;s advanced search, select the options for photos only and Create Commons licensed, and <a href="http://www.flickr.com/search/?l=cc&#038;ct=6&#038;mt=photos&#038;adv=1&#038;w=all&#038;q=dog&#038;m=text">enter something important, like &#8220;dog&#8221;</a> (just to get a results string)</p>
<p><a href="http://www.flickr.com/search/?l=cc&amp;ct=6&amp;mt=photos&amp;adv=1&amp;w=all&amp;q=dog&amp;m=text"><img src="http://cogdogblog.com/wp-content/uploads/2011/04/dog-search.jpg" alt="" title="dog search" width="500" height="247" class="alignnone size-full wp-image-6627" /></a></p>
<p>So let&#8217;s copy the URL that we have now&#8211; </p>
<p><pre><pre>
http://www.flickr.com/search/?l=cc&amp;ct=6&amp;mt=photos&amp;adv=1&amp;w=all&amp;q=dog&amp;m=text
</pre></pre></p>
<p>And we see our search term is there at <strong>&#038;q=dog</strong>. What we need to do is switch out &#8220;dog&#8221; for &#8220;%s&#8221; and we have the URL we need for our manages search.</p>
<p>I then go to my preferences and at the bottom, use the blank fields. I might enter for name (first box) &#8220;flickr cc search&#8221;, in the middle, my shortcut, say &#8220;fcc&#8221;, and then the third box enter this URL.</p>
<p>Now when i want to do this quick search, from anywhere I am in the web, I type in my address bar fcc, press space- i see now in blue &#8220;Search&#8221; and the name I gave it</p>
<p><img src="http://cogdogblog.com/wp-content/uploads/2011/04/search-dog.png" alt="" title="search dog" width="318" height="58" class="aligncenter size-full wp-image-6628" /></p>
<p>and when I press RETURN (or enter), I get the results right there, again saving me those laborious seconds of going to search form, typing in keywords, selecting options&#8230;.</p>
<p>I made another one just to search my own flickr photos. I also use this one to search php.net for a function name</p>
<p>http://www.php.net/manual-lookup.php?pattern=%s</p>
<p>So any search result can be turned into a browser bar short cut search.</p>
<p>And you know what that is? (I found this with my own shortcut)</p>
<p><a title="Cool City Limit" href="http://flickr.com/photos/auvet/2973207730/"><img src="http://farm4.static.flickr.com/3141/2973207730_7c547e5a42.jpg" /></a><br /><small><a title="Cool City Limit" href="http://flickr.com/photos/auvet/2973207730/">cc licensed ( BY NC ND )  flickr photo</a> shared by <a href="http://flickr.com/people/auvet/">jimmywayne</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://cogdogblog.com/2011/04/08/search-shortcuts/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Accidental Timeline</title>
		<link>http://cogdogblog.com/2011/01/01/accidental-timeline/</link>
		<comments>http://cogdogblog.com/2011/01/01/accidental-timeline/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 19:48:44 +0000</pubDate>
		<dc:creator>Alan Levine aka CogDog</dc:creator>
				<category><![CDATA[Blog Pile]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[web serendipity]]></category>

		<guid isPermaLink="false">http://cogdogblog.com/?p=6124</guid>
		<description><![CDATA[By sheer accident I stumbled across the google search results display that matches results to a timeline, here is a technology timeline This apparently lists results that have both your search keyword and a date. I cannot figure out how I got there, but if you take any standard results, say the big wide search on technology. From the results, on the left side bar, click the link for timeline. Now you can adjust the time range, or change the search terms, this time, say I wanted to create a search history timeline for China It could be an interesting activity/exercise to create other timelines. Google embeds surprising functional bits i search results. Looking to calculate a currency exchange? Just google &#8220;currency exchange&#8221; and you get a widget calculator right there. Have you found other embedded tools in search results? Thanks for the surprise serendipity (as if there were any [...]]]></description>
			<content:encoded><![CDATA[<p>By sheer accident I stumbled across the google search results display that matches results to a timeline, here is a technology timeline</p>
<p><a href="http://www.google.com/search?q=technology#q=technology&amp;hl=en&amp;prmd=ivnsbl&amp;source=lnt&amp;tbs=tl:1&amp;sa=X&amp;ei=uIIfTdfsKJH6sAOQw-TNAg&amp;ved=0CBAQpwU&amp;fp=b6497a4a7b4b5937"><img src="http://cogdogblog.com/wp-content/uploads/2011/01/technology-timeline.jpg" alt="" title="technology timeline" width="500" height="358" class="alignnone size-full wp-image-6125" /></a></p>
<p><img src="http://cogdogblog.com/wp-content/uploads/2011/01/timeline-sidebar.png" alt="" title="timeline sidebar" width="133" height="148" class="alignleft size-full wp-image-6126" />This apparently lists results that have both your search keyword and a date. I cannot figure out how I got there, but if you take any standard results, say the <a href="http://www.google.com/search?q=technology">big wide search on technology</a>. From the results, on the left side bar, click the link for <strong>timeline</strong>.</p>
<p>Now you can adjust the time range, or change the search terms, this time, say I wanted to create <a href="http://www.google.com/search?q=china+timeline&#038;hl=en&#038;num=10&#038;lr=&#038;ft=i&#038;cr=&#038;safe=images&#038;tbs=#q=china+timeline&#038;hl=en&#038;lr=&#038;prmd=ivns&#038;source=lnt&#038;tbs=tl:1&#038;sa=X&#038;ei=AIIfTYz0NIS2sAOW-YTECg&#038;ved=0CA0QpwU&#038;fp=b6497a4a7b4b5937">a search history timeline for China</a></p>
<p><a href="http://www.google.com/search?q=china+timeline&amp;hl=en&amp;num=10&amp;lr=&amp;ft=i&amp;cr=&amp;safe=images&amp;tbs=#q=china+timeline&amp;hl=en&amp;lr=&amp;prmd=ivns&amp;source=lnt&amp;tbs=tl:1&amp;sa=X&amp;ei=AIIfTYz0NIS2sAOW-YTECg&amp;ved=0CA0QpwU&amp;fp=b6497a4a7b4b5937"><img src="http://cogdogblog.com/wp-content/uploads/2011/01/china-timeline.jpg" alt="" title="china timeline" width="500" height="308" class="alignnone size-full wp-image-6127" /></a></p>
<p>It could be an interesting activity/exercise to create other timelines. </p>
<p>Google embeds surprising functional bits i search results. Looking to calculate a currency exchange? Just <a href="http://www.google.com/search?q=currency+exchange">google &#8220;currency exchange&#8221;</a> and you get a widget calculator right there.</p>
<p><a href="http://www.google.com/search?q=currency+exchange"><img src="http://cogdogblog.com/wp-content/uploads/2011/01/currency-exchange.jpg" alt="" title="currency exchange" width="500" height="326" class="alignnone size-full wp-image-6128" /></a></p>
<p>Have you found other embedded tools in search results?</p>
<p>Thanks for the surprise serendipity (as if there were any other kind!)</p>
]]></content:encoded>
			<wfw:commentRss>http://cogdogblog.com/2011/01/01/accidental-timeline/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Ye Old WordPress Blog Search Thingie</title>
		<link>http://cogdogblog.com/2010/01/27/old-wp-search-thingie/</link>
		<comments>http://cogdogblog.com/2010/01/27/old-wp-search-thingie/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 03:48:20 +0000</pubDate>
		<dc:creator>Alan Levine aka CogDog</dc:creator>
				<category><![CDATA[Blog Pile]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[bava]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cogdogblog.com/?p=4638</guid>
		<description><![CDATA[I have an old JavaScript bookmark tool I made five years ago&#8211; it allows me, from no matter where I am on the web, to either select some text in a page (or enter in a box) and run a search for it in my own blog. This came from realizing that the basic wordpress search URL was always something like: http://www.myfreakyblog.org/index.php?s=cheddar+cheese And with my mediocre JavaScript tools, I made a site that allows anyone yo make one for their own blog&#8211; the Make A WordPress Search Bookmarklet tool &#8212; which to my utter surprise, still works. It&#8217;s prety easy- you enter the name of the blog, its base URL, and click &#8220;Build The Bookmark&#8221;- drag the generated JavaScript link to your toolbar, and you are done. So for example, let&#8217;s say I have some B movie blog I want to make the tool for, I enter its name, the [...]]]></description>
			<content:encoded><![CDATA[<p>I have an old JavaScript bookmark tool I made five years ago&#8211; it allows me, from no matter where I am on the web, to either select some text in a page (or enter in a box) and run a search for it in my own blog. This came from realizing that the basic wordpress search URL was always something like:</p>
<p><pre><pre>
http://www.myfreakyblog.org/index.php?s=cheddar+cheese
</pre></pre></p>
<p>And with my mediocre JavaScript tools, I made a site that allows anyone yo make one for their own blog&#8211; the <a href="http://cogdogblog.com/code/wp_search_maker.php">Make A WordPress Search Bookmarklet</a> tool &#8212; which to my utter surprise, still works.</p>
<p><a href="http://cogdogblog.com/code/wp_search_maker.php"><img src="http://cogdogblog.com/wp-content/uploads/2010/01/wp-search-bookmarklet.jpg" alt="" title="wp-search-bookmarklet" width="500" height="358" class="alignnone size-full wp-image-4639" /></a></p>
<p>It&#8217;s prety easy- you enter the name of the blog, its base URL, and click &#8220;Build The Bookmark&#8221;- drag the generated JavaScript link to your toolbar, and you are done.</p>
<p>So for example, let&#8217;s say I have some B movie blog I want to make the tool for, I enter its name, the URL (http://bavatuesdays.com/), and shazam, I can search the Bava no matter where I am browsing:</p>
<p><img src="http://cogdogblog.com/wp-content/uploads/2010/01/bava-search.jpg" alt="" title="bava-search" width="500" height="279" class="alignnone size-full wp-image-4641" /></p>
<p>And from there it runs the search for me- oh, what a surprising result!</p>
<p><a href="http://bavatuesdays.com/index.php?s=humility"><img src="http://cogdogblog.com/wp-content/uploads/2010/01/no-humility-500x310.jpg" alt="" title="no-humility" width="500" height="310" class="alignnone size-medium wp-image-4640" /></a></p>
<p>Seriously, Jim, just wanted to share that this is a tool I use all the time as I try to find the old references in my blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://cogdogblog.com/2010/01/27/old-wp-search-thingie/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Getting Around Google Search&#8217;s Theft of Copiable URLs</title>
		<link>http://cogdogblog.com/2009/07/15/google-hides-urls/</link>
		<comments>http://cogdogblog.com/2009/07/15/google-hides-urls/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 18:33:03 +0000</pubDate>
		<dc:creator>Alan Levine aka CogDog</dc:creator>
				<category><![CDATA[Blog Pile]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://cogdogblog.com/?p=3901</guid>
		<description><![CDATA[cc licensed flickr photo shared by lamont_cranston One of my primary uses of Google Search is locating URLs for web pages I am creating, blog posts, etc. The way Google outputs search results in a PITA as the links to the results are obfuscated in redirects through google (things they do to harvest our actions). In the old days, the search result was a link to the actual result. You could copy it and move on. They changed it back and forth a few times on 2005, but since then, that blue link is worthless as a copiable URL. Since then, I have been doing the tedious manual copy of the real URL that is written in green text below the results. Until recently. For long URLs, Google is now even strealing that as useful information, as it abbreviates long URLs with ellipses in the middle. As is the only [...]]]></description>
			<content:encoded><![CDATA[<p><a title="aafad 24/365 that belongs in a museum!" href="http://flickr.com/photos/theshadowknows/2572890462/"><img src="http://farm4.static.flickr.com/3053/2572890462_e0080ed397.jpg" /></a><br /><small><a title="aafad 24/365 that belongs in a museum!" href="http://flickr.com/photos/theshadowknows/2572890462/">cc licensed flickr photo</a> shared by <a href="http://flickr.com/people/theshadowknows/">lamont_cranston</a></small></p>
<p>One of my primary uses of Google Search is locating URLs for web pages I am creating, blog posts, etc. The way Google outputs search results in a PITA as the links to the results are obfuscated in redirects through google (things they do to harvest our actions). </p>
<p>In the old days, the search result was a link to the actual result. You could copy it and move on. T<a href="http://cogdogblog.com/2005/10/19/google-links-are-back/">hey changed it back and forth a few times on 2005</a>, but since then, that blue link is worthless as a copiable URL. Since then, I have been doing the tedious manual copy of the real URL that is written in green text below the results.</p>
<p>Until recently. For long URLs, Google is now even strealing that as useful information, as it abbreviates long URLs with ellipses in the middle. As is the only way to get the actual URL for a web search result is to follow the link to the page (cause that&#8217;s What Google Wants&#8211; its lot like I am reading the page, I am scraping the URL).</p>
<p>Huh?</p>
<p>Here is a search I did this morning on <a href="http://www.google.com/search?q=augmented+reality">augmented reality</a>. The blue links to the results do not provide URLs I can copy. The green text for the second long link is now re-written with &#8220;&#8230;.&#8221; i the middle, so that is a URL I cannot use. I am hosed.</p>
<p><img src="http://cogdogblog.com/wp-content/uploads/2009/07/Picture-38.jpg" alt="Picture 38" title="Picture 38" width="500" height="324" class="alignnone size-full wp-image-3902" /></p>
<p>So I started thinking I might have to write a Greasemonkey Script that would display the actual links. I went to <a href="http://userscripts.org">http://userscripts.org</a> looking for some existing scripts I could use as models to parse the results (have you ever looked at the source of a page of google results? It&#8217;s not your grandpa&#8217;a HTML). </p>
<p>But then it dawned on me&#8230;</p>
<p>What is someone had already done this?</p>
<p>doh.</p>
<p>They did.</p>
<p>Dugeen had created the<a href="http://userscripts.org/scripts/show/53226"> Obviously Scrub Google Redirect Links</a> which works perfectly- it adds the real link adjacent to the blue on produced by Google- and this is one I can right/controil click to copy the link URL right from the search results! Yay.</p>
<p><img src="http://cogdogblog.com/wp-content/uploads/2009/07/Picture-37.jpg" alt="Picture 37" title="Picture 37" width="500" height="346" class="alignnone size-full wp-image-3903" /></p>
<p>This is so handy.</p>
<p>And also&#8211; despite excitement for new web browsers, something lacking the ability to re-cast web content like Greasemonkey does is going to make it hard for me to step away from Firefox.</p>
<p>Hah, take that Google &#8211; you url obfuscating boogers! Gotcha.</p>
]]></content:encoded>
			<wfw:commentRss>http://cogdogblog.com/2009/07/15/google-hides-urls/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>GSearch in GMail is GGreat</title>
		<link>http://cogdogblog.com/2009/05/08/gsearch-gmail/</link>
		<comments>http://cogdogblog.com/2009/05/08/gsearch-gmail/#comments</comments>
		<pubDate>Fri, 08 May 2009 17:03:52 +0000</pubDate>
		<dc:creator>Alan Levine aka CogDog</dc:creator>
				<category><![CDATA[Blog Pile]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://cogdogblog.com/?p=3609</guid>
		<description><![CDATA[New in Google Labs is an add-on for having embedded web search in your email space- this means while composing a message, there is right in the mail interface a search form. The results appear in a GChat pop-up/overlay, and the results can be directly inserted into your message. In this case, I am emailing my friend Cole a message, and need a URL for a site to share&#8211; I can search+find+insert all in the email composing window. So this saves having to tab over to another window, run a search, copy/paste the URL (especially since the one in Google Search results does not point to the actual URL, but a Google ByPassSnagSomeINfo URL). It&#8217;s Gggggggggreat!]]></description>
			<content:encoded><![CDATA[<p>New in Google Labs is an add-on for having embedded web search in your email space- this means while composing a message, there is right in the mail interface a search form. The results appear in a GChat pop-up/overlay, and the results can be directly inserted into your message. </p>
<p><a href="http://cogdogblog.com/wp-content/uploads/2009/05/google-search-gmail.jpg"><img src="http://cogdogblog.com/wp-content/uploads/2009/05/google-search-gmail-300x166.jpg" alt="google-search-gmail" title="google-search-gmail" width="300" height="166" class="alignright size-medium wp-image-3610" /></a></p>
<p>In this case, I am emailing my friend Cole a message, and need a URL for a site to share&#8211; I can search+find+insert all in the email composing window.</p>
<p>So this saves having to tab over to another window, run a search, copy/paste the URL (especially since the one in Google Search results does not point to the actual URL, but a Google ByPassSnagSomeINfo URL).</p>
<p>It&#8217;s Gggggggggreat!</p>
]]></content:encoded>
			<wfw:commentRss>http://cogdogblog.com/2009/05/08/gsearch-gmail/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Finding a .flac Tool, Ducks Optional</title>
		<link>http://cogdogblog.com/2008/09/04/flac/</link>
		<comments>http://cogdogblog.com/2008/09/04/flac/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 07:43:58 +0000</pubDate>
		<dc:creator>Alan Levine aka CogDog</dc:creator>
				<category><![CDATA[Blog Pile]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://cogdogblog.com/?p=2726</guid>
		<description><![CDATA[I always knew some day I&#8217;d have a reason to blog about something I could relate to the insurance duck (don&#8217;t seek an answer why). In my travels last week, a friend I stayed with shared some (well a lot) of concert audio files, all in .flac format- which I had maybe heard of before, but now know it is a lossless audio file format. My ears are not near discriminating enough to know, but that is way besides the point. Of course I expected to find a free audio converter as something I could use to bring in the music to iTunes and onto the phone/pod (you can open them in Audacity and convert but that would be a one by one manual op. I first went to a reliable source of Mac apps, VersionTracker and searched for &#8220;flac&#8221;- scanned a few (I peek at the reviews as well), [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://cogdogblog.com/wp-content/uploads/2008/09/flac-300x220.jpg" alt="" title="flac" width="300" height="220" class="alignleft size-medium wp-image-2727" /><br />
I always knew some day I&#8217;d have a reason to blog about something I could relate to <a href="http://www.aflac.com/us/en/aboutaflac/AFLACCommercials.aspx">the insurance duck</a> (don&#8217;t seek an answer why).</p>
<p>In my travels last week, a friend I stayed with shared some (well a lot) of concert audio files, all in <a href="http://flac.sourceforge.net">.flac format</a>-  which I had maybe heard of before, but now know it is a lossless audio file format. My ears are not near discriminating enough to know, but that is way besides the point.</p>
<p>Of course I expected to find a free audio converter as something I could use to bring in the music to iTunes and onto the phone/pod (you can open them in Audacity and convert but that would be a one by one manual op. I first went to a reliable source of Mac apps, <a href="http://www.versiontracker.com/">VersionTracker</a> and <a href="http://www.versiontracker.com/php/qs.php?mode=basic&#038;action=search&#038;str=flac&#038;srchArea=macosx|macosx-all&#038;submit=Go">searched for &#8220;flac&#8221;</a>- scanned a few (I peek at the reviews as well), and gave <a href="http://www.versiontracker.com/dyn/moreinfo/macosx/34149">ALL2MP3</a> a try.</p>
<p>It worked for a batch of movies, basic enough, and converted a set to MP3. But when I tried to run the app again, it would not respond at all. I decided to go back to the wider well and searched Google on <a href="http://www.google.com/search?q=mac+os+x+flac+converter">mac os x flac converter</a> and came to a <a href="http://blog.adamnash.com/2008/03/26/how-to-convert-flac-to-apple-lossless-mp4-on-mac-os-x/">blog post about someone having good luck with XLD</a>. From here I was at the <a href="http://tmkk.hp.infoseek.co.jp/xld/index_e.html">developer site</a>, which roaming past the command line junkie stuff, there was a link for the GUI version&#8230; The link works now, but when I did it I got a Japanese 404 page (I am guessing the developer was uploading a new file at my bad luck timing), so I return to Google, searched on XLD, and <a href="http://mac.majorgeeks.com/download6097.html">found a mirror site</a>.</p>
<p>This is a long way (I am not even sure why I am outlining except to hint that searching takes a multi-pronged approach) to get at that this is a very cool converter tool, and is very quick at batch converting- I used the settings to go to m4a format for itunes.</p>
<p>So if you need to do a flac, not Aflac, dont squawk. </p>
<p>Actually the larger lesson is that more and more (and I guess its the new Chrome way) that finding information is not looking in web site directory catalogs (the old Yahoo way), but wide open search. Knowing search is a key, and I continue to refine the approach every time I engage in the act.</p>
<p>Quack.</p>
<p>I said it.</p>
]]></content:encoded>
			<wfw:commentRss>http://cogdogblog.com/2008/09/04/flac/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/us/</creativeCommons:license>
	</item>
	</channel>
</rss>

