<?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>TikiJon.com &#187; Beats</title>
	<atom:link href="http://tikijon.com/tag/beats/feed/" rel="self" type="application/rss+xml" />
	<link>http://tikijon.com</link>
	<description>Tiki, Margaritas, Tech and Internet Marketing</description>
	<lastBuildDate>Fri, 04 Nov 2011 03:38:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Filing beats tagging and searching</title>
		<link>http://tikijon.com/filing-beats-tagging-and-searching/</link>
		<comments>http://tikijon.com/filing-beats-tagging-and-searching/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 11:59:06 +0000</pubDate>
		<dc:creator>Jon Bennett</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Beats]]></category>
		<category><![CDATA[Filing]]></category>
		<category><![CDATA[searching]]></category>
		<category><![CDATA[tagging]]></category>

		<guid isPermaLink="false">http://tikijon.com/filing-beats-tagging-and-searching/</guid>
		<description><![CDATA[I confess I don’t get the enthusiasm for programs like Evernote and Yojimbo. Giving my documents descriptive names and putting them in descriptively named folders seems far better to me than trying to develop and stick with a consistent taxonomy for all my stuff. I suppose my preference for using the hierarchical file system comes [...]]]></description>
			<content:encoded><![CDATA[<p>I confess I don’t get the enthusiasm for programs like <a href="http://www.evernote.com/">Evernote</a> and <a href="http://www.barebones.com/products/yojimbo/">Yojimbo</a>. Giving my documents descriptive names and putting them in descriptively named folders seems far better to me than trying to develop and stick with a consistent taxonomy for all my stuff.</p>
<p>I suppose my preference for using the hierarchical file system comes from the way I’ve had to organize my computer files at work, where every project must be kept separate from the others. Here’s my standard hierarchy:</p>
<p><a href="http://www.flickr.com/photos/drdrang/6095421354/in/photostream"><img src="http://farm7.static.flickr.com/6068/6095421354_8b82695e41_z.jpg" alt="Folder hierarchy for project work" title="Folder hierarchy for project work"/></a></p>
<p>Within my home folder is a folder named <em>projects</em>. Within <em>projects</em> is a folder for each project. Within each project folder are folders for correspondence, photographs, reports, drawings, design standards, product manuals, etc. Within the <em>Photos</em> folder are folders for every day I took project photographs.</p>
<p>I guess Apple would prefer me to put all my projects folders in <em>Documents</em>, but I’ve always thought the <em>Documents</em> folder is a waste of a directory level—just about every file I create is a document.</p>
<p>This arrangement works for me because everything I need to work on a particular project is in that project’s folder. Where are the photos I took? In the <em>Photos</em> folder. Where’s my report? In the <em>report</em> folder. And if I need something—an <a href="http://astm.org">ASTM</a> standard, say—for more than one project, I copy it into both folders. Disk space is cheap.</p>
<p>This organization of digital files is mimicked in the organization of paper files. A portion of a file drawer is set aside for the project; within that section are folders for paper correspondence, printed photographs, handwritten notes, and so on. By keeping things consistent from project to project, I reduce the amount of thinking I have to do about purely clerical matters, <em>and</em> I make it easy to find what I need when I need it.</p>
<hr />
<p>Since the digital and paper organization is about the same from project to project, I’m able to script the creation of all the necessary directories and folder labels. When I open a new project, I get a project name and number from my companies central database. I then run a script on my computer called <em>newproject</em>, which</p>
<ol>
<li>Prompts me for all the required information.</li>
<li>Creates the directory hierarchy under the <code>~/projects</code> directory.</li>
<li>Adds an entry to my project list file (discussed in <a href="http://www.leancrew.com/all-this/2009/08/grepping-for-project-numbers/">this post</a> from a couple of years ago).</li>
<li>Prints out the necessary <a href="http://www.leancrew.com/all-this/2011/04/label-printing-scripts-on-github/">file folder labels</a> for organizing the paperwork.</li>
</ol>
<p>I’ve used <em>newproject</em> for ten years or more, which is why it’s written in Perl. Here’s the source code:</p>
<pre><code>perl:
 1:  #!/usr/bin/perl
 2:
 3:  # collect required info from user
 4:  print &quot;\n&quot;;
 5:  print &quot;3[1mProject name:         3[22m&quot;;  # the escape codes
 6:  chomp($name = &lt;&gt;);
 7:  print &quot;3[1mProject number:       3[22m&quot;;  # in these lines
 8:  chomp($number = &lt;&gt;);
 9:  print &quot;3[1mClient name:          3[22m&quot;;  # turn bold text on
10:  chomp($client = &lt;&gt;);
11:  print &quot;3[1mClient reference:     3[22m&quot;;  # for the prompts and
12:  chomp($ref = &lt;&gt;);
13:  print &quot;3[1mSubdirectory:         3[22m&quot;;  # off for the responses
14:  chomp($dir = &lt;&gt;);
15:  print &quot;3[1mPhotos?[y/n]:         3[22m&quot;;
16:  chomp($photos = &lt;&gt;);
17:  print &quot;3[1mSmall project?[y/n]:  3[22m&quot;;
18:  chomp($small = &lt;&gt;);
19:  print &quot;3[1mLabel position [r,c]: 3[22m&quot;;
20:  chomp($rc = &lt;&gt;);
21:  print &quot;\n&quot;;
22:
23:  # append info to project list file
24:  open PL, &quot;&gt;&gt; $ENV{&#39;HOME&#39;}/Dropbox/pl&quot; or die &quot;Couldn&#39;t open project list&quot;;
25:  select PL;
26:  print &quot;$name|$number|$client|$ref|$dir|\n&quot;;
27:
28:  # make directory for project files
29:  # return error message if problem
30:  print `mkdir $ENV{&#39;HOME&#39;}/projects/$dir`;
31:
32:  # make correspondence directory
33:  # return error message if problem
34:  print `mkdir $ENV{&#39;HOME&#39;}/projects/$dir/corr`;
35:
36:  # make directory for project photos if wanted
37:  # return error message if problem
38:  if ($photos =~ /^y/i) {
39:    print `mkdir $ENV{&#39;HOME&#39;}/projects/$dir/Photos`;
40:  }
41:
42:  # make file folder labels and send to the printer
43:  ($row,$col) = split(/,/, $rc);
44:  $labeldata = &quot;#$name|$number\n  \n\n&quot;;
45:  unless ($row==0 or $col==0) {
46:    if ($small =~ /^y/i) {
47:      $labeldata .= &quot;Notes, photographs, report\n&quot;;
48:    } else {
49:      $labeldata .= &quot;\Correspondence\n\nNotes\n&quot;;
50:      $labeldata .= &quot;\nPhotographs\n&quot; if $photos =~ /^y/i;
51:      $labeldata .= &quot;\n#\0\0\0$name|$number\0\0\0\n&quot;;   # narrower for the tab insert
52:    }
53:
54:    open LABELPRINT, &quot;|pflabels -r$row -c$col&quot;;
55:    print LABELPRINT $labeldata;
56:    # print $labeldata;
57:  }
</code></pre>
<p>Lines 4-21 include terminal escape codes to get the prompts to print in bold. Extra spaces are printed out after each prompt so my responses all line up.</p>
<p><a href="http://www.flickr.com/photos/drdrang/6095549526/"><img src="http://farm7.static.flickr.com/6081/6095549526_665553ae11_z.jpg" alt="New project interactive session" title="New project interactive session"/></a></p>
<p>Lines 23-26 add the entry to the <a href="http://www.leancrew.com/all-this/2009/08/grepping-for-project-numbers/">project list file</a>, a simple database I use to keep track of all my projects, past and present.</p>
<p>Lines 28-40 create the directories. The <em>Photos</em> directory is created only if I answered yes to that question.</p>
<p>Lines 42-57 generate the labels for the physical file folders. If I know at the outset that a project will be small and short-lived, all the paperwork can go in a single folder. The label data follows the format required for my <a href="http://www.leancrew.com/all-this/2011/04/label-printing-scripts-on-github/"><em>pflabels</em> script</a>, and the data is piped to that script in Lines 54-55. The necessary labels are then printed on Avery 5161 1″×4″ labels.</p>
<p>Line 51 uses special troff codes to make one label narrow enough to fit on a <a href="http://www.staples.com/Staples-Tab-Inserts-3-Tab-3-1-2-Long/product_117788">3½ inch tab insert</a>. I stick the label on the cardboard insert, cut off the overhang, and use the tab insert in a hanging folder to separate projects in my file drawers. It takes longer to describe than to do.</p>
<p><a rel="nofollow" href="http://www.leancrew.com/all-this/2011/08/filing-beats-tagging-and-searching/">Jon&#8217;s starred items in Google Reader</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tikijon.com/filing-beats-tagging-and-searching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon Beats Apple, Google With Launch Of Unlicensed Cloud Music Locker &amp; Player (Bruce Houghton/hypebot)</title>
		<link>http://tikijon.com/amazon-beats-apple-google-with-launch-of-unlicensed-cloud-music-locker-player-bruce-houghtonhypebot/</link>
		<comments>http://tikijon.com/amazon-beats-apple-google-with-launch-of-unlicensed-cloud-music-locker-player-bruce-houghtonhypebot/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 07:39:18 +0000</pubDate>
		<dc:creator>Jon Bennett</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Amp]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Beats]]></category>
		<category><![CDATA[Bruce]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Houghton/hypebot]]></category>
		<category><![CDATA[Launch]]></category>
		<category><![CDATA[Locker]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Player]]></category>
		<category><![CDATA[Unlicensed]]></category>

		<guid isPermaLink="false">http://tikijon.com/amazon-beats-apple-google-with-launch-of-unlicensed-cloud-music-locker-player-bruce-houghtonhypebot/</guid>
		<description><![CDATA[Bruce Houghton / hypebot: Amazon Beats Apple, Google With Launch Of Unlicensed Cloud Music Locker &#38; Player  —  (UPDATED) Overnight Amazon beat both Google and Apple to market with the launch of a freemium cloud based digital media locker and robust integrated music player that accesses stored tracks across multiple computers and Android devices. Jon&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hypebot.com/hypebot/2011/03/amazon-beats-apple-google-with-launch-of-unlisnced-cloud-music-locker-player-.html"><img vspace="4" hspace="4" border="0" align="right" src="http://www.techmeme.com/110329/i35.jpg"/></a></p>
<p><a href="http://www.techmeme.com/110329/p35#a110329p35" title="Techmeme permalink"><img width="11" height="12" src="http://www.techmeme.com/img/pml.png" style="border:none;padding:0;margin:0"/></a> Bruce Houghton / <a href="http://www.hypebot.com/hypebot/">hypebot</a>:<br />
<span style="font-size:1.3em"><b><a href="http://www.hypebot.com/hypebot/2011/03/amazon-beats-apple-google-with-launch-of-unlisnced-cloud-music-locker-player-.html">Amazon Beats Apple, Google With Launch Of Unlicensed Cloud Music Locker &amp; Player</a></b></span>  —  (UPDATED) Overnight Amazon beat both Google and Apple to market with the launch of a freemium cloud based digital media locker and robust integrated music player that accesses stored tracks across multiple computers and Android devices.</p>
<p><a rel="nofollow" href="http://www.techmeme.com/110329/p35#a110329p35">Jon&#8217;s starred items in Google Reader</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tikijon.com/amazon-beats-apple-google-with-launch-of-unlicensed-cloud-music-locker-player-bruce-houghtonhypebot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Beats Microsoft’s Third Quarter Revenue</title>
		<link>http://tikijon.com/apple-beats-microsoft%e2%80%99s-third-quarter-revenue/</link>
		<comments>http://tikijon.com/apple-beats-microsoft%e2%80%99s-third-quarter-revenue/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 08:11:55 +0000</pubDate>
		<dc:creator>Jon Bennett</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Beats]]></category>
		<category><![CDATA[Microsoft’s]]></category>
		<category><![CDATA[Quarter]]></category>
		<category><![CDATA[Revenue]]></category>
		<category><![CDATA[Third]]></category>

		<guid isPermaLink="false">http://tikijon.com/apple-beats-microsoft%e2%80%99s-third-quarter-revenue/</guid>
		<description><![CDATA[Apple keeps taking things away from Microsoft. First, it was smartphone market share, knocking down poor Windows Mobile. Then, it was size as measured by market capitalization, with Apple moving into second in May. Now, it’s quarterly revenue. Apple made more than Microsoft during the last calendar quarter with a .34 billion quarter, as it [...]]]></description>
			<content:encoded><![CDATA[<p><img title="satisfied_apple" src="http://gigapple.files.wordpress.com/2010/09/satisfied_apple.png?w=300&amp;h=200" alt="" width="300" height="200"/>Apple keeps taking things away from Microsoft. First, it was smartphone market share, knocking down poor Windows Mobile. Then, it was size as measured by market capitalization, with <a href="http://gigaom.com/apple/apple-becomes-second-largest-stock-by-market-value/">Apple moving into second</a> in May. Now, it’s <a href="http://www.microsoft.com/presspass/press/2010/oct10/10-28fy11Q1earnings.mspx">quarterly revenue</a>.</p>
<p>Apple made more than Microsoft during the last calendar quarter with a .34 billion quarter, as it <a href="http://gigaom.com/apple/apple-q4-2010-record-quarteryear-surprises-to-come/">announced last week</a>, while Microsoft announced its total of only .20 billion just today. It’s still a record quarter for Microsoft, up 25 percent from last year, and Microsoft  has higher profit margins because it remains a software-focused company, but the achievement is noteworthy nonetheless.</p>
<p>It’s the first time Apple has beaten Microsoft in revenue in its history, so I’m sure Ballmer and Co. are taking note. The margin by which Apple won is a big one, too, and though many predicted Cupertino would make more than Redmond <a href="http://tech.fortune.cnn.com/2010/07/19/apple-closes-in-on-microsoft-in-revenue-race/">at some point this year</a>, few anticipated such a large gap so early.</p>
<p>Will new products like Windows Phone 7 and Xbox Kinect help Microsoft regain some of that ground? Time will tell, but Apple’s lead may already be insurmountable.</p>
<p><strong>Related content from GigaOM Pro (sub req’d):</strong></p>
<ul>
<li><a href="http://pro.gigaom.com/2010/10/in-q3-the-tablet-and-4g-were-the-big-stories/?utm_source=theappleblog&amp;utm_medium=editorial&amp;utm_content=etherin&amp;utm_campaign=related3">In Q3, the Tablet and 4G Were the Big Stories</a></li>
<li><a href="http://pro.gigaom.com/2010/08/report-videoconferencing-unleashed/?utm_source=theappleblog&amp;utm_medium=editorial&amp;utm_content=etherin&amp;utm_campaign=related3">HTML5’s a Game-Changer for Web Apps</a></li>
<li><a href="http://pro.gigaom.com/2010/10/who-can-compete-with-the-ipad/?utm_source=theappleblog&amp;utm_medium=editorial&amp;utm_content=etherin&amp;utm_campaign=related3">Can Anyone Really Compete With the iPad?</a></li>
</ul>
<p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=231088&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1"/><br />
<hr />
<p>
	<a href="http://www.cisco.com/go/mcsinsightgroup"><br />
		<img src="http://a.gigaom.com/feed-injector/img/cisco-2010-10-22.gif" alt="The Cisco Managed/Cloud Services Insight Group is your source for information. Learn more »" border="0"/><br />
	</a>
</p>
<div>
<a href="http://feeds.feedburner.com/~ff/TheAppleBlog?a=EGSOqSUJlLM:Vbov7s6OPaw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheAppleBlog?d=yIl2AUoC8zA" border="0"/></a> <a href="http://feeds.feedburner.com/~ff/TheAppleBlog?a=EGSOqSUJlLM:Vbov7s6OPaw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheAppleBlog?i=EGSOqSUJlLM:Vbov7s6OPaw:D7DqB2pKExk" border="0"/></a> <a href="http://feeds.feedburner.com/~ff/TheAppleBlog?a=EGSOqSUJlLM:Vbov7s6OPaw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheAppleBlog?i=EGSOqSUJlLM:Vbov7s6OPaw:V_sGLiPBpWU" border="0"/></a> <a href="http://feeds.feedburner.com/~ff/TheAppleBlog?a=EGSOqSUJlLM:Vbov7s6OPaw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheAppleBlog?i=EGSOqSUJlLM:Vbov7s6OPaw:F7zBnMyn0Lo" border="0"/></a> <a href="http://feeds.feedburner.com/~ff/TheAppleBlog?a=EGSOqSUJlLM:Vbov7s6OPaw:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/TheAppleBlog?i=EGSOqSUJlLM:Vbov7s6OPaw:guobEISWfyQ" border="0"/></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/TheAppleBlog/~4/EGSOqSUJlLM" height="1" width="1"/><br />
<a rel="nofollow" href="http://feedproxy.google.com/~r/TheAppleBlog/~3/EGSOqSUJlLM/">Jon&#8217;s starred items in Google Reader</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tikijon.com/apple-beats-microsoft%e2%80%99s-third-quarter-revenue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Headphone Showdown &#8211; Surprising Results</title>
		<link>http://tikijon.com/headphone-showdown-surprising-results/</link>
		<comments>http://tikijon.com/headphone-showdown-surprising-results/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 14:14:41 +0000</pubDate>
		<dc:creator>Jon Bennett</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tiki Life]]></category>
		<category><![CDATA[Beats]]></category>
		<category><![CDATA[Best Buy]]></category>
		<category><![CDATA[Bose Quiet Comfort]]></category>
		<category><![CDATA[Bose Quiet Comfort 3]]></category>
		<category><![CDATA[Ears]]></category>
		<category><![CDATA[Iblogger]]></category>
		<category><![CDATA[Interruptions]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[Lows]]></category>
		<category><![CDATA[Stress]]></category>
		<category><![CDATA[Target]]></category>
		<category><![CDATA[Volume Settings]]></category>

		<guid isPermaLink="false">http://tikijon.com/156/headphone-showdown-surprising-results/</guid>
		<description><![CDATA[So my main Bose On Ear headphone broke Big problem because I wear them like 6 hours a day for increased focus and less interruptions. So I went to best buy and picked up a pair of beats by dre ($325) After being used to the comfort of my Bose&#8230;  apparently I was spoiled. Although [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-178" style="margin: 5px;" title="bose_on_ear" src="http://tikijon.com/wp-content/uploads/2009/06/bose_on_ear-300x160.jpg" alt="bose_on_ear" width="210" height="112" />So my main Bose On Ear headphone broke <img src='http://tikijon.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Big problem because I wear them like 6 hours a day for increased focus and less interruptions.</p>
<p>So I went to best buy and picked up a pair of beats by dre ($325)</p>
<p>After being used to the comfort of my Bose&#8230;  apparently I was spoiled.</p>
<p><img class="alignleft size-thumbnail wp-image-181" title="beats-by-dr-dre-thumb-480x439" src="http://tikijon.com/wp-content/uploads/2009/06/beats-by-dr-dre-thumb-480x439-150x150.jpg" alt="beats-by-dr-dre-thumb-480x439" width="150" height="150" />Although the sound was great.</p>
<p>Better Lows and louder at a lower volume settings&#8230;  (the sound was comparable to my Bose On ears.</p>
<p>So I ordered a pair of Bose quiet comfort 3 in hopes that they would be superior to my old Bose.</p>
<p>The qc3s get 2 thumbs down to me because you cannot listen to music unless the noise cancelling is turned on.</p>
<p>This means that if your battery dies&#8230; You are screwed!</p>
<p>So&#8230; I have to &#8220;worry&#8221; about keeping a battery charged!!!</p>
<p>No way dude <img src='http://tikijon.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p><span style="text-decoration: line-through;"><img class="alignleft size-thumbnail wp-image-182" style="margin: 10px;" title="quietcomfort3_1" src="http://tikijon.com/wp-content/uploads/2009/06/quietcomfort3_1-150x150.jpg" alt="quietcomfort3_1" width="120" height="120" /></span></p>
<p>Not tiki friendly.   Too much stress.</p>
<p>So the surprising winner for me right now&#8230;.</p>
<p>My old Bose on-ears that you can buy at Target do like $180</p>
<div class="iblogger-footer">
<p style="text-align:right;font-size:10px;">[Posted with <a href="http://illuminex.com/iBlogger/index.html">iBlogger</a> from my iPhone]</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tikijon.com/headphone-showdown-surprising-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

