<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hiltmon</title><link>https://hiltmon.com/</link><description>Recent content on Hiltmon</description><generator>Hugo</generator><language>en-US</language><lastBuildDate>Fri, 17 Jul 2026 15:55:17 -0400</lastBuildDate><atom:link href="https://hiltmon.com/index.xml" rel="self" type="application/rss+xml"/><item><title>Adversarial Review: Making Ai Challenge Its Own Conclusions</title><link>https://hiltmon.com/blog/2026/07/17/adversarial-review-making-ai-challenge-its-own-conclusions/</link><pubDate>Fri, 17 Jul 2026 15:55:17 -0400</pubDate><guid>https://hiltmon.com/blog/2026/07/17/adversarial-review-making-ai-challenge-its-own-conclusions/</guid><description>&lt;p&gt;AI agents have bias. The one writing code wants it accepted. The one reviewing wants to find problems. Neither reliably verifies its own conclusions. Adversarial review fixes this: agents find issues, then skeptic agents try to disprove them. Only what survives gets reported.&lt;/p&gt;
&lt;p&gt;I ran one on a core library we&amp;rsquo;ve used for years. What came back wasn&amp;rsquo;t a long complaint list — it was a small set of real, reproducible issues. Including a few we&amp;rsquo;d unknowingly built workarounds for.&lt;/p&gt;</description></item><item><title>Xcode's Assistant Editor struggling with C++</title><link>https://hiltmon.com/blog/2023/03/03/xcodes-assistant-editor-struggling-with-cpp/</link><pubDate>Fri, 03 Mar 2023 09:36:12 -0500</pubDate><guid>https://hiltmon.com/blog/2023/03/03/xcodes-assistant-editor-struggling-with-cpp/</guid><description>&lt;p&gt;One of the best features of Xcode for C++ programmers is its Assistant Editor. This is an editor panel to the right of the main editor where you are working that automatically (and somewhat magically) displays the counterpart to the file you are editing. So for example if I am working on &lt;code&gt;service.cpp&lt;/code&gt;, the assistant displays its header &lt;code&gt;service.h&lt;/code&gt;.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2023/03/03/xcodes-assistant-editor-struggling-with-cpp/images/AssistantEditor.png" width="484" height="170"&gt;
&lt;/figure&gt;

&lt;p&gt;This is great for productivity. I can glance to the right to see the declarations that I am implementing, and can change both declaration and definition directly without opening or changing contexts. And when I switch to another code file, the assistant helpfully display&amp;rsquo;s its header. Even better, when I pick a header file to work on, the Assistant shows me it&amp;rsquo;s matching implementation file.&lt;/p&gt;</description></item><item><title>Zero to One: Stages of Startup Development</title><link>https://hiltmon.com/blog/2023/02/11/zero-to-one-stages-of-startup-development/</link><pubDate>Sat, 11 Feb 2023 13:08:15 -0500</pubDate><guid>https://hiltmon.com/blog/2023/02/11/zero-to-one-stages-of-startup-development/</guid><description>&lt;p&gt;The challenge has been set, the startup has been formed, and initial release objectives defined. Now what?&lt;/p&gt;
&lt;p&gt;How do we get from Zero (a clean slate) to One (first release)? What do we do first? When do we do it? How many people will be needed? And when do we need the funding for it?&lt;/p&gt;
&lt;p&gt;In this post, I will outline the four (4) stages of development needed, and the strategy I will be following this year in our new startup, going from Zero to One.&lt;/p&gt;</description></item><item><title>Increasing File Descriptor Ulimit on MacOS</title><link>https://hiltmon.com/blog/2023/01/01/increasing-file-descriptor-ulimit-on-macos/</link><pubDate>Sun, 01 Jan 2023 11:17:10 -0500</pubDate><guid>https://hiltmon.com/blog/2023/01/01/increasing-file-descriptor-ulimit-on-macos/</guid><description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Warning:&lt;/strong&gt; This post is only for developers who are having issues when coding against &lt;code&gt;file descriptors&lt;/code&gt; in the form of C-style file handles or sockets on MacOS. For everyone else, this does not apply.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id="running-out-of-resources"&gt;Running out of Resources&lt;/h3&gt;
&lt;p&gt;Right now I am developing an application that uses sockets (underneath a stack of other software) for inter-process communication. The problem is that after a few debug runs or crashes (I did say developing), the application will not start again from resource starvation. And the error message is no help at all.&lt;/p&gt;</description></item><item><title>Who Dares, Wins</title><link>https://hiltmon.com/blog/2022/12/21/who-dares-wins/</link><pubDate>Wed, 21 Dec 2022 14:28:47 -0500</pubDate><guid>https://hiltmon.com/blog/2022/12/21/who-dares-wins/</guid><description>&lt;p&gt;Only a few times in a lifetime does an opportunity come along that could change everything. It comes in the form of a challenge that will stretch you and push you to your limits, even though its in a domain you know everything about (or believe you do). It comes as a disruptive force to a stable market. Its both risky and yet eminently doable. And there is tangible demand for this change, a change the incumbents resist (and have good reason to). Its a challenge that has scared off many people (mostly because it is hard, and finding people who can understand the space is even harder).&lt;/p&gt;</description></item><item><title>Update Hugo for Node 16 Github Pages</title><link>https://hiltmon.com/blog/2022/11/03/update-hugo-for-node-16-github-pages/</link><pubDate>Thu, 03 Nov 2022 12:23:01 -0400</pubDate><guid>https://hiltmon.com/blog/2022/11/03/update-hugo-for-node-16-github-pages/</guid><description>&lt;p&gt;Recently, GitHub updated actions from Node 12 to Node 16 (See &lt;a href="https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/"&gt;GitHub Actions: All Actions will begin running on Node16 instead of Node12&lt;/a&gt;). As a result, Hugo deploys will fail. All I saw was that I committed the updated site, and the deploy did not happen.&lt;/p&gt;
&lt;p&gt;To make it work again, you need to update your &lt;code&gt;gh-pages.yml&lt;/code&gt; in the hidden &lt;code&gt;.github/workflows&lt;/code&gt; folder to reflect the new Ubuntu and &lt;code&gt;checkout&lt;/code&gt; versions:&lt;/p&gt;</description></item><item><title>Two Months with the M1 Macbook Pro</title><link>https://hiltmon.com/blog/2022/11/03/two-months-with-the-m1-macbook-pro/</link><pubDate>Thu, 03 Nov 2022 12:01:05 -0400</pubDate><guid>https://hiltmon.com/blog/2022/11/03/two-months-with-the-m1-macbook-pro/</guid><description>&lt;p&gt;This is my fourth CPU Architecture transition in the Apple ecosystem, from the Motorolas on the II&amp;rsquo;s and LC, through the PowerPCs in the Titanium Powerbook, Intels on the Aluminum MacBooks to the ARM M1 today.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;This&lt;/em&gt; transition has been the smoothest by far, so much so, it&amp;rsquo;s not worth posting about. But that would overlook the incredible amount of work performed by untold thousands of people in building and testing their software to ensure this invisible transition happened.&lt;/p&gt;
&lt;p&gt;And it would overlook the significant changes in hardware too, not just the CPU architecture, but also the move to new GPUs, screens, security chips, ports and keyboard.&lt;/p&gt;</description></item><item><title>Where the Rights Are</title><link>https://hiltmon.com/blog/2022/10/26/where-the-rights-are/</link><pubDate>Wed, 26 Oct 2022 15:32:14 -0400</pubDate><guid>https://hiltmon.com/blog/2022/10/26/where-the-rights-are/</guid><description>&lt;p&gt;I have been writing software professionally for 32 years. I must have written several millions of lines of production code in that time.&lt;/p&gt;
&lt;p&gt;But I do not own the rights to any of the work product I have made. It all belongs to someone else. That is the way.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The question is how can one go about making great software product, still earn a satisfactory living, and yet retain the rights on that work product and create a revenue steam off it?&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Innocuous Birthday Career Advice</title><link>https://hiltmon.com/blog/2022/10/20/innocuous-birthday-career-advice/</link><pubDate>Thu, 20 Oct 2022 12:38:51 -0400</pubDate><guid>https://hiltmon.com/blog/2022/10/20/innocuous-birthday-career-advice/</guid><description>&lt;p&gt;Today, I turn 55. I now have over 32 years of work experience. These numbers got me thinking about what I wish I had known when I started my professional careers.&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;ve all heard this before. Maybe it&amp;rsquo;s time to act on it.&lt;/p&gt;</description></item><item><title>Go to Where the Puck Is Going</title><link>https://hiltmon.com/blog/2022/10/12/go-to-where-the-puck-is-going/</link><pubDate>Wed, 12 Oct 2022 13:57:16 -0400</pubDate><guid>https://hiltmon.com/blog/2022/10/12/go-to-where-the-puck-is-going/</guid><description>&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;Go to where the puck is going, not where it has been&amp;rdquo;. - Walter Gretzky (Wayne Gretzky&amp;rsquo;s father)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Should we be building &lt;em&gt;new&lt;/em&gt; product on existing, proven software stacks, or taking the challenge to start using the newer tools? In this post, I take a high-level look at the technology landscape for commercial software development to aid in a thought exercise on how I would want to create new software products.&lt;/p&gt;</description></item><item><title>Discoverability Is Deserved</title><link>https://hiltmon.com/blog/2022/10/04/hiltmonism-discoverability-is-deserved/</link><pubDate>Tue, 04 Oct 2022 10:17:50 -0400</pubDate><guid>https://hiltmon.com/blog/2022/10/04/hiltmonism-discoverability-is-deserved/</guid><description>&lt;p&gt;Discoverability is the user&amp;rsquo;s ability to find key information, features, services and capabilities in a software application. It enables users to locate, see, learn and understand what capabilities the software provides.&lt;/p&gt;
&lt;p&gt;If users cannot discover a capability, how will they know it exists in the application in the first place?&lt;/p&gt;
&lt;p&gt;Designers and developers need to keep this in mind when architecting and structuring applications. They need to not only focus on what is being provided, and how users can use it, but also on how users can find it.&lt;/p&gt;</description></item><item><title>What Did I Create as an Asset Manager CTO</title><link>https://hiltmon.com/blog/2022/09/13/what-did-i-create-as-an-asset-manager-cto/</link><pubDate>Tue, 13 Sep 2022 09:48:37 -0400</pubDate><guid>https://hiltmon.com/blog/2022/09/13/what-did-i-create-as-an-asset-manager-cto/</guid><description>I plan to write more about being a coding CTO, but in the mean time, to set my credentials, I posted an article on &lt;a href="https://noverse.com"&gt;Noverse&lt;/a&gt; describing, at a high level, what software and systems I have built for Asset Managers. Take a look at &lt;a href="https://noverse.com/blog/2022/09/12/what-did-i-create-as-an-asset-manager-cto/"&gt;What Did I Create as an Asset Manager CTO&lt;/a&gt;.</description></item><item><title>Optimizing Short Form Writing for Developers</title><link>https://hiltmon.com/blog/2022/08/22/optimizing-short-form-writing-for-developers/</link><pubDate>Mon, 22 Aug 2022 12:20:09 -0400</pubDate><guid>https://hiltmon.com/blog/2022/08/22/optimizing-short-form-writing-for-developers/</guid><description>&lt;p&gt;The vast majority of non-code writing performed by software engineers is &lt;strong&gt;short form standard format&lt;/strong&gt;, defined here as:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Short Form&lt;/strong&gt;: A small amount of headings and text up to 1000 words&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Standard Format&lt;/strong&gt;: The same standard structure or pattern of document repeated over and over again&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Yet even though its short form and standard format, it takes too much time and effort to produce these, so we developers conveniently &amp;ldquo;forget&amp;rdquo; to create these valuable documents (or mess up structure of them).&lt;/p&gt;
&lt;p&gt;I have found &lt;em&gt;my&lt;/em&gt; way to optimize the creation of these so I can spin them up quickly, deliver the information needed correctly, send them out and get back to coding.&lt;/p&gt;</description></item><item><title>Code Review is not all about the Code</title><link>https://hiltmon.com/blog/2022/08/10/code-review-is-not-all-about-the-code/</link><pubDate>Wed, 10 Aug 2022 12:12:49 -0400</pubDate><guid>https://hiltmon.com/blog/2022/08/10/code-review-is-not-all-about-the-code/</guid><description>&lt;p&gt;We all understand the benefits of the code review process in reducing the risk of software issues making it out into the wild, and in improving the skills of developers. Frequently though, the code review focusses wholly on the code and on an eyeball search for potential bugs and no more. There is a better way.&lt;/p&gt;
&lt;p&gt;As developers, we read and write code all day, it&amp;rsquo;s our superpower and wholly inside our comfort zone. So it&amp;rsquo;s easy and convenient for us to jump straight into reading the code and poking around for bugs. As a result, we miss out on the true objectives of the review process, and on the true benefits that it should yield. In reality, a huge amount of time is wasted on reading, analyzing and understanding code that will likely be thrown away.&lt;/p&gt;</description></item><item><title>Archives</title><link>https://hiltmon.com/archives/</link><pubDate>Sat, 20 Jun 2020 16:44:34 -0400</pubDate><guid>https://hiltmon.com/archives/</guid><description>&lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2026-03-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2026/07/17/adversarial-review-making-ai-challenge-its-own-conclusions/"&gt;
			Adversarial Review: Making Ai Challenge Its Own Conclusions&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
			&lt;span class="fas fa-newspaper"&gt;&lt;/span&gt;
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2023-09-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2023/03/03/xcodes-assistant-editor-struggling-with-cpp/"&gt;
			Xcode&amp;#39;s Assistant Editor struggling with C&amp;#43;&amp;#43;&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2023-01-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2023/02/11/zero-to-one-stages-of-startup-development/"&gt;
			Zero to One: Stages of Startup Development&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2023-11-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2023/01/01/increasing-file-descriptor-ulimit-on-macos/"&gt;
			Increasing File Descriptor Ulimit on MacOS&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-02-21&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/12/21/who-dares-wins/"&gt;
			Who Dares, Wins&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-12-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/11/03/update-hugo-for-node-16-github-pages/"&gt;
			Update Hugo for Node 16 Github Pages&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-12-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/11/03/two-months-with-the-m1-macbook-pro/"&gt;
			Two Months with the M1 Macbook Pro&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-03-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/10/26/where-the-rights-are/"&gt;
			Where the Rights Are&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-12-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/10/20/innocuous-birthday-career-advice/"&gt;
			Innocuous Birthday Career Advice&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-01-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/10/12/go-to-where-the-puck-is-going/"&gt;
			Go to Where the Puck Is Going&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-10-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/10/04/hiltmonism-discoverability-is-deserved/"&gt;
			Discoverability Is Deserved&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-09-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/09/13/what-did-i-create-as-an-asset-manager-cto/"&gt;
			What Did I Create as an Asset Manager CTO&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-12-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/08/22/optimizing-short-form-writing-for-developers/"&gt;
			Optimizing Short Form Writing for Developers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2022-12-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2022/08/10/code-review-is-not-all-about-the-code/"&gt;
			Code Review is not all about the Code&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2020-11-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2020/06/07/working-from-home-88-days-later/"&gt;
			Working from Home ... 88 Days Later&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2020-09-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2020/03/14/working-from-home-dot-dot-dot-here-we-go/"&gt;
			Working from Home ... here we go!&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2019-02-31&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2019/12/31/the-theater-was-empty/"&gt;
			The Theater was Empty&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2019-11-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2019/02/16/an-ipad-and-a-pencil/"&gt;
			An iPad and a Pencil&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2019-01-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2019/02/09/testing-c-plus-plus-17-project-in-xcode-with-xctest/"&gt;
			Testing C&amp;#43;&amp;#43;17 Projects in Xcode with XCTest&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2018-09-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2018/06/17/on-removing-comments/"&gt;
			On Removing Comments&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2018-09-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2018/06/17/stop-and-think/"&gt;
			Stop and Think&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2017-07-31&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2017/08/31/migrate-octopress-slash-jekyll-posts-to-ulysses/"&gt;
			Migrate Octopress / Jekyll Posts to Ulysses&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2017-12-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2017/03/12/notification-city/"&gt;
			Notification City&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2017-12-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2017/03/05/coding-style-standards-in-2017/"&gt;
			Coding Style Standards in 2017&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2017-02-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2017/01/28/mathjax-in-markdown/"&gt;
			MathJax in Markdown&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-11-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/11/06/on-the-new-macbook-pros/"&gt;
			On the New MacBook Pros&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-08-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/10/07/the-gentleman-james-v/"&gt;
			The Gentleman James V&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-02-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/09/25/the-annual-dependency-library-upgrade-process/"&gt;
			The Annual Dependency Library Upgrade Process&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-12-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/08/28/minimal-project-management-6-months-later/"&gt;
			Minimal Project Management - 6 Months Later&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-08-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/04/26/attractive-multi-line-sql-statements-in-c-plus-plus/"&gt;
			Attractive Multi-Line SQL Statements in C&amp;#43;&amp;#43;&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-10-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/04/24/apple-watch-after-1-year/"&gt;
			Apple Watch - After 1 Year&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-11-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/04/10/spotlight-only-nine-months-later/"&gt;
			Spotlight Only - Nine Months Later&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-08-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/04/08/text-expansion-using-keyboard-maestro-first-cut/"&gt;
			Text Expansion using Keyboard Maestro (First Cut)&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-12-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/04/03/apple-at-40/"&gt;
			Apple at 40&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-08-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/03/25/dependency-limited-and-conflict-free-c-plus-plus/"&gt;
			Dependency Limited and Conflict Free C&amp;#43;&amp;#43;&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-08-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/03/14/talk-to-drivers/"&gt;
			Talk to Drivers, not Mechanics&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-05-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/03/05/minimal-project-management/"&gt;
			Minimal Project Management&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-01-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/02/28/build-only-what-you-need/"&gt;
			Build only what you need&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2016-05-31&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2016/01/31/now-in-https/"&gt;
			Now in HTTPS&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-09-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/11/25/were-better-than-this/"&gt;
			We&amp;#39;re better than this&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-01-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/11/22/dangerware/"&gt;
			Dangerware&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-12-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/11/17/a-yosemite-markdown-spotlight-importer/"&gt;
			A Yosemite Markdown Spotlight importer&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-07-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/11/02/making-and-maintaining-high-resolution-charts-for-indesign-cc/"&gt;
			Making and maintaining high resolution charts for Indesign CC&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-07-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/10/14/brown-mms/"&gt;
			Brown M&amp;amp;Ms: A Quick Way to Determine Code Quality&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-01-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/10/04/why-i-am-subscribing-to-apple-music/"&gt;
			Why I Subscribed to Apple Music&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-10-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/09/28/the-simple-c-plus-plus-makefile-executable-edition/"&gt;
			The Simple C&amp;#43;&amp;#43; Makefile - Executable Edition&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-02-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/09/20/saturday-afternoons-watching-rugby-union/"&gt;
			Saturday Afternoons Watching Rugby Union&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-12-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/09/05/the-it-has-happened-before/"&gt;
			The &amp;#39;It has happened before, it will happen again.&amp;#39; Apple&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-09-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/09/04/open-extension-less-files-on-os-x-in-your-favorite-editor/"&gt;
			Open Extension-less Files in your Favorite Editor on OS X&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-12-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/08/23/how-the-apple-watch-has-changed-my-behavior-for-the-better/"&gt;
			How the Apple Watch has changed my Behavior for the Better&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-12-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/08/15/the-productive-mac-mindset/"&gt;
			The Productive Mac Mindset&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-06-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/08/09/c-plus-plus-11-on-centos-6-dot-6/"&gt;
			C&amp;#43;&amp;#43;11 on CentOS 6.6&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-11-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/08/05/in-the-press-this-weeks-hedge-fund-alert/"&gt;
			In the Press: This Week&amp;#39;s Hedge Fund Alert&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
			&lt;span class="fas fa-newspaper"&gt;&lt;/span&gt;
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-11-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/08/01/simple-c-plus-plus-from-makefiles-to-xcode-builds/"&gt;
			Simple C&amp;#43;&amp;#43;: From Makefiles to Xcode Builds&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-01-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/07/05/kindred-family/"&gt;
			Kindred-Family&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-03-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/06/27/duckduckgo/"&gt;
			DuckDuckGo&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-02-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/06/27/a-simple-markdown-spotlight-importer/"&gt;
			A simple Markdown Spotlight importer&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-07-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/06/07/new-google-analytics-for-status-board-server-edition/"&gt;
			New Google Analytics for Status Board Server Edition&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-04-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/05/29/that-last-effin-20-percent/"&gt;
			That last effin 20%&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-03-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/05/17/rust-hits-1-dot-0/"&gt;
			Rust hits 1.0&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-02-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/03/08/the-perfect-keyboards-for-me/"&gt;
			The Perfect Keyboard(s) (for me)&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-05-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/03/07/one-key-format-presets-in-scrivener/"&gt;
			One-Key Format Presets in Scrivener&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-06-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/03/01/merge-asana-projects-into-omnifocus-updated/"&gt;
			Merge Asana Projects into OmniFocus (Updated)&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-10-31&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/01/31/seeing-the-bigger-picture/"&gt;
			Seeing the Bigger Picture&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-10-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/01/18/eliminating-google-analytics-referral-spam/"&gt;
			Eliminating Google Analytics Referral Spam&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-04-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/01/17/stackoverflow-programming/"&gt;
			StackOverflow Programming&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2015-06-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2015/01/14/write-timestamps-containing-millisecond-to-mongodb-in-c-plus-plus-11/"&gt;
			Write Timestamps containing Milliseconds to MongoDB in C&amp;#43;&amp;#43;11&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-09-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/12/11/coderunner-2/"&gt;
			CodeRunner 2&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-03-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/11/15/what-to-write-about-next/"&gt;
			What to write about next?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-05-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/10/26/lose-the-www/"&gt;
			Lose the WWW&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-02-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/10/26/simple-c-plus-plus-testing-with-catch-in-xcode/"&gt;
			Simple C&amp;#43;&amp;#43; Testing with Catch in Xcode&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-12-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/10/18/gist-textmate-bundle-updated-for-yosemite/"&gt;
			Gist TextMate Bundle updated for Yosemite&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-12-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/10/18/create-a-bootable-os-x-installer-drive/"&gt;
			Create a Bootable OS X Installer Drive&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-12-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/10/02/timetocall-removed-from-app-store/"&gt;
			TimeToCall Removed from App Store&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-09-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/10/01/any-hint-of-humanity-is-valued/"&gt;
			Any hint of humanity is valued&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-08-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/09/03/standard-markdown/"&gt;
			Standard Markdown&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-11-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/09/02/the-quick-code-cleanup/"&gt;
			The Quick Code Cleanup&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-08-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/08/22/aral-on-spyware-2-dot-0/"&gt;
			Aral on Spyware 2.0&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-01-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/08/09/quote-of-the-day/"&gt;
			Quote of the Day&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-07-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/07/30/an-xcode-c-plus-plus-client-server-development-trick/"&gt;
			An Xcode C&amp;#43;&amp;#43; Client-Server Development Trick&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-06-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/07/14/wordcounter/"&gt;
			WordCounter&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-06-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/07/07/sonicwall-mobile-connect-for-os-x-mavericks/"&gt;
			Sonicwall Mobile Connect for OS X Mavericks&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-04-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/06/28/they-will-not-come/"&gt;
			They will not come&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-11-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/06/22/hiltmonism-on-the-floor/"&gt;
			On the floor&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-04-21&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/06/21/upgrading-octopress-to-jekyll-2-dot-0/"&gt;
			Upgrading Octopress to Jekyll 2.0&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-07-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/06/06/server-sided-swift-speculation/"&gt;
			Server-sided Swift Speculation&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-03-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/05/26/omnifocus-my-way/"&gt;
			Omnifocus My Way&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-03-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/05/23/solve-tab-hell-with-fluid-and-choosyosx/"&gt;
			Solve Tab Hell with Fluid and ChoosyOSX&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-08-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/05/05/melding-scrivener-and-marked/"&gt;
			Melding Scrivener and Marked&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-12-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/04/27/the-markdown-payoff/"&gt;
			The Markdown Payoff&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-12-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/04/19/keep-long-running-unix-commands-alive/"&gt;
			Keep long running UNIX commands alive&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-07-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/04/02/social-network-precedents-for-connecting-and-friending/"&gt;
			Social Network Precedents for Connecting and Friending&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-03-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/03/29/rebooting-omnifocus/"&gt;
			Rebooting OmniFocus&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-10-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/03/29/its-that-process-that-is-the-magic/"&gt;
			It&amp;#39;s that process that is the magic&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-08-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/03/27/using-os-x-tools-to-build-a-linux-only-product/"&gt;
			How I use OS X Tools to build a Linux-only Product&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-12-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/03/20/open-source-compiles-in-an-xcode-5-world/"&gt;
			Open Source Compiles in an Xcode 5.1 World&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-01-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/03/15/develop-locally/"&gt;
			Develop Locally, Stage Nearby, Production Anywhere&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-10-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/03/02/from-tool-maker-to-tool-user/"&gt;
			From Tool Maker to Tool User&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-02-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/02/22/easy-ssh-to-local-linux-vm/"&gt;
			Easy SSH to local linux VM&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-11-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/02/17/choose-not-to-be-anonymous/"&gt;
			I Choose not to be Anonymous&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-11-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/02/08/magical-migrations/"&gt;
			Magical Migrations&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-08-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/02/04/view-on-an-insider-as-ceo-for-microsoft/"&gt;
			View on an Insider as CEO for Microsoft&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-02-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/02/01/first-they-came-for-dot-dot-dot/"&gt;
			First they came for...&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-02-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/01/20/more-textmate-2-basics/"&gt;
			More TextMate 2 Basics&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-12-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/01/19/reminder-update-your-tools/"&gt;
			Reminder: Update your Tools&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2014-02-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2014/01/04/python-its-a-trap/"&gt;
			Python: It&amp;#39;s a Trap&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/12/27/cant-innovate-anymore/"&gt;
			Can&amp;#39;t innovate anymore, my ass&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/12/25/writers-thank-you/"&gt;
			Writers: Thank You&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-05-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/12/24/cannot-find-file/"&gt;
			Cannot find File&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/12/07/managing-multiple-projects-assembly-notes-in-one/"&gt;
			Managing Multiple Project&amp;#39;s Assembly Notes in One&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-08-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/12/06/the-day-he-walked-to-freedom/"&gt;
			The day he walked to freedom&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/11/09/textmate-2-basics/"&gt;
			TextMate 2 Basics&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-05-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/11/03/merge-asana-projects-into-omnifocus/"&gt;
			Merge Asana Projects into OmniFocus&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/10/23/apples-and-rotten-oranges/"&gt;
			Apples and Rotten Oranges&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/10/14/detox-expands-t-dot-co-links/"&gt;
			Sanity Saver: Detox expands t.co links&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/10/14/rails-tricks-sharing-the-model/"&gt;
			Rails Tricks - Sharing the Model&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/10/13/why-microsoft-word-must-die/"&gt;
			Why Microsoft Word must Die&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/10/10/using-mac-navigation-keys-in-visual-studio/"&gt;
			Using Mac Navigation Keys in Visual Studio&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/09/29/homebrew-happiness/"&gt;
			Homebrew Happiness&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/09/28/user-experience-shmecsperience/"&gt;
			User Experience Shmecsperience&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/09/28/sonicwall-netextender-for-os-x-mavericks/"&gt;
			SonicWall NetExtender for OS X Mavericks&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/09/18/setup-odbc-for-r-on-os-x/"&gt;
			Setup ODBC for R on OS X&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/09/16/common-misconceptions-about-the-app-store/"&gt;
			Common Misconceptions about the App Store&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/09/14/a-reliable-script-file-layout/"&gt;
			A Reliable Script File Layout&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-08-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/09/05/not-the-clicky-keyboard/"&gt;
			Not the Clicky Keyboard&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/09/02/bbedit-lives-long-and-prospers/"&gt;
			BBEdit lives long and prospers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/08/24/intentional-complexity/"&gt;
			Intentional Complexity&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/08/15/chronosync-back-to-my-mac/"&gt;
			ChronoSync Back to My Mac&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/08/11/the-little-touches/"&gt;
			The Little Touches&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/08/11/gist-textmate-2-bundle-updates/"&gt;
			Gist TextMate 2 Bundle Updates&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/08/04/unreasonable/"&gt;
			Unreasonable&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-07-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/30/quick-process-search/"&gt;
			Quick Process Search&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/28/laravel-4-textmate-bundle/"&gt;
			Laravel 4 Blade TextMate Bundle&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-07-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/19/the-work-computer-software-loadout/"&gt;
			The Work Computer Software Loadout&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/18/fast-ssh-windows-with-iterm-2/"&gt;
			Fast SSH Windows with iTerm 2&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/07/xcode-4-code-completion-for-external-build-projects/"&gt;
			Xcode 4 Code Completion for External Build Projects&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/07/good-tools-change/"&gt;
			Good Tools Change&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/05/xcode-and-the-simple-c-plus-plus-project-structure/"&gt;
			Xcode and the Simple C&amp;#43;&amp;#43; Project Structure&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-05-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/04/using-the-spike-folder/"&gt;
			Using the Spike Folder&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/04/rip-doug-engelbart/"&gt;
			RIP Doug Engelbart&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/03/a-simple-c-plus-plus-project-structure/"&gt;
			A Simple C&amp;#43;&amp;#43; Project Structure&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-08-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/07/03/keep-building/"&gt;
			Keep Building&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/06/25/back-in-the-saddle/"&gt;
			Back in the Saddle&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/06/19/pinbrowser-updated/"&gt;
			Pinbrowser for Pinboard Updated&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/06/15/wwdc-2013-post-game-review/"&gt;
			WWDC 2013 Post-Game Review&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/06/09/accessing-sql-server-from-os-x/"&gt;
			Accessing SQL Server from OS X&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-06-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/06/06/horizons/"&gt;
			Horizons&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-08-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/06/01/sharing-reminder-lists/"&gt;
			Sharing Reminder Lists&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-04-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/30/google-analytics-for-status-board-server-edition/"&gt;
			Google Analytics for Status Board Server Edition&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/28/sanity-saver-ticks-and-crosses/"&gt;
			Sanity Saver - Ticks and Crosses&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/28/my-mac-indie-writing-workflow/"&gt;
			My Mac Indie Writing Workflow&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-08-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/23/letterhead-markdown-style/"&gt;
			Letterhead - Markdown Style&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-06-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/20/the-one-person-product/"&gt;
			The One-Person Product&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-06-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/16/is-it-time-to-change-tools/"&gt;
			Is it time to change tools?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-05-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/14/every-the-best-programmers-editor-review/"&gt;
			Every &amp;#39;The Best Programmers Editor&amp;#39; Review&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/13/my-next-product/"&gt;
			My Next Product&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/12/a-coda-2-use-case/"&gt;
			A Coda 2 Use Case&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-05-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/08/octopress-now-has-footnotes/"&gt;
			Octopress now has Footnotes&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/08/avoiding-the-blogger-trap/"&gt;
			Avoiding the Blogger Trap&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/07/reading-the-archives/"&gt;
			Reading the Archives&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/06/hedge-fund-systems/"&gt;
			Hedge Fund Systems&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/01/fix-the-mac-function-keys-with-palua/"&gt;
			Fix the Mac Function Keys with Palua&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/05/01/instantly-grab-a-high-res-icon-for-any-mac-app/"&gt;
			Instantly grab a high-res icon for any Mac app&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/30/email-before-the-open-web/"&gt;
			Email before the Open Web&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-07-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/29/hiltmonism-the-process-is-not-the-product/"&gt;
			The Process is not the Product&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/28/my-workspace/"&gt;
			My Workspace&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-06-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/27/phone-etiquette/"&gt;
			Phone Etiquette&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/25/make-perfectly-good-mistakes/"&gt;
			Make Perfectly Good Mistakes&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/25/punctual/"&gt;
			Punctual&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/23/analyst-expectations/"&gt;
			Analyst Expectations&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/23/apples-scheduled-releases-are-a-mistake/"&gt;
			Apple&amp;#39;s Scheduled Releases are a Mistake&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/23/slogger-after-6-months/"&gt;
			Slogger after 6 Months&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-07-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/22/have-to-have-it-just-to-have-it/"&gt;
			Have to Have It Just to Have It&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/19/the-people-who-love-something-are-its-best-critics/"&gt;
			The people who love something are its best critics&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/17/18-months-of-octopress/"&gt;
			18 Months of Octopress&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/17/add-ga-os-and-browser-to-status-board/"&gt;
			Add GA OS and Browser to Status Board&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/15/my-textmate-2-setup/"&gt;
			My TextMate 2 Setup&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/15/hourly-analytics-for-status-board/"&gt;
			Hourly Analytics for Status Board&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/11/natsukashii-ipulse-sighting/"&gt;
			Natsukashii - iPulse Sighting&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-04-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/10/top-pages-in-status-board/"&gt;
			Top Pages in Status Board&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/10/google-analytics-for-status-board/"&gt;
			Google Analytics for Status Board&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-05-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/09/google-already-is-big-brother/"&gt;
			Google Already Is Big Brother&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/08/is-this-the-end/"&gt;
			Is this the end?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/05/sharing-nvalt-notes-with-ulysses-iii/"&gt;
			Sharing nvAlt Notes with Ulysses III&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/04/04/go-home/"&gt;
			Go Home&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/28/direct-marketing-your-app-to-tip-lines/"&gt;
			Direct Marketing your App to Tip Lines&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/28/60-million-to-aquihire-me/"&gt;
			$60 million to aquihire me&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/26/oldest-trace-of-you-on-the-internet/"&gt;
			Oldest Trace of You on the Internet&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-04-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/25/bjango-photoshop-actions/"&gt;
			Bjango&amp;#39;s Photoshop Actions&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-04-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/20/mixing-legacy-and-modern-web-development-on-os-x-mountain-lion/"&gt;
			Mixing Legacy and Modern Web Development on OS X Mountain Lion&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-07-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/19/rss-address-change/"&gt;
			RSS Address Change&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/19/someone-else-did-it-better/"&gt;
			Someone Else Did It Better&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/19/long-on-apple/"&gt;
			Long on Apple&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/19/im-doing-it-wrong-dropbox-buys-mailbox/"&gt;
			I&amp;#39;m doing it wrong: Dropbox buys Mailbox&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/18/windows-phone-8-support-will-expire-before-your-phone-contract-does/"&gt;
			Windows Phone 8 support will expire before your phone contract does&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/18/cutting-down-on-web-tracking/"&gt;
			Cutting down on Web Tracking&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/15/premature-blackberry-sales-analysis-by-forbes/"&gt;
			Premature BlackBerry Sales Analysis by Forbes&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-05-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/14/destroyed-the-ecosystem/"&gt;
			Also Destroyed the Ecosystem&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/14/backup-your-online-life/"&gt;
			Backup Your Online Life&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/12/guessing-the-wall-street-journal-agenda-for-apple/"&gt;
			Guessing the Wall Street Journal Agenda for Apple&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/12/sharing-bash-profiles-across-computers/"&gt;
			Sharing Bash Profiles across Computers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/12/better-bash-shell-expansion/"&gt;
			Better Bash Shell Expansion&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-04-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/11/gist-dot-tmbundle-updates/"&gt;
			Gist.tmbundle Updates&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/09/modular-mac-pros/"&gt;
			Modular Mac Pros, the new Burroughs B20?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-06-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/07/the-diminishing-relevance-of-ms-office/"&gt;
			The diminishing relevance of MS Office&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/07/timetocall-after-one-month/"&gt;
			TimeToCall - After One Month&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/06/defend-your-livelihood/"&gt;
			Defend your Livelihood&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/06/we-unfortunately-cant-pay-you-for-it/"&gt;
			We unfortunately can’t pay you for it&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/06/fix-copy-address-from-mail-on-os-x/"&gt;
			Fix Copy Address from Mail on OS X&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/06/on-ihnatko-switching-to-android/"&gt;
			On Ihnatko Switching to Android&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/05/timetocall-demo-video/"&gt;
			TimeToCall Demo Video&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/03/02/better/"&gt;
			Better?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-05-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/28/timetocall-first-updates-coming-soon/"&gt;
			TimeToCall - First Updates Coming Soon&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/27/have-a-better-agenda/"&gt;
			Have a Better Agenda&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/26/buyreply-email-text-tweet-to-buy/"&gt;
			BuyReply: Email, Text, Tweet, Click to Buy&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-08-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/26/using-twitter-adn-and-xpost/"&gt;
			Using Twitter and #xpost (Archived)&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-03-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/25/gist-textmate-bundle-and-command/"&gt;
			Gist TextMate Bundle and Command Line&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-06-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/22/multiple-themes-in-textmate-2/"&gt;
			Multiple Themes in TextMate 2&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-07-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/20/glui-a-better-skitch/"&gt;
			Glui - a better Skitch&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/15/criticmarkup-bundle-for-textmate-2/"&gt;
			CriticMarkup Bundle for TextMate 2&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-07-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/14/timetocall-after-one-week/"&gt;
			TimeToCall - After One Week&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/13/make-iterm-2-more-mac-like/"&gt;
			Make iTerm 2 more Mac-like&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-02-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/10/download-dreamhost-server-logs/"&gt;
			Download Dreamhost Server Logs&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/10/add-web-clip-icons-to-octopress/"&gt;
			Add Web Clip Icons to Octopress&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-08-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/07/timetocall-shipping/"&gt;
			TimeToCall - Shipping&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/06/timetocall-dawdle-to-the-finish/"&gt;
			TimeToCall - Dawdle to the Finish&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/05/timetocall-the-macguffin/"&gt;
			TimeToCall - The MacGuffin&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/04/timetocall-polishing-the-app/"&gt;
			TimeToCall - Polishing the App&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/03/timetocall-sweating-the-details/"&gt;
			TimeToCall - Sweating the Details&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/02/timetocall-good-and-bad-times-to-call/"&gt;
			TimeToCall - Good and Bad Times to Call&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/02/01/timetocall-presenting-the-clock/"&gt;
			TimeToCall - Presenting the Clock&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-31&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/31/timetocall-the-biggest-design-decision/"&gt;
			TimeToCall - The Biggest Design Decision&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/30/clothes-make-the-man/"&gt;
			Clothes make the Man&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/30/timetocall-building-the-core/"&gt;
			TimeToCall - Building the Core&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-07-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;
			TimeToCall - The Effort and the Return&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-05-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/25/time-to-call-coming-soon/"&gt;
			Time To Call - Coming Soon&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/24/dog-with-a-bone/"&gt;
			Dog with a Bone&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/23/surface-pro-pricing-madness/"&gt;
			Surface Pro Pricing Madness&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/19/sanity-saver-nomoreitunes/"&gt;
			Sanity Saver: NoMoreiTunes&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/19/browser-windows-on-all-desktops/"&gt;
			Browser Windows on all Desktops&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/17/being-productive-with-virtual-desktops/"&gt;
			Being Productive with Virtual Desktops&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-08-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/16/rvm-in-textmate-2/"&gt;
			RVM in TextMate 2&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/14/back-to-textmate-2/"&gt;
			Back to TextMate 2&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/14/hit-by-a-bus/"&gt;
			Hit by a Bus&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/14/priming-the-pump/"&gt;
			Priming the Pump&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-09-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/12/workable-social-network-connection-heuristics/"&gt;
			Workable Social Network Connection Heuristics&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-10-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/11/ruby-tempfile-aggressive-unlink/"&gt;
			Ruby Tempfile Aggressive Unlink&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-01-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/07/reprogramming-my-brace-style-mind/"&gt;
			Reprogramming my Brace Style Mind&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-12-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/07/the-entirety-of-information/"&gt;
			The Entirety Of Information&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2013-11-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2013/01/03/assembly-notes/"&gt;
			Assembly Notes&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-31&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/31/1ghz-titanium-powerbook/"&gt;
			1GHz Titanium PowerBook&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/28/mind-hacks/"&gt;
			Mind hacks&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/26/be-organized-and-productive/"&gt;
			Be Organized and Productive&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/26/2012-year-end-ipad-essentials/"&gt;
			2012 Year End iPad Essentials&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-21&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/21/cd-to-current-finder-path/"&gt;
			CD to Current Finder Path&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/19/how-to-flexify-a-class/"&gt;
			How to Flexify a Class&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/19/instagram-ad-image/"&gt;
			Free Instagram Ad Image for Advertisers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/19/premature-flexification/"&gt;
			Premature Flexification&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/18/depersonalize-because-you-cant-quit/"&gt;
			Depersonalize because you can’t quit&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/17/youre-the-advertisement/"&gt;
			You’re the Advertisement&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/16/gun-control-does-work/"&gt;
			Gun Control does Work&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/11/de-fault-with-default/"&gt;
			De Fault with Default&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/11/on-customer-and-developer-entitlements/"&gt;
			On Customer and Developer Entitlements&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/05/forced-arbitration-and-the-right-to-sue/"&gt;
			Forced Arbitration and the Right to Sue&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/03/apple-please-make-a-touchscreen-laptop/"&gt;
			Apple, Please make a Touchscreen Laptop&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/02/bills-doubled-in-8-years/"&gt;
			Bills Doubled in 8 Years&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/01/yahoo-finance-logger-for-slogger/"&gt;
			Yahoo Finance Logger for Slogger&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/12/01/inbox-kinda-zero/"&gt;
			Inbox Kinda Zero&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/29/back-to-byword-from-ia-writer/"&gt;
			Back to Byword from iA Writer&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/27/hiltmonism-workflow-is-functionality/"&gt;
			Workflow is Functionality&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/26/multi-platform-editing-is-sublime/"&gt;
			Multi-Platform Editing is Sublime&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/24/one-year-old/"&gt;
			Hiltmon.com - One Year Old&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/22/vegemite-sandwich/"&gt;
			Vegemite Sandwich&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/17/day-one-icloud-sync-fail/"&gt;
			Day One iCloud Sync Fail&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/16/it-does-not-have-what-we-can-and-will-not-use/"&gt;
			No Sale: It does not have what we can and will not use&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/15/python-zen/"&gt;
			Python Zen&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/14/google-analytics-logger-for-slogger/"&gt;
			Google Analytics Logger for Slogger&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/12/another-reason-why-i-love-this-community/"&gt;
			Another Reason to love this Community&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/08/linking-to-bullshit/"&gt;
			Linking to Bullshit&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/08/adverse-apple-articles/"&gt;
			Adverse Apple Articles&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/07/multiple-themes-in-sublime-text-2/"&gt;
			Multiple Themes in Sublime Text 2&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/07/rarely-microsoft-office/"&gt;
			Rarely Microsoft Office&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/06/managing-the-productivity-context/"&gt;
			Managing the Productivity Context&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/06/reducing-inboxes/"&gt;
			Reducing Inboxes&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/05/surface-disk-free-space/"&gt;
			Surface Disk Free Space&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/11/05/aapl-vs-amzn-performance-madness/"&gt;
			AAPL vs AMZN Performance Madness&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/29/grand-central-today/"&gt;
			Grand Central Today&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/27/surface-rt-is-not-a-duck/"&gt;
			Surface RT is not a Duck&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/27/marco-and-the-surface/"&gt;
			Marco and the Surface&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/25/windows-8-launch-mia/"&gt;
			Windows 8 Launch MIA&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/25/apple-vs-microsoft-launch-differences/"&gt;
			Apple vs Microsoft Launch Differences&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/24/email-etiquette/"&gt;
			Email Etiquette&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/24/the-big-5-windows-8-lineups/"&gt;
			The Big 5 Windows 8 Lineups&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/23/thered-be-something-called-a-mini/"&gt;
			There’d be something called a mini&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/22/the-myth-of-the-wireless-spectrum-crisis/"&gt;
			The myth of the wireless spectrum crisis&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/22/huge-last-week-in-october-2012-for-tech/"&gt;
			Huge Last Week in October 2012 for Tech&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/22/solutions-born-from-deep-experience/"&gt;
			Solutions born from deep experience&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/20/45-revolutions/"&gt;
			45 Revolutions&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/19/say-no-to-spec-work/"&gt;
			Say NO to Spec Work&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/19/why-windows-just-cant-win/"&gt;
			Why Windows Just Can’t Win&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/16/too-many-menu-bar-apps/"&gt;
			Too Many Menu Bar Apps?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/15/walled-gardens-are-permeable/"&gt;
			Walled Gardens are Permeable&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/14/the-post-pc-future/"&gt;
			The Post-PC future, iCloud turns one&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/13/fixing-open-with-in-os-x/"&gt;
			Fixing Open With in OS X&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/10/scratched-iphones/"&gt;
			Scratched iPhones&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/10/spent-more-on-patents-than-r/"&gt;
			Spent more on Patents than R&amp;amp;D?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/10/microsoft-lost-its-mojo/"&gt;
			Microsoft Lost its Mojo&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-10&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/10/bbedit-still-rules/"&gt;
			BBEdit still Rules&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/08/stop-with-the-old-text-editors-already/"&gt;
			Stop with the old Text Editors already&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/10/08/hiltmonism-minimize-the-glue/"&gt;
			Minimize the Glue&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/09/29/export-to-excel-is-a-red-flag/"&gt;
			Export to Excel is a Red Flag&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/09/28/entitlement/"&gt;
			Entitlement&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/09/27/windows-8-preview-on-a-tablet/"&gt;
			Windows 8 Preview on a Tablet&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/09/27/bye-bye-skitch/"&gt;
			Bye bye Skitch, Hello LittleSnapper&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/09/24/new-ios6-cached-maps/"&gt;
			New iOS6 Cached Maps&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/09/20/the-best-sushi/"&gt;
			The best Sushi&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/09/19/buying-a-new-suitcase/"&gt;
			Buying a new Suitcase&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/25/text-editor-addict/"&gt;
			Text Editor Addict&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/25/thwarted-by-patents/"&gt;
			Thwarted by Patents&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/22/care/"&gt;
			Care&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/20/where-is-the-international-news/"&gt;
			Where is the International News&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/18/att-effs-users-again/"&gt;
			AT&amp;amp;T effs users again&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/17/hipstamatic-fires-its-devs/"&gt;
			Hipstamatic fires its devs&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/17/rip-twitter/"&gt;
			RIP Twitter&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/14/my-sublime-text-2-setup/"&gt;
			My Sublime Text 2 Setup&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/13/choosing-sunglasses/"&gt;
			Choosing Sunglasses&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/13/app-dot-net-funded/"&gt;
			App.Net Funded&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/09/textmate-2-is-now-open-source/"&gt;
			Textmate 2 is now Open Source&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-08&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/08/expect-the-unexpected/"&gt;
			Expect the Unexpected&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/07/well-managed-scripts-better-than-platforms/"&gt;
			Well Managed Scripts better than Platforms&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/06/no-competition-in-carrier-space/"&gt;
			No competition in Carrier space&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/06/mischief-managed-update-tools/"&gt;
			Mischief Managed: Update Tools, Learn New&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/06/mischief-managed-archiving/"&gt;
			Mischief Managed: Archiving&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/06/mischief-managed-google-2-factor-authentication/"&gt;
			Mischief Managed: Google 2-Factor Authentication&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/06/mischief-managed-clean-inbox/"&gt;
			Mischief Managed: Clean Inbox&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/05/new-site-font/"&gt;
			New Site Font&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/03/change-is-good-new-applications-replacing-old-ones/"&gt;
			Change is Good - New Applications replacing Old Ones&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/03/moom-corners/"&gt;
			Moom Corners&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/03/setting-up-bbedit-for-markdown/"&gt;
			Setting up BBEdit for Markdown&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/02/day-one-updated-to-v1-dot-7/"&gt;
			Day One updated to v1.7&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/01/my-first-computer-sinclair-zx81/"&gt;
			My first computer - Sinclair ZX81&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/08/01/hiltmonism-lead-the-business/"&gt;
			Lead the Business&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/30/if-the-nbc-olympics-team-did-the-nfl/"&gt;
			If the NBC Olympics team did the NFL&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/24/the-value-of-apps/"&gt;
			The value of Apps&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/23/low-app-prices-unsustainable/"&gt;
			Low app prices unsustainable&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/23/how-many-99c-apps-it-takes-to-afford-that-guy/"&gt;
			How many 99c apps it takes to afford that guy&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/22/talent-acquisitions-and-product-casualties/"&gt;
			Talent Acquisitions and Product Casualties&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/22/joining-the-ssd-club/"&gt;
			Joining the SSD Club&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/19/the-10-year-rule/"&gt;
			The 10-year rule&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/19/two-kinds-of-innovations-in-tech/"&gt;
			Two kinds of innovations in tech&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/19/7-reasons-why-i-cant-do-free/"&gt;
			7 Reasons Why I Can’t Do “Free”&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/19/software-will-always-trump-hardware/"&gt;
			Software will always trump Hardware&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/19/international-terpstra-day/"&gt;
			International Terpstra Day&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/18/octopress-post-and-publish/"&gt;
			Octopress Post and Publish&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/18/estimating-software-like-it-is/"&gt;
			Estimating Software like it is&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/16/kinds-of-files-in-a-project-folder/"&gt;
			Kinds of Files in a Project Folder&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/15/textexpander-in-terminal/"&gt;
			TextExpander in Terminal&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/14/cheap-programmers-cost-more-and-ship-less/"&gt;
			Cheap programmers cost more and ship less&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/12/kifu-v1-dot-0-released/"&gt;
			Kifu v1.0 Released&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/11/building-and-dismantling-the-windows-advantage/"&gt;
			Building and dismantling the Windows advantage&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/11/great-since-day-one/"&gt;
			Great since day one&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/11/the-unreasonable-man/"&gt;
			The unreasonable man&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/11/slicy-photoshop-artwork/"&gt;
			Slicy Photoshop Artwork&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/06/target-the-forward-fringe/"&gt;
			Target the Forward Fringe&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/07/05/carriers-are-the-biggest-threat-to-innovation/"&gt;
			Carriers are the biggest threat to innovation&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/30/project-folder-layout/"&gt;
			Project Folder Layout&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/29/iphone-is-5-today/"&gt;
			iPhone is 5 today&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/29/syncing-the-desktop-and-the-laptop/"&gt;
			Syncing the Desktop and the Laptop&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/28/data-presentation-at-its-best/"&gt;
			Data presentation at its best&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/28/on-the-nexus-7/"&gt;
			On the Nexus 7&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/28/someone-is-coming-to-eat-you/"&gt;
			Someone is coming to eat you&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/22/compete-to-maintain/"&gt;
			Compete to maintain, Disrupt to succeed&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/20/non-upgradable-smartphones/"&gt;
			Non-upgradable Smartphones&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/20/single-pay/"&gt;
			Single-pay, Ad-pay or Both-pay?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/20/learn-to-automate/"&gt;
			Learn to Automate&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/18/markdown-metadata/"&gt;
			Markdown Metadata&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/17/unrepairable/"&gt;
			Unrepairable&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/17/the-care-and-feeding-of-software-engineers/"&gt;
			The care and feeding of software engineers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/15/i-love-my-lawyers/"&gt;
			I love my lawyers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/11/my-wwdc-2012-scorecard/"&gt;
			My WWDC 2012 Scorecard&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/11/sandboxing-and-productivity-utilities/"&gt;
			Sandboxing and Productivity Utilities&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/09/my-wwdc-2012-predictions/"&gt;
			My WWDC 2012 Predictions&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/09/hiltmonism-no-more-than-five/"&gt;
			No more than Five&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/06/shuttle-on-the-hudson/"&gt;
			Shuttle on the Hudson&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/06/how-support-via-twitter-works/"&gt;
			How support via Twitter works&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/05/the-demo-bag/"&gt;
			The Demo Bag&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/05/annual-apple-wwdc-disappointment/"&gt;
			Annual Apple WWDC Disappointment&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/03/notice-of-revocation-of-independence/"&gt;
			Notice of Revocation of Independence&amp;nbsp;
		&lt;/a&gt;

		
			&lt;span class="fas fa-pencil-alt"&gt;&lt;/span&gt;
		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/03/screw-the-power-users/"&gt;
			Screw the Power Users&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/03/mac-app-store-vs-buying-direct/"&gt;
			Mac App Store vs Buying Direct&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/03/the-last-of-the-workstations/"&gt;
			The Last of the Workstations&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/06/03/using-mission-control-desktops/"&gt;
			Using Mission Control Desktops&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/27/project-specific-data/"&gt;
			Project Specific Data&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/26/the-missing-feature-fallacy/"&gt;
			The Missing Feature Fallacy&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/25/old-farts-know-how-to-code/"&gt;
			Old Farts Know How to Code&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/25/please-learn-to-write/"&gt;
			Please Learn to Write&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/22/stylizing-my-services-agreement/"&gt;
			Stylizing my Services Agreement&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/22/distributed-note-taking/"&gt;
			Distributed Note Taking&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/18/zombie-email/"&gt;
			Zombie email&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/18/my-own-support-call-line/"&gt;
			My own support call line&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/16/apple-cinema-hd-display-circa-2003/"&gt;
			Apple Cinema HD Display circa 2003&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/16/automatically-managed-files/"&gt;
			Automatically Managed Files&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/16/us-aircraft-embarcation-etiquette-failures/"&gt;
			US Aircraft Embarkation Etiquette Failures&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/05/15/recent-travels-and-tech/"&gt;
			Recent Travels and Tech&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/26/application-context-packs/"&gt;
			Application Context Packs&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/26/my-iphone-home-screen/"&gt;
			My iPhone Home Screen&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/25/why-scope-creep-is-your-fault/"&gt;
			Why Scope Creep is your fault&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/25/this-industry-is-full-of-crap/"&gt;
			This Industry Is Full Of Crap&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/22/microsoft-did-not-always-suck/"&gt;
			Microsoft did not always suck&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-21&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/21/us-dining-etiquette-failures/"&gt;
			US Dining Etiquette Failures&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/19/spike-ui-teaser/"&gt;
			Spike UI Teaser&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/19/the-news-routine/"&gt;
			The news routine&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/16/augmented-paper/"&gt;
			Augmented Paper&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/16/another-view-of-the-tsa-problem/"&gt;
			Another view of the TSA problem&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/15/text-notes-going-electronic/"&gt;
			Text Notes - Going Electronic&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/12/dont-panic-flashback-trojan/"&gt;
			Don&amp;#39;t Panic - Flashback Trojan&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/09/marked-1-dot-4/"&gt;
			Marked 1.4&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/09/the-candle-problem/"&gt;
			The Candle Problem&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/09/explaining-the-internet-to-old-powerbrokers/"&gt;
			Explaining the Internet to Old Powerbrokers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/06/spike-solutions/"&gt;
			Spike Solutions&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/04/adjusting-the-cap/"&gt;
			Adjusting the Cap&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/04/01/and-this-is-why/"&gt;
			And this is why&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-31&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/31/i-love-debugging/"&gt;
			I love debugging&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-31&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/31/photoshop-etiquette-for-web-designers/"&gt;
			Photoshop Etiquette for Web Designers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-31&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/31/makers-schedule-managers-schedule/"&gt;
			Maker&amp;#39;s Schedule, Manager&amp;#39;s Schedule&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-04-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/27/the-mac-app-store-needs-paid-upgrades/"&gt;
			The Mac App Store Needs Paid Upgrades&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/27/on-digital-hoarding/"&gt;
			On Digital Hoarding&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/27/youre-being-stalked/"&gt;
			You&amp;#39;re being stalked&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/27/ipad-4g-misleading/"&gt;
			iPad 4G Misleading&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/25/freemium-simulation-games-prove-stupidity/"&gt;
			Freemium Simulation Games prove Stupidity&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/24/giving-yourself-away-with-a-facebook-login/"&gt;
			Giving yourself away with a Facebook Login&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/22/clarity/"&gt;
			Clarity&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/22/markdown-quick-look/"&gt;
			Markdown Quick Look&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/17/2012-ipad-essentials/"&gt;
			2012 iPad Essentials&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/17/with-in-app-coins/"&gt;
			With In-App Coins, We&amp;#39;re all Losers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/16/first-impressions-of-the-new-ipad/"&gt;
			First impressions of the new iPad&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-15&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/15/my-blog-writing-workflow/"&gt;
			My Blog Writing Workflow&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/14/get-to-read-quicker/"&gt;
			Get to read quicker&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/13/not-your-free-tech-support/"&gt;
			Not Your Free Tech Support&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-03-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/09/top-of-the-line/"&gt;
			Top of the Line&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/09/writing-on-the-ipad/"&gt;
			Writing on the iPad&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/09/ipad-on-two-years-of-use/"&gt;
			iPad - On Two Years of Use&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/07/the-markdown-file-extension/"&gt;
			The Markdown File Extension&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/05/you-are-not-ruthless-enough/"&gt;
			You Are Not Ruthless Enough&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/05/the-10-commandments-of-good-source-control-management/"&gt;
			The 10 commandments of good source control management&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/05/is-antivirus-software-a-waste-of-money/"&gt;
			Is Antivirus Software a Waste of Money?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/05/presenting-a-professional-indie-image/"&gt;
			Presenting a Professional Indie Image&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/05/serious-and-snark/"&gt;
			Serious and Snark&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/01/thank-you-for-a-great-february/"&gt;
			Thank you for a great February&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/01/the-end-of-advertising/"&gt;
			The End of Advertising&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/03/01/tsa-fail/"&gt;
			TSA:Fail&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/27/quick-and-dirty-rails-performance-profiling/"&gt;
			Quick and Dirty Rails Performance Profiling&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/25/iphone-data-plan-follies/"&gt;
			iPhone Data Plan Follies&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/23/text-editing-fonts-and-colors/"&gt;
			Text Editing Fonts and Colors&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-02-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/22/apple-and-facebook/"&gt;
			Apple and Facebook&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-20&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/"&gt;
			The Markdown Mindset&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/17/the-4g-deception/"&gt;
			The 4G deception&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/16/all-to-octopress/"&gt;
			All to Octopress&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/16/the-app-store-playing-field/"&gt;
			The App Store playing field&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/13/taking-down-my-old-iphone-apps/"&gt;
			Taking down my old iPhone Apps&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/11/hiltmonism-fix-instead-of-blame/"&gt;
			Fix instead of Blame&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/07/speculative-developers/"&gt;
			Speculative Developers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/07/design-needs-an-advocate/"&gt;
			Design needs an Advocate&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/07/structure-first-content-always/"&gt;
			Structure First. Content Always.&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/03/your-idea-sucks/"&gt;
			Your idea sucks, now go do it anyway&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/03/cheap-iphones/"&gt;
			Cheap iPhones, Wealthy Workers, Pick One?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/03/news-logic/"&gt;
			News Logic&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/01/the-paradox-of-choice/"&gt;
			The paradox of choice&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/02/01/childlike-wonder/"&gt;
			Childlike Wonder&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/29/fragility-of-free/"&gt;
			Fragility of Free&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-11-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/26/test-driven-development-really-works/"&gt;
			Test Driven Development Really Works&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/26/where-the-light-is-better/"&gt;
			Where the light is better&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/26/less-wasting-time/"&gt;
			Less Wasting Time&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/24/trade-trade-secrets/"&gt;
			Trade Trade Secrets&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/23/understanding-acta/"&gt;
			Understanding ACTA&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/23/hiltmonism-operations-by-exception/"&gt;
			Operations by Exception&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/23/bread-crumbs-in-day-one/"&gt;
			Bread crumbs in Day One&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/23/developers-a-love-story/"&gt;
			Developers, A Love Story&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/23/a-spellchecker-used-to-be-a-major-feat-of-software-engineering/"&gt;
			A Spellchecker Used to Be a Major Feat of Software Engineering&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/18/make-a-better-product/"&gt;
			Make a better product&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/18/software-is-eating-the-world/"&gt;
			Software is Eating the World&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-18&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/18/stop-sopa-and-pipa/"&gt;
			Stop SOPA and PIPA, a personal request&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/17/hollywood-accounting/"&gt;
			Hollywood Accounting and SOPA&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-05-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/16/googles-schmidt-solution-to-android/"&gt;
			Google&amp;#39;s Schmidt Solution to Android&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-01-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/16/products-define-you/"&gt;
			Products define you&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/16/newspapers-paywalls-and-core-users/"&gt;
			Newspapers, Paywalls, and Core Users&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-12-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/16/how-google-failed-to-fix-the-mobile-market/"&gt;
			How Google failed to fix the mobile market&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/11/it-should-only-take-you-a-few-hours-dot-dot-dot/"&gt;
			It should only take you a few hours...&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-09-11&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/11/why-patents-are-a-big-problem/"&gt;
			Why patents are a big problem&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-09&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/09/hiltmonism-always-be-selling/"&gt;
			Always Be Selling&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/06/does-money-even-exist-anymore/"&gt;
			Does money even exist anymore?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-10-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/06/bandwidth-caps-never-necessary/"&gt;
			Bandwidth caps never necessary&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-06-05&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/05/my-favorite-mac-apps-of-2011/"&gt;
			My Favorite Mac Apps of 2011&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-08-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/02/misconceptions-about-ios-multitasking/"&gt;
			Misconceptions About iOS Multitasking&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2012-07-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2012/01/02/the-coming-war-on-general-computation/"&gt;
			The coming war on general computation&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/30/the-definition-of-open/"&gt;
			The definition of open&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/30/get-it-brilliant/"&gt;
			Get it brilliant&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/30/the-difference-between-drivers-and-passengers/"&gt;
			The difference between drivers and passengers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/30/creating-games-in-genres-you-hate/"&gt;
			Creating games in genres you hate&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-05-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/30/lodsys-still-trolling/"&gt;
			Lodsys still trolling&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-05-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/30/bogus-copyright-claims-under-sopa/"&gt;
			Bogus copyright claims under SOPA&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-05-30&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/30/not-secret-subpoena/"&gt;
			Not secret subpoena&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-12-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/29/ridiculous-gizmodo/"&gt;
			Ridiculous Gizmodo&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/28/reviews-should-advise/"&gt;
			Reviews should advise&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/28/textmate-2-tips/"&gt;
			Textmate 2 Tips&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-03-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/26/is-america-giving-up-on-the-future/"&gt;
			Is America Giving Up on the Future?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-12-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/26/programming-polytheism/"&gt;
			Programming polytheism&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-11-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/26/2011-platforms-ruby-on-rails/"&gt;
			2011 Platforms - Ruby on Rails&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-11-26&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/26/2011-platforms-objective-c-and-ios/"&gt;
			2011 Platforms - Objective-C and iOS&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-11-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/23/the-whole-world-is-watching-while-the-usa-collapses/"&gt;
			The whole world is watching while the USA collapses&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-11-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/23/youre-the-product/"&gt;
			You&amp;#39;re the product&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-10-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/23/the-cartoon-villain-behind-sopa/"&gt;
			The cartoon villain behind SOPA&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-10-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/23/hiltmonism-one-version-of-the-truth/"&gt;
			One version of the truth&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-05-21&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/21/smoke-screening/"&gt;
			Smoke Screening&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-04-21&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/21/adam-savage-on-sopa/"&gt;
			Adam Savage on SOPA&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-11-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/19/the-missing-feature/"&gt;
			The missing feature&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-19&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/19/developer-and-power-tools/"&gt;
			Developer and Power Tools&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-12-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/17/hiltmonism-if-it-aint-broke/"&gt;
			If it ain&amp;#39;t broke, break it&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-12-17&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/17/bring-in-the-nerds/"&gt;
			Bring in the nerds&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-08-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/16/on-the-topic-of-talent/"&gt;
			On the topic of talent&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-08-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/16/speculative-work-hurts/"&gt;
			Speculative work hurts&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-08-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/16/machine-driven/"&gt;
			Machine-driven&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-08-16&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/16/design-is-horseshit/"&gt;
			Design is Horseshit&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-12-14&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/14/seek-the-criticism/"&gt;
			Seek the Criticism&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-10-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/13/dont-give-up-on-your-techs/"&gt;
			Don&amp;#39;t give up on your techs&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-09-13&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/13/the-usage-lifecycle/"&gt;
			The usage lifecycle&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-09-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/12/the-lost-art-of-the-print-statement/"&gt;
			The lost art of the print statement&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-09-12&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/12/hiltmonism-write-code-for-someone-else/"&gt;
			Write code for someone else&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-08-07&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/07/kindle-fire-lets-kids-charge-up-a-storm/"&gt;
			Kindle Fire lets kids charge up a storm&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-07-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/06/hiltmonism-information-not-data/"&gt;
			Information, not Data&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/06/dont-be-a-free-user/"&gt;
			Don&amp;#39;t be a free user&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-09-06&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/06/good-news-online-retailers-do-not-hate-their-customers/"&gt;
			Good news - online retailers do not hate their customers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-11-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/04/zittrain-misses-the-point/"&gt;
			Zittrain misses the point&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-10-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/04/the-argument-for-coding-standards/"&gt;
			The argument for coding standards&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-09-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/04/hiltmonism-automate-or-die/"&gt;
			Automate or Die&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-09-04&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/04/the-best-steve-jobs-quote/"&gt;
			The best Steve Jobs quote&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-09-03&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/03/the-four-hour-rule/"&gt;
			The four hour rule&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-08-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/02/e-reader-roundup/"&gt;
			e-reader roundup&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/02/no-service-competition-in-new-york/"&gt;
			No Service Competition in New York&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/02/data-caps-dont-work/"&gt;
			Data caps don&amp;#39;t work&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-09-02&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/02/explain-the-problem/"&gt;
			Explain the Problem - Not your Solution&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-09-01&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/12/01/hiltmonism-close-to-the-business/"&gt;
			Close to the Business&amp;nbsp;
		&lt;/a&gt;

		

		
			&lt;span class="fas fa-cog"&gt;&lt;/span&gt;
		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-10-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/29/on-designing-web-applications-balancing-identity/"&gt;
			On Designing Web Applications balancing Identity, Usability and Familiarity&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-07-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/29/vc-tries-to-sell-a-con/"&gt;
			VC tries to sell a con&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-29&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/29/hundreds-of-sites-ordered-deindexed/"&gt;
			Hundreds of sites ordered deindexed&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-05-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/28/the-readable-future/"&gt;
			The readable future&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-11-28&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/28/copycats/"&gt;
			Copycats&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/27/almost-no-one-changes-their-settings/"&gt;
			Almost no-one changes their settings&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-11-27&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/27/you-hate-your-customers/"&gt;
			If your site does ..., you hate your Customers&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-03-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/25/should-i-wait/"&gt;
			Should I wait?&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-12-25&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/25/i-just-want-a-hamburger/"&gt;
			I just want a Hamburger&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-12-24&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/24/you-are-not-your-customer/"&gt;
			You are not your Customer&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-06-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/23/f-star-ck-you-pay-me/"&gt;
			F*ck You, Pay Me&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-05-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/23/signing-up-for-everything/"&gt;
			Signing up for Everything&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-05-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/23/the-pummeling-pages/"&gt;
			The Pummeling Pages&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-12-23&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/23/the-way-of-the-code-samurai/"&gt;
			The Way of the Code Samurai&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-11-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/22/four-keys-to-apples-success/"&gt;
			Four Keys to Apple&amp;#39;s Success&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;
 
 
 
 &lt;article class="archives-block"&gt;
 &lt;span class="archives-date"&gt;2011-08-22&lt;/span&gt;
 &lt;span class="archives-link"&gt;
		&lt;a href="https://hiltmon.com/blog/2011/11/22/migrating-to-octopress/"&gt;
			Migrating to Octopress&amp;nbsp;
		&lt;/a&gt;

		

		
		
		
		&lt;/span&gt;
 &lt;/article&gt;</description></item><item><title>Working from Home ... 88 Days Later</title><link>https://hiltmon.com/blog/2020/06/07/working-from-home-88-days-later/</link><pubDate>Sun, 07 Jun 2020 11:00:50 -0400</pubDate><guid>https://hiltmon.com/blog/2020/06/07/working-from-home-88-days-later/</guid><description>&lt;blockquote&gt;
&lt;p&gt;Follow on post to &lt;a href="https://hiltmon.com/blog/2020/03/14/working-from-home-dot-dot-dot-here-we-go/"&gt;Working From Home &amp;hellip; Here We Go!&lt;/a&gt; written in March.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;88 Days ago in New York we all started working from home. 88 Days ago we stopped commuting, sat down for the first time at our fledgeling home workspaces, launched our first Zoom or Slack meetings and started figuring out how best to do our jobs from there. 88 Days later, we&amp;rsquo;re still doing it and will be for the foreseeable future.&lt;/p&gt;</description></item><item><title>Working from Home ... here we go!</title><link>https://hiltmon.com/blog/2020/03/14/working-from-home-dot-dot-dot-here-we-go/</link><pubDate>Sat, 14 Mar 2020 09:57:53 -0400</pubDate><guid>https://hiltmon.com/blog/2020/03/14/working-from-home-dot-dot-dot-here-we-go/</guid><description>&lt;p&gt;It’s been many years since I worked from home and much is different since I ran Noverse from here. First, my wife has taken over my workspace as hers, so the desk, good keyboard, mouse and monitor are her domain now. Secondly, it’s likely this is not a one-day disaster recovery test, so I need to find a way settle in instead of use the laptop on the dining table. And thirdly, Slack has changed the way we communicate internally, which makes it as easy to maintain contact as it does in our open plan office.&lt;/p&gt;</description></item><item><title>The Theater was Empty</title><link>https://hiltmon.com/blog/2019/12/31/the-theater-was-empty/</link><pubDate>Tue, 31 Dec 2019 14:14:36 -0500</pubDate><guid>https://hiltmon.com/blog/2019/12/31/the-theater-was-empty/</guid><description>&lt;h2 id="johannesburg-1977"&gt;Johannesburg, 1977&lt;/h2&gt;
&lt;p&gt;It was a crisp, sunny Saturday morning and my grandmother was in town. As we always did when together, we went to the movies. The theater nearby was old, run down but comfortable and in walking distance. I&amp;rsquo;d go there later again many times on many Saturday mornings.&lt;/p&gt;
&lt;p&gt;For the first time, though, I was more excited about the movie than I was about going with grandmother. I was about to turn 10. And I was about to see a Star Wars movie, the original one, for the very first time.&lt;/p&gt;</description></item><item><title>An iPad and a Pencil</title><link>https://hiltmon.com/blog/2019/02/16/an-ipad-and-a-pencil/</link><pubDate>Sat, 16 Feb 2019 11:36:39 -0500</pubDate><guid>https://hiltmon.com/blog/2019/02/16/an-ipad-and-a-pencil/</guid><description>&lt;p&gt;In 2018, I switched to using an iPad Pro and Apple Pencil when not using my computer, replacing notebooks, scraps of paper, Post-It notes, and ink-leaking pens. After a year of being digital, here are some of the processes and habits I have picked up.&lt;/p&gt;
&lt;!-- more --&gt;
&lt;h2 id="the-setup"&gt;The Setup&lt;/h2&gt;
&lt;p&gt;I have a late 2017 iPad Pro 10.5&amp;quot; 256GB Cellular model, with an Apple Smart Keyboard and the original Apple Pencil. It&amp;rsquo;s running the latest iOS 12.1.4 with no problems at all. Both the main unit and the keyboard have been through one repair.&lt;/p&gt;</description></item><item><title>Testing C++17 Projects in Xcode with XCTest</title><link>https://hiltmon.com/blog/2019/02/09/testing-c-plus-plus-17-project-in-xcode-with-xctest/</link><pubDate>Sat, 09 Feb 2019 13:55:39 -0500</pubDate><guid>https://hiltmon.com/blog/2019/02/09/testing-c-plus-plus-17-project-in-xcode-with-xctest/</guid><description>&lt;p&gt;The vast majority of development I perform is in C++17 on an Apple Mac Computer using Xcode. For a while now, I have been using &lt;a href="https://github.com/catchorg/Catch2"&gt;Catch2&lt;/a&gt; as my Unit Testing framework, and its absolutely excellent. But its not integrated into the Xcode IDE and I wanted the ability to use Xcode&amp;rsquo;s excellent testing and test debugging tools to improve my productivity and workflow.&lt;/p&gt;
&lt;p&gt;In this post I will show you how to set up a simple standard C++17 library project in Xcode 10 and then add XCTests to it.&lt;/p&gt;</description></item><item><title>On Removing Comments</title><link>https://hiltmon.com/blog/2018/06/17/on-removing-comments/</link><pubDate>Sun, 17 Jun 2018 09:58:09 -0400</pubDate><guid>https://hiltmon.com/blog/2018/06/17/on-removing-comments/</guid><description>&lt;p&gt;Today I removed the comments from &lt;em&gt;hiltmon.com&lt;/em&gt; for one reason and one reason only — the comment service, Disqus, that I used — was tracking you across a multitude of sites and is selling your data to strangers without your (or my) permission. I no longer want &lt;em&gt;hiltmon.com&lt;/em&gt; to be one of those collection points.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m going to miss the comments though. Your comments had been insightful, gracious and a wonderful way to connect with my readers, and to allow my readers to connect with each other. Unlike more popular sites, I never had to deal with comment spam, bad players or any of the common nastiness on the internet, just lucky I guess.&lt;/p&gt;</description></item><item><title>Stop and Think</title><link>https://hiltmon.com/blog/2018/06/17/stop-and-think/</link><pubDate>Sun, 17 Jun 2018 09:21:04 -0400</pubDate><guid>https://hiltmon.com/blog/2018/06/17/stop-and-think/</guid><description>&lt;p&gt;When I started out as a developer and designer, I know I was clever. When folks asked me to design and develop a software product, I would ask a few questions to confirm that I understood what was asked of me, listen to their answers, then set about making the product. Request, build, ship. Easy!&lt;/p&gt;
&lt;p&gt;My mentor, who was definitely smarter than me, used to yell at me to Stop and Think.&lt;/p&gt;</description></item><item><title>Migrate Octopress / Jekyll Posts to Ulysses</title><link>https://hiltmon.com/blog/2017/08/31/migrate-octopress-slash-jekyll-posts-to-ulysses/</link><pubDate>Thu, 31 Aug 2017 07:49:38 -0400</pubDate><guid>https://hiltmon.com/blog/2017/08/31/migrate-octopress-slash-jekyll-posts-to-ulysses/</guid><description>&lt;p&gt;I wanted to move my published writing stashed in my Octopress/Jekyll site into my current writing workflow environment, &lt;a href="https://ulyssesapp.com"&gt;Ulysses&lt;/a&gt;. Dragging and dropping the files from the &lt;code&gt;_posts&lt;/code&gt; folder was not an option, because:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The file names were messy&lt;/li&gt;
&lt;li&gt;There is no title in the file, it&amp;rsquo;s in the Markdown metadata&lt;/li&gt;
&lt;li&gt;I wanted to keep the publication date on the imported files&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So, I wrote a &lt;em&gt;horrible&lt;/em&gt; script to do it.&lt;/p&gt;
&lt;p&gt;The script takes a &lt;code&gt;_posts&lt;/code&gt; Octopress or Jekyll folder and processes each file into an &lt;code&gt;OUT_PATH&lt;/code&gt; as a set of clean Markdown files, making a few changes along the way. It’s a mix of Ruby to handle the YAML front matter and shell commands to do the actual work. And it runs as follows:&lt;/p&gt;</description></item><item><title>Notification City</title><link>https://hiltmon.com/blog/2017/03/12/notification-city/</link><pubDate>Sun, 12 Mar 2017 12:11:29 -0400</pubDate><guid>https://hiltmon.com/blog/2017/03/12/notification-city/</guid><description>&lt;p&gt;&lt;strong&gt;It is best for your technology stack to tell you what went wrong as soon as it goes wrong to get the right level of attention in the correct timespan.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I run a massive technology stack at work, filled up with multiple servers, plenty of web applications, loads of C++ programs and massive numbers of scheduled and recurring tasks, and I do it with an insanely tiny team and no &lt;a href="https://en.wikipedia.org/wiki/DevOps"&gt;DevOps&lt;/a&gt; folks. Almost all of the time, our software works as designed and the entire network of systems runs just fine. Just like yours.&lt;/p&gt;</description></item><item><title>Coding Style Standards in 2017</title><link>https://hiltmon.com/blog/2017/03/05/coding-style-standards-in-2017/</link><pubDate>Sun, 05 Mar 2017 12:25:52 -0500</pubDate><guid>https://hiltmon.com/blog/2017/03/05/coding-style-standards-in-2017/</guid><description>&lt;p&gt;I&amp;rsquo;ve been writing software for well over 30 years, I&amp;rsquo;ve spent well over my 10,000 hours and gotten rather good at it. And I still write to a very rigorous coding style standard.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;You&amp;rsquo;re kidding right? Its 2017, code style guides are so &lt;em&gt;passé.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Nope. I&amp;rsquo;m deadly serious.&lt;/p&gt;
&lt;h3 id="get-off-my-lawn"&gt;Get off my lawn&lt;/h3&gt;
&lt;p&gt;Some of us remember when coding styles were &lt;em&gt;de rigeur&lt;/em&gt;. When you climbed off your commuter dinosaur and joined a coding team, the first document they gave you was the coding style guideline. It was a thick, three-ring binder that covered everything from naming, spacing, commenting, position of braces, white space rules, spaces or tabs and the line length rule.&lt;/p&gt;</description></item><item><title>MathJax in Markdown</title><link>https://hiltmon.com/blog/2017/01/28/mathjax-in-markdown/</link><pubDate>Sat, 28 Jan 2017 14:39:08 -0500</pubDate><guid>https://hiltmon.com/blog/2017/01/28/mathjax-in-markdown/</guid><description>&lt;p&gt;Adding mathematical formulae to HTML pages is easy these days using &lt;a href="https://www.mathjax.org"&gt;MathJax&lt;/a&gt;. But I create all my documents in &lt;a href="https://hiltmon.com/blog/categories/markdown/"&gt;Markdown&lt;/a&gt; format on my Mac. This post shows how to add mathematical formulae to your Markdown documents on the Mac and have them preview and export to PDF correctly.&lt;/p&gt;
&lt;h3 id="mathjax-in-markdown"&gt;MathJax in Markdown&lt;/h3&gt;
&lt;p&gt;Adding mathematical formulae to a markdown document simply requires you to use the MathJax delimiters to start and end each formula as follows:&lt;/p&gt;</description></item><item><title>On the New MacBook Pros</title><link>https://hiltmon.com/blog/2016/11/06/on-the-new-macbook-pros/</link><pubDate>Sun, 06 Nov 2016 11:20:29 -0500</pubDate><guid>https://hiltmon.com/blog/2016/11/06/on-the-new-macbook-pros/</guid><description>&lt;p&gt;Much has been written, tweeted and complained about the new MacBook Pros released by Apple last week. Complaints about the 16GB limit, all-in switch to Thunderbolt 3 (USB-C), the removal of the SD-card and MagSafe, the new keyboard, the aged CPUs, the slow GPU, dongles, that they are not &amp;ldquo;Pro&amp;rdquo; level machines, and more. More and more influential folks are writing that Apple has forgotten the Mac, that the Mac is doomed or dead.&lt;/p&gt;</description></item><item><title>The Gentleman James V</title><link>https://hiltmon.com/blog/2016/10/07/the-gentleman-james-v/</link><pubDate>Fri, 07 Oct 2016 08:31:11 -0400</pubDate><guid>https://hiltmon.com/blog/2016/10/07/the-gentleman-james-v/</guid><description>&lt;p&gt;Last evening a package arrived from Amazon. A package that neither I nor my wife had ordered. A mysterious, enigmatic package. From the outside, there was no indication of its content or providence.&lt;/p&gt;
&lt;p&gt;We discussed where it could have come from. What could it be. Should we open it. Maybe Amazon sent the package to the wrong person. Yet the delivery address was certainly mine.&lt;/p&gt;
&lt;p&gt;Finally, I opened it.&lt;/p&gt;
&lt;p&gt;It contained a bubble wrapped box, a bunch of packing bubbles and three slips of paper. The first slip was a packing slip describing the content of the bubble-wrapped box. The second was a return slip. Where this package came from remained a mystery.&lt;/p&gt;</description></item><item><title>The Annual Dependency Library Upgrade Process</title><link>https://hiltmon.com/blog/2016/09/25/the-annual-dependency-library-upgrade-process/</link><pubDate>Sun, 25 Sep 2016 14:10:56 -0400</pubDate><guid>https://hiltmon.com/blog/2016/09/25/the-annual-dependency-library-upgrade-process/</guid><description>&lt;p&gt;At work, we write a lot of code. In order to remain productive, we reuse the same proven dependent libraries and tools over and over again. Which is fine. Until we start seeing end-of-life notices, vulnerabilities, deprecations, performance improvements and bug-fixes passing us by. At some point we need to update our dependencies for performance and security.&lt;/p&gt;
&lt;p&gt;But its not that easy.&lt;/p&gt;
&lt;p&gt;Take some of the libraries we use:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://developers.google.com/protocol-buffers/"&gt;Google’s Protocol Buffers&lt;/a&gt; are amazing. We’ve been on 2.6.1 for ages, but 3.1.0 is out and it supports &lt;a href="https://swift.org/"&gt;Swift&lt;/a&gt; and &lt;a href="https://golang.org/"&gt;Go&lt;/a&gt;, two languages we surely would like to use. But the &lt;code&gt;proto2&lt;/code&gt; format we use everywhere is not available in the new languages. We need to migrate.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://zeromq.org/"&gt;ZeroMQ&lt;/a&gt; moved to a secure &lt;code&gt;libsodium&lt;/code&gt; base in 4.1, making it much safer to use. But the C++ bindings from 4.0.5 are incompatible. We need to migrate.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;g++&lt;/code&gt; on &lt;a href="https://www.centos.org/"&gt;CentOS 6&lt;/a&gt; is ancient, version 4.4.7 from 2010. We’ve been using the &lt;code&gt;devtoolset-2&lt;/code&gt; edition 4.8.2 from 2013 to get C++11 compatibility, with a few library hacks. But that version of &lt;code&gt;g++&lt;/code&gt; produces horribly slow and insecure C++11 code. We skipped &lt;code&gt;devtoolset-3&lt;/code&gt; even though &lt;code&gt;g++&lt;/code&gt; 4.9 was better. &lt;code&gt;devtoolset-4&lt;/code&gt; is out, using &lt;code&gt;g++&lt;/code&gt; 5.2.4 from 2015, still not the latest, but it is much better at C++11 (without our hacks), more secure and faster. Yet is ABI incompatible. We need to migrate.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The amount of work seems staggering given we have well over 100 protobufs used across our code base, ZeroMQ everywhere and everything is compiled for production using &lt;code&gt;devtoolset-2&lt;/code&gt;. The old libraries and tools are a known, proven platform. The current code is stable, reliable and fast enough. &lt;em&gt;It ain’t broke.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Minimal Project Management - 6 Months Later</title><link>https://hiltmon.com/blog/2016/08/28/minimal-project-management-6-months-later/</link><pubDate>Sun, 28 Aug 2016 12:53:50 -0400</pubDate><guid>https://hiltmon.com/blog/2016/08/28/minimal-project-management-6-months-later/</guid><description>&lt;p&gt;Just short of six months ago, I wrote about how I was transitioning to &lt;a href="https://hiltmon.com/blog/2016/03/05/minimal-project-management/"&gt;Minimal Project Management&lt;/a&gt; as my team was growing at work. So, how did it go? Did it work? Any Problems?&lt;/p&gt;
&lt;p&gt;In short, after a few false-starts getting our heads around the intent of the Statement of Work document, it went — and continues to go — very well. Projects we used to start and never finish are now completing and shipping. Communication within the team and with our users is better. And our throughput is up.&lt;/p&gt;</description></item><item><title>Attractive Multi-Line SQL Statements in C++</title><link>https://hiltmon.com/blog/2016/04/26/attractive-multi-line-sql-statements-in-c-plus-plus/</link><pubDate>Tue, 26 Apr 2016 20:19:26 -0400</pubDate><guid>https://hiltmon.com/blog/2016/04/26/attractive-multi-line-sql-statements-in-c-plus-plus/</guid><description>&lt;p&gt;I often need to embed SQL statements in C++ code. Unfortunately, many of mine are long and complex. Even the simple ones are wide. This leads to the following ugly code:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;std::string s8(&amp;#34;SELECT id FROM lst_quotes WHERE route_id = $1 AND lst_request_id = $2 AND quote_id = $3;&amp;#34;);
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&amp;hellip; which means I need a massively wide screen to view it (and it violates my 80-column rule), its not formatted legibly and even with wrap, its hard to understand — and this is a simple example. Its a maintenance nightmare.&lt;/p&gt;</description></item><item><title>Apple Watch - After 1 Year</title><link>https://hiltmon.com/blog/2016/04/24/apple-watch-after-1-year/</link><pubDate>Sun, 24 Apr 2016 10:56:49 -0400</pubDate><guid>https://hiltmon.com/blog/2016/04/24/apple-watch-after-1-year/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2016/04/24/apple-watch-after-1-year/images/watch-1yr-0.png" width="312" height="356"&gt;
&lt;/figure&gt;

&lt;p&gt;The Apple Watch turns 1 year old next week. If you follow the popular press, you&amp;rsquo;d think the device was rubbish and a complete failure.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;I vehemently disagree.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;It may be a limited version one, but it is a flawlessly engineered timepiece that is conducive to small, yet significant, life hacks.&lt;/p&gt;
&lt;p&gt;I wear, and continue to wear my Apple Watch every day. I have done so since the day it arrived, the result of a late night wake-up alarm, a few taps on the Apple Store app and a return to sleep on opening night.&lt;/p&gt;</description></item><item><title>Spotlight Only - Nine Months Later</title><link>https://hiltmon.com/blog/2016/04/10/spotlight-only-nine-months-later/</link><pubDate>Sun, 10 Apr 2016 11:20:22 -0400</pubDate><guid>https://hiltmon.com/blog/2016/04/10/spotlight-only-nine-months-later/</guid><description>&lt;p&gt;&lt;span class="light"&gt;I think one should review one&amp;rsquo;s productivity tool load-out every once in a while. Operating system updates, other productivity tool updates and your own work practices change over time. Your tool load-out should too. Changing the muscle-memory, it turns out, is surprisingly simple, quick and easy. And your productivity usually increases.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I am a huge fan of keyboard launcher/productivity applications like &lt;a href="https://www.obdev.at/products/launchbar/index.html"&gt;LaunchBar&lt;/a&gt;, &lt;a href="https://www.alfredapp.com"&gt;Alfred&lt;/a&gt;, and back-in-the-day &lt;a href="https://qsapp.com"&gt;QuickSilver&lt;/a&gt;. They were amongst the first applications installed on any new system, and I believed I could not work productively without them.&lt;/p&gt;</description></item><item><title>Text Expansion using Keyboard Maestro (First Cut)</title><link>https://hiltmon.com/blog/2016/04/08/text-expansion-using-keyboard-maestro-first-cut/</link><pubDate>Fri, 08 Apr 2016 08:43:08 -0400</pubDate><guid>https://hiltmon.com/blog/2016/04/08/text-expansion-using-keyboard-maestro-first-cut/</guid><description>&lt;p&gt;This post presents how I have set up &lt;a href="http://www.keyboardmaestro.com/main/"&gt;Keyboard Maestro&lt;/a&gt; to replace basic text expansion from &lt;a href="https://smilesoftware.com/textexpander"&gt;TextExpander&lt;/a&gt; &amp;hellip; so far. This post covers &lt;span class="light"&gt;(More to follow at some point.)&lt;/span&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Basic text expansion&lt;/li&gt;
&lt;li&gt;When to use copy vs typing&lt;/li&gt;
&lt;li&gt;Limiting to applications&lt;/li&gt;
&lt;li&gt;Basic variables&lt;/li&gt;
&lt;/ul&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2016/04/08/text-expansion-using-keyboard-maestro-first-cut/images/te-to-km-1.png" width="333" height="305"&gt;
&lt;/figure&gt;

&lt;h2 id="basic-text-expansion"&gt;Basic Text Expansion&lt;/h2&gt;
&lt;p&gt;The basic text expansion macro looks like the macro on the right.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It is triggered when a string is typed, in this case &lt;code&gt;;gma&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;It has a single action, &lt;strong&gt;Insert text by Typing&lt;/strong&gt;, containing the text to be typed, in this case &lt;code&gt;git pull; make clean; make -j 8&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Thats all there is to it. Nice and simple.&lt;/p&gt;</description></item><item><title>Apple at 40</title><link>https://hiltmon.com/blog/2016/04/03/apple-at-40/</link><pubDate>Sun, 03 Apr 2016 12:13:14 -0400</pubDate><guid>https://hiltmon.com/blog/2016/04/03/apple-at-40/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2016/04/03/apple-at-40/images/apple-at-40-1.png" width="230" height="133"&gt;
&lt;/figure&gt;

&lt;p&gt;Apple turned 40 this week, and it got me thinking about the past 40 years of our individual computing experiences.&lt;/p&gt;
&lt;p&gt;In many ways, my own journey to now parallels that of Apple.&lt;/p&gt;
&lt;p&gt;And I&amp;rsquo;m willing to bet your journey is the similar.&lt;/p&gt;
&lt;h2 id="the-1980s---youthful-experimentation"&gt;The 1980s - Youthful Experimentation&lt;/h2&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2016/04/03/apple-at-40/images/apple-at-40-2.png" width="230" height="181"&gt;
&lt;/figure&gt;

&lt;p&gt;In the early 1980s, Apple was young, surrounded by a wide range of competitors and the &lt;a href="https://en.wikipedia.org/wiki/Apple_II"&gt;Apple II&lt;/a&gt; was it. Everybody who could, had one. They used them to work, to play, to learn programming and to experiment.&lt;/p&gt;</description></item><item><title>Dependency Limited and Conflict Free C++</title><link>https://hiltmon.com/blog/2016/03/25/dependency-limited-and-conflict-free-c-plus-plus/</link><pubDate>Fri, 25 Mar 2016 08:57:53 -0400</pubDate><guid>https://hiltmon.com/blog/2016/03/25/dependency-limited-and-conflict-free-c-plus-plus/</guid><description>&lt;p&gt;&lt;span class="light"&gt;TL;DR: Beware of libraries you need to compile yourself and copy-pasted code, the performance, maintenance and other hellscapes you create are not worth it in the medium and long run:&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="light"&gt;Do not use dependencies that have dependencies &lt;em&gt;that you have to compile&lt;/em&gt;.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class="light"&gt;Do not use libraries depended on by dependencies anywhere else.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class="light"&gt;Solve your own problems and understand the solutions. Do not copy-paste from the web.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class="light"&gt;Always write your own code where performance and maintenance is critical.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;span class="light"&gt;This post specifically targets C++, but is really a general set of rules and advice. See &lt;a href="http://www.haneycodes.net/npm-left-pad-have-we-forgotten-how-to-program/"&gt;NPM &amp;amp; left-pad: Have We Forgotten How To Program?&lt;/a&gt; for a NodeJS scenario that this would have prevented.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Talk to Drivers, not Mechanics</title><link>https://hiltmon.com/blog/2016/03/14/talk-to-drivers/</link><pubDate>Mon, 14 Mar 2016 20:26:13 -0400</pubDate><guid>https://hiltmon.com/blog/2016/03/14/talk-to-drivers/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2016/03/14/talk-to-drivers/images/checkengine.png" width="391" height="232"&gt;
&lt;/figure&gt;

&lt;p&gt;How many people really know how their motor vehicle works, or even care to. Very few.&lt;/p&gt;
&lt;p&gt;But they all drive.&lt;/p&gt;
&lt;p&gt;And when their car breaks down or makes a noise or that ridiculous engine light comes on, they need mechanics. Nobody, except other mechanics, understands the explanation of whats wrong with the car. And therein lies the problem.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Mechanics need to learn to talk to drivers, not mechanics&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id="techs-are-the-mechanics"&gt;Techs are the Mechanics&lt;/h3&gt;
&lt;p&gt;Technology people are perceived to be painfully shy. I guess its a movie meme. They are not. Just observe a bunch of technology folks get into it on a topic they understand. You’ll never get them to stop talking, arguing, jousting and challenging. &lt;strong&gt;Mechanics are speaking to mechanics&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>Minimal Project Management</title><link>https://hiltmon.com/blog/2016/03/05/minimal-project-management/</link><pubDate>Sat, 05 Mar 2016 17:20:56 -0500</pubDate><guid>https://hiltmon.com/blog/2016/03/05/minimal-project-management/</guid><description>&lt;p&gt;With my team starting to grow at work, its time to add some Project Management to our process. However, I do not want this to add any additional time, meetings or burden on them (or myself) and so all of the popular formal processes are no good for my needs.&lt;/p&gt;
&lt;p&gt;In this post, I will outline the &lt;strong&gt;Minimal Project Management&lt;/strong&gt; process, its steps and how it works. I will also cover the issues of change and interruptions. This process only works, however, because of the quality of my team.&lt;/p&gt;</description></item><item><title>Build only what you need</title><link>https://hiltmon.com/blog/2016/02/28/build-only-what-you-need/</link><pubDate>Sun, 28 Feb 2016 13:24:14 -0500</pubDate><guid>https://hiltmon.com/blog/2016/02/28/build-only-what-you-need/</guid><description>&lt;p&gt;&lt;span class="light"&gt;A note as a result of a discussion with a colleague.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I had quickly assembled a simple class that triggers periodic function calls from a timer on to a single worker thread. I need this class to ensure that periodic functions get called regularly. Since each call is quick to run (takes under a second), only needs to run every few minutes and can happily be queued behind another quick function, the simple single worker model is perfectly fine for this task.&lt;/p&gt;</description></item><item><title>Now in HTTPS</title><link>https://hiltmon.com/blog/2016/01/31/now-in-https/</link><pubDate>Sun, 31 Jan 2016 17:05:36 -0500</pubDate><guid>https://hiltmon.com/blog/2016/01/31/now-in-https/</guid><description>&lt;p&gt;My host, &lt;a href="https://www.dreamhost.com/"&gt;Dreamhost&lt;/a&gt;, is offering free web site certificates through &lt;a href="https://letsencrypt.org"&gt;Let&amp;rsquo;s Encrypt&lt;/a&gt;, a new initative to make encrypted connections the default standard through the internet. They started with free SSL certificates.&lt;/p&gt;
&lt;p&gt;So I turned it on.&lt;/p&gt;
&lt;p&gt;Most browsers will be warning against unecrypted web sites &lt;em&gt;real soon now&lt;/em&gt;, so I thought it best to do this now.&lt;/p&gt;
&lt;p&gt;The only change I seem to need was to change the Google Fonts URLs to &lt;code&gt;https&lt;/code&gt; as well.&lt;/p&gt;</description></item><item><title>We're better than this</title><link>https://hiltmon.com/blog/2015/11/25/were-better-than-this/</link><pubDate>Wed, 25 Nov 2015 09:46:47 -0500</pubDate><guid>https://hiltmon.com/blog/2015/11/25/were-better-than-this/</guid><description>&lt;p&gt;&lt;span class="light"&gt;My thoughts on the toxic hell-stew that my Twitter feed is becoming. I follow (and occasionally interact with) a bunch of intelligent, opinionated, sensible tech folks &lt;em&gt;whom I respect immensely&lt;/em&gt; and whose timelines and lives are being ruined by an impersonator, a gang of misogynists and their flock of followers.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;We&amp;rsquo;re better than&lt;/em&gt; ganging up, taking sides and judging or expressing negative public opinions on people we do not know personally. Topical constructive disagreement is great, we thrive on that, personal attacks are not.&lt;/p&gt;</description></item><item><title>Dangerware</title><link>https://hiltmon.com/blog/2015/11/22/dangerware/</link><pubDate>Sun, 22 Nov 2015 13:13:57 -0500</pubDate><guid>https://hiltmon.com/blog/2015/11/22/dangerware/</guid><description>&lt;p&gt;Dangerware is common in business and government. Dangerware is just ordinary software, but the way it comes into being creates the danger.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It starts with a basic prototype written in a hurry.&lt;/li&gt;
&lt;li&gt;This is quickly put into production to run the business.&lt;/li&gt;
&lt;li&gt;The prototype screws up repeatedly when faced with new scenarios.&lt;/li&gt;
&lt;li&gt;Resources are tasked to add (not update or correct) the prototype to deal with the latest screwup.&lt;/li&gt;
&lt;li&gt;This process repeats until the resource (or original business person) is tasked to a new project, or the cost of screwup is less than the cost of resources to mitigate.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I call this software &lt;strong&gt;dangerware&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>A Yosemite Markdown Spotlight importer</title><link>https://hiltmon.com/blog/2015/11/17/a-yosemite-markdown-spotlight-importer/</link><pubDate>Tue, 17 Nov 2015 12:26:13 -0500</pubDate><guid>https://hiltmon.com/blog/2015/11/17/a-yosemite-markdown-spotlight-importer/</guid><description>&lt;p&gt;All my text and writing is in &lt;a href="https://hiltmon.com/blog/categories/markdown/"&gt;Markdown&lt;/a&gt; formatted files and I would like to search them using Spotlight. The editors I use do not have an importer (they have Quicklook only), so this is not available directly.&lt;/p&gt;
&lt;p&gt;Changing the &lt;code&gt;RichText&lt;/code&gt; Spotlight importer trick worked in previous versions of OS X (see how in &lt;a href="https://hiltmon.com/blog/2015/06/27/a-simple-markdown-spotlight-importer/"&gt;A Simple Markdown Spotlight Importer&lt;/a&gt;), but since System Integrity Protection in OS X El Capitan, this no longer works.&lt;/p&gt;</description></item><item><title>Making and maintaining high resolution charts for Indesign CC</title><link>https://hiltmon.com/blog/2015/11/02/making-and-maintaining-high-resolution-charts-for-indesign-cc/</link><pubDate>Mon, 02 Nov 2015 19:41:45 -0500</pubDate><guid>https://hiltmon.com/blog/2015/11/02/making-and-maintaining-high-resolution-charts-for-indesign-cc/</guid><description>&lt;p&gt;One of the biggest headaches I have using &lt;a href="http://www.adobe.com/products/indesign.html"&gt;Adobe Indesign&lt;/a&gt; is the creation and &lt;em&gt;especially&lt;/em&gt; maintenance of charts and graphs. In my case, my fund publishes several high quality books and one-pagers monthly and I need to update a bunch of charts and graphs. I also need to print these at a very high DPI, hence Indesign.&lt;/p&gt;
&lt;p&gt;I used to use &lt;a href="http://www.adobe.com/products/illustrator.html"&gt;Adobe Illustrator&lt;/a&gt; graphs. They are rudimentary, but very customizable. Every month I had to load an Illustrator file for each image, update the graph data and then spend time tweaking the results. Only then could I open Indesign, update links and move on. This took a lot of time.&lt;/p&gt;</description></item><item><title>Brown M&amp;Ms: A Quick Way to Determine Code Quality</title><link>https://hiltmon.com/blog/2015/10/14/brown-mms/</link><pubDate>Wed, 14 Oct 2015 19:31:20 -0400</pubDate><guid>https://hiltmon.com/blog/2015/10/14/brown-mms/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2015/10/14/brown-mms/images/vanhalenmm.png" width="320" height="320"&gt;
&lt;/figure&gt;

&lt;p&gt;My business runs on code. Every day, my team and I deploy new systems, patches and add new features to our mission-critical code base. And we rarely have a problem.&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s because we have a quick way to determine if the programmer attended to the details of the product and code, and whether we then need to hold the deploy for a deeper check and test or can run a lighter test and confidently push it out.&lt;/p&gt;</description></item><item><title>Why I Subscribed to Apple Music</title><link>https://hiltmon.com/blog/2015/10/04/why-i-am-subscribing-to-apple-music/</link><pubDate>Sun, 04 Oct 2015 13:54:22 -0400</pubDate><guid>https://hiltmon.com/blog/2015/10/04/why-i-am-subscribing-to-apple-music/</guid><description>&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2015/10/04/why-i-am-subscribing-to-apple-music/images/apple-music.jpg" width="640" height="135"&gt;
&lt;/figure&gt;

&lt;p&gt;Just over 3 months ago, Apple released &lt;a href="http://www.apple.com/music/"&gt;Apple Music&lt;/a&gt; and I signed up for the free trial as we all did. My expectation was that I would play with it for a few days, get over it and never use it again. I expected the same experience I got from Spotify and Pandora before and I never subscribed to them. I expected the same old same old and no reason to use it.&lt;/p&gt;</description></item><item><title>The Simple C++ Makefile - Executable Edition</title><link>https://hiltmon.com/blog/2015/09/28/the-simple-c-plus-plus-makefile-executable-edition/</link><pubDate>Mon, 28 Sep 2015 22:07:23 -0400</pubDate><guid>https://hiltmon.com/blog/2015/09/28/the-simple-c-plus-plus-makefile-executable-edition/</guid><description>&lt;p&gt;I develop a lot of applications in C++ using Xcode on OS X and deploy them to CentOS Linux Servers to run. I follow the &lt;a href="https://hiltmon.com/blog/2013/07/03/a-simple-c-plus-plus-project-structure/"&gt;Simple C++ Project Structure&lt;/a&gt; (and the &lt;a href="https://hiltmon.com/blog/2015/08/01/simple-c-plus-plus-from-makefiles-to-xcode-builds/"&gt;Xcode edition&lt;/a&gt;) to code up each product.&lt;/p&gt;
&lt;p&gt;However, Xcode is not available on Linux. To compile and deploy (and to test compiles and deploys), I use standard Unix &lt;a href="https://www.gnu.org/software/make/manual/make.html#Introduction"&gt;Makefiles&lt;/a&gt;, available almost everywhere.&lt;/p&gt;
&lt;p&gt;In this post I will show you the Makefile I use for multi-platform C++ &lt;em&gt;executable&lt;/em&gt; builds and explain what each line and command does in detail. &lt;span class="light"&gt;For Library builds, I have a similar, but different Makefile, see The Simple C++ Makefile - Library Edition (Coming Soon).&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Saturday Afternoons Watching Rugby Union</title><link>https://hiltmon.com/blog/2015/09/20/saturday-afternoons-watching-rugby-union/</link><pubDate>Sun, 20 Sep 2015 14:48:38 -0400</pubDate><guid>https://hiltmon.com/blog/2015/09/20/saturday-afternoons-watching-rugby-union/</guid><description>&lt;p&gt;Growing up, Saturday afternoons were for watching Rugby Union games with friends and family. No matter what was going on at home, with friends, at school, or in the country I lived, the world stopped for the two games that were televised live. I am as far away from that world as one can be, yet it is with me right now.&lt;/p&gt;
&lt;p&gt;It began with my grandfather. He played as a kid as evidenced by a hook nose and a deep understanding of the game. There were only two times we could not bother him, his post-lunch nap, and when the rugby was on. But if we were there when the game was on, he would talk, explaining the rules, the nuances, the players positioning and decisions. Rugby was real-time, dynamic chess for him, a thinking person&amp;rsquo;s sport, and he imbued that thinking, understanding and love of the game in all his grand-children.&lt;/p&gt;</description></item><item><title>The 'It has happened before, it will happen again.' Apple</title><link>https://hiltmon.com/blog/2015/09/05/the-it-has-happened-before/</link><pubDate>Sat, 05 Sep 2015 12:50:09 -0400</pubDate><guid>https://hiltmon.com/blog/2015/09/05/the-it-has-happened-before/</guid><description>&lt;p&gt;The Apple I know and loved was doomed, so the press said. It was the crazy, emo teenager of a company. Willing to try anything, mad, crazy, radical, different and apt to succeed and fail in spectacular fashion. Against all odds, the Apple of old did not fail. Because of this we now have amazing computers, thin and light laptops, iPods, OS X, iPhones and iPads. &lt;em&gt;Can you imagine a world without Apple products?&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Open Extension-less Files in your Favorite Editor on OS X</title><link>https://hiltmon.com/blog/2015/09/04/open-extension-less-files-on-os-x-in-your-favorite-editor/</link><pubDate>Fri, 04 Sep 2015 09:40:47 -0400</pubDate><guid>https://hiltmon.com/blog/2015/09/04/open-extension-less-files-on-os-x-in-your-favorite-editor/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2015/09/04/open-extension-less-files-on-os-x-in-your-favorite-editor/images/less-1.png" width="263" height="453"&gt;
&lt;/figure&gt;

&lt;p&gt;Xcode does a horrible job of editing Makefiles (and other extension-less files like dot-files). If you right-click in Xcode on a Makefile and &lt;strong&gt;Open with External Editor&lt;/strong&gt;, OS X opens it in TextEdit. &lt;em&gt;Which is worse.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The issue is that TextEdit is associated with extension-less files. Usually to change how files are opened, you select the file in Finder, right-click and choose &lt;strong&gt;Get Info&lt;/strong&gt; from the menu. You then choose the editor in the &lt;strong&gt;Open with&lt;/strong&gt; dropdown and click &lt;strong&gt;Change All&amp;hellip;&lt;/strong&gt;. But this does not work for extension-less files, it throws the below error.&lt;/p&gt;</description></item><item><title>How the Apple Watch has changed my Behavior for the Better</title><link>https://hiltmon.com/blog/2015/08/23/how-the-apple-watch-has-changed-my-behavior-for-the-better/</link><pubDate>Sun, 23 Aug 2015 12:49:49 -0400</pubDate><guid>https://hiltmon.com/blog/2015/08/23/how-the-apple-watch-has-changed-my-behavior-for-the-better/</guid><description>&lt;p&gt;I have the nerd watch, the &lt;a href="http://www.apple.com/shop/buy-watch/apple-watch-sport/42mm-space-gray-aluminum-case-black-sport-band?product=MJ3T2LL/A&amp;amp;step=detail"&gt;42mm Space Gray Aluminum with the Black Sport Band&lt;/a&gt;. It was ordered at launch and arrived late. I have been wearing and using it every day since.&lt;/p&gt;
&lt;p&gt;The Apple Watch is a perfectly good watch for doing watch-like things, like telling the time. But if you view it as a wrist computer, one that has had a real impact on how one acts and behaves, it is something uniquely special.&lt;/p&gt;</description></item><item><title>The Productive Mac Mindset</title><link>https://hiltmon.com/blog/2015/08/15/the-productive-mac-mindset/</link><pubDate>Sat, 15 Aug 2015 12:42:13 -0400</pubDate><guid>https://hiltmon.com/blog/2015/08/15/the-productive-mac-mindset/</guid><description>&lt;p&gt;I have been using a set of productivity enhancement tools on my Mac for so long now that the standard, out-of-box OS X user experience seems challenging, crawling, cumbersome and somewhat convoluted.&lt;/p&gt;
&lt;p&gt;So much so that &lt;em&gt;it has become frustrating for me to use another person&amp;rsquo;s Mac.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;In this post, I intend to outline how the limited set of productivity tools I use give me &amp;ldquo;ludicrous speed&amp;rdquo;. &lt;em&gt;Note that I have invested the time to learn these tools and to create the productivity shortcuts they provide.&lt;/em&gt; Maybe it will help you with ideas to be more productive too.&lt;/p&gt;</description></item><item><title>C++11 on CentOS 6.6</title><link>https://hiltmon.com/blog/2015/08/09/c-plus-plus-11-on-centos-6-dot-6/</link><pubDate>Sun, 09 Aug 2015 18:07:25 -0400</pubDate><guid>https://hiltmon.com/blog/2015/08/09/c-plus-plus-11-on-centos-6-dot-6/</guid><description>&lt;p&gt;As mentioned in previous &lt;a href="https://hiltmon.com/blog/2015/08/01/simple-c-plus-plus-from-makefiles-to-xcode-builds/"&gt;articles&lt;/a&gt;, I write a lot of C++11 code on OS X but deploy it on CentOS Linux 6.6 servers. But CentOS 6.6 does not contain a C++11 development environment by default.&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s how to set one up.&lt;/p&gt;
&lt;h2 id="install-a-c11-compiler"&gt;Install a C++11 Compiler&lt;/h2&gt;
&lt;p&gt;We need to get the &lt;code&gt;repo&lt;/code&gt; files for DevTools2, a Red Hat package that contains a supported C++11 compiler. As &lt;code&gt;root&lt;/code&gt;, run the following command to retrieve the &lt;code&gt;repo&lt;/code&gt; file:&lt;/p&gt;</description></item><item><title>In the Press: This Week's Hedge Fund Alert</title><link>https://hiltmon.com/blog/2015/08/05/in-the-press-this-weeks-hedge-fund-alert/</link><pubDate>Wed, 05 Aug 2015 11:14:29 -0400</pubDate><guid>https://hiltmon.com/blog/2015/08/05/in-the-press-this-weeks-hedge-fund-alert/</guid><description>&lt;p&gt;&lt;span class="light"&gt;I&amp;rsquo;m quoted in Hedge Fund Alert, Aug 5, 2015, reproduced without permission.&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;h1 id="muni-bond-firm-in-growth-mode"&gt;Muni-Bond Firm in Growth Mode&lt;/h1&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Municipal-bond investor &lt;strong&gt;Maritime Capital&lt;/strong&gt; is adding staff and developing its own trading technology amid a sharp increase in assets under management.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;The New York firm, whose assets ballooned from $150 million to $325 million in the past six months, hired &lt;strong&gt;Jarret Roth&lt;/strong&gt; from &lt;strong&gt;Bank of America&lt;/strong&gt; last month as head of strategy and risk management. His arrival coincided with the launch of an execution-management system Maritime built in-house after outgrowing vendor-supplied software it had been using.&lt;/p&gt;</description></item><item><title>Simple C++: From Makefiles to Xcode Builds</title><link>https://hiltmon.com/blog/2015/08/01/simple-c-plus-plus-from-makefiles-to-xcode-builds/</link><pubDate>Sat, 01 Aug 2015 11:25:51 -0400</pubDate><guid>https://hiltmon.com/blog/2015/08/01/simple-c-plus-plus-from-makefiles-to-xcode-builds/</guid><description>&lt;p&gt;This post will present a step-by-step process to convert C++/C++11 Makefile-based projects to Xcode build tools. I use it all the time to set up, convert, build and debug Unix/Linux executables that I develop on my Macintosh.&lt;/p&gt;</description></item><item><title>Kindred-Family</title><link>https://hiltmon.com/blog/2015/07/05/kindred-family/</link><pubDate>Sun, 05 Jul 2015 13:43:25 -0400</pubDate><guid>https://hiltmon.com/blog/2015/07/05/kindred-family/</guid><description>&lt;blockquote&gt;
&lt;p&gt;Here&amp;rsquo;s to the nights that turn into mornings&lt;br/&gt;
and the friends that turn into family
&lt;br/&gt;
&lt;strong&gt;Unknown&lt;/strong&gt; - Unknown&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Your kindred-family are the close, true friends that are your family when your real blood relatives live far far away.
&lt;br/&gt;
&lt;strong&gt;Me&lt;/strong&gt; - Now&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Yesterday was Independence Day here in New York and a popular day to spend with family. But my family lives in Australia and my wife&amp;rsquo;s is in Japan. No blood relatives here but ourselves.&lt;/p&gt;</description></item><item><title>DuckDuckGo</title><link>https://hiltmon.com/blog/2015/06/27/duckduckgo/</link><pubDate>Sat, 27 Jun 2015 15:59:40 -0400</pubDate><guid>https://hiltmon.com/blog/2015/06/27/duckduckgo/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2015/06/27/duckduckgo/images/duckduckgo-logo.png" width="206" height="164"&gt;
&lt;/figure&gt;

&lt;p&gt;&lt;span class="light"&gt;Note: This is not an advertisement. I love what the folks at DuckDuckGo are doing and want to spread the word.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://duckduckgo.com"&gt;DuckDuckGo&lt;/a&gt; is my search engine of choice (and is the page that opens in all new Safari tabs for me). If you are not using it as your default search engine, I&amp;rsquo;d advise you to start now.&lt;/p&gt;
&lt;p&gt;I started using &lt;a href="https://duckduckgo.com"&gt;DuckDuckGo&lt;/a&gt; well over two years ago. My initial impressions &lt;em&gt;back then&lt;/em&gt; was that it was slow, the results were not nearly as good as Google&amp;rsquo;s and the name was stupid. &lt;strong&gt;None of those first impressions turned out to be true.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>A simple Markdown Spotlight importer</title><link>https://hiltmon.com/blog/2015/06/27/a-simple-markdown-spotlight-importer/</link><pubDate>Sat, 27 Jun 2015 14:33:43 -0400</pubDate><guid>https://hiltmon.com/blog/2015/06/27/a-simple-markdown-spotlight-importer/</guid><description>&lt;p&gt;&lt;strong&gt;Note: This is for Yosemite or before, for El Capitan or later, see &lt;a href="https://hiltmon.com/blog/2015/11/17/a-yosemite-markdown-spotlight-importer/"&gt;A Yosemite Markdown Spotlight Importer&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I noticed recently that Spotlight on Yosemite was no longer indexing my &lt;a href="https://hiltmon.com/blog/categories/markdown/"&gt;Markdown&lt;/a&gt; files. Since all my notes are in Markdown format, and Spotlight is how I find my notes, this was a big problem. Reinstalling my current set of Markdown editors did not help.&lt;/p&gt;
&lt;p&gt;This did. &lt;em&gt;Huge thanks to Gereon Sommer for the idea in &lt;a href="https://gist.github.com/gereon/3150445"&gt;Mac OS X Spotlight Enhancement&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>New Google Analytics for Status Board Server Edition</title><link>https://hiltmon.com/blog/2015/06/07/new-google-analytics-for-status-board-server-edition/</link><pubDate>Sun, 07 Jun 2015 19:47:54 -0400</pubDate><guid>https://hiltmon.com/blog/2015/06/07/new-google-analytics-for-status-board-server-edition/</guid><description>&lt;p&gt;Last week, Google finally deprecated their non-Oauth APIs, which means that the &lt;a href="https://hiltmon.com/blog/categories/status-board/"&gt;Google Analytics for Status Board&lt;/a&gt; code I have been publishing stopped working. Fortunately for us, Github user &lt;a href="https://github.com/erebusnz/gapi-google-analytics-php-interface"&gt;erebusnz&lt;/a&gt; updated the PHP API to work with OAuth2 and we can access Google again. I have included it in a new version of the Server Edition Package.&lt;/p&gt;
&lt;h2 id="quick-install-instructions"&gt;Quick Install Instructions&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Download the &lt;a href="https://hiltmon.com/files/statusboard.zip"&gt;statusboard.zip&lt;/a&gt; file.&lt;/li&gt;
&lt;li&gt;Expand it in the root of your web server. It creates a &lt;code&gt;statusboard&lt;/code&gt; folder.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;New:&lt;/strong&gt; Register your application with Google Developers Console and get your Service Account email and P12 certificate file.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;New:&lt;/strong&gt; Determine your profile ID (its the number after the &amp;lsquo;p&amp;rsquo; in the URL generated for your analytics)&lt;/li&gt;
&lt;li&gt;**New:**Replace the 3 instances of &amp;lt;&amp;mdash;-&amp;gt; in &lt;em&gt;each&lt;/em&gt; PHP file with your service account, P12 file name and profile ID.&lt;/li&gt;
&lt;li&gt;The URL to use in Status Board is &lt;code&gt;http://&amp;lt;your-domain&amp;gt;/statusboard/analytics_&amp;lt;file&amp;gt;.php&lt;/code&gt;, replacing &lt;code&gt;&amp;lt;your-domain&amp;gt;&lt;/code&gt; with your server domain name, and &lt;code&gt;&amp;lt;file&amp;gt;&lt;/code&gt; with one of &lt;code&gt;views&lt;/code&gt; (graph), &lt;code&gt;hourly&lt;/code&gt; (graph) or &lt;code&gt;pages&lt;/code&gt; (table).&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;You should get something like this &lt;span class="light"&gt;(Yes, my follower count is still tiny. Yes, I live in New York, but I still use Celsius for weather. And awesome Inbox Zero!)&lt;/span&gt;:&lt;/p&gt;</description></item><item><title>That last effin 20%</title><link>https://hiltmon.com/blog/2015/05/29/that-last-effin-20-percent/</link><pubDate>Fri, 29 May 2015 16:02:43 -0400</pubDate><guid>https://hiltmon.com/blog/2015/05/29/that-last-effin-20-percent/</guid><description>&lt;p&gt;I love creating new products. I love shipping new products more. That last effin 20% of work to create a new product that takes 80% of all the development time kills me. I really want to ship, but it has to be right.&lt;/p&gt;
&lt;p&gt;For those who do not know the 80/20 rule, it&amp;rsquo;s a variant of the misnamed Pareto Principal wherein Vilfredo Pareto created a mathematical formula in 1906 to describe the unequal distribution of wealth in his country, observing that 20% of the people owned 80% of the wealth. This was then applied to other areas and seemed to hold true.&lt;/p&gt;</description></item><item><title>Rust hits 1.0</title><link>https://hiltmon.com/blog/2015/05/17/rust-hits-1-dot-0/</link><pubDate>Sun, 17 May 2015 15:28:00 -0400</pubDate><guid>https://hiltmon.com/blog/2015/05/17/rust-hits-1-dot-0/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2015/05/17/rust-hits-1-dot-0/images/rust-logo-blk.png" width="144" height="144"&gt;
&lt;/figure&gt;

&lt;p&gt;&lt;a href="http://www.rust-lang.org"&gt;Rust&lt;/a&gt; is a project I have been observing for a while now, an attempt to create a new, fast, safe, systems programming language to replace C++, but with better memory safety and a bullet-proof concurrency model. Last week, &lt;a href="http://www.rust-lang.org"&gt;Rust&lt;/a&gt; hit 1.0, and I think I may start testing it out for highly threaded, small and fast calculation tools that I would normally write and fight in C++. &lt;em&gt;If any of you are using it, please let me know what for in the comments.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>The Perfect Keyboard(s) (for me)</title><link>https://hiltmon.com/blog/2015/03/08/the-perfect-keyboards-for-me/</link><pubDate>Sun, 08 Mar 2015 14:14:56 -0400</pubDate><guid>https://hiltmon.com/blog/2015/03/08/the-perfect-keyboards-for-me/</guid><description>&lt;p&gt;I&amp;rsquo;m not a keyboard snob. But I love using my current keyboards now.&lt;/p&gt;
&lt;p&gt;Background: I was very happy with the Apple &amp;ldquo;chicklet&amp;rdquo; style keyboards and even wrote about it in &lt;a href="https://hiltmon.com/blog/2013/09/05/not-the-clicky-keyboard/"&gt;Not the Clicky Keyboard&lt;/a&gt;. There I declared that clicky keyboards were not for me.&lt;/p&gt;
&lt;p&gt;I was wrong. But I did not know it at the time.&lt;/p&gt;
&lt;p&gt;A while back, my boss went on a buying bender and purchased a whole bunch of different keyboards, including the DAS and some Microsoft ones. I tried them out too. Neither of us liked any of them, so he returned them all. As a joke, I ordered the CODE keyboard to show that I could buy &amp;ldquo;better&amp;rdquo; keyboards than him, and fully expected to return it.&lt;/p&gt;</description></item><item><title>One-Key Format Presets in Scrivener</title><link>https://hiltmon.com/blog/2015/03/07/one-key-format-presets-in-scrivener/</link><pubDate>Sat, 07 Mar 2015 17:37:51 -0500</pubDate><guid>https://hiltmon.com/blog/2015/03/07/one-key-format-presets-in-scrivener/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2015/03/07/one-key-format-presets-in-scrivener/images/scrivener-format.png" width="520" height="254"&gt;
&lt;/figure&gt;

&lt;p&gt;I am writing a lot of business documents in &lt;a href="http://www.literatureandlatte.com/scrivener.php"&gt;Scrivener&lt;/a&gt;, and even though it&amp;rsquo;s the wrong way to do it, I use Scrivener&amp;rsquo;s format presets (think paragraph styles) to quickly format headings, bulleted lists and paragraphs in each sub-document. This way I minimize post-processing &lt;span class="light"&gt;(and the business format is intentionally boring so I do not need any fancy layouts)&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;But it&amp;rsquo;s a hassle to have to take my hands off the keyboard to click through the &lt;strong&gt;Format&lt;/strong&gt; / &lt;strong&gt;Apply Formatting&lt;/strong&gt; / &lt;strong&gt;Apply Preset&lt;/strong&gt; menu tree or hit the tiny format preset dropdown &lt;code&gt;¶a&lt;/code&gt; to set the current paragraph style. What I want is a single key-combination to apply a preset style.&lt;/p&gt;</description></item><item><title>Merge Asana Projects into OmniFocus (Updated)</title><link>https://hiltmon.com/blog/2015/03/01/merge-asana-projects-into-omnifocus-updated/</link><pubDate>Sun, 01 Mar 2015 18:18:59 -0500</pubDate><guid>https://hiltmon.com/blog/2015/03/01/merge-asana-projects-into-omnifocus-updated/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2015/03/01/merge-asana-projects-into-omnifocus-updated/images/asana_to_omnifocus.png" width="363" height="130"&gt;
&lt;/figure&gt;

&lt;p&gt;A long long time ago in a galaxy far far away, I wrote a script to import Asana tasks into Omnifocus. If you ran it again, it would update the tasks in OmniFocus. See &lt;a href="https://hiltmon.com/blog/2013/11/03/merge-asana-projects-into-omnifocus/"&gt;Merge Asana Projects Into OmniFocus&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I recently updated the script to work a smidge better with Asana and Omnifocus 2. The main changes are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Date formats can be changed (for those of us not in the USA)&lt;/li&gt;
&lt;li&gt;The Non-Project tasks now load&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="setup"&gt;Setup&lt;/h3&gt;
&lt;p&gt;First, follow the instructions from the &lt;a href="https://hiltmon.com/blog/2013/11/03/merge-asana-projects-into-omnifocus/"&gt;original post&lt;/a&gt; to set up Omnifocus and get your API keys.&lt;/p&gt;</description></item><item><title>Seeing the Bigger Picture</title><link>https://hiltmon.com/blog/2015/01/31/seeing-the-bigger-picture/</link><pubDate>Sat, 31 Jan 2015 10:23:51 -0500</pubDate><guid>https://hiltmon.com/blog/2015/01/31/seeing-the-bigger-picture/</guid><description>&lt;p&gt;It is quite astounding to me that an astonishing amount of work is done and code written without any knowledge, view or understanding of the bigger picture. And yet no-one seems to have taken the time to consider just how remarkably ridiculous this common situation is. How can people be expected to perform at their best and create the best products when they have no clue as to what the big picture or goal is?&lt;/p&gt;</description></item><item><title>Eliminating Google Analytics Referral Spam</title><link>https://hiltmon.com/blog/2015/01/18/eliminating-google-analytics-referral-spam/</link><pubDate>Sun, 18 Jan 2015 10:42:51 -0500</pubDate><guid>https://hiltmon.com/blog/2015/01/18/eliminating-google-analytics-referral-spam/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2015/01/18/eliminating-google-analytics-referral-spam/images/google-analytics.png" width="100" height="101"&gt;
&lt;/figure&gt;

&lt;p&gt;It seems that the &lt;a href="http://www.google.com/analytics/"&gt;Google Analytics&lt;/a&gt; use of a public tracking code was a mistake. Anyone can use your tracking code on their site, which adds to your traffic, or they can create ghost visits and spam referrals by hammering Google Analytics with your code &lt;em&gt;while never visiting your site&lt;/em&gt;. Oh, and the codes are easy to guess, so they do not even need to know about your site.&lt;/p&gt;
&lt;p&gt;In most cases, this is perfectly harmless (&lt;abbr title="In Mu Humble Opinion"&gt;IMHO&lt;/abbr&gt;) as only Google Analytics data is affected and your reports look funny. Your ad stats, &lt;em&gt;if not Google&lt;/em&gt;, remain the same as they are independent.&lt;/p&gt;</description></item><item><title>StackOverflow Programming</title><link>https://hiltmon.com/blog/2015/01/17/stackoverflow-programming/</link><pubDate>Sat, 17 Jan 2015 16:11:13 -0500</pubDate><guid>https://hiltmon.com/blog/2015/01/17/stackoverflow-programming/</guid><description>&lt;p&gt;StackOverflow Programming happens when much of the functionality of an application is copied and pasted from the code examples found on &lt;a href="https://stackoverflow.com"&gt;StackOverflow&lt;/a&gt;. Unfortunately, it&amp;rsquo;s becoming the most popular and common programming paradigm amongst younger programmers, leading to (1) shockingly shoddy, bug laden, slow, incomprehensible, unmaintainable programs that work only once, and (2) to programmers who do not understand what they are doing, their work and how to solve problems.&lt;/p&gt;
&lt;p&gt;For example&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;, one of my interns came into my office this week to see if there was a way to do dates and times easily in C++. Java and C# both have easy Date Times classes, he said, why not C++? I told him C++ was a low-level language, and to use &lt;code&gt;time_t&lt;/code&gt; and the &lt;code&gt;std::chrono&lt;/code&gt; libraries like all C++ programmers do. Off he went.&lt;/p&gt;</description></item><item><title>Write Timestamps containing Milliseconds to MongoDB in C++11</title><link>https://hiltmon.com/blog/2015/01/14/write-timestamps-containing-millisecond-to-mongodb-in-c-plus-plus-11/</link><pubDate>Wed, 14 Jan 2015 18:42:40 -0500</pubDate><guid>https://hiltmon.com/blog/2015/01/14/write-timestamps-containing-millisecond-to-mongodb-in-c-plus-plus-11/</guid><description>&lt;p&gt;&lt;span class="light"&gt;It took me several hours today to figure this one out, so I thought I&amp;rsquo;d write it up lest I forget.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I have a C++11 application that rapidly writes new documents to a &lt;a href="http://www.mongodb.org"&gt;MongoDB&lt;/a&gt; instance and I need high-resolution timestamps to determine the order things were written.&lt;/p&gt;
&lt;p&gt;The problem is that the C++ standard &lt;code&gt;time_t&lt;/code&gt; structure reports in seconds, so&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;builder.appendTimeT(&amp;#34;updated_at&amp;#34;,
		std::chrono::system_clock::to_time_t(std::chrono::system_clock::now())
);
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;creates an ISODate &lt;em&gt;without&lt;/em&gt; milliseconds in MongoDB.&lt;/p&gt;
&lt;p&gt;There are many solutions to be found using &lt;code&gt;Boost::time&lt;/code&gt;&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;, but since my code needs to be dependency-free and pure, I needed a C++11 clean solution.&lt;/p&gt;</description></item><item><title>CodeRunner 2</title><link>https://hiltmon.com/blog/2014/12/11/coderunner-2/</link><pubDate>Thu, 11 Dec 2014 21:35:50 -0500</pubDate><guid>https://hiltmon.com/blog/2014/12/11/coderunner-2/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/12/11/coderunner-2/images/CodeRunner.png" width="160" height="160"&gt;
&lt;/figure&gt;

&lt;p&gt;Nikolai Krill released a major update to &lt;a href="https://coderunnerapp.com"&gt;CodeRunner&lt;/a&gt; today, and I highly recommend it to all programmers no matter what languages you use.&lt;/p&gt;
&lt;p&gt;In my case I write a lot of code in C++, Objective-C, Ruby, Javascript and HTML as part of large, complex projects. Often I am unsure how best to write a snippet or function. One way would be to create a branch in the project, run and experiment, deal with compiling, branch again to try another solution, compile some more and work it out. But that is a slow process (and quite dangerous if you leave these experimental branches in, or forget to branch at all).&lt;/p&gt;</description></item><item><title>What to write about next?</title><link>https://hiltmon.com/blog/2014/11/15/what-to-write-about-next/</link><pubDate>Sat, 15 Nov 2014 15:27:06 -0500</pubDate><guid>https://hiltmon.com/blog/2014/11/15/what-to-write-about-next/</guid><description>&lt;p&gt;I was asked in a &lt;a href="https://hiltmon.com/blog/2013/05/28/my-mac-indie-writing-workflow/#comment-1694439329"&gt;blog comment&lt;/a&gt; today how I decide &lt;em&gt;what&lt;/em&gt; to write about. And once decided, how do I go about doing it. In this case, the answer was easy, I decided to try to answer the question. And deconstruct the process I go through as it happens.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Instructions: Read this post in black font first, then come back and look at the gray which deconstructs my thinking.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="light"&gt;Every story needs a starting point, I added the next paragraph in the second iteration of the post to create some context. And maybe to establish some kind of credentials and an authoritative tone. Why would you, the reader who does not know me, care how I answer this question. My goal was to show you that my answer to this question evolved, that it was not taught. &lt;em&gt;And that I was surprised to find out I have been doing this for 10 years already.&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Lose the WWW</title><link>https://hiltmon.com/blog/2014/10/26/lose-the-www/</link><pubDate>Sun, 26 Oct 2014 17:22:46 -0400</pubDate><guid>https://hiltmon.com/blog/2014/10/26/lose-the-www/</guid><description>&lt;p&gt;I have finally removed the &lt;code&gt;www&lt;/code&gt; from &lt;code&gt;hiltmon.com&lt;/code&gt;. The 1990&amp;rsquo;s have passed and &lt;code&gt;www&lt;/code&gt; no longer makes sense in URL&amp;rsquo;s. &lt;em&gt;Maybe it&amp;rsquo;s time you did the same to your site too.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;What triggered this change was that, as of 14 October 2014, Google Analytics started throwing an error if you had links to &lt;code&gt;www.yoursite.com&lt;/code&gt; and &lt;code&gt;yoursite.com&lt;/code&gt;. This is because it treated links with &lt;code&gt;www&lt;/code&gt; and without as different.&lt;/p&gt;
&lt;p&gt;Removing the &lt;code&gt;www&lt;/code&gt; was easy. I used Global Search and Replace (&lt;strong&gt;⇧⌘F&lt;/strong&gt; in &lt;a href="http://blog.macromates.com"&gt;TextMate 2&lt;/a&gt;) to find &lt;code&gt;//www.hiltmon&lt;/code&gt; and replace it with &lt;code&gt;//hiltmon&lt;/code&gt;. Then regenerated the site.&lt;/p&gt;</description></item><item><title>Simple C++ Testing with Catch in Xcode</title><link>https://hiltmon.com/blog/2014/10/26/simple-c-plus-plus-testing-with-catch-in-xcode/</link><pubDate>Sun, 26 Oct 2014 14:34:32 -0400</pubDate><guid>https://hiltmon.com/blog/2014/10/26/simple-c-plus-plus-testing-with-catch-in-xcode/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/10/26/simple-c-plus-plus-testing-with-catch-in-xcode/images/catch-logo-small.png" width="300" height="145"&gt;
&lt;/figure&gt;

&lt;p&gt;&lt;a href="https://github.com/philsquared/Catch"&gt;Catch&lt;/a&gt; is a simple, open-source, &lt;em&gt;dependency-free&lt;/em&gt; unit testing framework for C++ projects. In this post I show you how to use it in a &lt;a href="https://hiltmon.com/blog/2013/07/05/xcode-and-the-simple-c-plus-plus-project-structure/"&gt;Simple C++ Project&lt;/a&gt; from Xcode.&lt;/p&gt;
&lt;h3 id="why-catch"&gt;Why Catch?&lt;/h3&gt;
&lt;p&gt;I am writing fast C++ libraries for work and need to wrap them in unit tests to ensure that they continue to operate and perform as they evolve. &lt;em&gt;My number one constraint is that these libraries must be dependency-free.&lt;/em&gt; The only tools that I may use to compile or install these libraries on any platform (in my case OS X and Linux) is a C++11 compiler and a C++ standard library. Nothing else.&lt;/p&gt;</description></item><item><title>Gist TextMate Bundle updated for Yosemite</title><link>https://hiltmon.com/blog/2014/10/18/gist-textmate-bundle-updated-for-yosemite/</link><pubDate>Sat, 18 Oct 2014 12:44:44 -0400</pubDate><guid>https://hiltmon.com/blog/2014/10/18/gist-textmate-bundle-updated-for-yosemite/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/10/18/gist-textmate-bundle-updated-for-yosemite/images/textmate.png" width="128" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;Thanks to Michael Sheets, the Gist TextMate bundle now works in &lt;a href="http://macromates.com"&gt;TextMate 2&lt;/a&gt; on Yosemite. The issue was that the UI code in TextMate 2 relied on Ruby 1.8, and Ruby 1.8 is deprecated and no longer installed in OS X 10.10.&lt;/p&gt;
&lt;p&gt;Michael created a shim to fake Ruby 1.8 until such time as the code base moves to Ruby 2.0, implemented the change in the Gist bundle and it&amp;rsquo;s working now.&lt;/p&gt;</description></item><item><title>Create a Bootable OS X Installer Drive</title><link>https://hiltmon.com/blog/2014/10/18/create-a-bootable-os-x-installer-drive/</link><pubDate>Sat, 18 Oct 2014 12:02:52 -0400</pubDate><guid>https://hiltmon.com/blog/2014/10/18/create-a-bootable-os-x-installer-drive/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/10/18/create-a-bootable-os-x-installer-drive/images/r2d2usb.jpg" width="200" height="278"&gt;
&lt;/figure&gt;

&lt;p&gt;Dan Frakes (&lt;a href="https://twitter.com/DanFrakes"&gt;@DanFrakes&lt;/a&gt;), previously of MacWorld fame, provides easy to follow instructions on how to create a bootable OS X 10.10 Yosemite installer USB drive on his personal blog. I&amp;rsquo;ve always done this and I recommend you do too.&lt;/p&gt;
&lt;p&gt;Link: &lt;a href="http://danfrakes.com/2014/10/16/how-to-make-a-bootable-yosemite-installer-drive/"&gt;How to make a bootable OS X 10.10 Yosemite installer drive&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="light"&gt;Yep, mine is a R2D2 8GB USB Drive (called a Star Wars MIMOBOT) I found at the checkout at Kinokuniya in New York several years ago.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>TimeToCall Removed from App Store</title><link>https://hiltmon.com/blog/2014/10/02/timetocall-removed-from-app-store/</link><pubDate>Thu, 02 Oct 2014 12:14:26 -0400</pubDate><guid>https://hiltmon.com/blog/2014/10/02/timetocall-removed-from-app-store/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/10/02/timetocall-removed-from-app-store/images/timetocall-128.jpg" width="128" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;I have removed TimeToCall from the App Store effective today, for several reasons:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I did not update it for iOS 7 (or iOS 8) and it&amp;rsquo;s starting to look shabby.&lt;/li&gt;
&lt;li&gt;I never made any worthwhile money from it or received blog pageviews from it.&lt;/li&gt;
&lt;li&gt;There are newer and better products out there.&lt;/li&gt;
&lt;li&gt;I do not want to clutter the App Store with yet another abandoned product.&lt;/li&gt;
&lt;li&gt;It no longer showcases my development capabilities, they are far better now.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;To those of you who purchased and used the product, thank you.&lt;/p&gt;</description></item><item><title>Any hint of humanity is valued</title><link>https://hiltmon.com/blog/2014/10/01/any-hint-of-humanity-is-valued/</link><pubDate>Wed, 01 Oct 2014 09:09:04 -0400</pubDate><guid>https://hiltmon.com/blog/2014/10/01/any-hint-of-humanity-is-valued/</guid><description>&lt;blockquote&gt;
&lt;p&gt;For decades we have had corporatization, mass-production, and everything becoming the same, having personality drained from it. That became what was common and what was the norm. And then in the last, you know, 5, 10 years, this concept of like the artisanal, the special, the hand-made, like this is coming back &amp;hellip;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;[interruption edited out]&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;hellip; I think the reason why everyone loves all this hand-made crap today is because they are starved for authenticity after decades of mass-market personality-less crap, and they are starved for uniqueness, they are starved for personality and they are starved for authenticity and for people to talk to them like, you know, talked to like an adult please.&lt;/p&gt;</description></item><item><title>Standard Markdown</title><link>https://hiltmon.com/blog/2014/09/03/standard-markdown/</link><pubDate>Wed, 03 Sep 2014 20:25:56 -0400</pubDate><guid>https://hiltmon.com/blog/2014/09/03/standard-markdown/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/09/03/standard-markdown/images/markdown.png" width="208" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;Looks like &lt;a href="http://blog.codinghorror.com/standard-flavored-markdown/"&gt;Jeff Atwood&lt;/a&gt; (&lt;a href="http://twitter.com/codinghorror"&gt;@CodingHorror&lt;/a&gt;), &lt;a href="http://johnmacfarlane.net"&gt;John MacFarlane&lt;/a&gt;, David Greenspan of &lt;a href="https://www.meteor.com"&gt;Meteor&lt;/a&gt;, and folks from StackExchange, Github and Reddit have put their money where their mouths are and released the first version of &lt;a href="http://standardmarkdown.com"&gt;Standard Markdown&lt;/a&gt; at &lt;a href="http://standardmarkdown.com"&gt;http://standardmarkdown.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I believe this &lt;em&gt;will&lt;/em&gt; be the future of &lt;a href="http://daringfireball.net"&gt;John Gruber&amp;rsquo;s&lt;/a&gt; (&lt;a href="https://twitter.com/daringfireball"&gt;@daringfireball&lt;/a&gt;) &lt;a href="http://daringfireball.net/projects/markdown/"&gt;Markdown&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Up until now, I have relied on &lt;a href="http://fletcherpenney.net"&gt;Fletcher Penney&amp;rsquo;s&lt;/a&gt; (&lt;a href="https://twitter.com/multimarkdown"&gt;@multimarkdown&lt;/a&gt;) &lt;a href="http://fletcherpenney.net/multimarkdown/"&gt;MultiMarkdown&lt;/a&gt; on the desktop for all my documents because of its consistency, ubiquity and wonderful extensions for writers (including tables and footnotes). I use &lt;a href="http://dafoster.net/projects/rdiscount/"&gt;rdiscount&lt;/a&gt; for this blog for the same reason (especially it&amp;rsquo;s speed).&lt;/p&gt;</description></item><item><title>The Quick Code Cleanup</title><link>https://hiltmon.com/blog/2014/09/02/the-quick-code-cleanup/</link><pubDate>Tue, 02 Sep 2014 23:29:19 -0400</pubDate><guid>https://hiltmon.com/blog/2014/09/02/the-quick-code-cleanup/</guid><description>&lt;p&gt;The quick code cleanup is a process whereby you run through some or all of the files in a software project and tidy them up. Think about it as the regular tidying of your desk (or room) and filing things away &amp;ndash; versus the rearranging and rewiring of a full code refactor. You can get a lot more done on a tidy desk.&lt;/p&gt;
&lt;p&gt;Quick code cleanups can and do include some minor refactoring, but they are mostly about renaming items, reformatting code and commenting on or cleaning up messy sections. No features are added or changed.&lt;/p&gt;</description></item><item><title>Aral on Spyware 2.0</title><link>https://hiltmon.com/blog/2014/08/22/aral-on-spyware-2-dot-0/</link><pubDate>Fri, 22 Aug 2014 08:05:08 -0400</pubDate><guid>https://hiltmon.com/blog/2014/08/22/aral-on-spyware-2-dot-0/</guid><description>&lt;blockquote&gt;
&lt;p&gt;That word is spyware.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Let me state it plainly: Google is a spyware company. Facebook is a spyware company. Any company whose products spy on you is a spyware company.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Aral Balkan&lt;/strong&gt; &lt;a href="https://aralbalkan.com/notes/spyware-2.0/"&gt;https://aralbalkan.com/notes/spyware-2.0/&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The first step in understanding and defeating something is to call it what it is.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://aralbalkan.com/notes/spyware-2.0/"&gt;Read Here&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Follow the author as &lt;a href="https://twitter.com/hiltmon"&gt;@hiltmon&lt;/a&gt; on Twitter.&lt;/p&gt;</description></item><item><title>Quote of the Day</title><link>https://hiltmon.com/blog/2014/08/09/quote-of-the-day/</link><pubDate>Sat, 09 Aug 2014 13:19:36 -0400</pubDate><guid>https://hiltmon.com/blog/2014/08/09/quote-of-the-day/</guid><description>&lt;blockquote&gt;
&lt;p&gt;In sum and once again: Amazon is not your friend. Neither is any other corporation. It and they do what they do for their own interest and are more than willing to try to make you try believe that what they do for their own benefit is in fact for yours.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;John Scalzi&lt;/strong&gt; &lt;a href="http://whatever.scalzi.com/2014/08/09/amazon-gets-increasingly-nervous/"&gt;http://whatever.scalzi.com/2014/08/09/amazon-gets-increasingly-nervous/&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Replace &lt;strong&gt;Amazon&lt;/strong&gt; with any company name of your choice and this remains 100% true.&lt;/p&gt;
&lt;p&gt;Follow the author as &lt;a href="https://twitter.com/hiltmon"&gt;@hiltmon&lt;/a&gt; on Twitter. Mute&lt;/p&gt;</description></item><item><title>An Xcode C++ Client-Server Development Trick</title><link>https://hiltmon.com/blog/2014/07/30/an-xcode-c-plus-plus-client-server-development-trick/</link><pubDate>Wed, 30 Jul 2014 19:57:01 -0400</pubDate><guid>https://hiltmon.com/blog/2014/07/30/an-xcode-c-plus-plus-client-server-development-trick/</guid><description>&lt;p&gt;I&amp;rsquo;m working on a C++ product that has a series of client executables that need to talk to a server executable. And they all share a lot of common code.&lt;/p&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/07/30/an-xcode-c-plus-plus-client-server-development-trick/images/xcode-trick-0.png" width="256" height="142"&gt;
&lt;/figure&gt;

&lt;p&gt;The traditional approach to build and debug this pattern is to create a library of the common code in one project, a separate server project and another client project, then jump between windows to edit and compile where needed.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;But I am often coding on my trusty 13&amp;quot; MacBook Air screen and it&amp;rsquo;s just too tiny to have all these Xcode windows open with their console windows visible.&lt;/strong&gt; I even prefer this on the 27&amp;quot; Display where I can see documentation and other windows nearby.&lt;/p&gt;</description></item><item><title>WordCounter</title><link>https://hiltmon.com/blog/2014/07/14/wordcounter/</link><pubDate>Mon, 14 Jul 2014 18:24:10 -0400</pubDate><guid>https://hiltmon.com/blog/2014/07/14/wordcounter/</guid><description>&lt;figure class="left-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/07/14/wordcounter/images/WordCounter.png" width="128" height="128"&gt;
&lt;/figure&gt;

&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/07/14/wordcounter/images/WordCounter-Menu.png" width="280" height="365"&gt;
&lt;/figure&gt;

&lt;p&gt;&lt;a href="http://wordcounterapp.com"&gt;WordCounter&lt;/a&gt; by Christian Tietze (&lt;a href="http://twitter.com/ctietze"&gt;@ctietze&lt;/a&gt;) does one thing, and does it well:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;It counts the number of words you type in registered applications and displays the total on the menu bar.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Most writers I know use several different software tools while writing, like &lt;a href="http://brettterpstra.com/projects/nvalt/"&gt;nvAlt&lt;/a&gt; for notes, &lt;a href="https://itunes.apple.com/us/app/byword/id420212497?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Byword&lt;/a&gt; for short pieces and &lt;a href="https://itunes.apple.com/us/app/scrivener/id418889511?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Scrivener&lt;/a&gt; for the big things. But each of these has a separate word count (if at all). WordCounter brings them all together in one. Perfect!&lt;/p&gt;</description></item><item><title>Sonicwall Mobile Connect for OS X Mavericks</title><link>https://hiltmon.com/blog/2014/07/07/sonicwall-mobile-connect-for-os-x-mavericks/</link><pubDate>Mon, 07 Jul 2014 18:08:06 -0400</pubDate><guid>https://hiltmon.com/blog/2014/07/07/sonicwall-mobile-connect-for-os-x-mavericks/</guid><description>&lt;p&gt;&lt;em&gt;If you are running OS X 10.8 or lower, please refer to &lt;a href="https://hiltmon.com/blog/2013/09/28/sonicwall-netextender-for-os-x-mavericks/"&gt;SonicWall NetExtender for OS X Mavericks&lt;/a&gt;, this only works for 10.9 Mavericks and above.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Step 1: Download from the App Store&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s available here: &lt;a href="https://itunes.apple.com/us/app/sonicwall-mobile-connect/id822514576?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Sonicwall Mobile Connect&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;There is no Step 2.&lt;/p&gt;
&lt;p&gt;The best part of this new edition is that this is a real OS X app and it integrates with Apple&amp;rsquo;s VPN settings.&lt;/p&gt;
&lt;p&gt;Which means you only need to run it once, to set up and test the VPN connection. After that, you can access it from the &lt;strong&gt;Network&lt;/strong&gt; System Preference or the &lt;strong&gt;VPN&lt;/strong&gt; menu at any time.&lt;/p&gt;</description></item><item><title>They will not come</title><link>https://hiltmon.com/blog/2014/06/28/they-will-not-come/</link><pubDate>Sat, 28 Jun 2014 16:39:10 -0400</pubDate><guid>https://hiltmon.com/blog/2014/06/28/they-will-not-come/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/06/28/they-will-not-come/images/kifu-is-going-dark.png" width="225" height="215"&gt;
&lt;/figure&gt;

&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;If you build it, they will come&amp;rdquo;
&amp;ndash; Field of Dreams&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;On Monday night, June 30, 2014, I&amp;rsquo;ll be taking the Kifu servers down and putting up a static sunset site.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;I built it, they did not come.&lt;/em&gt; It&amp;rsquo;s time to go dark.&lt;/p&gt;
&lt;p&gt;I know we built it right. We spent years looking at the market for non-profit management systems and found thousands and thousands of potential customers publicly expressing real needs. We met with many, many different kinds of non-profits to talk about that they needed, and with even more to talk about what we could do. We tested the idea, refined it and sought out more to talk with. We did this for &lt;em&gt;three&lt;/em&gt; years. Only &lt;em&gt;then&lt;/em&gt; did my partners and I decide to go ahead, set up a company and do it.&lt;/p&gt;</description></item><item><title>On the floor</title><link>https://hiltmon.com/blog/2014/06/22/hiltmonism-on-the-floor/</link><pubDate>Sun, 22 Jun 2014 11:37:20 -0400</pubDate><guid>https://hiltmon.com/blog/2014/06/22/hiltmonism-on-the-floor/</guid><description>&lt;p&gt;&lt;span class="light"&gt;At least once a month, step out of your cubicle or office and spend a day &lt;em&gt;on the floor&lt;/em&gt;. It will make you a better software designer and developer, it will help you make better software for the folks &lt;em&gt;on the floor&lt;/em&gt;, and it will build a better relationship with them so issues and ideas can flow.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I spent Friday &lt;em&gt;on the floor&lt;/em&gt; of my work. As I do at least once a month. My software and their workflows are significantly better for it.&lt;/p&gt;</description></item><item><title>Upgrading Octopress to Jekyll 2.0</title><link>https://hiltmon.com/blog/2014/06/21/upgrading-octopress-to-jekyll-2-dot-0/</link><pubDate>Sat, 21 Jun 2014 16:28:04 -0400</pubDate><guid>https://hiltmon.com/blog/2014/06/21/upgrading-octopress-to-jekyll-2-dot-0/</guid><description>&lt;p&gt;So this happened today:&lt;/p&gt;
&lt;blockquote class="twitter-tweet" lang="en"&gt;&lt;p&gt;Octopress 2 is now using the latest and greatest Jekyll 2.0.3.&amp;#10;&amp;#10;Now, back to work on Octopress 3. Happy blogging!&lt;/p&gt;&amp;mdash; Octopress (@octopress) &lt;a href="https://twitter.com/octopress/statuses/480424836175757312"&gt;June 21, 2014&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;I&amp;rsquo;ve been waiting for this. Now that it has, I decided to finally upgrade this site.&lt;/p&gt;
&lt;p&gt;It was easy. As per &lt;a href="http://octopress.org/docs/updating/"&gt;Updating Octopress&lt;/a&gt;, I just ran:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;git pull octopress master
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Then, to ensure all gems were up to date, I ran&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;bundle update
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Finally, I got ready - update source, clean caches and generate the blog. Note that I chose not to update the style as I like my SASS changes.&lt;/p&gt;</description></item><item><title>Server-sided Swift Speculation</title><link>https://hiltmon.com/blog/2014/06/06/server-sided-swift-speculation/</link><pubDate>Fri, 06 Jun 2014 19:02:20 -0400</pubDate><guid>https://hiltmon.com/blog/2014/06/06/server-sided-swift-speculation/</guid><description>&lt;p&gt;&lt;span class="light"&gt;Note: This is not a thing, it&amp;rsquo;s just some idle speculation on my behalf. But maybe, just maybe, Apple will do something like this. Or not. Maybe we will do it.&lt;/span&gt;&lt;/p&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/06/06/server-sided-swift-speculation/images/swift-hero.png" width="128" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;This week at WWDC, &lt;a href="http://www.apple.com"&gt;Apple&lt;/a&gt; surprised the developer world with their new programming language, &lt;a href="https://developer.apple.com/swift/"&gt;Swift&lt;/a&gt;. And astoundingly, it&amp;rsquo;s almost ready for prime time Mac and iOS client software development already.&lt;/p&gt;
&lt;p&gt;I would very much like to use a language like Apple&amp;rsquo;s new Swift on the server side as well. I suspect that we may get some of what we need there, if not all.&lt;/p&gt;</description></item><item><title>Omnifocus My Way</title><link>https://hiltmon.com/blog/2014/05/26/omnifocus-my-way/</link><pubDate>Mon, 26 May 2014 15:39:03 -0400</pubDate><guid>https://hiltmon.com/blog/2014/05/26/omnifocus-my-way/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/05/26/omnifocus-my-way/images/omnifocus.png" width="128" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;I&amp;rsquo;ve been using &lt;a href="https://www.omnigroup.com/omnifocus"&gt;OmniFocus&lt;/a&gt; as my primary tool for task management for years, yet I never read the GTD book. How I chose OmniFocus is a topic for another day, how I use it &lt;em&gt;my way&lt;/em&gt; is the topic for today. Maybe some of the alternative ways I use it can improve the way you do too.&lt;/p&gt;
&lt;h3 id="my-world"&gt;My World&lt;/h3&gt;
&lt;p&gt;I&amp;rsquo;m a software designer, developer, project manager and part-time writer. I work at a Hedge Fund by day, run my consulting firm at night, write this blog and have a personal life. As of writing this post, I have 260 active line items in OmniFocus. That is a lot of things to stay on top of.&lt;/p&gt;</description></item><item><title>Solve Tab Hell with Fluid and ChoosyOSX</title><link>https://hiltmon.com/blog/2014/05/23/solve-tab-hell-with-fluid-and-choosyosx/</link><pubDate>Fri, 23 May 2014 15:49:52 -0400</pubDate><guid>https://hiltmon.com/blog/2014/05/23/solve-tab-hell-with-fluid-and-choosyosx/</guid><description>&lt;p&gt;More and more of our data, applications, communications, reading and work happens via a browser tab on the internet. I don&amp;rsquo;t know about you but I often have several browser windows open on several virtual desktops all with multiple tabs open.&lt;/p&gt;
&lt;p&gt;And I can never find a thing.&lt;/p&gt;
&lt;p&gt;So I open a new tab. And start again. Tab hell.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2014/05/23/solve-tab-hell-with-fluid-and-choosyosx/images/tab-hell-1.png" width="600" height="172"&gt;
&lt;/figure&gt;

&lt;p&gt;Now this is fine for reading or browsing - you just walk the tabs to see what you were looking at. But for work, when you need to go to a specific web application that &lt;em&gt;you just know you have open somewhere&lt;/em&gt;, it becomes a bother. You have to go to each browser window, walk the tabs, switch desktops, walk more. It&amp;rsquo;s too slow and unproductive.&lt;/p&gt;</description></item><item><title>Melding Scrivener and Marked</title><link>https://hiltmon.com/blog/2014/05/05/melding-scrivener-and-marked/</link><pubDate>Mon, 05 May 2014 20:07:17 -0400</pubDate><guid>https://hiltmon.com/blog/2014/05/05/melding-scrivener-and-marked/</guid><description>&lt;p&gt;If you are a regular reader of this blog, you will know that I do all my writing using &lt;a href="https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/"&gt;Markdown&lt;/a&gt; format, short-form in &lt;a href="http://bywordapp.com"&gt;Byword&lt;/a&gt;, long-form in &lt;a href="http://www.literatureandlatte.com/scrivener.php"&gt;Scrivener&lt;/a&gt; and generate the final document using &lt;a href="http://marked2app.com"&gt;Marked&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In short: I write all my work documents, including letters, reports and software documentation in Markdown formatted text files and then format them using Marked and a standard stylesheet (See &lt;a href="https://hiltmon.com/blog/2013/05/23/letterhead-markdown-style/"&gt;Letterhead - Markdown Style&lt;/a&gt; for how that works). See &lt;a href="https://hiltmon.com/blog/2014/04/27/the-markdown-payoff/"&gt;The Markdown Payoff&lt;/a&gt; for why.&lt;/p&gt;</description></item><item><title>The Markdown Payoff</title><link>https://hiltmon.com/blog/2014/04/27/the-markdown-payoff/</link><pubDate>Sun, 27 Apr 2014 12:33:04 -0400</pubDate><guid>https://hiltmon.com/blog/2014/04/27/the-markdown-payoff/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/04/27/the-markdown-payoff/images/markdown.png" width="208" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;A long, long time ago in a galaxy far, far away, I switched to &lt;a href="http://daringfireball.net/projects/markdown/"&gt;Markdown&lt;/a&gt; format for documents, notes and other scratchings. &lt;span class="light"&gt;(And wrote about it - see the posts in the &lt;a href="https://hiltmon.com/blog/categories/markdown/"&gt;Markdown&lt;/a&gt; category)&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Was switching to Markdown a good call? Did it pay off? And if so, how?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="light"&gt;I actually wrote this post not knowing how it would turn out. I wanted to know for myself if it paid off, or if I just followed a fad. A fun exercise.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Keep long running UNIX commands alive</title><link>https://hiltmon.com/blog/2014/04/19/keep-long-running-unix-commands-alive/</link><pubDate>Sat, 19 Apr 2014 12:43:53 -0400</pubDate><guid>https://hiltmon.com/blog/2014/04/19/keep-long-running-unix-commands-alive/</guid><description>&lt;p&gt;Here&amp;rsquo;s the situation: you have a UNIX script that takes a long time to run, but gets killed when your computer goes to sleep and the SSH terminal or VPN disconnects. &lt;em&gt;Ouch&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I know of three ways to kick long running scripts off and not worry about sleeping computers or disconnections: &lt;code&gt;nohup&lt;/code&gt;, &lt;code&gt;disown&lt;/code&gt; or &lt;code&gt;tmux&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id="simple-nohup"&gt;Simple: &lt;code&gt;nohup&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;From the &lt;code&gt;man&lt;/code&gt; page:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;nohup -- invoke a utility immune to hangups
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Which really does not tell the story. When the parent terminal session terminates, it sends a hangup (SIGHUP) to all child processes, causing them to terminate as well. &lt;code&gt;nohup&lt;/code&gt; tells a process to ignore that hangup.&lt;/p&gt;</description></item><item><title>Social Network Precedents for Connecting and Friending</title><link>https://hiltmon.com/blog/2014/04/02/social-network-precedents-for-connecting-and-friending/</link><pubDate>Wed, 02 Apr 2014 19:23:13 -0400</pubDate><guid>https://hiltmon.com/blog/2014/04/02/social-network-precedents-for-connecting-and-friending/</guid><description>&lt;p&gt;&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/04/02/social-network-precedents-for-connecting-and-friending/images/donut.jpg" width="250" height="326"&gt;
&lt;/figure&gt;
As are we all, I too am active on a bunch of social networks. But I too do not connect or friend everyone on every network. I think we all want some semblance of control as to what we share and with whom we share it. To help me decide, I created &lt;em&gt;my precedents&lt;/em&gt;, a set of guidelines as to whom I will connect with on which network and what I share there.&lt;/p&gt;</description></item><item><title>Rebooting OmniFocus</title><link>https://hiltmon.com/blog/2014/03/29/rebooting-omnifocus/</link><pubDate>Sat, 29 Mar 2014 15:08:47 -0400</pubDate><guid>https://hiltmon.com/blog/2014/03/29/rebooting-omnifocus/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/03/29/rebooting-omnifocus/images/omnifocus.png" width="256" height="256"&gt;
&lt;/figure&gt;

&lt;p&gt;I&amp;rsquo;ve been using &lt;a href="https://www.omnigroup.com/omnifocus"&gt;OmniFocus&lt;/a&gt; forever to record and track my personal and professional actionable to-dos and ideas. But over the past year, I have been using it less and less, getting less and less tracked and done, and it&amp;rsquo;s all my fault.&lt;/p&gt;
&lt;p&gt;You see, I started to experiment with what &lt;em&gt;could&lt;/em&gt; be done with OmniFocus and messed up the whole concept of &lt;em&gt;actually getting things done&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;My primary experiment was to create scripts to automatically load actions in from my project files and to merge the company-wide &lt;a href="https://app.asana.com"&gt;Asana&lt;/a&gt;. The big idea was that I could save time and effort by automating task entry and assignment, and let the meat-bag (that&amp;rsquo;s me) process and review these tasks. If I could spend less time &lt;em&gt;creating&lt;/em&gt; tasks and more time &lt;em&gt;performing&lt;/em&gt; tasks, I would be more productive.&lt;/p&gt;</description></item><item><title>It's that process that is the magic</title><link>https://hiltmon.com/blog/2014/03/29/its-that-process-that-is-the-magic/</link><pubDate>Sat, 29 Mar 2014 10:04:40 -0400</pubDate><guid>https://hiltmon.com/blog/2014/03/29/its-that-process-that-is-the-magic/</guid><description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;CRINGLY: What&amp;rsquo;s important to you in the development of a product?&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;JOBS:&lt;/strong&gt; One of the things that really hurt Apple was after I left, John Sculley got a very serious disease.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;It&amp;rsquo;s the disease &amp;ndash; I&amp;rsquo;ve seen other people get it too &amp;ndash; it&amp;rsquo;s the disease of thinking that a really great idea is 90% of the work.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;And if you just tell all these other people, you know, &amp;ldquo;Here&amp;rsquo;s this great idea,&amp;rdquo; then of course they can go off and make it happen.&lt;/p&gt;</description></item><item><title>How I use OS X Tools to build a Linux-only Product</title><link>https://hiltmon.com/blog/2014/03/27/using-os-x-tools-to-build-a-linux-only-product/</link><pubDate>Thu, 27 Mar 2014 20:43:24 -0400</pubDate><guid>https://hiltmon.com/blog/2014/03/27/using-os-x-tools-to-build-a-linux-only-product/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/03/27/using-os-x-tools-to-build-a-linux-only-product/images/osx-mavericks-100px.png" width="100" height="91"&gt;
&lt;/figure&gt;

&lt;p&gt;OS X really is a developer&amp;rsquo;s dream platform, a solid UNIX core on which &lt;em&gt;almost&lt;/em&gt; everything compiles with a brilliant graphical environment hosting the most amazing developer tools.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;It&amp;rsquo;s the &amp;ldquo;&lt;em&gt;almost&lt;/em&gt;&amp;rdquo; in the above sentence that has recently tripped me up.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I have a new vendor library that does not compile or run on OS X (yet!). As this is a big project which I will be working on for months, I want to set up my development environment so that I am comfortable and productive.&lt;/p&gt;</description></item><item><title>Open Source Compiles in an Xcode 5.1 World</title><link>https://hiltmon.com/blog/2014/03/20/open-source-compiles-in-an-xcode-5-world/</link><pubDate>Thu, 20 Mar 2014 12:21:04 -0400</pubDate><guid>https://hiltmon.com/blog/2014/03/20/open-source-compiles-in-an-xcode-5-world/</guid><description>&lt;p&gt;So today I needed to work on an older, open-source based C++ application on my Mac and there was no way to compile it under Xcode 5 even though the development tools were installed and working perfectly.&lt;/p&gt;
&lt;p&gt;The issue, it seems, is that Xcode 5.1 has finally removed and deprecated a lot of old C++ stuff that is still required by older, popular libraries such as &lt;code&gt;boost&lt;/code&gt; and &lt;code&gt;quickfix&lt;/code&gt;. It emulates &lt;code&gt;g++&lt;/code&gt; 4.2.1 OK, but is no longer 100% compatible with it. I am quite sure that Apple and the Open Source community will eventually get these to work with the new compiler.&lt;/p&gt;</description></item><item><title>Develop Locally, Stage Nearby, Production Anywhere</title><link>https://hiltmon.com/blog/2014/03/15/develop-locally/</link><pubDate>Sat, 15 Mar 2014 13:12:08 -0400</pubDate><guid>https://hiltmon.com/blog/2014/03/15/develop-locally/</guid><description>&lt;p&gt;One of the things that surprised me as I moved back into the land of corporate software is the number of developers I talk to that commute and work in offices &lt;strong&gt;and yet develop on remote computers&lt;/strong&gt;. I thought, as you probably do, that by now &lt;em&gt;all&lt;/em&gt; software development would be local, as in on the developer&amp;rsquo;s own computer.&lt;/p&gt;
&lt;p&gt;Instead, it is not uncommon for corporate developers to rely on remote shells or desktop virtualization to access remote development computers and use them to code. It&amp;rsquo;s slow, unproductive, frustrating and so pre-1990&amp;rsquo;s.&lt;/p&gt;</description></item><item><title>From Tool Maker to Tool User</title><link>https://hiltmon.com/blog/2014/03/02/from-tool-maker-to-tool-user/</link><pubDate>Sun, 02 Mar 2014 10:04:34 -0500</pubDate><guid>https://hiltmon.com/blog/2014/03/02/from-tool-maker-to-tool-user/</guid><description>&lt;p&gt;&lt;span class="light"&gt;Abstract: Programming is still seen as a single-language, single-platform tool-maker role. That has not been true for a long time. Over the years, the platforms, tools and libraries available have multiplied. We&amp;rsquo;re tool users now, where a programmer can pick up a new platform with ease, and use the tools available to create complex, reliable products a lot quicker. &lt;strong&gt;That which was impossible then is commonplace now.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The role of the programmer has changed over the years, from being a certified single language, single platform tool-maker into a &lt;a href="http://pragprog.com/the-pragmatic-programmer"&gt;master&lt;/a&gt; of application styles, technologies, use cases and platform tool-users. And when you think about it, the tremendous change in the tools we &lt;em&gt;can&lt;/em&gt; use and master has steered us here. But we, the industry and the job market still view programmers as singular tool makers (just look at most programming job ads).&lt;/p&gt;</description></item><item><title>Easy SSH to local linux VM</title><link>https://hiltmon.com/blog/2014/02/22/easy-ssh-to-local-linux-vm/</link><pubDate>Sat, 22 Feb 2014 14:03:54 -0500</pubDate><guid>https://hiltmon.com/blog/2014/02/22/easy-ssh-to-local-linux-vm/</guid><description>&lt;p&gt;&lt;em&gt;TL;DR: Run &lt;code&gt;avahi&lt;/code&gt; on the VM, &lt;code&gt;ssh&lt;/code&gt; to the VM name dot local.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Many of the &lt;a href="https://hiltmon.com/blog/2013/07/03/a-simple-c-plus-plus-project-structure/"&gt;Simple C++ Projects&lt;/a&gt; I work on, whether &lt;a href="https://hiltmon.com/blog/2013/07/05/xcode-and-the-simple-c-plus-plus-project-structure/"&gt;I use Xcode or not&lt;/a&gt;, land up needing to be recompiled on a Linux Virtual Machine prior to being deployed to the production Linux server. I do this because I want to be sure the I know what needs to be set up in the Linux environment, that the compile succeeds without errors in a production-like environment and the code works properly before deploying.&lt;/p&gt;</description></item><item><title>I Choose not to be Anonymous</title><link>https://hiltmon.com/blog/2014/02/17/choose-not-to-be-anonymous/</link><pubDate>Mon, 17 Feb 2014 11:53:47 -0500</pubDate><guid>https://hiltmon.com/blog/2014/02/17/choose-not-to-be-anonymous/</guid><description>&lt;p&gt;&lt;span class="light"&gt;A simple premise.&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;ol&gt;
&lt;li&gt;I always post from my own domains or accounts, all of which are traceable back to me.&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;
&lt;ol start="2"&gt;
&lt;li&gt;I sign and add my true byline, which is me, to all my work.&lt;/li&gt;
&lt;li&gt;I always use my name, &lt;a href="https://hiltmon.com"&gt;hiltmon&lt;/a&gt;, when commenting or responding on other sites or services.&lt;/li&gt;
&lt;li&gt;Anyone can always get in touch with me via this &lt;a href="https://hiltmon.com"&gt;web site&lt;/a&gt;, &lt;a href="https://hiltmon.com/about/"&gt;email&lt;/a&gt;, &lt;a href="https://twitter.com/hiltmon"&gt;Twitter&lt;/a&gt;, &lt;a href="https://www.facebook.com/hiltmoncom"&gt;Facebook&lt;/a&gt;, &lt;a href="https://plus.google.com/+Hiltmon"&gt;Google+&lt;/a&gt;, &lt;a href="www.linkedin.com/in/hiltmon"&gt;Linked-In&lt;/a&gt; and other services, I am not hiding.&lt;/li&gt;
&lt;li&gt;There is only one &lt;a href="https://hiltmon.com"&gt;hiltmon&lt;/a&gt;, and it is I. &lt;a href="http://www.google.com/search?q=hiltmon"&gt;Google me&lt;/a&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I choose not to be anonymous. Here&amp;rsquo;s why.&lt;/p&gt;</description></item><item><title>Magical Migrations</title><link>https://hiltmon.com/blog/2014/02/08/magical-migrations/</link><pubDate>Sat, 08 Feb 2014 11:46:50 -0500</pubDate><guid>https://hiltmon.com/blog/2014/02/08/magical-migrations/</guid><description>&lt;p&gt;&lt;span class="light"&gt;As I am writing this, I am using magical migrations to perform a full data transplant across three servers, each with 100+GB of data, with a single command. Yep, I&amp;rsquo;m chilling and writing a blog post while replacing the entire data scaffolding of my firm as if it were just another cold Saturday. Magical indeed.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;TL;DR: &lt;a href="https://guides.rubyonrails.org/migrations.html"&gt;Rails migrations&lt;/a&gt; and &lt;a href="http://capistranorb.com"&gt;Capistrano&lt;/a&gt; deploys create a stable, reliable, testable, reversible and no-fault way to manage and execute production database changes, no matter the platform size or complexity.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>View on an Insider as CEO for Microsoft</title><link>https://hiltmon.com/blog/2014/02/04/view-on-an-insider-as-ceo-for-microsoft/</link><pubDate>Tue, 04 Feb 2014 20:01:28 -0500</pubDate><guid>https://hiltmon.com/blog/2014/02/04/view-on-an-insider-as-ceo-for-microsoft/</guid><description>&lt;p&gt;Today, Microsoft announced &lt;a href="http://www.microsoft.com/en-us/news/ceo/index.html"&gt;Satya Nadella&lt;/a&gt; as its new CEO, a 22-year veteran of the business and a true Insider. &lt;span class="light"&gt;I wish him the best of luck and success.&lt;/span&gt; But is choosing an Insider as CEO good for a &lt;em&gt;mature&lt;/em&gt; Microsoft or bad?&lt;/p&gt;
&lt;p&gt;I think its a bad call based on documented history of other mature companies and my own selfish (and very positive) wishes for the firm.&lt;/p&gt;
&lt;p&gt;And then there&amp;rsquo;s this, which makes no Outsider sense and means nothing to anyone, from his &lt;a href="http://www.microsoft.com/en-us/news/press/2014/feb14/02-04mail2.aspx"&gt;first letter&lt;/a&gt; to employees:&lt;/p&gt;</description></item><item><title>First they came for...</title><link>https://hiltmon.com/blog/2014/02/01/first-they-came-for-dot-dot-dot/</link><pubDate>Sat, 01 Feb 2014 14:52:23 -0500</pubDate><guid>https://hiltmon.com/blog/2014/02/01/first-they-came-for-dot-dot-dot/</guid><description>&lt;h2 id="a-modern-version"&gt;A Modern Version&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;First they came for the record stores&lt;br/&gt;and I didn&amp;rsquo;t speak out&lt;br/&gt;because I used iTunes online.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Then they came for the bookstores&lt;br/&gt;and I didn&amp;rsquo;t speak out&lt;br/&gt;because I used Kindle online.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Then they came for the technology stores&lt;br/&gt;and I didn&amp;rsquo;t speak out&lt;br/&gt;because I used Amazon online.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Then they came for the grocery stores&lt;br/&gt;and I didn&amp;rsquo;t speak out&lt;br/&gt;because I used FreshDirect online.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Then they came for the restaurants&lt;br/&gt;and I didn&amp;rsquo;t speak out&lt;br/&gt;because I used SeamlessWeb online.&lt;/p&gt;</description></item><item><title>More TextMate 2 Basics</title><link>https://hiltmon.com/blog/2014/01/20/more-textmate-2-basics/</link><pubDate>Mon, 20 Jan 2014 14:07:30 -0500</pubDate><guid>https://hiltmon.com/blog/2014/01/20/more-textmate-2-basics/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2014/01/20/more-textmate-2-basics/images/textmate.png" width="128" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;Previously, I wrote about the &lt;a href="https://hiltmon.com/blog/2013/11/09/textmate-2-basics/"&gt;TextMate 2 Basics&lt;/a&gt; that I use all the time, and I recommend you read &lt;a href="https://hiltmon.com/blog/2013/11/09/textmate-2-basics/"&gt;that&lt;/a&gt; post first. This post follows up with a &lt;em&gt;mish-mash&lt;/em&gt; of more tools, ideas and tricks that I also use surprisingly frequently.&lt;/p&gt;
&lt;h2 id="text-tools"&gt;Text Tools&lt;/h2&gt;
&lt;p&gt;TextMate 2 tries to reduce the number of keystrokes you need to make to generate good code. There are many ways it does this but today I want to talk about &lt;em&gt;auto-pairs&lt;/em&gt; and &lt;em&gt;completions&lt;/em&gt;.&lt;/p&gt;</description></item><item><title>Reminder: Update your Tools</title><link>https://hiltmon.com/blog/2014/01/19/reminder-update-your-tools/</link><pubDate>Sun, 19 Jan 2014 12:06:25 -0500</pubDate><guid>https://hiltmon.com/blog/2014/01/19/reminder-update-your-tools/</guid><description>&lt;p&gt;At the start of every new year, I spend a the time to update all my tools and recompile all my products with them. At the cost of a few hours (or at worst, days) work, I get rid of most the maintenance hassles I faced before I used to do this and gain the benefits of all the new features and performance from updated tools.&lt;/p&gt;
&lt;p&gt;I understand that, for all of us, updating our tools is surprisingly hard. Things that used to work now fail, incompatibilities have to be addressed and it takes time, perceived as unproductive time, to do. And then there is the risk that updating production servers will cause downtime for no valid reason. It&amp;rsquo;s easy to feel that we should wait for the next release, or when we have some mythical down-time, or when we&amp;rsquo;re forced to do so as the versions of our tools become obsolete. And it&amp;rsquo;s hard to justify updating tools when there&amp;rsquo;s real work to be done and no &lt;em&gt;current&lt;/em&gt; perceived benefit in changing tools.&lt;/p&gt;</description></item><item><title>Python: It's a Trap</title><link>https://hiltmon.com/blog/2014/01/04/python-its-a-trap/</link><pubDate>Sat, 04 Jan 2014 14:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2014/01/04/python-its-a-trap/</guid><description>&lt;p&gt;&lt;span class="light"&gt;TL;DR: Python is the best language for quantitative scripting (because of its libraries). But it&amp;rsquo;s a trap. Almost all programmers and libraries require Python 2 when Python 3 is out and way better. &lt;strong&gt;Choosing to use an old language for new project traps us into supporting old languages, libraries and platforms. And that&amp;rsquo;s not smart.&lt;/strong&gt; The intent of this post is to point out this odd stagnation and encourage the migration and adoption of Python 3, or, as it has happened in the past, we&amp;rsquo;ll have to look elsewhere for a solution.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Can't innovate anymore, my ass</title><link>https://hiltmon.com/blog/2013/12/27/cant-innovate-anymore/</link><pubDate>Fri, 27 Dec 2013 09:26:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/12/27/cant-innovate-anymore/</guid><description>&lt;p&gt;Over the past few days I have seen so many references to the Quartz post &lt;a href="http://qz.com/161443/2013-was-a-lost-year-for-tech/"&gt;2013 was a lost year for tech&lt;/a&gt; that it has become a &lt;a href="http://en.wikipedia.org/wiki/Meme"&gt;meme&lt;/a&gt;. &amp;ldquo;Innovation is dead&amp;rdquo;, &amp;ldquo;2013 proves it&amp;rdquo;, &amp;ldquo;RIP Innovation&amp;rdquo;, it screams.&lt;/p&gt;
&lt;p&gt;Rubbish!&lt;/p&gt;
&lt;p&gt;2013 was a great year for innovation in the tech space.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;in·no·vate /ˈinəˌvāt/ verb&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;make changes in something established, esp. by introducing new methods, ideas, or products.&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;
&lt;p&gt;Remember, innovation is not about creating something completely new (that&amp;rsquo;s &lt;em&gt;invention&lt;/em&gt;), it is about making changes to established products that significantly improve their abilities or experience. And we got that in spades in 2013.&lt;/p&gt;</description></item><item><title>Writers: Thank You</title><link>https://hiltmon.com/blog/2013/12/25/writers-thank-you/</link><pubDate>Wed, 25 Dec 2013 12:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/12/25/writers-thank-you/</guid><description>&lt;p&gt;I want to say &lt;em&gt;thank you&lt;/em&gt; to a bunch of writers, to people who do what they do because they love to do it, from an anonymous one that reads and appreciates what they do every day.&lt;/p&gt;
&lt;p&gt;They may never see this, but, in no particular order, a huge &lt;strong&gt;thank you&lt;/strong&gt; from me to you all.&lt;/p&gt;
&lt;h2 id="tech-and-opinions"&gt;Tech and Opinions&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Matt Gemmell&lt;/strong&gt; at &lt;a href="http://mattgemmell.com/"&gt;Matt Gemmell&lt;/a&gt; is owed free drinks at my house forever. He may be well known for his tech, tweets and speech making, but the depth, emotion and soulfulness of his recent writing has touched us more deeply than he knows.&lt;/p&gt;</description></item><item><title>Cannot find File</title><link>https://hiltmon.com/blog/2013/12/24/cannot-find-file/</link><pubDate>Tue, 24 Dec 2013 17:08:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/12/24/cannot-find-file/</guid><description>&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;Can you please send me that file again? I cannot find it&amp;rdquo;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;I&amp;rsquo;ll have to get back to you, I don&amp;rsquo;t know where I saved the file I need.&amp;rdquo;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I hear this every day. Even now, in 2013, more than 20 years after hierarchical file systems became the core and the norm of computing, users still struggle to understand something as simple as knowing the location of their own files in their own computer systems.&lt;/p&gt;</description></item><item><title>Managing Multiple Project's Assembly Notes in One</title><link>https://hiltmon.com/blog/2013/12/07/managing-multiple-projects-assembly-notes-in-one/</link><pubDate>Sat, 07 Dec 2013 13:50:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/12/07/managing-multiple-projects-assembly-notes-in-one/</guid><description>&lt;p&gt;The problem I have is that I regularly need to open a specific set of &lt;a href="https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/"&gt;Markdown&lt;/a&gt; documents scattered all over my file system while I work and have them available at my fingertips. But I need a &lt;em&gt;different&lt;/em&gt; set open when working at home and available the same way. The best solution I have found is to use &lt;a href="https://itunes.apple.com/us/app/bbedit/id404009241?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;BBEdit&lt;/a&gt; projects to manage these document sets. Here&amp;rsquo;s why and how to do it.&lt;/p&gt;</description></item><item><title>The day he walked to freedom</title><link>https://hiltmon.com/blog/2013/12/06/the-day-he-walked-to-freedom/</link><pubDate>Fri, 06 Dec 2013 08:40:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/12/06/the-day-he-walked-to-freedom/</guid><description>&lt;p&gt;I remember it as a clear day. Sunny, not hot, not windy, just crystal clear blue skies. The rumor mill had it that he would be released on that day. It had been building up for a while. But no-one knew for sure.&lt;/p&gt;
&lt;p&gt;I was on campus at the University of Cape Town when it happened. Word spread quickly. He&amp;rsquo;s out. Really out. They &lt;em&gt;actually&lt;/em&gt; let him go. We had no internet or video phones back then, just word. We did not see him walk along that dusty road to freedom until later. But we all just knew. And we knew that he would next be driven to Greenmarket Square, the central square in Cape Town, for all of us to welcome him.&lt;/p&gt;</description></item><item><title>TextMate 2 Basics</title><link>https://hiltmon.com/blog/2013/11/09/textmate-2-basics/</link><pubDate>Sat, 09 Nov 2013 15:00:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/11/09/textmate-2-basics/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/11/09/textmate-2-basics/images/textmate.png" width="128" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;I have been using &lt;a href="http://macromates.com"&gt;TextMate&lt;/a&gt; for years as my primary programmer&amp;rsquo;s editor, but it turns out that I only use a subset of its amazing features. I&amp;rsquo;ve been speaking with users of other awesome programmer&amp;rsquo;s editors and they wanted to know what it is in TextMate that I love so much and keeps me using it.&lt;/p&gt;
&lt;p&gt;So here are the basic parts of TextMate 2 that I use regularly. Maybe you can divine some tips from it.&lt;/p&gt;</description></item><item><title>Merge Asana Projects into OmniFocus</title><link>https://hiltmon.com/blog/2013/11/03/merge-asana-projects-into-omnifocus/</link><pubDate>Sun, 03 Nov 2013 17:51:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/11/03/merge-asana-projects-into-omnifocus/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/11/03/merge-asana-projects-into-omnifocus/images/asana_to_omnifocus.png" width="363" height="130"&gt;
&lt;/figure&gt;

&lt;p&gt;&lt;strong&gt;Note: Updated the script, see &lt;a href="https://hiltmon.com/blog/2015/03/01/merge-asana-projects-into-omnifocus-updated/"&gt;Merge Asana Projects Into OmniFocus Updated&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I use &lt;a href="https://itunes.apple.com/us/app/omnifocus/id402835630?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;OmniFocus&lt;/a&gt; to manage my personal tasks and activities, but my company uses &lt;a href="https://asana.com/"&gt;Asana&lt;/a&gt; to manage Project tasks and activities amongst the team. I am so used to using OmniFocus that I often forget to check or update Asana, and thus miss tasks assigned to me or progress by the team.&lt;/p&gt;
&lt;p&gt;Wouldn&amp;rsquo;t it be nice if the projects and tasks in Asana also appeared in OmniFocus? And were updated when they changed in Asana?&lt;/p&gt;</description></item><item><title>Apples and Rotten Oranges</title><link>https://hiltmon.com/blog/2013/10/23/apples-and-rotten-oranges/</link><pubDate>Wed, 23 Oct 2013 21:41:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/10/23/apples-and-rotten-oranges/</guid><description>&lt;p&gt;So Frank Shaw, Corporate Vice President of Communications at Microsoft wrote a thing called &lt;a href="http://blogs.technet.com/b/microsoft_blog/archive/2013/10/23/apples-and-oranges.aspx"&gt;Apples and Oranges&lt;/a&gt; in response to the Apple Laptop, iPad, iWork, iLife and Mac Pro event yesterday, and sadly, it got a lot of coverage.&lt;/p&gt;
&lt;p&gt;So I put my snark hat on and decided to throw darts at his piece (almost completely reproduced here). &lt;em&gt;The text in grey are his words, the rest is me attempting to be humorous, ridiculous or just plain snarky. Take it all with a grain or two of salt. This is the Internet after all&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Sanity Saver: Detox expands t.co links</title><link>https://hiltmon.com/blog/2013/10/14/detox-expands-t-dot-co-links/</link><pubDate>Mon, 14 Oct 2013 14:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/10/14/detox-expands-t-dot-co-links/</guid><description>&lt;p&gt;If you use Twitter and click on &lt;code&gt;t.co&lt;/code&gt; links, or use Google search and follow their links, chances are your browser history is a mess of &lt;code&gt;t.co/C*R@A%P&amp;amp;&lt;/code&gt; or &lt;code&gt;google.com/S$H@I*T#&lt;/code&gt;. Which means there is no way to use your browser history to find that page you just saw (or saw a few days ago) and accidentally closed. And autocomplete does not work either.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.shauninman.com/blog"&gt;Shaun Inman&lt;/a&gt; (of &lt;a href="http://haveamint.com"&gt;Mint&lt;/a&gt; and &lt;a href="https://itunes.apple.com/us/app/the-last-rocket/id429747672?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;The Last Rocket&lt;/a&gt; fame) created a Safari extension called &lt;a href="http://www.shauninman.com/archive/2012/01/19/detox"&gt;Detox&lt;/a&gt; a while ago that automatically expands those pesky &lt;code&gt;t.co&lt;/code&gt; links and funky Google links back into their original URLs and titles. Making your browser history and autocomplete useable again.&lt;/p&gt;</description></item><item><title>Rails Tricks - Sharing the Model</title><link>https://hiltmon.com/blog/2013/10/14/rails-tricks-sharing-the-model/</link><pubDate>Mon, 14 Oct 2013 13:58:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/10/14/rails-tricks-sharing-the-model/</guid><description>&lt;p&gt;I am building a series of Rails applications for different users and use cases, but they all hang off the &lt;em&gt;same&lt;/em&gt; database schema. Using canonical Rails, that means a single, massive rails app with a bunch of controllers, a heap of views and a complex security model.&lt;/p&gt;
&lt;p&gt;I prefer small, focussed apps, so I decided to share the model instead. Here&amp;rsquo;s how it works.&lt;/p&gt;
&lt;h2 id="sharing-the-model"&gt;Sharing the model&lt;/h2&gt;
&lt;p&gt;Lets call the the first rails project &lt;em&gt;Master&lt;/em&gt;. Generate it as usual and create a few models and migrations to set up the database. In my case, the &lt;em&gt;Master&lt;/em&gt; rails application is used to do nothing more than import, export and allow users to view the data in the model&amp;rsquo;s database tables.&lt;/p&gt;</description></item><item><title>Why Microsoft Word must Die</title><link>https://hiltmon.com/blog/2013/10/13/why-microsoft-word-must-die/</link><pubDate>Sun, 13 Oct 2013 09:57:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/10/13/why-microsoft-word-must-die/</guid><description>&lt;p&gt;Charles Stross, yes, &lt;em&gt;that&lt;/em&gt; Charles Stross writes in &lt;a href="http://www.antipope.org/charlie/blog-static/2013/10/why-microsoft-word-must-die.html"&gt;Why Microsoft Word must Die&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The .doc file format was also obfuscated, deliberately or intentionally: rather than a parseable document containing formatting and macro metadata, it was effectively a dump of the in-memory data structures used by word, with pointers to the subroutines that provided formatting or macro support.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;He focuses on the usability issues, the compatibility issues, the inconstancies and the forced need to upgrade just to read other people&amp;rsquo;s documents - and the idiocy of using this incomprehensible, short lived format in publishing.&lt;/p&gt;</description></item><item><title>Using Mac Navigation Keys in Visual Studio</title><link>https://hiltmon.com/blog/2013/10/10/using-mac-navigation-keys-in-visual-studio/</link><pubDate>Thu, 10 Oct 2013 12:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/10/10/using-mac-navigation-keys-in-visual-studio/</guid><description>&lt;p&gt;As a developer, sometimes I am forced to use Visual Studio to code for Windows. Just like a lot of Mac developers, I therefore run Visual Studio in a &lt;a href="http://www.vmware.com/products/fusion/"&gt;VMWare Fusion&lt;/a&gt; VM. And it works great.&lt;/p&gt;
&lt;p&gt;Except it drives me nuts that keyboard navigation in the Visual Studio editor does not use the same keys as on the Mac. Which means I am constantly seeing the window move around when I am trying to get to a line end. And even if I did remap my brain to Visual Studio&amp;rsquo;s keys, it assumes I have a &lt;code&gt;Home&lt;/code&gt; and an &lt;code&gt;End&lt;/code&gt; key to use, which the Mac mini wireless keyboard and laptops do not have.&lt;/p&gt;</description></item><item><title>Homebrew Happiness</title><link>https://hiltmon.com/blog/2013/09/29/homebrew-happiness/</link><pubDate>Sun, 29 Sep 2013 12:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/09/29/homebrew-happiness/</guid><description>&lt;p&gt;&lt;span class="light"&gt;&lt;em&gt;If you are expecting an article about beer, this is not it. This is about the best product that helps install and manage the Open Source software on the Macintosh computer that Apple decided not to include in OS X.&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;In short, I use a lot of Open Source products for work, like &lt;a href="http://www.postgresql.org"&gt;postgresql&lt;/a&gt;, &lt;a href="http://redis.io"&gt;redis&lt;/a&gt;, &lt;a href="http://www.mongodb.org"&gt;mongo&lt;/a&gt;, &lt;a href="http://nodejs.org"&gt;node&lt;/a&gt;, &lt;a href="http://www.boost.org"&gt;boost&lt;/a&gt; libraries and &lt;a href="https://github.com/sstephenson/rbenv"&gt;rbenv&lt;/a&gt;. Installing and managing them natively on a Mac was a pain. &lt;a href="http://brew.sh"&gt;Homebrew&lt;/a&gt; makes installing and maintaining these easy, safe and pleasant without messing up my system. &lt;span class="light"&gt;To skip the fascinating introduction and get to the information about the product directly, click &lt;a href="#hh"&gt;Take me to Homebrew Happiness&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>User Experience Shmecsperience</title><link>https://hiltmon.com/blog/2013/09/28/user-experience-shmecsperience/</link><pubDate>Sat, 28 Sep 2013 14:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/09/28/user-experience-shmecsperience/</guid><description>&lt;p&gt;We designers of software spend a lot of our time thinking about user experience. We try to eliminate complexity, simplify interactions and to create delightful experiences.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Reality:&lt;/strong&gt; &lt;em&gt;Most users don&amp;rsquo;t care about experience.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;We, who make and live in software, value such software, value our time and seek out such experiences. We understand how hard it is to make them. We take the time to learn products and find ways to integrate them into our lives.&lt;/p&gt;</description></item><item><title>SonicWall NetExtender for OS X Mavericks</title><link>https://hiltmon.com/blog/2013/09/28/sonicwall-netextender-for-os-x-mavericks/</link><pubDate>Sat, 28 Sep 2013 12:22:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/09/28/sonicwall-netextender-for-os-x-mavericks/</guid><description>&lt;p&gt;&lt;strong&gt;UPDATE:&lt;/strong&gt; 10.9 or above users, use the &lt;a href="https://itunes.apple.com/us/app/sonicwall-mobile-connect/id822514576?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Sonicwall Mobile Connect&lt;/a&gt; app on the Mac App Store (or learn more at &lt;a href="https://hiltmon.com/blog/2014/07/07/sonicwall-mobile-connect-for-os-x-mavericks/"&gt;Sonicwall Mobile Connect for OS X Mavericks&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;&lt;em&gt;TL;DR: Download from &lt;a href="https://sslvpn.demo.sonicwall.com/cgi-bin/welcome"&gt;https://sslvpn.demo.sonicwall.com/cgi-bin/welcome&lt;/a&gt;. Follow the admin login instructions, then look for NetExtender / Client Downloads.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UPDATE:&lt;/strong&gt; Saved a copy of the DMG at &lt;a href="https://hiltmon.com/files/NetExtender-7.5.757.dmg"&gt;&lt;a href="https://hiltmon.com/files/NetExtender-7.5.757.dmg"&gt;https://hiltmon.com/files/NetExtender-7.5.757.dmg&lt;/a&gt;&lt;/a&gt; as the normal login seems to be disabled. (WARNING: Link will eventually get stale).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UPDATE 2:&lt;/strong&gt; Your company can also register and get the latest versions from &lt;a href="https://www.mysonicwall.com"&gt;MySonicwall.com&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Setup ODBC for R on OS X</title><link>https://hiltmon.com/blog/2013/09/18/setup-odbc-for-r-on-os-x/</link><pubDate>Wed, 18 Sep 2013 12:59:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/09/18/setup-odbc-for-r-on-os-x/</guid><description>&lt;p&gt;&lt;strong&gt;Hi Folks, Please do not follow this advice, its an old article that somehow has stayed way past its welcome in the search engines. Use the &lt;code&gt;RPostgresSQL&lt;/code&gt; package that connects directly using the C drivers, its a lot faster to set up and run. ~Hilton.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;At work, we use &lt;a href="http://www.r-project.org"&gt;R&lt;/a&gt; to analyze data and calculate risk. The data is in a &lt;a href="http://www.postgresql.org"&gt;PostgreSQL&lt;/a&gt; database, so we use the &lt;a href="http://cran.r-project.org/web/packages/RODBC/index.html"&gt;RODBC&lt;/a&gt; package to access the database from &lt;a href="http://www.r-project.org"&gt;R&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Common Misconceptions about the App Store</title><link>https://hiltmon.com/blog/2013/09/16/common-misconceptions-about-the-app-store/</link><pubDate>Mon, 16 Sep 2013 13:17:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/09/16/common-misconceptions-about-the-app-store/</guid><description>&lt;p&gt;Over the past few days, new and old friends have been popping up to mention they purchased &lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; and were surprised that I did not know that they had done so.&lt;/p&gt;
&lt;p&gt;It turns out that this is but one of several misconceptions about the Apple App Store. So let me clarify some for you:&lt;/p&gt;
&lt;p&gt;TL;DR&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;No access to buyer’s information&lt;/li&gt;
&lt;li&gt;No access to reviews&lt;/li&gt;
&lt;li&gt;No Trials and Upgrades&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="we-do-not-get-buyers-information-from-the-apple"&gt;We do not get buyers information from the Apple&lt;/h2&gt;
&lt;p&gt;When you purchase an app from the App Store, Apple handles all the licensing, payment and download for us. All we get to know from Apple is that&lt;/p&gt;</description></item><item><title>A Reliable Script File Layout</title><link>https://hiltmon.com/blog/2013/09/14/a-reliable-script-file-layout/</link><pubDate>Sat, 14 Sep 2013 14:44:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/09/14/a-reliable-script-file-layout/</guid><description>&lt;p&gt;I write a surfeit&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; of Ruby scripts that I use every day at work, everything from sending, transforming and retrieving files to monitoring systems to glueing platforms together. Keeping these under control, forgettable&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt; and maintainable is very important to me. So over the past few years, I have migrated to a file layout and programming pattern that enables me to spin these up quickly, forget about them and yet get back and maintain them when things change.&lt;/p&gt;</description></item><item><title>Not the Clicky Keyboard</title><link>https://hiltmon.com/blog/2013/09/05/not-the-clicky-keyboard/</link><pubDate>Thu, 05 Sep 2013 20:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/09/05/not-the-clicky-keyboard/</guid><description>&lt;p&gt;It&amp;rsquo;s pretty popular these days for popular bloggers, writers and programmers to use mechanical-switch, or clicky, old-school keyboards like the &lt;a href="http://www.daskeyboard.com/product/model-s-professional-for-mac/"&gt;DAS Keyboard&lt;/a&gt;, old IBM keyboards or the original Apple Extended Keyboard. So much so that Jeff &amp;ldquo;Coding Horror&amp;rdquo; Attwood went as far as to design the &lt;a href="http://codekeyboards.com"&gt;CODE Keyboard&lt;/a&gt; with Weyman Kwong of WASD Keyboards&lt;span class="light"&gt; which looks droolworthy&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;To be fair, these keyboards are amazingly good, reliable, feel great and are the best you can get. I really love them too. All the promises made in their advertising regarding &lt;em&gt;your&lt;/em&gt; performance and pleasure are true.&lt;/p&gt;</description></item><item><title>BBEdit lives long and prospers</title><link>https://hiltmon.com/blog/2013/09/02/bbedit-lives-long-and-prospers/</link><pubDate>Mon, 02 Sep 2013 09:16:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/09/02/bbedit-lives-long-and-prospers/</guid><description>&lt;p&gt;On Twitter today:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Celebrating back to school? Most of today&amp;rsquo;s undergraduates have never lived in a world without BBEdit.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;@bbedit&lt;/strong&gt; &lt;a href="https://twitter.com/bbedit/status/374280198336028672"&gt;https://twitter.com/bbedit/status/374280198336028672&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/09/02/bbedit-lives-long-and-prospers/images/bbedit.png" width="256" height="256"&gt;
&lt;/figure&gt;

&lt;p&gt;All our attention is focussed on the race-to-the-bottom, in-app purchase rip-offs or the current fad app, &lt;em&gt;but we forget that software, well-built and well-maintained software, has no shelf life.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I &lt;em&gt;still&lt;/em&gt; use &lt;a href="http://www.barebones.com/products/bbedit/"&gt;BBEdit&lt;/a&gt; every day. It &lt;em&gt;still&lt;/em&gt; doesn&amp;rsquo;t suck!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Kudos to Rich Siegel (&lt;a href="https://twitter.com/siegel"&gt;@siegel&lt;/a&gt;) and his team at &lt;a href="http://www.barebones.com"&gt;BareBones&lt;/a&gt; for consistently making such an amazing and useful application.&lt;/p&gt;</description></item><item><title>Intentional Complexity</title><link>https://hiltmon.com/blog/2013/08/24/intentional-complexity/</link><pubDate>Sat, 24 Aug 2013 15:21:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/08/24/intentional-complexity/</guid><description>&lt;blockquote&gt;
&lt;p&gt;John Duns Scotus&amp;rsquo; (1265-1308) book Ordinatio: &amp;ldquo;Pluralitas non est ponenda sine necessitate&amp;rdquo;, i.e., &amp;ldquo;Plurality is not to be posited without necessity&amp;rdquo;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;William of Ockham&amp;rsquo;s Razor, modern science version: &amp;ldquo;The simplest solution is often the best.&amp;rdquo;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;em&gt;Intentional Complexity&lt;/em&gt; is a manufactured situation where product configuration and operation are intentionally made difficult. It occurs when a software vendor exposes all the innards of their products to systems operators and end users.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s great for marketing to Managers and sales to CTO&amp;rsquo;s, but it&amp;rsquo;s rubbish for operations and business. In this post I will talk about what this is, why this is, how it comes to be, how this is bad for you and the fleeting signs of improvement that I am seeing.&lt;/p&gt;</description></item><item><title>ChronoSync Back to My Mac</title><link>https://hiltmon.com/blog/2013/08/15/chronosync-back-to-my-mac/</link><pubDate>Thu, 15 Aug 2013 22:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/08/15/chronosync-back-to-my-mac/</guid><description>&lt;p&gt;&lt;em&gt;TL;DR: You can use &lt;a href="http://www.econtechnologies.com/pages/cs/chrono_overview.html"&gt;ChronoSync&lt;/a&gt; to access a remote &lt;a href="http://www.econtechnologies.com/pages/ca/agent_overview.html"&gt;ChronoAgent&lt;/a&gt; if &lt;a href="http://www.apple.com/support/icloud/back-to-my-mac/"&gt;Back to My Mac&lt;/a&gt; is turned on for both computers. Which means you can sync from anywhere!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I have been using the excellent &lt;a href="http://www.econtechnologies.com/pages/cs/chrono_overview.html"&gt;ChronoSync&lt;/a&gt; for years to ensure that the &lt;em&gt;Documents&lt;/em&gt; and &lt;em&gt;Projects&lt;/em&gt; folders on my personal laptop are kept in sync, and therefore backed up, with my home OS X server.&lt;/p&gt;
&lt;p&gt;These days I have two laptops, the personal one that lives at home and is used for &lt;a href="https://noverse.com"&gt;Noverse&lt;/a&gt; work, and the work one for my day job at the fund. But sometimes when a Noverse Client calls, I&amp;rsquo;m at the office and do not have access to my personal laptop which contains &lt;em&gt;their&lt;/em&gt; software and files.&lt;/p&gt;</description></item><item><title>The Little Touches</title><link>https://hiltmon.com/blog/2013/08/11/the-little-touches/</link><pubDate>Sun, 11 Aug 2013 15:42:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/08/11/the-little-touches/</guid><description>&lt;p&gt;&lt;strong&gt;It&amp;rsquo;s the &lt;em&gt;little touches&lt;/em&gt; that turn ordinary products into great products.&lt;/strong&gt;&lt;/p&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/08/11/the-little-touches/images/power2000.jpg" width="154" height="200"&gt;
&lt;/figure&gt;

&lt;p&gt;For years I have been using Power2000 NiMH batteries and their chargers that I get in Japan for use in my camera&amp;rsquo;s Flash. I use these because they really hold a charge and can handle the burst heat from a Nikon flash unit. And they store a lot of energy so they keep on flashing.&lt;/p&gt;
&lt;p&gt;So when I moved to an &lt;a href="http://www.apple.com/keyboard/"&gt;Apple Wireless Keyboard&lt;/a&gt; and &lt;a href="http://www.apple.com/magictrackpad/"&gt;Magic Trackpad&lt;/a&gt;, I naturally pulled one of these sets out to use. I loaded a fully charged set of 4 and off I went.&lt;/p&gt;</description></item><item><title>Gist TextMate 2 Bundle Updates</title><link>https://hiltmon.com/blog/2013/08/11/gist-textmate-2-bundle-updates/</link><pubDate>Sun, 11 Aug 2013 15:31:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/08/11/gist-textmate-2-bundle-updates/</guid><description>&lt;p&gt;New updates to the &lt;a href="https://github.com/hiltmon/Gist.tmbundle"&gt;Gist.tmbundle&lt;/a&gt; for TextMate 2:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Changed the launch key from &lt;code&gt;⌃⌘G&lt;/code&gt; to &lt;code&gt;⇧⌃⌘J&lt;/code&gt; as it interferes with the Find and Replace All (the TextMate 2 defaults changed)&lt;/li&gt;
&lt;li&gt;Am now having GitHub guess the language of a &amp;ldquo;Gist from Selection&amp;rdquo; by taking the file extension from the source file you copied from and using that in the pushed file name. Was hoping to use the scope language but could not figure how to get that and map the right extensions for GitHub. This works though.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The update should flow through the TextMate 2 updates process in due time.&lt;/p&gt;</description></item><item><title>Unreasonable</title><link>https://hiltmon.com/blog/2013/08/04/unreasonable/</link><pubDate>Sun, 04 Aug 2013 14:06:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/08/04/unreasonable/</guid><description>&lt;p&gt;There are two ways to deal with &amp;ldquo;the ways things are&amp;rdquo; in an environment where one &lt;em&gt;can&lt;/em&gt; change them:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Find some way to justify or meekly accept them, however twisted and delusional they may be; and try to get on with things within those perceived constraints. &lt;strong&gt;They call this being reasonable&lt;/strong&gt; as if it were a good thing.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Or find a better, considered, simpler way for things, which requires effort, argument, time, and sometimes blood; enabling one to actually get on with things with fewer constraints. &lt;strong&gt;They call this being unreasonable&lt;/strong&gt; is if it were a bad thing.&lt;/p&gt;</description></item><item><title>Quick Process Search</title><link>https://hiltmon.com/blog/2013/07/30/quick-process-search/</link><pubDate>Tue, 30 Jul 2013 19:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/30/quick-process-search/</guid><description>&lt;p&gt;I am forever starting and running background UNIX tasks, either manually or via &lt;code&gt;cron&lt;/code&gt; jobs. And I am forever checking to see if they are running or not.&lt;/p&gt;
&lt;p&gt;The usual command &lt;em&gt;I used to use&lt;/em&gt; see if a process was running is&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ps ax | grep bash
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Where &lt;code&gt;bash&lt;/code&gt; is the process that may or may not be running. It gives (headers added):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt; PID TTY TIME CMD
 411 ttys000 0:00.04 -/bin/bash
 615 ttys001 0:00.04 -/bin/bash
 773 ttys001 0:00.00 grep bash
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;There are some issues with this:&lt;/p&gt;</description></item><item><title>Laravel 4 Blade TextMate Bundle</title><link>https://hiltmon.com/blog/2013/07/28/laravel-4-textmate-bundle/</link><pubDate>Sun, 28 Jul 2013 11:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/28/laravel-4-textmate-bundle/</guid><description>&lt;p&gt;In the &lt;a href="https://hiltmon.com/blog/2013/04/15/my-textmate-2-setup/#comment-973665378"&gt;comments&lt;/a&gt; of &lt;a href="https://hiltmon.com/blog/2013/04/15/my-textmate-2-setup/#comment-973665378"&gt;My TextMate 2 Setup&lt;/a&gt;, reader Bob Rockerfeller wondered if the &lt;a href="https://github.com/Medalink/Laravel-Blade"&gt;Sublime Text Laravel 4 Blade bundle&lt;/a&gt; could be ported to TextMate 2. So I did.&lt;/p&gt;
&lt;p&gt;It was easy because Sublime Text uses TextMate&amp;rsquo;s &lt;code&gt;.tmLanguage&lt;/code&gt; file format for syntax highlighting. I just created a new bundle using the Bundle Editor, created a new Syntax file and pasted in Eric Percifield&amp;rsquo;s (&lt;a href="https://twitter.com/medalink7"&gt;@medalink7&lt;/a&gt;) code. Then tested it with the example in his repo.&lt;/p&gt;</description></item><item><title>The Work Computer Software Loadout</title><link>https://hiltmon.com/blog/2013/07/19/the-work-computer-software-loadout/</link><pubDate>Fri, 19 Jul 2013 07:23:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/19/the-work-computer-software-loadout/</guid><description>&lt;p&gt;I got &lt;a href="https://hiltmon.com/blog/2013/06/25/back-in-the-saddle/"&gt;Back in the Saddle&lt;/a&gt; over three weeks ago and purchased a new Haswell 13-inch MacBook Air as my primary work computer. I plan to write more about it after at least 30 days use. But with the new computer, my plan was to only install that which I needed &lt;em&gt;as and when&lt;/em&gt; I needed it. It turns out, I use a lot of different tools for work activities.&lt;/p&gt;
&lt;p&gt;&lt;span class="light"&gt;Note: No affiliate links were hurt in the creation of this post, all links are to the vendor&amp;rsquo;s sites, so it&amp;rsquo;s safe to click through to learn more about each product.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Fast SSH Windows with iTerm 2</title><link>https://hiltmon.com/blog/2013/07/18/fast-ssh-windows-with-iterm-2/</link><pubDate>Thu, 18 Jul 2013 22:14:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/18/fast-ssh-windows-with-iterm-2/</guid><description>&lt;p&gt;I have a bunch of Linux boxes that I need to access via SSH, whether to install things, start or stop processes or browse log files.&lt;/p&gt;
&lt;p&gt;But it is a pain to have to launch a new terminal window and type in the whole SSH command line:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ ssh hiltmon@servername.domainname.local
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Yep, I am that lazy. Or really, I do this so often I needed a faster way to do this.&lt;/p&gt;</description></item><item><title>Xcode 4 Code Completion for External Build Projects</title><link>https://hiltmon.com/blog/2013/07/07/xcode-4-code-completion-for-external-build-projects/</link><pubDate>Sun, 07 Jul 2013 21:53:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/07/xcode-4-code-completion-for-external-build-projects/</guid><description>&lt;p&gt;In &lt;a href="https://hiltmon.com/blog/2013/07/05/xcode-and-the-simple-c-plus-plus-project-structure/"&gt;Xcode and the Simple C++ Project Structure&lt;/a&gt;, I showed how to set up Xcode as your IDE for the &lt;a href="https://hiltmon.com/blog/2013/07/03/a-simple-c-plus-plus-project-structure/"&gt;Simple C++ Project Structure&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;But one thing does not work, Code Sense. Xcode does not provide code completion or jump to definition for these projects.&lt;/p&gt;
&lt;p&gt;Wouldn&amp;rsquo;t it be nice if we could enable this too.&lt;/p&gt;
&lt;p&gt;The solution is simple, you need to use the Xcode build system to create the indices that the IDE uses. But since we are working on cross-platform Makefile systems, we do not want to switch compilers.&lt;/p&gt;</description></item><item><title>Good Tools Change</title><link>https://hiltmon.com/blog/2013/07/07/good-tools-change/</link><pubDate>Sun, 07 Jul 2013 11:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/07/good-tools-change/</guid><description>&lt;p&gt;In &lt;a href="http://www.b-list.org/weblog/2013/apr/05/good-tools/"&gt;Good Tools&lt;/a&gt;, James Bennett writes a compelling article on how his investment in learning his most used tool, emacs, has paid huge dividends in his productivity for years and years. I recommend you read it, his arguments are cogent and his points well founded and well made. He writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Good tools, for programmers, are investments: you give them your time and your brain up-front, and then they pay dividends for years on end. I’m writing this post in GNU Emacs inside a terminal window, for example, and GNU Emacs inside a terminal window has been my day-to-day editor for over a decade now.&lt;/p&gt;</description></item><item><title>Xcode and the Simple C++ Project Structure</title><link>https://hiltmon.com/blog/2013/07/05/xcode-and-the-simple-c-plus-plus-project-structure/</link><pubDate>Fri, 05 Jul 2013 11:31:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/05/xcode-and-the-simple-c-plus-plus-project-structure/</guid><description>&lt;p&gt;In a previous post, I talked about a &lt;a href="https://hiltmon.com/blog/2013/07/03/a-simple-c-plus-plus-project-structure/"&gt;A Simple C++ Project Structure&lt;/a&gt; that I am using to create a bunch of high-speed daemons for work.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s been fun using TextMate 2 and a Terminal to &lt;code&gt;make&lt;/code&gt; and run the project, but now that I am getting to the meat of the coding, I&amp;rsquo;d prefer to use an IDE to help me navigate and debug the code.&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s how to set up Xcode 4 on the Mac to compile using our Makefile and run/debug the application.&lt;/p&gt;</description></item><item><title>Using the Spike Folder</title><link>https://hiltmon.com/blog/2013/07/04/using-the-spike-folder/</link><pubDate>Thu, 04 Jul 2013 17:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/04/using-the-spike-folder/</guid><description>&lt;p&gt;In yesterday&amp;rsquo;s post &lt;a href="https://hiltmon.com/blog/2013/07/03/a-simple-c-plus-plus-project-structure/"&gt;A Simple C++ Project Structure&lt;/a&gt;, I mentioned the &lt;code&gt;spike&lt;/code&gt; folder. In today&amp;rsquo;s post, I&amp;rsquo;ll write more about how I use it.&lt;/p&gt;
&lt;p&gt;By the way, I have previously written about &lt;a href="https://hiltmon.com/blog/2012/04/06/spike-solutions/"&gt;spike solutions&lt;/a&gt;, wherein I create solutions for the bigger technical problems at the start of a project to be sure they are achievable. &lt;em&gt;This is different.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;In this case, being back in C++ and rusty as an old door hinge, I also needed to create and test out snippets of code I &lt;em&gt;could&lt;/em&gt; be using without having to &lt;code&gt;make&lt;/code&gt; and run the entire product. So I create spike &lt;code&gt;.cpp&lt;/code&gt; files in the &lt;code&gt;spike&lt;/code&gt; folder to try things out.&lt;/p&gt;</description></item><item><title>RIP Doug Engelbart</title><link>https://hiltmon.com/blog/2013/07/04/rip-doug-engelbart/</link><pubDate>Thu, 04 Jul 2013 15:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/04/rip-doug-engelbart/</guid><description>&lt;p&gt;Doug Engelbart passed away last night at age 88. I remember him as one of the names behind the beginnings of modern computers, inventing the mouse, hypertext, video conferencing and collaboration. But these were not the ends of his contributions, these were the &lt;em&gt;means&lt;/em&gt; by which he tried to achieve &lt;a href="http://www.dougengelbart.org/pubs/augment-3906.html"&gt;his intent&lt;/a&gt;, to augment human intellect.&lt;/p&gt;
&lt;p&gt;Too bad we use his inventions for Facebook, Twitter, Netflix, LOLCats and flame wars; we &lt;em&gt;degrade&lt;/em&gt; human intellect.&lt;/p&gt;</description></item><item><title>A Simple C++ Project Structure</title><link>https://hiltmon.com/blog/2013/07/03/a-simple-c-plus-plus-project-structure/</link><pubDate>Wed, 03 Jul 2013 22:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/03/a-simple-c-plus-plus-project-structure/</guid><description>&lt;p&gt;One of the things I need in my new job is a bunch of blazingly fast &lt;a href="http://en.wikipedia.org/wiki/Daemon_(computing)"&gt;daemons&lt;/a&gt; to capture market information and trade data. I prototyped them in Ruby to see what comes down the line, but &lt;strong&gt;I have the need, the need for speed.&lt;/strong&gt; Which means I need a UNIX C or C++ framework.&lt;/p&gt;
&lt;p&gt;So I went old-school. Retro even. Plain old C++. &lt;a href="https://hiltmon.com/blog/2013/01/14/back-to-textmate-2/"&gt;My favorite programmer&amp;rsquo;s editor&lt;/a&gt;. And the good old terminal, er, &lt;a href="https://hiltmon.com/blog/2013/02/13/make-iterm-2-more-mac-like/"&gt;iTerm 2, just Mac-like&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Keep Building</title><link>https://hiltmon.com/blog/2013/07/03/keep-building/</link><pubDate>Wed, 03 Jul 2013 20:18:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/07/03/keep-building/</guid><description>&lt;p&gt;Marco Arment (&lt;a href="http://twitter.com/marcoarment"&gt;@marco&lt;/a&gt;) on his blog in &lt;a href="http://www.marco.org/2013/07/03/lockdown"&gt;Lockdown&lt;/a&gt;, writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;We need to keep pushing forward without them, and do what we’ve always done before: route around the obstructions and maintain what’s great about the web. Keep building and supporting new tools, technologies, and platforms to empower independence, interoperability, and web property ownership.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The context is how the big internet companies like Facebook, Twitter and Google have locked down the open internet, and that we need to overcome their new barriers and keep building so that we can keep the great internet we know and love.&lt;/p&gt;</description></item><item><title>Back in the Saddle</title><link>https://hiltmon.com/blog/2013/06/25/back-in-the-saddle/</link><pubDate>Tue, 25 Jun 2013 22:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/06/25/back-in-the-saddle/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/06/25/back-in-the-saddle/images/handshake.jpg" width="125" height="100"&gt;
&lt;/figure&gt;

&lt;p&gt;&lt;em&gt;TL;DR: I got a job! Gonna keep writing though.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;As of this week, I&amp;rsquo;m &lt;em&gt;back in the saddle&lt;/em&gt; in the finance industry, designing and developing leading edge platforms and systems for a new asset manager, my favorite kind of business. The challenges in the new firm are new to me and epic. And I love a good challenge.&lt;/p&gt;
&lt;p&gt;How does this affect&amp;hellip;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;My current consulting customers?&lt;/strong&gt; Nothing changes, all your projects are in support and the support levels will continue unaffected. I will not, however, be taking on new consulting engagements.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;My blog?&lt;/strong&gt; I &lt;em&gt;love&lt;/em&gt; writing, and will continue to spend evenings and weekends writing and hopefully improving my craft. Actually, I think this blog may get even &lt;em&gt;more&lt;/em&gt; geeky as I am using some very cool, modern open-source products and will likely &lt;em&gt;nerd&lt;/em&gt; all over them and &lt;em&gt;just have to&lt;/em&gt; share.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;My products?&lt;/strong&gt; Of course, they too will be supported and upgraded as needed. &lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; will get an iOS 7 facelift, and Kifu is already rock solid.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I have enjoyed the past few years being an indie consultant (&lt;span class="light"&gt;other than working for a royal &lt;em&gt;pain-in-the-arse&lt;/em&gt; &amp;ndash; oh, wait, um, that&amp;rsquo;s me!&lt;/span&gt;) and delivering some amazing products to a bunch of wonderful customers. It has enabled me to become proficient an a whole bunch of new technologies, be exposed to new industries and processes, face and defeat untold challenges, and to make a lot of new friends like you.&lt;/p&gt;</description></item><item><title>Pinbrowser for Pinboard Updated</title><link>https://hiltmon.com/blog/2013/06/19/pinbrowser-updated/</link><pubDate>Wed, 19 Jun 2013 21:09:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/06/19/pinbrowser-updated/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/06/19/pinbrowser-updated/images/Pinbrowser-for-Pinboard.png" width="128" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;I just downloaded the updated &lt;a href="http://www.pinbrowser.co"&gt;Pinbrowser for Pinboard&lt;/a&gt; from the &lt;a href="https://itunes.apple.com/us/app/pinbrowser-for-pinboard/id611736066?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;App Store&lt;/a&gt;, an iOS app by Mikael Konutgan (&lt;a href="http://twitter.com/mkonutgan"&gt;@mkonutgan&lt;/a&gt;), and it just got a whole lot better.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://pinboard.in"&gt;Pinboard&lt;/a&gt; is a &lt;em&gt;paid for&lt;/em&gt; bookmarking site that focuses on speed, utility and longevity (and anti-socialness!). Pinbrowser is an iPhone and iPad application to access your Pinboard, other&amp;rsquo;s bookmarks (making it more social) and the all famous &lt;a href="https://pinboard.in/popular/"&gt;popular bookmarks list&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s the social aspect that attracted me to the product in the first place. I love to see what other people I follow on Twitter and App.Net are finding on the Internet in their travels, and the ability to browse their Pinboard lists is the &lt;em&gt;stand-out&lt;/em&gt; feature of &lt;a href="https://itunes.apple.com/us/app/pinbrowser-for-pinboard/id611736066?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Pinbrowser&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>WWDC 2013 Post-Game Review</title><link>https://hiltmon.com/blog/2013/06/15/wwdc-2013-post-game-review/</link><pubDate>Sat, 15 Jun 2013 12:22:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/06/15/wwdc-2013-post-game-review/</guid><description>&lt;p&gt;Just under a week ago, Tim Cook walked out on stage to present the keynote at WWDC 2013 (&lt;a href="http://www.apple.com/apple-events/june-2013/"&gt;Video here&lt;/a&gt;). It was an astounding success. I think Apple has become Tim Cook&amp;rsquo;s Apple, and the products announced are living proof of that.&lt;/p&gt;
&lt;p&gt;After letting them percolate for a few days, here are my impressions of what was announced.&lt;/p&gt;</description></item><item><title>Accessing SQL Server from OS X</title><link>https://hiltmon.com/blog/2013/06/09/accessing-sql-server-from-os-x/</link><pubDate>Sun, 09 Jun 2013 10:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/06/09/accessing-sql-server-from-os-x/</guid><description>&lt;p&gt;Every once in a while I need to access a Microsoft SQL Server database from my Mac, usually to create a data migration script. In the past I used a &lt;a href="http://www.actualtech.com"&gt;commercial ODBC driver&lt;/a&gt;. But ODBC on OS X was deprecated ages ago.&lt;/p&gt;
&lt;p&gt;In this post, I&amp;rsquo;ll talk about my current stack for accessing SQL Server databases via Ruby and Python and how to set it up. &lt;span class="light"&gt;Note that I do not use &lt;a href="http://mxcl.github.io/homebrew/"&gt;homebrew&lt;/a&gt;, so these are all native installs.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Horizons</title><link>https://hiltmon.com/blog/2013/06/06/horizons/</link><pubDate>Thu, 06 Jun 2013 18:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/06/06/horizons/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/06/06/horizons/images/noun-baby.jpg" width="41" height="60"&gt;
&lt;/figure&gt;

&lt;p&gt;When I was a child, my horizon was the building I was in, my home. I could reach out and touch my family and whomever wandered into the house.&lt;/p&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/06/06/horizons/images/noun-bike.jpg" width="86" height="50"&gt;
&lt;/figure&gt;

&lt;p&gt;As a teenager, I got a bicycle, and my horizon was the neighborhoods within cycling range. I could reach out and touch my friends in nearby neighborhoods. And I felt less constrained.&lt;/p&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/06/06/horizons/images/noun-car.jpg" width="100" height="60"&gt;
&lt;/figure&gt;

&lt;p&gt;Later, I learned to drive, and my horizon grew to the city I was living in. I could reach out and meet people from any neighborhood in the city. And I felt less constrained.&lt;/p&gt;</description></item><item><title>Sharing Reminder Lists</title><link>https://hiltmon.com/blog/2013/06/01/sharing-reminder-lists/</link><pubDate>Sat, 01 Jun 2013 08:51:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/06/01/sharing-reminder-lists/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/06/01/sharing-reminder-lists/images/reminders-icon.jpg" width="76" height="94"&gt;
&lt;/figure&gt;

&lt;p&gt;Looking for a quick and easy way to share reminders with other people? Here&amp;rsquo;s how we do it.&lt;/p&gt;
&lt;p&gt;My wife and I share a &lt;a href="http://support.apple.com/kb/HT4970"&gt;Reminders.app&lt;/a&gt; list called Groceries that we check on the way home. If there is anything on the list, we pop into the shop and pick it up.&lt;/p&gt;
&lt;p&gt;Reminders.app is an Apple app included in iOS and the Mac that enables you to create lists, set reminder dates or reminder locations. It syncs via iCloud so reminders on any device are automatically distributed to all your other devices.&lt;/p&gt;</description></item><item><title>Google Analytics for Status Board Server Edition</title><link>https://hiltmon.com/blog/2013/05/30/google-analytics-for-status-board-server-edition/</link><pubDate>Thu, 30 May 2013 16:59:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/30/google-analytics-for-status-board-server-edition/</guid><description>&lt;p&gt;&lt;span class="light"&gt;Google has finally deprecated their GAPI interface which this used to talk to Google Analytics, sorry folks, it will no longer work. See the &lt;a href="https://hiltmon/com/blog/2015/06/07/new-google-analytics-for-status-board-server-edition/"&gt;New Google Analytics for Status Board Server Edition&lt;/a&gt; for an updated version. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Dropbox went down today, and I found out when my &lt;a href="https://itunes.apple.com/us/app/status-board/id449955536?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Status Board&lt;/a&gt; stopped updating. This spurred me on to migrate my &lt;a href="https://hiltmon/com/blog/2013/04/10/google-analytics-for-status-board/"&gt;Google Analytics for Status Board&lt;/a&gt; scripts from Ruby and Dropbox over to server based PHP. &lt;span class="light"&gt;Huge thanks to &lt;a href="http://www.carlfranzon.com/2013/04/google-analytics-panel-for-status-board/"&gt;Carl Franzon&lt;/a&gt; for the starter code.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Sanity Saver - Ticks and Crosses</title><link>https://hiltmon.com/blog/2013/05/28/sanity-saver-ticks-and-crosses/</link><pubDate>Tue, 28 May 2013 14:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/28/sanity-saver-ticks-and-crosses/</guid><description>&lt;p&gt;&lt;em&gt;Sanity Savers are quick tips that help you stay sane when using your computer.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I often create point form lists of things, whether planning a post or a coding sprint or a client activity. And to keep track of which points in the list are done and which will not be done, or what is right and what is wrong, I like to use &lt;code&gt;✓&lt;/code&gt; and &lt;code&gt;✗&lt;/code&gt; symbols.&lt;/p&gt;
&lt;p&gt;I use them so frequently and am so lazy that even typing &lt;code&gt;,,tick&lt;/code&gt; and &lt;code&gt;,,cross&lt;/code&gt; &lt;a href="https://itunes.apple.com/us/app/textexpander-for-mac/id405274824?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;TextExpander&lt;/a&gt; expansions are too much effort.&lt;/p&gt;</description></item><item><title>My Mac Indie Writing Workflow</title><link>https://hiltmon.com/blog/2013/05/28/my-mac-indie-writing-workflow/</link><pubDate>Tue, 28 May 2013 12:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/28/my-mac-indie-writing-workflow/</guid><description>&lt;p&gt;Over the past few years, I have been writing more and more on my Mac, whether it be single blog posts, blog series, systems documentation, knowledge bases and other articles. The best part is that all the tools I use are &lt;em&gt;indie&lt;/em&gt; developed from all over the world, are amazingly great and way better than their mainstream counterparts.&lt;/p&gt;
&lt;p&gt;In this post, I want to share the tools I use to &lt;em&gt;write&lt;/em&gt; and why I choose them.&lt;/p&gt;</description></item><item><title>Letterhead - Markdown Style</title><link>https://hiltmon.com/blog/2013/05/23/letterhead-markdown-style/</link><pubDate>Thu, 23 May 2013 08:47:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/23/letterhead-markdown-style/</guid><description>&lt;p&gt;So I get this request yesterday to send a document on &lt;a href="http://en.wikipedia.org/wiki/Letterhead"&gt;letterhead&lt;/a&gt;. You all may remember letterheads from back in the day when companies had professional printers print their fancy logos on fancy paper that you then ran through the &amp;ldquo;good&amp;rdquo; laser printer that then went into matching fancy envelopes and someone stuck stamps on and mailed them.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2013/05/23/letterhead-markdown-style/images/letterhead.jpg" width="500" height="153"&gt;
&lt;/figure&gt;

&lt;p&gt;I thought that letterheads went the way of the dodo about the same time &lt;a href="http://en.wikipedia.org/wiki/Fax"&gt;fax machines&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/United_States_Postal_Service"&gt;US Mail&lt;/a&gt; both died out. &lt;em&gt;I was wrong&lt;/em&gt;. It turns out, sometimes to make something &amp;ldquo;official&amp;rdquo; &lt;span class="light"&gt;(whatever the heck that means)&lt;/span&gt; you need it on letterhead. And since it&amp;rsquo;s 2013, a PDF version is acceptable.&lt;/p&gt;</description></item><item><title>The One-Person Product</title><link>https://hiltmon.com/blog/2013/05/20/the-one-person-product/</link><pubDate>Mon, 20 May 2013 18:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/20/the-one-person-product/</guid><description>&lt;p&gt;Marco Arment, writing about David Karp, founder of Tumblr, in &lt;a href="http://www.marco.org/2013/05/20/one-person-product"&gt;The One-Person Product&lt;/a&gt;. Not only is this piece well written, it is an amazing perspective of Tumblr from the inside. But, for me, the salient point and the highest praise in the piece goes to David Karp, the founder and visionary:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;David has an impeccable sense of what’s best for Tumblr, and he doesn’t need anyone else telling him what’s best for the product. Many people, myself included, have tried to convince him to go different directions, and we’ve been proven wrong every time.&lt;/p&gt;</description></item><item><title>Is it time to change tools?</title><link>https://hiltmon.com/blog/2013/05/16/is-it-time-to-change-tools/</link><pubDate>Thu, 16 May 2013 18:15:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/16/is-it-time-to-change-tools/</guid><description>&lt;blockquote&gt;
&lt;p&gt;To improve is to change; to be perfect is to change often.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Winston Churchill&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Every once in a while I wonder if my programming tools, languages and platforms need to be changed. Maybe, just maybe, the software mix I use every day needs to be shaken up.&lt;/p&gt;
&lt;p&gt;&lt;span class="light"&gt;And then my mind starts spinning in circles.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;As we all do, I find myself using the same languages and tools over and over again. The same programmer&amp;rsquo;s editor. The same color scheme and fonts. The same language for scripting. The same platform for web services. The same database. The same server applications.&lt;/p&gt;</description></item><item><title>Every 'The Best Programmers Editor' Review</title><link>https://hiltmon.com/blog/2013/05/14/every-the-best-programmers-editor-review/</link><pubDate>Tue, 14 May 2013 17:58:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/14/every-the-best-programmers-editor-review/</guid><description>&lt;script&gt;
	function setEditor(editor, url) {
		var elements = document.getElementsByClassName('editor-span');
		for (var i = 0; i &lt; elements.length; ++i) {
			var element = elements[i];
			element.innerHTML = '&lt;a href="' + url + '"&gt;' + editor + '&lt;/a&gt;';
		}
		return false;
	}

	onload = function() {
		setEditor('TextMate 2', 'http://www.macromates.com/');
	}
&lt;/script&gt;
&lt;p&gt;&lt;span class="light"&gt;I read a lot of programmer&amp;rsquo;s editor reviews and see a lot of arguments about which is best. Yet, essentially, they all do the same thing, help you program the way you want to. So here is my review of your favorite programmer&amp;rsquo;s editor for the Mac.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>My Next Product</title><link>https://hiltmon.com/blog/2013/05/13/my-next-product/</link><pubDate>Mon, 13 May 2013 10:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/13/my-next-product/</guid><description>&lt;p&gt;My &lt;em&gt;next&lt;/em&gt; product is going to be the best product I ever made. Of this I am certain.&lt;/p&gt;
&lt;p&gt;It is going to have an absolutely beautiful design inside and out. The internal architecture is going to be sublime, the code and classes readable and maintainable. The functionality in the first version will hit all the high marks and the UI is going to stand out.&lt;/p&gt;
&lt;p&gt;My next product is going to solve a problem that lots of other people face every day. Tens, hundreds, thousands, maybe even millions of people. And it is going to solve that problem in a new, unique and intuitive way. Users of my next product are going to wonder how they got bye without it.&lt;/p&gt;</description></item><item><title>A Coda 2 Use Case</title><link>https://hiltmon.com/blog/2013/05/12/a-coda-2-use-case/</link><pubDate>Sun, 12 May 2013 11:20:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/12/a-coda-2-use-case/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/05/12/a-coda-2-use-case/images/coda2.png" width="128" height="128"&gt;
&lt;/figure&gt;

&lt;p&gt;I upgraded to &lt;a href="http://www.panic.com"&gt;Panic&amp;rsquo;s&lt;/a&gt; &lt;a href="https://itunes.apple.com/us/app/coda-2/id499340368?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Coda 2&lt;/a&gt; when it came out, &lt;em&gt;and never used it&lt;/em&gt;. Unless it was to trigger a software update.&lt;/p&gt;
&lt;p&gt;That was until last week.&lt;/p&gt;
&lt;p&gt;Last week I was working on an &lt;em&gt;odd&lt;/em&gt; project to create a set of web pages that would be hosted on a payment processor&amp;rsquo;s site, but must look and feel like they are running on the actual site. This was for some non-profits to enable them to accept credit-card donations and electronic payment of member fees. Think of it as a customized set of Paypal pages that run on Paypal&amp;rsquo;s servers, yet are customized to the look and feel of the parent. Without Paypal, of course.&lt;/p&gt;</description></item><item><title>Octopress now has Footnotes</title><link>https://hiltmon.com/blog/2013/05/08/octopress-now-has-footnotes/</link><pubDate>Wed, 08 May 2013 17:30:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/08/octopress-now-has-footnotes/</guid><description>&lt;p&gt;If you update to the latest Octopress and you still use the &lt;code&gt;rdiscount&lt;/code&gt; markdown processor, you now get footnotes like this &lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;. &lt;span class="light"&gt;I was previously using a CSS workaround because I prefer the speed of &lt;code&gt;rdiscount&lt;/code&gt; for my growing site&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt; and still wanted footnotes.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;To create a footnote, use the standard MultiMarkdown &lt;code&gt;[^1]&lt;/code&gt; anchor to create the footnote reference link, and add &lt;code&gt;[^1]: The footnote content.&lt;/code&gt; to the bottom of the file&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;</description></item><item><title>Avoiding the Blogger Trap</title><link>https://hiltmon.com/blog/2013/05/08/avoiding-the-blogger-trap/</link><pubDate>Wed, 08 May 2013 10:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/08/avoiding-the-blogger-trap/</guid><description>&lt;p&gt;I totally agree with &lt;a href="http://twitter.com/marcoarment"&gt;Marco&lt;/a&gt; in &lt;a href="http://www.marco.org/2009/04/05/avoiding-the-blogger-trap"&gt;Avoiding the blogger trap&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;People aren’t so one-sided. Everyone has a life that goes much deeper than the topics on their blogs.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;and&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This site represents me, and I’m random and eccentric and interested in a wide variety of subjects.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;em&gt;This&lt;/em&gt; site is &lt;strong&gt;me&lt;/strong&gt;, with a &lt;em&gt;hodge podge&lt;/em&gt; of posts ranging from opinion pieces, news, geeky ideas, advice, links, jokes, setups and productivity. I write what I find interesting. I experiment. Sometimes I have a point. Sometimes I just want to provoke thought. And allegedly I even occasionally produce a good and useful post.&lt;/p&gt;</description></item><item><title>Reading the Archives</title><link>https://hiltmon.com/blog/2013/05/07/reading-the-archives/</link><pubDate>Tue, 07 May 2013 09:20:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/07/reading-the-archives/</guid><description>&lt;p&gt;Most people when they click on a link to a new blog, read the linked article and move on elsewhere. Google Analytics records this as a &lt;em&gt;bounce&lt;/em&gt; - a visitor comes in, reads a single page and leaves.&lt;/p&gt;
&lt;p&gt;One of my &lt;em&gt;habits&lt;/em&gt; when I come across a &lt;em&gt;new&lt;/em&gt; blog is to &lt;strong&gt;read the archives&lt;/strong&gt;. Almost every blogging platform has archives and almost every blogger makes these available.&lt;/p&gt;
&lt;p&gt;But why &lt;em&gt;read the archives&lt;/em&gt;?&lt;/p&gt;</description></item><item><title>Hedge Fund Systems</title><link>https://hiltmon.com/blog/2013/05/06/hedge-fund-systems/</link><pubDate>Mon, 06 May 2013 12:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/06/hedge-fund-systems/</guid><description>&lt;p&gt;I have started a new series of articles on &lt;a href="https://noverse.com/blog/categories/hedge-fund-systems/"&gt;Hedge Fund Systems&lt;/a&gt; on my company, &lt;a href="https://noverse.com/"&gt;Noverse LLC&lt;/a&gt; blog. &lt;span class="light"&gt;I did not post them here (yet) because I am not sure my readers will be interested – and I am using them to promote my skills and services. Let me know in comments you think I should post them here too.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;But just in case you &lt;em&gt;are&lt;/em&gt; interested in Hedge Fund systems (or my professional skills), the first post is called &lt;a href="https://noverse.com/blog/2013/05/the-opportunity/"&gt;The Opportunity&lt;/a&gt; where I describe the opportunity I got starting in 2004 to design, develop and grow a brand new end-to-end Hedge Fund system for a completely fresh new business. It was the opportunity of a lifetime, and I took it.&lt;/p&gt;</description></item><item><title>Fix the Mac Function Keys with Palua</title><link>https://hiltmon.com/blog/2013/05/01/fix-the-mac-function-keys-with-palua/</link><pubDate>Wed, 01 May 2013 13:04:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/01/fix-the-mac-function-keys-with-palua/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/05/01/fix-the-mac-function-keys-with-palua/images/keyboard-f1.jpg" width="269" height="187"&gt;
&lt;/figure&gt;

&lt;p&gt;By default, the function keys on Apple keyboards are mapped to the &lt;em&gt;Apple&lt;/em&gt; functions on them, like brightness, volume and Mission Control. To access them as F1 - F12 requires you to hit the &lt;code&gt;fn&lt;/code&gt; key as well. You could always reverse this in &lt;strong&gt;Preferences&lt;/strong&gt; / &lt;strong&gt;Keyboard&lt;/strong&gt; by checking &lt;strong&gt;Use all F1, F2, etc. keys as standard function keys&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;But this change is &lt;em&gt;system-wide&lt;/em&gt;. What if you want the default &lt;em&gt;Apple&lt;/em&gt; behavior &lt;em&gt;most of the time&lt;/em&gt;, but &lt;em&gt;Function&lt;/em&gt; key behavior in certain applications, for example, in virtual machines?&lt;/p&gt;</description></item><item><title>Instantly grab a high-res icon for any Mac app</title><link>https://hiltmon.com/blog/2013/05/01/instantly-grab-a-high-res-icon-for-any-mac-app/</link><pubDate>Wed, 01 May 2013 11:28:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/05/01/instantly-grab-a-high-res-icon-for-any-mac-app/</guid><description>&lt;p&gt;In &lt;a href="http://brettterpstra.com/2013/04/28/instantly-grab-a-high-res-icon-for-any-ios-app/"&gt;Instantly grab a high-res icon for any iOS app&lt;/a&gt;, the awesome Brett Terpstra (&lt;a href="http://twitter.com/ttscoff"&gt;@ttscoff&lt;/a&gt;) offered a script and an app to get the icon from iTunes for any &lt;strong&gt;iOS&lt;/strong&gt; app.&lt;/p&gt;
&lt;p&gt;I wanted the same for &lt;strong&gt;Mac&lt;/strong&gt; apps. Turns out, it&amp;rsquo;s a one word change to Brett&amp;rsquo;s scripts. Just follow his instructions using the below files, but replace the script name with &lt;code&gt;macicon.rb&lt;/code&gt; and the application name with &lt;code&gt;MacIcon&lt;/code&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://gist.github.com/hiltmon/5496034"&gt;Download and save the script&lt;/a&gt; as &lt;code&gt;macicon.rb&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon/com/Files/MacIcon.zip"&gt;Download the MacIcon Application&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Usual disclaimer: It works for me, should work for you, and no bunnies were harmed.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Email before the Open Web</title><link>https://hiltmon.com/blog/2013/04/30/email-before-the-open-web/</link><pubDate>Tue, 30 Apr 2013 09:09:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/30/email-before-the-open-web/</guid><description>&lt;p&gt;&lt;em&gt;Today, April 30, 2013 is the 20th anniversary of CERN making the WWW free, see &lt;a href="http://info.cern.ch"&gt;Twenty Years of a free, open web&lt;/a&gt;. I thought I&amp;rsquo;d share a story about how it was like before then.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The year was 1988 or 1989, and my Computer Science Professor wanted to send his first email. But first we had to connect our University to the fledgling Internet. Since I ran the UNIX lab, I was tasked to set this up.&lt;/p&gt;</description></item><item><title>The Process is not the Product</title><link>https://hiltmon.com/blog/2013/04/29/hiltmonism-the-process-is-not-the-product/</link><pubDate>Mon, 29 Apr 2013 19:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/29/hiltmonism-the-process-is-not-the-product/</guid><description>&lt;p&gt;&lt;strong&gt;Or how many people get so stuck in the processes of &lt;em&gt;how&lt;/em&gt; to do the job, they simply forget to actually do the job.&lt;/strong&gt; Many a product has failed to materialize because the process to make that product has gotten mired, stuck, distracted or waylaid. It becomes about the people and the politics and the process and no longer about the product.&lt;/p&gt;
&lt;p&gt;I use this &lt;a href="https://hiltmon.com/blog/categories/hiltmonism/"&gt;Hiltmonism&lt;/a&gt; to help me to focus on the goal, the reason we are creating the product, and the need to be ruthless in getting it done. We are doing what we do to make a product, to ship it, to delight our customers, and to make money. Not because we love following a process for the purpose of process following.&lt;/p&gt;</description></item><item><title>My Workspace</title><link>https://hiltmon.com/blog/2013/04/28/my-workspace/</link><pubDate>Sun, 28 Apr 2013 11:25:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/28/my-workspace/</guid><description>&lt;p&gt;I have no idea why I am sharing this, but this is my current workspace:&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2013/04/28/my-workspace/images/hiltmon-desk-2013-04.jpg" width="700" height="525"&gt;
&lt;/figure&gt;

&lt;p&gt;On and around it you will find (left-to-right-ish):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;My original iPad 1 running Panic&amp;rsquo;s &lt;a href="https://itunes.apple.com/us/app/status-board/id449955536?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Status Board&lt;/a&gt; on a &lt;a href="http://www.amazon.com/gp/product/B0053XG1AC/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B0053XG1AC&amp;amp;linkCode=as2&amp;amp;tag=hiltmon-20"&gt;Twelve South Compass Stand&lt;/a&gt; for iPad.&lt;/li&gt;
&lt;li&gt;A &lt;a href="http://www.amazon.com/gp/product/B005WXPEV0/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B005WXPEV0&amp;amp;linkCode=as2&amp;amp;tag=hiltmon-20"&gt;Koncept Equo Gen 3&lt;/a&gt; desk lamp, stylish and bright.&lt;/li&gt;
&lt;li&gt;An AT&amp;amp;T MicroCell so I can get Mobile Phone service at home in Manhattan!&lt;/li&gt;
&lt;li&gt;My iPad 3 WiFi 64GB, gray Apple smart cover.&lt;/li&gt;
&lt;li&gt;My primary computer, a 15-inch Mid-2009 MacBook Pro with dual 3.06Ghz CPUs, 8GB RAM, a &lt;a href="http://eshop.macsales.com/item/OWC/SSDEX3G240/"&gt;240GB OWC Mercury Electra 3G SSD&lt;/a&gt; in an &lt;a href="http://eshop.macsales.com/item/Other+World+Computing/DDAMBS0GB/"&gt;OWC Data Doubler&lt;/a&gt; and the original 500GB HDD.&lt;/li&gt;
&lt;li&gt;My rent bill.&lt;/li&gt;
&lt;li&gt;A classic &lt;a href="http://support.apple.com/kb/SP77?viewlocale=en_US&amp;amp;locale=en_US"&gt;Apple Cinema Display 23&amp;quot;&lt;/a&gt; connected to the laptop via an old &lt;a href="http://www.amazon.com/gp/product/B000067VKT/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B000067VKT&amp;amp;linkCode=as2&amp;amp;tag=hiltmon-20"&gt;Apple DVI to ADC Display Adapter&lt;/a&gt; and a &lt;a href="http://store.apple.com/us/product/MB570Z/B/mini-displayport-to-dvi-adaptor"&gt;Mini DisplayPort to DVI adapter&lt;/a&gt;, and it still works great.&lt;/li&gt;
&lt;li&gt;Altec Lansing speakers, about as old as the hills but still sound adequate for my needs.&lt;/li&gt;
&lt;li&gt;A &lt;a href="http://www.amazon.com/gp/product/B002OOWC3I/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B002OOWC3I&amp;amp;linkCode=as2&amp;amp;tag=hiltmon-20"&gt;Wacom Bamboo Pen&lt;/a&gt; tablet for artwork.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.apple.com/keyboard/"&gt;Apple Bluetooth Keyboard&lt;/a&gt; and &lt;a href="http://www.apple.com/magictrackpad/"&gt;Magic Trackpad&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;An ancient &lt;a href="http://www.amazon.com/gp/product/B0018LJYFC/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B0018LJYFC&amp;amp;linkCode=as2&amp;amp;tag=hiltmon-20"&gt;Dell 2408WFP&lt;/a&gt; 24&amp;quot; monitor (that does not render properly with OS X), attached to my 2008 Mac Pro server (8 core, 32GB RAM, 4.5TB disk - hidden below the desk) and my original &lt;a href="http://www.apple.com/support/isight/"&gt;iSight&lt;/a&gt; above it.&lt;/li&gt;
&lt;li&gt;On top of the Mac Pro tower is my trusty &lt;a href="http://www.amazon.com/gp/product/B00000JBLH/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B00000JBLH&amp;amp;linkCode=as2&amp;amp;tag=hiltmon-20"&gt;HP 12C&lt;/a&gt; financial calculator, an &lt;a href="http://www.apple.com/airportextreme/"&gt;Airport Extreme&lt;/a&gt; and several old &lt;a href="http://www.amazon.com/gp/product/B006Y5UPZU/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B006Y5UPZU&amp;amp;linkCode=as2&amp;amp;tag=hiltmon-20"&gt;WD 500GB My Passport drives&lt;/a&gt; - link to newer model - that I use for backups.&lt;/li&gt;
&lt;li&gt;My favorite &lt;a href="http://www.amazon.com/gp/product/B001BZ4ROI/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B001BZ4ROI&amp;amp;linkCode=as2&amp;amp;tag=hiltmon-20"&gt;Zebra Sarasa 0.7 Gel Retractable&lt;/a&gt; pen.&lt;/li&gt;
&lt;li&gt;A &lt;a href="http://www.amazon.com/gp/product/B00CFSJXEE/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B00CFSJXEE&amp;amp;linkCode=as2&amp;amp;tag=hiltmon-20"&gt;Zebra Z-Grip 0.5 mechanical pencil&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;The desk is a Galant with T-Leg from Ikea, 10 years old and starting to peel and warp.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This is where I work and spend my days. &lt;strong&gt;What does yours look like and what do you use - please link in the comments?&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Phone Etiquette</title><link>https://hiltmon.com/blog/2013/04/27/phone-etiquette/</link><pubDate>Sat, 27 Apr 2013 18:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/27/phone-etiquette/</guid><description>&lt;p&gt;We all spend a lot of time talking on the phone, and have been doing so for many years. It&amp;rsquo;s far beyond the right time to learn basic voice call etiquette, but here are some of the best practices I have come across.&lt;/p&gt;
&lt;p&gt;See other articles in &lt;a href="https://hiltmon.com/blog/categories/etiquette/"&gt;Etiquette&lt;/a&gt;, including &lt;a href="https://hiltmon.com/blog/2012/10/24/email-etiquette/"&gt;Email Etiquette&lt;/a&gt; and &lt;a href="https://hiltmon.com/blog/2012/04/21/us-dining-etiquette-failures/"&gt;US Dining Etiquette Failures&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Make Perfectly Good Mistakes</title><link>https://hiltmon.com/blog/2013/04/25/make-perfectly-good-mistakes/</link><pubDate>Thu, 25 Apr 2013 15:31:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/25/make-perfectly-good-mistakes/</guid><description>&lt;p&gt;We&amp;rsquo;re not perfect, yet:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;You can only learn from making perfectly good mistakes.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;We all know of people&amp;rsquo;s reluctance to try things out in new software products because they are afraid of making mistakes and looking foolish. They are striving for perfect execution, yet unknowingly fail to learn the product or gain the benefits of its power.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Yet the failure to try new things is the biggest mistake of all&lt;/strong&gt;. If you do not take a chance and try, you cannot learn anything.&lt;/p&gt;</description></item><item><title>Punctual</title><link>https://hiltmon.com/blog/2013/04/25/punctual/</link><pubDate>Thu, 25 Apr 2013 12:27:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/25/punctual/</guid><description>&lt;p&gt;&lt;span class="light"&gt;&lt;strong&gt;punc·tu·al /ˈpəNGkCHo͞oəl/&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="light"&gt;Adjective&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Happening or doing something at the agreed or proper time; on time.&lt;/li&gt;
&lt;li&gt;Denoting or relating to an action that takes place at a particular point in time.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;span class="light"&gt;Synonyms
precise - exact - accurate - prompt&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;One of my many peeves is with people who are &lt;em&gt;not&lt;/em&gt; punctual. If we schedule a call or a meeting at a given time, I will be there, on time, prepared and ready to go. It&amp;rsquo;s only right that others do the same.&lt;/p&gt;</description></item><item><title>Analyst Expectations</title><link>https://hiltmon.com/blog/2013/04/23/analyst-expectations/</link><pubDate>Tue, 23 Apr 2013 15:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/23/analyst-expectations/</guid><description>&lt;p&gt;Lets take a look at the Widget market. It&amp;rsquo;s maturing but still expanding, with sales growing to about 2 million a quarter.&lt;/p&gt;
&lt;p&gt;An experienced investor, looking at fundamentals, history and buyer preferences, will expect &lt;em&gt;Peach&lt;/em&gt; to sell 1 million Widgets and &lt;em&gt;Pear&lt;/em&gt; to sell about 250 thousand, with the remaining Widgets being sold by others.&lt;/p&gt;
&lt;p&gt;But lets assume the presence of an Analyst that wants to drive &lt;em&gt;Peach&amp;rsquo;s&lt;/em&gt; stock down, and wants to promote &lt;em&gt;Pear&lt;/em&gt;. They want to do this because that Analyst&amp;rsquo;s firm makes more money when &lt;em&gt;Pear&lt;/em&gt; shares, securities and derivatives trade.&lt;/p&gt;</description></item><item><title>Apple's Scheduled Releases are a Mistake</title><link>https://hiltmon.com/blog/2013/04/23/apples-scheduled-releases-are-a-mistake/</link><pubDate>Tue, 23 Apr 2013 14:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/23/apples-scheduled-releases-are-a-mistake/</guid><description>&lt;p&gt;I think Apple&amp;rsquo;s recent move to annual releases for major products like iOS, OS X, iPhone and iPad is a huge mistake. It opens up too many &lt;em&gt;cans of worms&lt;/em&gt; and is hurting the company&amp;rsquo;s public image and stock price.&lt;/p&gt;</description></item><item><title>Slogger after 6 Months</title><link>https://hiltmon.com/blog/2013/04/23/slogger-after-6-months/</link><pubDate>Tue, 23 Apr 2013 10:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/23/slogger-after-6-months/</guid><description>&lt;p&gt;I have been using &lt;a href="http://brettterpstra.com"&gt;Brett Terpstra&amp;rsquo;s&lt;/a&gt; (&lt;a href="http://twitter.com/ttscoff"&gt;@ttscoff&lt;/a&gt;) &lt;a href="http://brettterpstra.com/projects/slogger/"&gt;Slogger&lt;/a&gt; for the last six months, and I think it&amp;rsquo;s time to review it. Slogger is a script and a set of plugins that log your online activity each day into &lt;a href="https://itunes.apple.com/us/app/day-one/id422304217?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Day One&lt;/a&gt;, the best journaling application for OS X, or in Markdown files if you prefer. It&amp;rsquo;s a core part of my &lt;a href="https://hiltmon.com/blog/2013/03/14/backup-your-online-life/"&gt;Backing up your Online Life&lt;/a&gt; process.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;TL;DR: It&amp;rsquo;s totally worth taking the time to set it up and get it going. The data captured is so useful and often hard to gain access to, especially as we operate across many services, and as these services come and go.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Have to Have It Just to Have It</title><link>https://hiltmon.com/blog/2013/04/22/have-to-have-it-just-to-have-it/</link><pubDate>Mon, 22 Apr 2013 19:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/22/have-to-have-it-just-to-have-it/</guid><description>&lt;p&gt;I often come across users who tell me they just &lt;em&gt;have to have&lt;/em&gt; something in the software I am designing for them: some data or a report or an export. When I ask them &lt;em&gt;how&lt;/em&gt; they use this requested item, or &lt;em&gt;why&lt;/em&gt; they need it, they usually answer that they just &lt;em&gt;have to have&lt;/em&gt; it. Sometimes, they even try to justify the request using the excuse that they have always had it, so they should continue to have it.&lt;/p&gt;</description></item><item><title>The people who love something are its best critics</title><link>https://hiltmon.com/blog/2013/04/19/the-people-who-love-something-are-its-best-critics/</link><pubDate>Fri, 19 Apr 2013 13:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/19/the-people-who-love-something-are-its-best-critics/</guid><description>&lt;p&gt;I have been accused of being an Apple fan-&lt;em&gt;something&lt;/em&gt; as if this was a bad thing, a blinkered delusional existence, a sign of mental degradation. I could come back that it is a &lt;a href="http://en.wikipedia.org/wiki/Stockholm_syndrome"&gt;Stockholm Syndrome&lt;/a&gt; like relationship that binds Windows users to Excel, PowerPoint and Outlook. Or declare that Linux-on-the-desktop users are hallucinating when they claim productivity and usability in a sea of incomprehensibly complex, buggy and mediocre open source software.&lt;/p&gt;</description></item><item><title>18 Months of Octopress</title><link>https://hiltmon.com/blog/2013/04/17/18-months-of-octopress/</link><pubDate>Wed, 17 Apr 2013 13:23:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/17/18-months-of-octopress/</guid><description>&lt;p&gt;A lot of reviews are written by people who played with the product for a few hours and report their first impressions. This is all about a product I have been using for &lt;strong&gt;18 months&lt;/strong&gt; every day: &lt;a href="https://github.com/octopress/octopress"&gt;Octopress&lt;/a&gt;, the blogging platform behind &lt;a href="https://hiltmon.com"&gt;hiltmon.com&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id="before-octopress"&gt;Before Octopress&lt;/h3&gt;
&lt;p&gt;I consolidated to &lt;a href="https://hiltmon.com"&gt;hiltmon.com&lt;/a&gt; from a series of sites based on &lt;a href="http://wordpress.org"&gt;Wordpress&lt;/a&gt; and a static site generated by &lt;a href="https://itunes.apple.com/us/app/rapidweaver/id402477569?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;RapidWeaver&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The &lt;a href="http://wordpress.org"&gt;Wordpress&lt;/a&gt; sites drove me crazy. &lt;a href="http://wordpress.org"&gt;Wordpress&lt;/a&gt; itself was (and still is) buggy, inexplicably complicated and slow to render. Even though I became &amp;ldquo;expert&amp;rdquo; at &lt;a href="http://wordpress.org"&gt;Wordpress&lt;/a&gt; customization, I still found the experience of updates, fixes and customization to be heinous and painful.&lt;/p&gt;</description></item><item><title>Add GA OS and Browser to Status Board</title><link>https://hiltmon.com/blog/2013/04/17/add-ga-os-and-browser-to-status-board/</link><pubDate>Wed, 17 Apr 2013 11:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/17/add-ga-os-and-browser-to-status-board/</guid><description>&lt;p&gt;&lt;span class="light"&gt;Google has finally deprecated their GAPI interface which this used to talk to Google Analytics, sorry folks, it will no longer work. See the &lt;a href="https://hiltmon.com/blog/2015/06/07/new-google-analytics-for-status-board-server-edition/"&gt;New Google Analytics for Status Board Server Edition&lt;/a&gt; for an updated version. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Reader Brandon Cozart (&lt;a href="http://twitter.com/brandoncozart"&gt;@brandoncozart&lt;/a&gt;) asked if it were possible to add &lt;strong&gt;Browser&lt;/strong&gt; and &lt;strong&gt;OS&lt;/strong&gt; statistics to the &lt;a href="https://hiltmon.com/blog/2013/04/10/google-analytics-for-status-board/"&gt;Google Analytics for Status Board&lt;/a&gt; scripts. So I gave it a shot.&lt;/p&gt;
&lt;p&gt;&lt;span class="light"&gt;Update: Download again if you use these scripts, a null value bug and sorting bugs have been fixed.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>My TextMate 2 Setup</title><link>https://hiltmon.com/blog/2013/04/15/my-textmate-2-setup/</link><pubDate>Mon, 15 Apr 2013 14:42:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/15/my-textmate-2-setup/</guid><description>&lt;p&gt;I switched back to &lt;a href="https://github.com/textmate/textmate"&gt;TextMate 2&lt;/a&gt; from &lt;a href="http://www.sublimetext.com/2"&gt;Sublime Text 2&lt;/a&gt; full time a while back and I am really happy with the way I have it looking and working. My &amp;ldquo;&lt;a href="https://hiltmon.com/blog/2012/08/14/my-sublime-text-2-setup/"&gt;My Sublime Text 2 Setup&lt;/a&gt;&amp;rdquo; post is quite popular, so I though I&amp;rsquo;d create the same for TextMate 2.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2013/04/15/my-textmate-2-setup/images/textmate-themes.jpg" width="600" height="240"&gt;
&lt;/figure&gt;</description></item><item><title>Hourly Analytics for Status Board</title><link>https://hiltmon.com/blog/2013/04/15/hourly-analytics-for-status-board/</link><pubDate>Mon, 15 Apr 2013 10:23:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/15/hourly-analytics-for-status-board/</guid><description>&lt;p&gt;&lt;span class="light"&gt;Google has finally deprecated their GAPI interface which this used to talk to Google Analytics, sorry folks, it will no longer work. See the &lt;a href="https://hiltmon.com/blog/2015/06/07/new-google-analytics-for-status-board-server-edition/"&gt;New Google Analytics for Status Board Server Edition&lt;/a&gt; for an updated version. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Following up last week&amp;rsquo;s &lt;a href="https://hiltmon.com/blog/2013/04/10/google-analytics-for-status-board/"&gt;Google Analytics for Status Board&lt;/a&gt; graph and &lt;a href="https://hiltmon.com/blog/2013/04/10/top-pages-in-status-board/"&gt;Top Pages&lt;/a&gt; table on &lt;a href="https://itunes.apple.com/us/app/status-board/id449955536?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Status Board&lt;/a&gt;, a reader asked for &lt;strong&gt;hourly stats&lt;/strong&gt; instead of daily, so I created it (see the bottom-right graph).&lt;/p&gt;
&lt;p&gt;&lt;span class="light"&gt;See also &lt;a href="https://hiltmon.com/blog/2013/04/10/top-pages-in-status-board/"&gt;Top Pages in Status Board&lt;/a&gt;, &lt;a href="https://hiltmon.com/blog/2013/04/10/google-analytics-for-status-board/"&gt;Daily Stats&lt;/a&gt; and &lt;a href="https://hiltmon.com/blog/2013/04/17/add-ga-os-and-browser-to-status-board/"&gt;OS and Browser Stats&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Natsukashii - iPulse Sighting</title><link>https://hiltmon.com/blog/2013/04/11/natsukashii-ipulse-sighting/</link><pubDate>Thu, 11 Apr 2013 13:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/11/natsukashii-ipulse-sighting/</guid><description>&lt;p&gt;&lt;span class="light"&gt;Natsukashii (懐かしい) is a Japanese word for &amp;ldquo;feeling nostalgic&amp;rdquo; or &amp;ldquo;with fond memories&amp;rdquo;.&lt;/span&gt;&lt;/p&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/04/11/natsukashii-ipulse-sighting/images/ipulse.jpg" width="156" height="156"&gt;
&lt;/figure&gt;

&lt;p&gt;I happened to click on a Mike Zornek (&lt;a href="https://twitter.com/zorn"&gt;@zorn&lt;/a&gt;) link today and noticed that he is still running &lt;a href="http://iconfactory.com/software/ipulse"&gt;iPulse&lt;/a&gt; on his desktop. I used to run it back in the early days of OS X on my &lt;a href="https://hiltmon.com/blog/2012/12/31/1ghz-titanium-powerbook/"&gt;Titanium Powerbook&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Back then, I had already returned to the Mac. But in 2003 or so, OS X was still very buggy and slow. I wanted to know where the bottleneck was, disk, network, CPU or RAM? Also, with PC hardware at the time, they still had the light that flashed when the disk was being accessed, the Mac did not have this.&lt;/p&gt;</description></item><item><title>Top Pages in Status Board</title><link>https://hiltmon.com/blog/2013/04/10/top-pages-in-status-board/</link><pubDate>Wed, 10 Apr 2013 16:06:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/10/top-pages-in-status-board/</guid><description>&lt;p&gt;&lt;span class="light"&gt;Google has finally deprecated their GAPI interface which this used to talk to Google Analytics, sorry folks, it will no longer work. See the &lt;a href="https://hiltmon.com/blog/2015/06/07/new-google-analytics-for-status-board-server-edition/"&gt;New Google Analytics for Status Board Server Edition&lt;/a&gt; for an updated version. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Following up this morning&amp;rsquo;s &lt;a href="https://hiltmon.com/blog/2013/04/10/google-analytics-for-status-board/"&gt;Google Analytics for Status Board&lt;/a&gt; graph on &lt;a href="https://itunes.apple.com/us/app/status-board/id449955536?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Status Board&lt;/a&gt;, I also wanted a &lt;strong&gt;top pages for today&lt;/strong&gt; view for Hiltmon.com.&lt;/p&gt;
&lt;p&gt;&lt;span class="light"&gt;See also &lt;a href="https://hiltmon.com/blog/2013/04/15/hourly-analytics-for-status-board/"&gt;Hourly Stats&lt;/a&gt; and &lt;a href="https://hiltmon.com/blog/2013/04/17/add-ga-os-and-browser-to-status-board/"&gt;OS and Browser Stats&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2013/04/10/top-pages-in-status-board/images/status-board-pages.jpg" width="640" height="480"&gt;
&lt;/figure&gt;

&lt;p&gt;The steps are all the same as &lt;a href="https://hiltmon.com/blog/2013/04/10/google-analytics-for-status-board/"&gt;Google Analytics for Status Board&lt;/a&gt;, so follow along, only replace those script and the launcher files with these.&lt;/p&gt;</description></item><item><title>Google Analytics for Status Board</title><link>https://hiltmon.com/blog/2013/04/10/google-analytics-for-status-board/</link><pubDate>Wed, 10 Apr 2013 12:15:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/10/google-analytics-for-status-board/</guid><description>&lt;p&gt;&lt;span class="light"&gt;Google has finally deprecated their GAPI interface which this used to talk to Google Analytics, sorry folks, it will no longer work. See the &lt;a href="https://hiltmon/com/blog/2015/06/07/new-google-analytics-for-status-board-server-edition/"&gt;New Google Analytics for Status Board Server Edition&lt;/a&gt; for an updated version. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I wanted to see the 7-day Hiltmon.com web stats from Google Analytics on Panic&amp;rsquo;s new &lt;a href="https://itunes.apple.com/us/app/status-board/id449955536?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Status Board app&lt;/a&gt;. Here is how I got it to work.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update: For a far simpler install that runs on your web server using PHP, see &lt;a href="https://hiltmon/com/blog/2013/05/30/google-analytics-for-status-board-server-edition/"&gt;Google Analytics for Status Board Server Edition&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Google Already Is Big Brother</title><link>https://hiltmon.com/blog/2013/04/09/google-already-is-big-brother/</link><pubDate>Tue, 09 Apr 2013 17:14:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/09/google-already-is-big-brother/</guid><description>&lt;p&gt;You can, and probably already do, most of these &lt;em&gt;without&lt;/em&gt; paying any money &lt;span class="light"&gt;(in no particular order)&lt;/span&gt;:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Use Google&amp;rsquo;s browser &lt;a href="https://www.google.com/intl/en/chrome/browser/"&gt;Chrome&lt;/a&gt; to visit web pages, which tell &lt;a href="http://www.google.com/analytics/"&gt;Google Analytics&lt;/a&gt; what you did&lt;/li&gt;
&lt;li&gt;Find information using &lt;a href="http://www.google.com"&gt;Google Search&lt;/a&gt;, which tracks and saves your searches, search attempts and selections; with the results customized by Google&amp;rsquo;s model of you&lt;/li&gt;
&lt;li&gt;Jump to your favorite sites using a &lt;a href="http://toolbar.google.com/intl/en/"&gt;Google Toolbar&lt;/a&gt; extension or built-in search that checks each site you visit&lt;/li&gt;
&lt;li&gt;Send and receive all your personal email via &lt;a href="http://mail.google.com"&gt;Gmail&lt;/a&gt; (and probably work emails too), analyzed and filtered by &lt;a href="http://www.google.com/postini/"&gt;Postini&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Find out whats going on (and should be going on) in your life and around you using &lt;a href="http://www.google.com/landing/now/"&gt;Google Now&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Chat with others on &lt;a href="http://www.google.com/talk/"&gt;Google Talk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Schedule your life in &lt;a href="https://www.google.com/calendar"&gt;Google Calendar&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Maintain your relationships and connections in &lt;a href="http://www.google.com/contacts/"&gt;Google Contacts&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Socialize via &lt;a href="https://plus.google.com/"&gt;Google+&lt;/a&gt; and participate in &lt;a href="http://groups.google.com"&gt;Google Groups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Use &lt;a href="http://maps.google.com"&gt;Google Maps&lt;/a&gt; for locating yourself and getting around&lt;/li&gt;
&lt;li&gt;Check in with &lt;a href="http://www.google.com/latitude?hl=en"&gt;Google Latitude&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Use a Google phone (&lt;a href="http://www.android.com"&gt;Android&lt;/a&gt;) for mobile calls, using a Motorola or Nexus handset&lt;/li&gt;
&lt;li&gt;Call internationally using &lt;a href="http://voice.google.com/"&gt;Google Voice&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Read the news via &lt;a href="http://news.google.com/nwshp?hl=en"&gt;Google News&lt;/a&gt; and get your feeds via &lt;a href="http://feedburner.google.com"&gt;Feedburner&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Watch TV and other Video on &lt;a href="http://www.youtube.com/"&gt;YouTube&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Read books from &lt;a href="http://books.google.com/books?hl=en"&gt;Google Books&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Listen to tunes from &lt;a href="http://play.google.com/"&gt;Google Play&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Find a restaurant using &lt;a href="http://www.zagat.com"&gt;Zagat&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Plan you next vacation on &lt;a href="http://www.frommers.com"&gt;Frommers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Log in to other services using your Google ID and OAuth&lt;/li&gt;
&lt;li&gt;Save and share your personal photos on &lt;a href="http://picasa.google.com/"&gt;Picasa&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Purchase stuff via &lt;a href="http://www.google.com/products"&gt;Google Shopper&lt;/a&gt; using &lt;a href="http://www.google.com/wallet/"&gt;Google Wallet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Save your files on &lt;a href="http://drive.google.com/"&gt;Google Drive&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Track your shares and investments on &lt;a href="http://www.google.com/finance"&gt;Google Finance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Click on ads served by Google, &lt;a href="http://www.google.com/doubleclick/"&gt;DoubleClick&lt;/a&gt;, &lt;a href="http://www.google.com/ads/admob/"&gt;AdMob&lt;/a&gt;, &lt;a href="http://www.admeld.com"&gt;AdMeld&lt;/a&gt;, Teracent, and AdScape&lt;/li&gt;
&lt;li&gt;Create, edit and collaborate using &lt;a href="http://www.google.com/apps/index1.html"&gt;Google Apps&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Write your blog on &lt;a href="http://www.blogger.com/start?hl=en"&gt;Blogger&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Save your code on &lt;a href="http://code.google.com/intl/en/"&gt;Google code&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Access the internet over &lt;a href="https://fiber.google.com/about/"&gt;Google fiber&lt;/a&gt; &lt;span class="light"&gt;(OK, so this costs some money)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;And then there&amp;rsquo;s &lt;a href="http://www.google.com/bookmarks/"&gt;bookmarks&lt;/a&gt;, &lt;a href="http://www.google.com/offers?utm_source=xsell&amp;amp;utm_medium=el&amp;amp;utm_campaign=moreproducts"&gt;offers&lt;/a&gt;, &lt;a href="http://www.google.com/ig?hl=en&amp;amp;source=mpes"&gt;iGoogle&lt;/a&gt;, &lt;a href="http://translate.google.com/?hl=en"&gt;translation&lt;/a&gt;, &lt;a href="http://www.google.com/alerts?hl=en"&gt;alerts&lt;/a&gt; and &lt;a href="http://www.google.com/schhp?hl=en"&gt;scholar&lt;/a&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Not sure? Click the above links and see how many redirect to a &lt;em&gt;personalized&lt;/em&gt; view for you versus a public common page. &lt;span class="light"&gt;I was surprised how many were personalized for me.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Is this the end?</title><link>https://hiltmon.com/blog/2013/04/08/is-this-the-end/</link><pubDate>Mon, 08 Apr 2013 12:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/08/is-this-the-end/</guid><description>&lt;p&gt;The indie business is cyclical, a sin wave of quiet and busy times. The peaks are high and the troughs are low.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2013/04/08/is-this-the-end/images/earning-sin.png" width="640" height="480"&gt;
&lt;/figure&gt;

&lt;p&gt;When an indie is busy, there is nothing better, no higher high. They are working with great clients, creating amazing products, solving the unsolvable, slaying dragons and earning enough money to pay the bills.&lt;/p&gt;
&lt;p&gt;But when an indie is quiet, there is nothing worse, no lower low. No clients to please, no products to create, no problems to solve, no dragons to slay and no income coming in.&lt;/p&gt;</description></item><item><title>Sharing nvAlt Notes with Ulysses III</title><link>https://hiltmon.com/blog/2013/04/05/sharing-nvalt-notes-with-ulysses-iii/</link><pubDate>Fri, 05 Apr 2013 10:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/05/sharing-nvalt-notes-with-ulysses-iii/</guid><description>&lt;p&gt;I&amp;rsquo;m testing out &lt;a href="https://itunes.apple.com/us/app/ulysses-iii/id623795237?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Ulysses III&lt;/a&gt; for writing and so far I am finding it postively interesting &lt;em&gt;for a 1.0 rewrite&lt;/em&gt;. One thing I wanted to try was to use it for notes alongside &lt;a href="http://brettterpstra.com/projects/nvalt/"&gt;nvAlt&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Here&amp;rsquo;s how to share notes between &lt;a href="https://itunes.apple.com/us/app/ulysses-iii/id623795237?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Ulysses III&lt;/a&gt; and &lt;a href="http://brettterpstra.com/projects/nvalt/"&gt;nvAlt&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/04/05/sharing-nvalt-notes-with-ulysses-iii/images/ulysses-one.png" width="202" height="138"&gt;
&lt;/figure&gt;

&lt;p&gt;In &lt;a href="https://itunes.apple.com/us/app/ulysses-iii/id623795237?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Ulysses III&lt;/a&gt;, click the plus icon on the bottom left (1) and choose &lt;code&gt;Add External Source...&lt;/code&gt; (2). Choose the folder in &lt;a href="https://www.dropbox.com"&gt;Dropbox&lt;/a&gt; where you store your &lt;a href="http://brettterpstra.com/projects/nvalt/"&gt;nvAlt&lt;/a&gt; plain text notes, then click &lt;code&gt;Open&lt;/code&gt;. &lt;em&gt;Note that if you just drag and drop your &lt;a href="http://brettterpstra.com/projects/nvalt/"&gt;nvAlt&lt;/a&gt; folder into &lt;a href="https://itunes.apple.com/us/app/ulysses-iii/id623795237?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Ulysses III&lt;/a&gt;, it will copy all the notes, not reference them.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Go Home</title><link>https://hiltmon.com/blog/2013/04/04/go-home/</link><pubDate>Thu, 04 Apr 2013 11:30:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/04/04/go-home/</guid><description>&lt;p&gt;I was talking with a friend the other night about their number one concern with their new job, in that they expect to have to work until 11PM every night and would therefore give up yoga, movies and dating. I almost dropped my drink &lt;span class="light"&gt;(which is a horrifying thought for an Aussie)&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;WTF! NO! Go Home! You work to live, not live to work.&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I was that person, the one who worked all hours. During the 1990&amp;rsquo;s I worked 18 hour days, 7 days a week, for the whole decade. As a result, I was sickly, pale, miserable, lonely and not financially better off. In the noughts, I went home before 6PM every day, got healthy, got a social life, got married, crossed the planet, made an amazing career for myself and had an incredible amount of fun. All because I went home.&lt;/p&gt;</description></item><item><title>Direct Marketing your App to Tip Lines</title><link>https://hiltmon.com/blog/2013/03/28/direct-marketing-your-app-to-tip-lines/</link><pubDate>Thu, 28 Mar 2013 12:41:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/28/direct-marketing-your-app-to-tip-lines/</guid><description>&lt;p&gt;In &lt;a href="https://hiltmon.com/blog/2013/03/07/timetocall-after-one-month/"&gt;TimeToCall - After One Month&lt;/a&gt;, I stated that my next &lt;em&gt;marketing&lt;/em&gt; experiment would be to send a PR style email to popular press site tip lines to see if they worked. In parallel, and unbeknownst to me, Christian Tietze was doing the same thing, just paying for it &lt;span class="light"&gt;(See &lt;a href="http://christiantietze.de/posts/2013/03/calendarpaste-sales-and-applaunch/"&gt;Sales and AppLaunch.us experience for Calendar Paste&lt;/a&gt;, worth a read and reminding me to post this).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The results are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;12&lt;/code&gt; PR messages sent &lt;span class="light"&gt;(see the actual message sent at the bottom of this post)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;1&lt;/code&gt; delivery failure (so I used a backup address)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;2&lt;/code&gt; robo-responders indicating that the emails were received, thank you&lt;/li&gt;
&lt;li&gt;&lt;code&gt;0&lt;/code&gt; reviews&lt;/li&gt;
&lt;li&gt;&lt;code&gt;0&lt;/code&gt; posts about the product&lt;/li&gt;
&lt;li&gt;&lt;code&gt;0&lt;/code&gt; requests for promo codes&lt;/li&gt;
&lt;li&gt;&lt;code&gt;0&lt;/code&gt; responses&lt;/li&gt;
&lt;li&gt;&lt;code&gt;0&lt;/code&gt; sales&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;To be clear, I do not blame any of these folks for the lack of response (and I did not really expect any). They get &lt;em&gt;hundreds&lt;/em&gt; of PR messages like mine every day. They are good people trying their best to sift through a &lt;strong&gt;morass of messy messages&lt;/strong&gt; to find the gems that would interest and delight their readers. Either my message did not stand out, did not resonate, got nailed by a spam catcher somewhere, or was just not the kind of thing they thought would work for their readership. I&amp;rsquo;m OK with that because I understand &lt;em&gt;their&lt;/em&gt; situation. I knew this going in to the experiment.&lt;/p&gt;</description></item><item><title>$60 million to aquihire me</title><link>https://hiltmon.com/blog/2013/03/28/60-million-to-aquihire-me/</link><pubDate>Thu, 28 Mar 2013 11:55:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/28/60-million-to-aquihire-me/</guid><description>&lt;p&gt;So this week, Yahoo paid $30 million to acquire Summly and it&amp;rsquo;s 17 year old founder Nick D&amp;rsquo;Aloisio (just Google it).&lt;/p&gt;
&lt;p&gt;The way I read the deal:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Summly and its product is going to be shut down. &lt;span class="light"&gt;So it&amp;rsquo;s not the product they wanted.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Nick only has to hang around for 18 months to get all his money. &lt;span class="light"&gt;So it&amp;rsquo;s not the founder they wanted.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Summly licensed its technology from someone else, so Yahoo is not getting any IP in the deal either. &lt;span class="light"&gt;So it&amp;rsquo;s not the tech they wanted.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This has to be the most &lt;em&gt;puzzling&lt;/em&gt; deal ever!&lt;/p&gt;</description></item><item><title>Oldest Trace of You on the Internet</title><link>https://hiltmon.com/blog/2013/03/26/oldest-trace-of-you-on-the-internet/</link><pubDate>Tue, 26 Mar 2013 10:20:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/26/oldest-trace-of-you-on-the-internet/</guid><description>&lt;p&gt;For a lark, and in response to this tweet:&lt;/p&gt;
&lt;blockquote class="twitter-tweet"&gt;&lt;p&gt;what's the oldest trace of yourself you can find on the internet?&lt;/p&gt;&amp;mdash; Kyle McDonald (@kcimc) &lt;a href="https://twitter.com/kcimc/status/315851225339949056"&gt;March 24, 2013&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;I started on the Internet in the late 1980&amp;rsquo;s when it was still called Arpanet. I connected our University of Cape Town UNIX boxes via &lt;a href="http://en.wikipedia.org/wiki/UUCP"&gt;UUCP&lt;/a&gt; to Rhodes University in South Africa which in turn used UUCP to talk to Oxford University in the UK, which in turn connected to one of the Ivy Leagues in the USA. The first message I sent was on behalf of my Professor to &lt;a href="http://en.wikipedia.org/wiki/Donald_Knuth"&gt;Donald Knuth&lt;/a&gt;, and we got a response. But all traces of that are gone.&lt;/p&gt;</description></item><item><title>Bjango's Photoshop Actions</title><link>https://hiltmon.com/blog/2013/03/25/bjango-photoshop-actions/</link><pubDate>Mon, 25 Mar 2013 16:59:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/25/bjango-photoshop-actions/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/03/25/bjango-photoshop-actions/images/bjango-actions.png" width="190" height="956"&gt;
&lt;/figure&gt;

&lt;p&gt;I&amp;rsquo;ve already pointed out that you &lt;em&gt;must have&lt;/em&gt; &lt;a href="https://hiltmon.com/blog/2012/07/11/slicy-photoshop-artwork/"&gt;Slicy&lt;/a&gt; when working in Photoshop to create and manage iOS artwork or when creating assets for web sites.&lt;/p&gt;
&lt;p&gt;The other &lt;em&gt;must have not-so-secret weapon&lt;/em&gt; for iOS art is Bjango&amp;rsquo;s &lt;a href="http://bjango.com/articles/actions/"&gt;iOS and Android Photoshop Actions &amp;amp; Workflows&lt;/a&gt;. These are a set of Photoshop actions that speed up the creation and scaling of iOS artwork.&lt;/p&gt;
&lt;p&gt;I start all iOS screen designs using the blue actions that create the necessary blank screen files (they even create a nice status bar). And I test the scaling of all icons using the green scaling actions which scale to &lt;em&gt;all&lt;/em&gt; the required and supported sizes.&lt;/p&gt;</description></item><item><title>Mixing Legacy and Modern Web Development on OS X Mountain Lion</title><link>https://hiltmon.com/blog/2013/03/20/mixing-legacy-and-modern-web-development-on-os-x-mountain-lion/</link><pubDate>Wed, 20 Mar 2013 16:42:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/20/mixing-legacy-and-modern-web-development-on-os-x-mountain-lion/</guid><description>&lt;p&gt;Over the past few years I have been developing &lt;em&gt;modern&lt;/em&gt; web applications like Kifu on my laptop using &lt;a href="https://rubyonrails.org/"&gt;Ruby on Rails&lt;/a&gt;, &lt;a href="http://www.sinatrarb.com"&gt;Sinatra&lt;/a&gt;, &lt;a href="https://github.com/octopress/octopress"&gt;Octopress&lt;/a&gt;, and &lt;a href="http://nodejs.org"&gt;Node.js&lt;/a&gt; powered by &lt;a href="http://pow.cx"&gt;Pow&lt;/a&gt;. But over the next few weeks I&amp;rsquo;ll be helping a friend upgrade a bunch of older legacy static (plain HTML), &lt;a href="http://php.net"&gt;PHP&lt;/a&gt; and &lt;a href="http://wordpress.org"&gt;Wordpress&lt;/a&gt; sites.&lt;/p&gt;
&lt;p&gt;I &lt;em&gt;do&lt;/em&gt; want to keep using the same smooth workflow processes as I have now. But I do &lt;em&gt;not&lt;/em&gt; want to clutter up my pristine OS X installation to do it. So this is how I have my &lt;em&gt;modern&lt;/em&gt; web development environment set up, and how I have added &lt;em&gt;almost seamless&lt;/em&gt; legacy development capability to it.&lt;/p&gt;</description></item><item><title>RSS Address Change</title><link>https://hiltmon.com/blog/2013/03/19/rss-address-change/</link><pubDate>Tue, 19 Mar 2013 19:23:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/19/rss-address-change/</guid><description>&lt;p&gt;&lt;span class="light"&gt;Update: This post has been updated with a new feed URL that will become the standard in future releases of Octopress. If you re-subscribed, I&amp;rsquo;d ask if you could please do it one more time. Thanks.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;It looks like Google is about to kill off &lt;a href="http://feedburner.google.com"&gt;Feedburner&lt;/a&gt;, so its best if we get started on the transition. Going forward, I&amp;rsquo;ll be using &lt;a href="https://github.com/octopress/octopress"&gt;Octopress&amp;rsquo;&lt;/a&gt; built-in RSS feed. Please re-subscribe to &lt;strong&gt;The Hiltmon RSS Feed&lt;/strong&gt; at:&lt;/p&gt;</description></item><item><title>Someone Else Did It Better</title><link>https://hiltmon.com/blog/2013/03/19/someone-else-did-it-better/</link><pubDate>Tue, 19 Mar 2013 11:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/19/someone-else-did-it-better/</guid><description>&lt;p&gt;Over the past year I have been working on a stealth iPad app to scratch an itch of mine. Today, following a tweeted link, I found the product I was working on, &lt;strong&gt;just done better by someone else&lt;/strong&gt;.&lt;/p&gt;
&lt;h2 id="the-product"&gt;The Product&lt;/h2&gt;
&lt;p&gt;As a developer, I have a bunch of old iPhones and iPads. As a writer, I have a blog. The idea was simple: create a dashboard app to run on the old iPad 1 as a second screen to display my site&amp;rsquo;s Google Analytics using tiles so I could rearrange the view.&lt;/p&gt;</description></item><item><title>Long on Apple</title><link>https://hiltmon.com/blog/2013/03/19/long-on-apple/</link><pubDate>Tue, 19 Mar 2013 11:29:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/19/long-on-apple/</guid><description>&lt;p&gt;Chris Umiastowski in &lt;a href="http://www.imore.com/apple-investors-how-stay-sane-staying-long"&gt;Apple investors: How to stay sane by staying long&lt;/a&gt; via iMore:&lt;/p&gt;
&lt;blockquote&gt;
&lt;ol&gt;
&lt;li&gt;Realize that you will never have an information advantage over the pros. Most information is geared to short term results anyway. Just don’t pay attention to short term news and rumours when it comes to investing. It won’t help you.&lt;/li&gt;
&lt;li&gt;Buy a stock for your own reasons and sell when those reasons are no longer true. This will stop you from making emotional decisions and trading on rumours.&lt;/li&gt;
&lt;li&gt;Start to notice the wording that journalists use when they talk about information sources. If the source is vaguely referenced, there is a much higher chance of the information being complete crap. Refer back to rule number 1 and 2.&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;
&lt;p&gt;Point 3 nails it!&lt;/p&gt;</description></item><item><title>I'm doing it wrong: Dropbox buys Mailbox</title><link>https://hiltmon.com/blog/2013/03/19/im-doing-it-wrong-dropbox-buys-mailbox/</link><pubDate>Tue, 19 Mar 2013 10:17:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/19/im-doing-it-wrong-dropbox-buys-mailbox/</guid><description>&lt;p&gt;On my tweet stream today:&lt;/p&gt;
&lt;blockquote class="twitter-tweet"&gt;&lt;p&gt;@&lt;a href="https://twitter.com/jnack"&gt;jnack&lt;/a&gt; Makes me wonder why I’ve been wasting years developing a sustainable product through many mature versions.&lt;/p&gt;&amp;mdash; Marco Arment (@marcoarment) &lt;a href="https://twitter.com/marcoarment/status/313800759265345536"&gt;March 18, 2013&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;Anyone got ideas for a revenue-free product I can make and sell for 100mm?&lt;/p&gt;
&lt;p&gt;Follow the author as &lt;a href="https://twitter.com/hiltmon"&gt;@hiltmon&lt;/a&gt; on Twitter. Mute&lt;/p&gt;</description></item><item><title>Windows Phone 8 support will expire before your phone contract does</title><link>https://hiltmon.com/blog/2013/03/18/windows-phone-8-support-will-expire-before-your-phone-contract-does/</link><pubDate>Mon, 18 Mar 2013 12:10:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/18/windows-phone-8-support-will-expire-before-your-phone-contract-does/</guid><description>&lt;p&gt;In a seriously bone-headed move, Microsoft has quietly announced that their mobile Operating Systems will only be supported and updated for 18 months:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Microsoft will make updates available for the Operating System on your phone, including security updates, for a period of 18 months after the lifecycle start date. Distribution of the updates may be controlled by the mobile operator or the phone manufacturer from which you purchased your phone. Update availability will also vary by country, region, and hardware capabilities.
&lt;a href="http://support.microsoft.com/lifecycle/search/default.aspx?sort=PN&amp;amp;alpha=windows+phone&amp;amp;Filter=FilterNO"&gt;Microsoft Support&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Cutting down on Web Tracking</title><link>https://hiltmon.com/blog/2013/03/18/cutting-down-on-web-tracking/</link><pubDate>Mon, 18 Mar 2013 10:46:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/18/cutting-down-on-web-tracking/</guid><description>&lt;p&gt;You may not know it, but lots of web sites use a variety of tricks to track you across the Internet, not just on the site you are currently browsing. These all depend on your browser talking to the tracker&amp;rsquo;s server without your knowledge or consent. These trackers use huge numbers of servers with different names and IP addresses to make it more difficult to stop them.&lt;/p&gt;
&lt;p&gt;If you use a single browser &lt;em&gt;all&lt;/em&gt; the time, plugins like &lt;a href="http://www.ghostery.com"&gt;Ghostery&lt;/a&gt; work very well. But if you, like me, use lots of browsers and scripts, something else is needed.&lt;/p&gt;</description></item><item><title>Premature BlackBerry Sales Analysis by Forbes</title><link>https://hiltmon.com/blog/2013/03/15/premature-blackberry-sales-analysis-by-forbes/</link><pubDate>Fri, 15 Mar 2013 09:46:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/15/premature-blackberry-sales-analysis-by-forbes/</guid><description>&lt;p&gt;&lt;em&gt;I&amp;rsquo;m writing this for a friend who tweeted this article to me. Feel free to listen in. Mate, this in an intervention, don&amp;rsquo;t believe what you read in Forbes. Please.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Lets take yesterday&amp;rsquo;s post &lt;a href="http://www.forbes.com/sites/afontevecchia/2013/03/14/nearly-half-of-blackberry-z10-buyers-switching-from-iphone-and-android/"&gt;Nearly Half Of BlackBerry Z10 Buyers Switching From iPhone And Android&lt;/a&gt; by Agustino Fontevecchia.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;BlackBerry’s new smartphone is stealing iPhone and Android users, according to a recent note by RBC Capital markets, which shows 45% of those buying Z10s converted from the two leading operating systems.&lt;/p&gt;</description></item><item><title>Also Destroyed the Ecosystem</title><link>https://hiltmon.com/blog/2013/03/14/destroyed-the-ecosystem/</link><pubDate>Thu, 14 Mar 2013 17:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/14/destroyed-the-ecosystem/</guid><description>&lt;p&gt;Aldo Cortesi in &lt;a href="http://corte.si/posts/socialmedia/rip-google-reader.html"&gt;Google, destroyer of ecosystems&lt;/a&gt; writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The truth is this: Google destroyed the RSS feed reader ecosystem with a subsidized product, stifling its competitors and killing innovation.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;em&gt;Erhem&lt;/em&gt;, see also:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Amazon → book stores&lt;/li&gt;
&lt;li&gt;Amazon → music stores&lt;/li&gt;
&lt;li&gt;Amazon → video stores&lt;/li&gt;
&lt;li&gt;Starbucks → coffee shops&lt;/li&gt;
&lt;li&gt;Best Buy → Appliance stores&lt;/li&gt;
&lt;li&gt;Home Depot → Hardware stores&lt;/li&gt;
&lt;li&gt;Luxottica → Eyewear&lt;/li&gt;
&lt;li&gt;LVMH → Luxury goods&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Follow the author as &lt;a href="https://twitter.com/hiltmon"&gt;@hiltmon&lt;/a&gt; on Twitter. Mute&lt;/p&gt;</description></item><item><title>Backup Your Online Life</title><link>https://hiltmon.com/blog/2013/03/14/backup-your-online-life/</link><pubDate>Thu, 14 Mar 2013 14:15:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/14/backup-your-online-life/</guid><description>&lt;p&gt;The big tech news today is that Google is shutting down its Reader RSS Sync service, and my Twitter and App.Net feeds are full of people upset about it.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;I&amp;rsquo;m not&lt;/em&gt; because I planned for it. &lt;em&gt;Free web service shutdowns have happened before and free web service shutdowns will happen again&lt;/em&gt; &lt;span class="light"&gt;(with apologies to Pythia)&lt;/span&gt;. So I regularly backup my online life. &lt;span class="light"&gt;(Links to do so are below.)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;By now, we&amp;rsquo;ve all been on the Internet long enough to know that &lt;em&gt;everything&lt;/em&gt; changes, frequently. We all moved from:&lt;/p&gt;</description></item><item><title>Guessing the Wall Street Journal Agenda for Apple</title><link>https://hiltmon.com/blog/2013/03/12/guessing-the-wall-street-journal-agenda-for-apple/</link><pubDate>Tue, 12 Mar 2013 15:52:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/12/guessing-the-wall-street-journal-agenda-for-apple/</guid><description>&lt;p&gt;I&amp;rsquo;m not a subscriber to the Wall Street Journal, but I have noted the past few months that the WSJ seems to issue regular negative &lt;em&gt;news&lt;/em&gt;, no, &lt;em&gt;opinions&lt;/em&gt;, no, &lt;em&gt;rumors&lt;/em&gt;, no, &lt;em&gt;rubbish&lt;/em&gt; on Apple.&lt;/p&gt;
&lt;p&gt;So I ran a test, I Googled &lt;code&gt;wsj apple&lt;/code&gt;.&lt;/p&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/03/12/guessing-the-wall-street-journal-agenda-for-apple/images/wsj-apple.jpg" width="300" height="332"&gt;
&lt;/figure&gt;

&lt;p&gt;Here are the headlines that came up. I only read the blurb because the content is behind a paywall, and so include my guess as to what I expect would be in the article (and know wasn&amp;rsquo;t):&lt;/p&gt;</description></item><item><title>Sharing Bash Profiles across Computers</title><link>https://hiltmon.com/blog/2013/03/12/sharing-bash-profiles-across-computers/</link><pubDate>Tue, 12 Mar 2013 13:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/12/sharing-bash-profiles-across-computers/</guid><description>&lt;p&gt;If you use more than one computer, keeping your &lt;em&gt;dotfiles&lt;/em&gt; in sync is difficult. You either need to run a sync program like &lt;a href="http://www.econtechnologies.com/pages/cs/chrono_overview.html"&gt;ChronoSync&lt;/a&gt; or set up your own &lt;code&gt;rsync&lt;/code&gt; scripts. &lt;strong&gt;And then remember to run them.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m lazy, I just want it to work. So here is a lightweight way to share your key &lt;em&gt;dotfiles&lt;/em&gt; across computers using &lt;a href="https://www.dropbox.com"&gt;Dropbox&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Create a folder in Dropbox called &lt;code&gt;Scripts&lt;/code&gt; and save your &lt;em&gt;dotfiles&lt;/em&gt; there:&lt;/p&gt;</description></item><item><title>Better Bash Shell Expansion</title><link>https://hiltmon.com/blog/2013/03/12/better-bash-shell-expansion/</link><pubDate>Tue, 12 Mar 2013 12:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/12/better-bash-shell-expansion/</guid><description>&lt;p&gt;I&amp;rsquo;ve been doing a lot of work on TextMate 2 plugins recently and the way shell expansion works in the terminal has been annoying me. Here are some tips to&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;speed up access to the &lt;code&gt;Application Support&lt;/code&gt; folder,&lt;/li&gt;
&lt;li&gt;create case insensitive tab completions,&lt;/li&gt;
&lt;li&gt;reduce typing to &lt;code&gt;cd&lt;/code&gt; to common folders&lt;/li&gt;
&lt;li&gt;and to reuse the TAB key for additional completions.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="getting-to-application-support"&gt;Getting to Application Support&lt;/h3&gt;
&lt;p&gt;The TextMate bundles I am working on are hidden in the &lt;strong&gt;Library&lt;/strong&gt; → &lt;strong&gt;Application Support&lt;/strong&gt; Folder. If you type this in your shell (⇥ is the TAB key):&lt;/p&gt;</description></item><item><title>Gist.tmbundle Updates</title><link>https://hiltmon.com/blog/2013/03/11/gist-dot-tmbundle-updates/</link><pubDate>Mon, 11 Mar 2013 16:59:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/11/gist-dot-tmbundle-updates/</guid><description>&lt;p&gt;I just pushed a few small updates to my &lt;a href="https://github.com/hiltmon/Gist.tmbundle"&gt;Gists bundle&lt;/a&gt; for TextMate 2. These include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Adding progress bars for network access (Thanks for the suggestion and tip from &lt;a href="https://github.com/sorbits"&gt;Allan Odgaard&lt;/a&gt;).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;New: Add file to Gist&lt;/strong&gt; command to add the current file to an existing Gist to create multi-file Gists. For example, use this to gist the header and implementation code files in the same gist. This gets cached so you can blindly update any of the files in a multi-file gist without remembering the gist ID.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;New: Gist from Selection&lt;/strong&gt; command to create a new gist with the selected text. This command, like all the others, leaves the URL of the gist on the clipboard so it&amp;rsquo;s easy to create a gist from selection, then paste the URL into a blog post or email. &lt;strong&gt;Note&lt;/strong&gt; that gists from selections are &lt;em&gt;not&lt;/em&gt; cached as they have no file names.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This Gists bundle is now part of the standard TextMate Bundle distribution. You can find this bundle in &lt;strong&gt;TextMate → Preferences → Bundles → Gist&lt;/strong&gt; where it can be enabled.&lt;/p&gt;</description></item><item><title>Modular Mac Pros, the new Burroughs B20?</title><link>https://hiltmon.com/blog/2013/03/09/modular-mac-pros/</link><pubDate>Sat, 09 Mar 2013 15:06:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/09/modular-mac-pros/</guid><description>&lt;p&gt;I&amp;rsquo;ve been watching a conversation on APP.NET speculating about the next Mac Pro form factor, triggered by Dan Frakes&amp;rsquo;s article &lt;a href="http://www.macworld.com/article/2029740/the-time-is-finally-right-for-a-mac-minitower.html"&gt;The time is (finally) right for a Mac minitower&lt;/a&gt; in MacWorld. &lt;em&gt;All we know about it is that Tim Cook said they were coming&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;One of the speculative themes in the discussion is a &amp;ldquo;modular&amp;rdquo; Mac Pro, where adding CPU&amp;rsquo;s, drives or expansion cards would be a simple case of stacking another module on and using [thunderbolt](&lt;a href="http://en.wikipedia.org/wiki/Thunderbolt_(interface)"&gt;http://en.wikipedia.org/wiki/Thunderbolt_(interface)&lt;/a&gt; to keep it all together:&lt;/p&gt;</description></item><item><title>The diminishing relevance of MS Office</title><link>https://hiltmon.com/blog/2013/03/07/the-diminishing-relevance-of-ms-office/</link><pubDate>Thu, 07 Mar 2013 18:25:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/07/the-diminishing-relevance-of-ms-office/</guid><description>&lt;p&gt;It used to be a given that we purchased our computers to run &lt;a href="http://office.microsoft.com/en-us/"&gt;MS Office&lt;/a&gt;, because that&amp;rsquo;s all the software we &lt;em&gt;used&lt;/em&gt; on our computers. But over the years, we started to use our computing devices for more than work and the use and need for MS Office has declined in importance.&lt;/p&gt;
&lt;p&gt;We still regularly need to use MS Office file formats to share documents, but lots of software happily reads and writes these formats. And these days, people are purchasing tablets and mobile computing devices in droves that do not and can not run MS Office and they don&amp;rsquo;t seem to care about it.&lt;/p&gt;</description></item><item><title>TimeToCall - After One Month</title><link>https://hiltmon.com/blog/2013/03/07/timetocall-after-one-month/</link><pubDate>Thu, 07 Mar 2013 14:46:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/07/timetocall-after-one-month/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is a follow-on to a &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;10 part (and growing) series&lt;/a&gt; I wrote about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;Start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Defend your Livelihood</title><link>https://hiltmon.com/blog/2013/03/06/defend-your-livelihood/</link><pubDate>Wed, 06 Mar 2013 12:36:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/06/defend-your-livelihood/</guid><description>&lt;p&gt;Adii Pienaar, of WooThemes, in &lt;a href="http://adii.me/dont-be-defensive-defend-your-livelihood"&gt;Don’t Be Defensive, But Defend Your Livelihood&lt;/a&gt; on dealing with negative reviews:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;1. Be Transparent.&lt;/strong&gt; The honest truth about all companies (and businesses in general) is that it&amp;rsquo;s impossible to please every single customer. I could&amp;rsquo;ve been defensive, tried to respond to the specific critique, but that would not have served any purpose. I don&amp;rsquo;t try to be perfect as an individual and I don&amp;rsquo;t expect Woo to be either. Striving for excellence, doesn&amp;rsquo;t mean striving for perfection.&lt;/p&gt;</description></item><item><title>We unfortunately can’t pay you for it</title><link>https://hiltmon.com/blog/2013/03/06/we-unfortunately-cant-pay-you-for-it/</link><pubDate>Wed, 06 Mar 2013 12:27:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/06/we-unfortunately-cant-pay-you-for-it/</guid><description>&lt;p&gt;Nate Thayer, in &lt;a href="http://natethayer.wordpress.com/2013/03/04/a-day-in-the-life-of-a-freelance-journalist-2013/"&gt;A Day in the Life of a Freelance Journalist—2013&lt;/a&gt; reports on an email conversation with The Atlantic, a news organization with &lt;em&gt;13 million subscribers&lt;/em&gt;, responding to their request for him to write something for them but &lt;strong&gt;&amp;ldquo;We unfortunately can’t pay you for it&amp;rdquo;&lt;/strong&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I am a professional journalist who has made my living by writing for 25 years and am not in the habit of giving my services for free to for profit media outlets so they can make money by using my work and efforts by removing my ability to pay my bills and feed my children.&lt;/p&gt;</description></item><item><title>Fix Copy Address from Mail on OS X</title><link>https://hiltmon.com/blog/2013/03/06/fix-copy-address-from-mail-on-os-x/</link><pubDate>Wed, 06 Mar 2013 12:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/06/fix-copy-address-from-mail-on-os-x/</guid><description>&lt;p&gt;In Apple&amp;rsquo;s Mail.app, when you right click on an email address and choose &amp;ldquo;Copy Address&amp;rdquo;, Apple decided that you would inexplicably also want the name part, so the string copied looks like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Hilton Lipschitz &amp;lt;me@hiltmon.com&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I have yet to find a single occasion when I wanted anything but the email address part.&lt;/p&gt;
&lt;p&gt;To correct this issue, jump into a terminal session and use:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool NO
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Quit and restart Mail.app. Copy an email address and you get an email address:&lt;/p&gt;</description></item><item><title>On Ihnatko Switching to Android</title><link>https://hiltmon.com/blog/2013/03/06/on-ihnatko-switching-to-android/</link><pubDate>Wed, 06 Mar 2013 11:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/06/on-ihnatko-switching-to-android/</guid><description>&lt;p&gt;Andy Ihnatko (&lt;a href="https://twitter.com/Ihnatko"&gt;@ihnatko&lt;/a&gt;) is writing one of his usual clear and cogent articles on his choice to switch from the iPhone to Android at TechHive, see &lt;a href="http://www.techhive.com/article/2030042/why-i-switched-from-iphone-to-android.html"&gt;Part One&lt;/a&gt; and &lt;a href="http://www.techhive.com/article/2030116/customize-and-collaborate-why-i-switched-from-iphone-to-android-part-2.html"&gt;Part Two&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Good for him.&lt;/p&gt;
&lt;p&gt;But somehow the haters have come out in droves, even though Andy himself tried to head them off at the pass:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This isn&amp;rsquo;t the story about how Apple has lost its way and no longer innovates. It hasn&amp;rsquo;t and it still does. This is merely the story of one dude who got a new phone. Nonetheless, my tale presents a picture of the strengths of modern Android.&lt;/p&gt;</description></item><item><title>TimeToCall Demo Video</title><link>https://hiltmon.com/blog/2013/03/05/timetocall-demo-video/</link><pubDate>Tue, 05 Mar 2013 15:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/05/timetocall-demo-video/</guid><description>&lt;p&gt;In preparation for the massive PR campaign &lt;em&gt;that will never happen&lt;/em&gt;, I created a demo video of &lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt;, showing off the new &amp;ldquo;drag down slider&amp;rdquo;, and added it to the product page. &lt;em&gt;I am hoping v1.0.1 gets approved soon so you can all play with time.&lt;/em&gt;&lt;/p&gt;
&lt;iframe width="640" height="360" src="http://www.youtube.com/embed/84EvUGKoTyQ?rel=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
&lt;h3 id="why-make-a-video"&gt;Why make a Video?&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;There is no trial on the App Store, so the next best thing is a quick video to help people decide whether the App does what they want. A lot more purchase decisions are made if the potential customer can see a video before they buy. The purchase seems less risky to them and they know what they are getting in to.&lt;/li&gt;
&lt;li&gt;The press gets so many emails that they too have no time to read all the text written about a product. But they do have a few minutes to watch a quick video, and that helps them decide whether to keep watching and write about the product.&lt;/li&gt;
&lt;li&gt;Users, unsure on how to use the app, get a quick-reference on how best to use it from the demo.&lt;/li&gt;
&lt;li&gt;Videos are cool.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;To make this video, I ran &lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; in the iOS Simulator and used &lt;a href="https://itunes.apple.com/us/app/screenflow-4/id573279886?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;ScreenFlow 4&lt;/a&gt; to record the screen, record my voice-over, present my finger as a white button, add the text annotations and edit the clips. &lt;em&gt;This is an amazing product, so easy to use&lt;/em&gt;. I also used &lt;a href="https://itunes.apple.com/us/app/garageband/id408980954?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;GarageBand&lt;/a&gt; to create the Jazz soundtrack, using the default Apple Loops because I am not a musician. &lt;a href="https://itunes.apple.com/us/app/screenflow-4/id573279886?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;ScreenFlow&lt;/a&gt; then handled the upload to &lt;a href="https://www.youtube.com/watch?v=84EvUGKoTyQ"&gt;YouTube&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Better?</title><link>https://hiltmon.com/blog/2013/03/02/better/</link><pubDate>Sat, 02 Mar 2013 12:27:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/03/02/better/</guid><description>&lt;p&gt;We all seem to spend a lot of time looking for better things, writing about them and arguing that our choices are better than others&amp;rsquo; choices of things. These jeans are better than those jeans, this laptop is better that that laptop, this app is better than that app, this coffee is better than that one.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;We&amp;rsquo;re all wrong&lt;/strong&gt;, what is better for one is not better for all, because we all have different utility functions. We do not need to stop looking and discussing better, the discussion often does help find it, but we need to understand that that what we think is better may not even be on the care-radar of others.&lt;/p&gt;</description></item><item><title>TimeToCall - First Updates Coming Soon</title><link>https://hiltmon.com/blog/2013/02/28/timetocall-first-updates-coming-soon/</link><pubDate>Thu, 28 Feb 2013 17:57:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/28/timetocall-first-updates-coming-soon/</guid><description>&lt;p&gt;I&amp;rsquo;ve received some great feedback and a few bug reports on TimeToCall and spent some time trying to make it a better product. The next decision is &lt;em&gt;when&lt;/em&gt; to pull the trigger and put the first update through the App Store review process.&lt;/p&gt;
&lt;h2 id="changes"&gt;Changes&lt;/h2&gt;
&lt;p&gt;The two big changes I have made so far are a &lt;em&gt;more accurate slider&lt;/em&gt; and the &lt;em&gt;time now toggle&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;In the original release, I set the time slider to jump to 15 minute increments to make it easier to hit a &amp;lsquo;zero&amp;rsquo; time. I did this because I could never get the tiny slider to hit the time I wanted with my own fat fingers. But people did not like it, they felt the slider did not behave very well.&lt;/p&gt;</description></item><item><title>Have a Better Agenda</title><link>https://hiltmon.com/blog/2013/02/27/have-a-better-agenda/</link><pubDate>Wed, 27 Feb 2013 12:46:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/27/have-a-better-agenda/</guid><description>&lt;p&gt;Many, many years ago I went on one of those corporate week-long training courses to learn how to negotiate. Back then I was too young and too green to learn anything from it except I remember this mantra:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The only way to win against someone with an agenda is to have a better agenda.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;At the time, I never quite understood what that meant. I think I have a better handle on it now.&lt;/p&gt;</description></item><item><title>BuyReply: Email, Text, Tweet, Click to Buy</title><link>https://hiltmon.com/blog/2013/02/26/buyreply-email-text-tweet-to-buy/</link><pubDate>Tue, 26 Feb 2013 11:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/26/buyreply-email-text-tweet-to-buy/</guid><description>&lt;p&gt;Prior to online purchases, the only innovation in purchasing was credit cards. The move to online electronic purchasing has seen only one more real innovation, 1-click by Amazon. The current online purchasing experience really just replicates the same onerous manual purchasing process that’s been around since money was invented.&lt;/p&gt;
&lt;p&gt;Until now.&lt;/p&gt;
&lt;figure class="image-right"&gt;&lt;img src="images/buyreply-logo.png%20250%2053"&gt;
&lt;/figure&gt;

&lt;p&gt;With &lt;a href="http://www.buyreply.com/"&gt;BuyReply&lt;/a&gt;, purchasing is as far away as an email, text or tweet. Completely frictionless. Completely effortless. Available everywhere.&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s how it works. A vendor &lt;em&gt;pops&lt;/em&gt; an easy-to-remember email address, SMS number or Twitter handle and a short code, usually a simple word like &amp;ldquo;LASER&amp;rdquo; or &amp;ldquo;DONATE&amp;rdquo;. You email, text or tweet that code word to the given address and &lt;a href="http://www.buyreply.com/"&gt;BuyReply&lt;/a&gt; sends you a link to register your payment info and shipping details. They then save this in your online wallet for future purchases. Purchase made. That&amp;rsquo;s it.&lt;/p&gt;</description></item><item><title>Code</title><link>https://hiltmon.com/code/</link><pubDate>Tue, 26 Feb 2013 09:10:50 -0400</pubDate><guid>https://hiltmon.com/code/</guid><description>&lt;p&gt;This page contains a list of the &lt;em&gt;free&lt;/em&gt; products, plugins, themes or source code that I have made available to fellow developers. For products and paid applications, see my &lt;a href="https://hiltmon.com/products"&gt;products&lt;/a&gt; page.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note that these are all quite old and are no longer under any development.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Go ahead and download, contribute to and use them. &lt;strong&gt;Please do me the courtesy of letting me know if you do&lt;/strong&gt;. The source code assumes you are a developer and know how to use it, so I cannot provide support.&lt;/p&gt;</description></item><item><title>Using Twitter and #xpost (Archived)</title><link>https://hiltmon.com/blog/2013/02/26/using-twitter-adn-and-xpost/</link><pubDate>Tue, 26 Feb 2013 08:47:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/26/using-twitter-adn-and-xpost/</guid><description>&lt;p&gt;I think I have finally figured out how I want to use &lt;strong&gt;Twitter&lt;/strong&gt; (&lt;a href="https://twitter.com/hiltmon"&gt;@hiltmon&lt;/a&gt;) . Given my low follower counts, this works for me.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Note: This post was originally published in 2013 when App.Net existed. App.Net shut down in 2016 and cross-posting is no longer possible.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;em&gt;TL;DR: Follow me on both, no more cross-posting &lt;em&gt;anything&lt;/em&gt; except blog post announcements, mute &lt;code&gt;#xpost&lt;/code&gt; on one service to prevent duplicates. &lt;span class="light"&gt;(Really? A TL;DR here! For an article this short? Where the &amp;ldquo;Too Long; Don&amp;rsquo;t Read&amp;rdquo; is about the same length as the post. Yes Really!)&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Gist TextMate Bundle and Command Line</title><link>https://hiltmon.com/blog/2013/02/25/gist-textmate-bundle-and-command/</link><pubDate>Mon, 25 Feb 2013 15:44:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/25/gist-textmate-bundle-and-command/</guid><description>&lt;p&gt;I was having a conversation on Twitter with Shawn Hansen (&lt;a href="https://twitter.com/geekles"&gt;@geekles&lt;/a&gt;) this weekend and he mentioned that &lt;a href="http://www.sublimetext.com"&gt;Sublime Text 2&lt;/a&gt; has a great plugin for Github Gists, and &lt;a href="https://github.com/textmate/textmate"&gt;TextMate 2&lt;/a&gt; was missing this awesomeness.&lt;/p&gt;
&lt;p&gt;Not anymore (the Oscars were on).&lt;/p&gt;
&lt;figure class="left-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/02/25/gist-textmate-bundle-and-command/images/textmate-gists-menu.png" width="158" height="132"&gt;
&lt;/figure&gt;

&lt;p&gt;Announcing the first release of my &lt;a href="https://github.com/hiltmon/Gist.tmbundle"&gt;TextMate 2 bundle&lt;/a&gt; and a &lt;a href="https://github.com/hiltmon/gist"&gt;separate command line tool&lt;/a&gt; for retrieving, creating and updating GitHub Gists.&lt;/p&gt;
&lt;p&gt;The main difference between this and other implementations is that this one &lt;em&gt;caches&lt;/em&gt; gist mappings (gist id to file names in &lt;code&gt;~/.gists&lt;/code&gt;) so you don&amp;rsquo;t have to remember them (and because TextMate 2 has no way to save user attributes on opened files). This implementation also leaves the gist URL on the clipboard for OS X users (which makes it quicker to blog with gists).&lt;/p&gt;</description></item><item><title>Multiple Themes in TextMate 2</title><link>https://hiltmon.com/blog/2013/02/22/multiple-themes-in-textmate-2/</link><pubDate>Fri, 22 Feb 2013 18:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/22/multiple-themes-in-textmate-2/</guid><description>&lt;p&gt;One thing I like to do is to have different themes for different file types in my text editor. That way, at a glance, I can guess what kind of file a text-filled window contains, especially when zoomed out using Mission Control. I’ve been using Custom Language Preferences in &lt;a href="https://itunes.apple.com/us/app/bbedit/id404009241?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;BBEdit&lt;/a&gt; preferences to set up the color scheme for each file type there, and I have set up &lt;a href="https://hiltmon.com/blog/2012/11/07/multiple-themes-in-sublime-text-2/"&gt;Multiple Themes in Sublime Text 2&lt;/a&gt; previously.&lt;/p&gt;</description></item><item><title>Glui - a better Skitch</title><link>https://hiltmon.com/blog/2013/02/20/glui-a-better-skitch/</link><pubDate>Wed, 20 Feb 2013 19:09:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/20/glui-a-better-skitch/</guid><description>&lt;p&gt;Ever since &lt;a href="http://evernote.com"&gt;Evernote&lt;/a&gt; purchased and then ruined &lt;a href="https://itunes.apple.com/us/app/skitch/id425955336?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Skitch&lt;/a&gt; (See my &lt;a href="https://hiltmon.com/blog/2012/09/27/bye-bye-skitch/"&gt;Bye bye Skitch, Hello LittleSnapper&lt;/a&gt; post), I’ve been looking for a replacement product. A lightweight snap, annotate and save to PNG or share the image app. And I think &lt;a href="https://itunes.apple.com/us/app/glui/id601359958?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Glui&lt;/a&gt; may be it.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2013/02/20/glui-a-better-skitch/images/glui.jpg" width="640" height="397"&gt;
&lt;/figure&gt;

&lt;p&gt;I just wanted an app that just does the following like the original &lt;a href="https://itunes.apple.com/us/app/skitch/id425955336?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Skitch&lt;/a&gt; betas:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Snap&lt;/li&gt;
&lt;li&gt;Quick Annotate&lt;/li&gt;
&lt;li&gt;Save as image, or&lt;/li&gt;
&lt;li&gt;Share the image&lt;/li&gt;
&lt;li&gt;Go away&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="https://itunes.apple.com/us/app/glui/id601359958?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Glui&lt;/a&gt;, by &lt;a href="http://glui.me/getapp.html"&gt;Sebastian Razola&lt;/a&gt; (&lt;a href="https://twitter.com/razola"&gt;@razola&lt;/a&gt;), does exactly that. It sits in the menu bar, offers keyboard shortcuts for crosshair, window or fullscreen snaps, offers an arrow, box and text annotation in one color (red), with drag to desktop or share on Dropbox. Lovely!&lt;/p&gt;</description></item><item><title>CriticMarkup Bundle for TextMate 2</title><link>https://hiltmon.com/blog/2013/02/15/criticmarkup-bundle-for-textmate-2/</link><pubDate>Fri, 15 Feb 2013 12:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/15/criticmarkup-bundle-for-textmate-2/</guid><description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Update&lt;/strong&gt;: Christian Tietze (&lt;a href="http://twitter.com/DivineDominion"&gt;@DivineDominion&lt;/a&gt;) has created a bundle that&amp;rsquo;s included in the official toolkit, so I contributed my bundle&amp;rsquo;s commands to that, and will be using and contributing to that one from now on. Get the full toolkit at &lt;a href="https://github.com/CriticMarkup/CriticMarkup-toolkit"&gt;CriticMarkup-toolkit&lt;/a&gt; or just the TextMate bundle at &lt;a href="https://github.com/DivineDominion/criticmarkup.tmbundle"&gt;criticmarkup.tmbundle&lt;/a&gt;. I&amp;rsquo;ve already taken my repo down to prevent confusion.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Recently, &lt;a href="http://twitter.com/macdrifter"&gt;@macdrifter&lt;/a&gt; and &lt;a href="http://twitter.com/themindfulbit"&gt;@themindfulbit&lt;/a&gt; announced &lt;a href="http://criticmarkup.com"&gt;CriticMarkup&lt;/a&gt;, a way for authors and editors to track changes to documents in plain text. I created a &lt;a href="http://blog.macromates.com/2012/textmate-2-at-github/"&gt;TextMate 2&lt;/a&gt; bundle to add this markup to &lt;em&gt;my&lt;/em&gt; favorite text editor for &lt;a href="http://daringfireball.net/projects/markdown/"&gt;Markdown&lt;/a&gt; files.&lt;/p&gt;</description></item><item><title>TimeToCall - After One Week</title><link>https://hiltmon.com/blog/2013/02/14/timetocall-after-one-week/</link><pubDate>Thu, 14 Feb 2013 07:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/14/timetocall-after-one-week/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is a follow-on to a &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;10 part (and growing) series&lt;/a&gt; I wrote about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;Start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Make iTerm 2 more Mac-like</title><link>https://hiltmon.com/blog/2013/02/13/make-iterm-2-more-mac-like/</link><pubDate>Wed, 13 Feb 2013 12:08:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/13/make-iterm-2-more-mac-like/</guid><description>&lt;p&gt;I just switched from using Apple’s built-in Terminal.app to the free &lt;a href="http://www.iterm2.com/#/section/home"&gt;iTerm 2&lt;/a&gt; on a recommendation from &lt;a href="http://brettterpstra.com"&gt;Brett Terpstra&lt;/a&gt;. I’m already loving the hot-key profiles to launch uniquely colored remote sessions, the split panes, and the brilliant hotkey window (useful to run a single command and get rid of it).&lt;/p&gt;
&lt;p&gt;But there are a few things that needed some work. Some of the usual Mac editing keys did not work, I got rid of a few annoyances and added a few lovely preferences, and I needed the ability to create a new terminal window on the &lt;em&gt;current&lt;/em&gt; space as part of my &lt;a href="https://hiltmon.com/blog/2013/01/17/being-productive-with-virtual-desktops/"&gt;being productive with virtual desktops&lt;/a&gt; flow (Just like &lt;a href="https://hiltmon.com/blog/2013/01/19/browser-windows-on-all-desktops/"&gt;Browser Windows on All Desktops&lt;/a&gt;).&lt;/p&gt;</description></item><item><title>Download Dreamhost Server Logs</title><link>https://hiltmon.com/blog/2013/02/10/download-dreamhost-server-logs/</link><pubDate>Sun, 10 Feb 2013 14:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/10/download-dreamhost-server-logs/</guid><description>&lt;p&gt;This site is hosted on &lt;a href="http://www.dreamhost.com/r.cgi?258997"&gt;Dreamhost&lt;/a&gt;, and I could not be happier with them. But some time ago, the engineers there decided to disable FTP access to the server logs. No reason given.&lt;/p&gt;
&lt;p&gt;If you have a Dreamhost shared account, try it. &lt;code&gt;ftp&lt;/code&gt; into your server using your favorite FTP client, click the &lt;code&gt;logs&lt;/code&gt; folder, then your site folder, then &lt;code&gt;http&lt;/code&gt; and you’ll get an error. This is because the &lt;code&gt;http&lt;/code&gt; folder is actually a symlink to a private, readonly folder on the server that is inaccessible to FTP. If you &lt;code&gt;ssh&lt;/code&gt; in, you can &lt;code&gt;cd&lt;/code&gt; to this folder and see the logs because the shell &lt;em&gt;can&lt;/em&gt; traverse this symlink.&lt;/p&gt;</description></item><item><title>Add Web Clip Icons to Octopress</title><link>https://hiltmon.com/blog/2013/02/10/add-web-clip-icons-to-octopress/</link><pubDate>Sun, 10 Feb 2013 13:57:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/10/add-web-clip-icons-to-octopress/</guid><description>&lt;p&gt;The default &lt;a href="https://github.com/octopress/octopress"&gt;Octopress&lt;/a&gt; setup includes a &lt;code&gt;favicon.png&lt;/code&gt; which enables you to place your own tiny icon to the left of the URL in most browsers. You should see a small blue cog there now.&lt;/p&gt;
&lt;p&gt;Both Apple and Android phones also support saving a link to a site (called a web clip) on your phone as an icon. Over the past few days, it seems quite a few viewers of this site have added it as a web clip, but I had not provided good iconage.&lt;/p&gt;</description></item><item><title>TimeToCall - Shipping</title><link>https://hiltmon.com/blog/2013/02/07/timetocall-shipping/</link><pubDate>Thu, 07 Feb 2013 08:18:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/07/timetocall-shipping/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 10&lt;/strong&gt;, the &lt;strong&gt;last&lt;/strong&gt; part in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iOS app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/02/06/timetocall-dawdle-to-the-finish/"&gt;Back to part 9&lt;/a&gt; or &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>TimeToCall - Dawdle to the Finish</title><link>https://hiltmon.com/blog/2013/02/06/timetocall-dawdle-to-the-finish/</link><pubDate>Wed, 06 Feb 2013 10:28:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/06/timetocall-dawdle-to-the-finish/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 9&lt;/strong&gt; in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/02/05/timetocall-the-macguffin/"&gt;Back to part 8&lt;/a&gt; or &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>TimeToCall - The MacGuffin</title><link>https://hiltmon.com/blog/2013/02/05/timetocall-the-macguffin/</link><pubDate>Tue, 05 Feb 2013 10:15:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/05/timetocall-the-macguffin/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 8&lt;/strong&gt; in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/02/04/timetocall-polishing-the-app/"&gt;Back to part 7&lt;/a&gt; or &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>TimeToCall - Polishing the App</title><link>https://hiltmon.com/blog/2013/02/04/timetocall-polishing-the-app/</link><pubDate>Mon, 04 Feb 2013 09:34:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/04/timetocall-polishing-the-app/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 7&lt;/strong&gt; in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/02/03/timetocall-sweating-the-details/"&gt;Back to part 6&lt;/a&gt; or &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>TimeToCall - Sweating the Details</title><link>https://hiltmon.com/blog/2013/02/03/timetocall-sweating-the-details/</link><pubDate>Sun, 03 Feb 2013 13:07:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/03/timetocall-sweating-the-details/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 6&lt;/strong&gt; in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/02/02/timetocall-good-and-bad-times-to-call/"&gt;Back to part 5&lt;/a&gt; or &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>TimeToCall - Good and Bad Times to Call</title><link>https://hiltmon.com/blog/2013/02/02/timetocall-good-and-bad-times-to-call/</link><pubDate>Sat, 02 Feb 2013 11:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/02/timetocall-good-and-bad-times-to-call/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 5&lt;/strong&gt; in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/02/01/timetocall-presenting-the-clock/"&gt;Back to part 4&lt;/a&gt; or &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>TimeToCall - Presenting the Clock</title><link>https://hiltmon.com/blog/2013/02/01/timetocall-presenting-the-clock/</link><pubDate>Fri, 01 Feb 2013 10:22:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/02/01/timetocall-presenting-the-clock/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 4&lt;/strong&gt; in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/01/31/timetocall-the-biggest-design-decision/"&gt;Back to part 3&lt;/a&gt; or &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>TimeToCall - The Biggest Design Decision</title><link>https://hiltmon.com/blog/2013/01/31/timetocall-the-biggest-design-decision/</link><pubDate>Thu, 31 Jan 2013 11:42:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/31/timetocall-the-biggest-design-decision/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 3&lt;/strong&gt; in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/01/30/timetocall-building-the-core/"&gt;Back to part 2&lt;/a&gt; or &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;start at part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Clothes make the Man</title><link>https://hiltmon.com/blog/2013/01/30/clothes-make-the-man/</link><pubDate>Wed, 30 Jan 2013 21:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/30/clothes-make-the-man/</guid><description>&lt;p&gt;We all know the old English proverb, “&lt;strong&gt;Clothes don&amp;rsquo;t make the man&lt;/strong&gt;&amp;quot;, declaring that we should not judge a person by their appearance.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Yet we do continue to judge people, just these days it&amp;rsquo;s by their devices.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;That person is a Apple fanboy with their walled garden white earbud iPhone and shiny MacBook Air. That person is an open-source neck-beard with their incomprehensible 1976 vintage text editor running on a cheap ChromeBook. That person is a fuddy-duddy corporate-drone Windows user dodging updates and viruses and popups while using PowerPoint for everything. And over there is the rare and exotic Blackberry holdout, spinning their nipple and clicking hopelessly on a thumb sized keyboard.&lt;/p&gt;</description></item><item><title>TimeToCall - Building the Core</title><link>https://hiltmon.com/blog/2013/01/30/timetocall-building-the-core/</link><pubDate>Wed, 30 Jan 2013 11:29:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/30/timetocall-building-the-core/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 2&lt;/strong&gt; in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software. &lt;a href="https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/"&gt;Read part 1 first&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>TimeToCall - The Effort and the Return</title><link>https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/</link><pubDate>Tue, 29 Jan 2013 19:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/29/timetocall-the-effort-and-the-return/</guid><description>&lt;p&gt;&lt;em&gt;&lt;a href="https://hiltmon.com/timetocall/"&gt;TimeToCall&lt;/a&gt; is a simple, universal iOS application I developed to help people choose the best time to call when calling internationally. This is &lt;a href="https://hiltmon.com/blog/categories/timetocall/"&gt;&lt;strong&gt;part 1&lt;/strong&gt; in a series of posts&lt;/a&gt; about the thinking and work done. My goal is to share just how much effort it really does take to craft an iPhone app and ship it. I hope this series helps you to understand why it costs so much and takes so long to create beautiful software.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Time To Call - Coming Soon</title><link>https://hiltmon.com/blog/2013/01/25/time-to-call-coming-soon/</link><pubDate>Fri, 25 Jan 2013 17:19:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/25/time-to-call-coming-soon/</guid><description>&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2013/01/25/time-to-call-coming-soon/images/time-to-call-teaser.jpg" width="384" height="628"&gt;
&lt;/figure&gt;

&lt;p&gt;“Ring Ring”
&amp;hellip;
“Hmmmm Hello”
&amp;hellip;
“Er Hi Mum”
&amp;hellip;
“Mum”
&amp;hellip;
“MUUUM”
&amp;hellip;
“Do you know what the time is?”
&amp;hellip;
“I know it’s after work in Sydney, but it’s 3AM here in New York”
&amp;hellip;
“Yes I was sleeping”
&amp;hellip;
“No, no, I’m awake now”
&amp;hellip;
“Just please check the time before you call”&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Never know when is the best time to call people overseas?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;TimeToCall&lt;/em&gt; is coming soon for the iPhone and iPad.&lt;/p&gt;</description></item><item><title>Dog with a Bone</title><link>https://hiltmon.com/blog/2013/01/24/dog-with-a-bone/</link><pubDate>Thu, 24 Jan 2013 09:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/24/dog-with-a-bone/</guid><description>&lt;p&gt;I think one thing that is unique about programmers is that we are tenacious about getting a problem solved. As tenacious as a dog with a bone to chew. It irks us when things are not perfect, but instead of ignoring it or putting up with it, we put in the time and effort to solve it. No matter how small the niggle.&lt;/p&gt;
&lt;p&gt;Maybe it’s simply because we can. Or maybe we’re anal or crazy. Or maybe we have wolf genes.&lt;/p&gt;</description></item><item><title>Surface Pro Pricing Madness</title><link>https://hiltmon.com/blog/2013/01/23/surface-pro-pricing-madness/</link><pubDate>Wed, 23 Jan 2013 09:52:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/23/surface-pro-pricing-madness/</guid><description>&lt;p&gt;I don’t get the pricing for Microsoft’s new Surface Pro.&lt;/p&gt;
&lt;p&gt;The basic, bottom spec unit (with no keyboard, tablet form only) is $899.00. &lt;em&gt;Why would you buy it&lt;/em&gt; when you can get full-size iPad at $499.00, or even the top-of-the line iPad at $829.00. &lt;em&gt;Why would you buy it&lt;/em&gt; if you specifically want a Windows 8 tablet and a Samsung Activ goes for under $699.00 (and includes the keyboard).&lt;/p&gt;
&lt;p&gt;And if you do add the keyboard for $120 (which pushes the price over $1,000) to use the Surface as a laptop, &lt;em&gt;why not buy&lt;/em&gt; the best laptop ever made, the MacBook Air for $999.00. And if you just have to have Windows 8, Lenovo’s superb Yoga is also faster, better built, bigger and cheaper at $999.00 too (and it’s the most expensive of the bunch!).&lt;/p&gt;</description></item><item><title>Sanity Saver: NoMoreiTunes</title><link>https://hiltmon.com/blog/2013/01/19/sanity-saver-nomoreitunes/</link><pubDate>Sat, 19 Jan 2013 12:54:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/19/sanity-saver-nomoreitunes/</guid><description>&lt;p&gt;&lt;em&gt;Sanity Savers are quick tips that help you stay sane when using your computer.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I really don’t like it when you web browse to the App Store (iOS or Mac), it also launches iTunes or the App Store App on top. If I want to buy the app, I’ll click myself, I do not want my browsing flow to be interrupted by the launch of another application.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2013/01/19/sanity-saver-nomoreitunes/images/nomoreitunes.jpg" width="700" height="238"&gt;
&lt;/figure&gt;

&lt;p&gt;The &lt;a href="http://nomoreitunes.einserver.de"&gt;NoMoreiTunes Safari Extension&lt;/a&gt; prevents this from happening. You can browse to and look at an app on the web and keep browsing without having new windows getting in the way. Just download and double-click the downloaded file to install it.&lt;/p&gt;</description></item><item><title>Browser Windows on all Desktops</title><link>https://hiltmon.com/blog/2013/01/19/browser-windows-on-all-desktops/</link><pubDate>Sat, 19 Jan 2013 10:57:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/19/browser-windows-on-all-desktops/</guid><description>&lt;p&gt;In &lt;a href="https://hiltmon.com/blog/2013/01/17/being-productive-with-virtual-desktops/"&gt;Being Productive With Virtual Desktops&lt;/a&gt;, I talked about how I pin certain applications to certain Mission Control virtual desktops to create context specific environments.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Reader “zharmany” asked what I did with the web browser, since it is needed on many of these desktops for different reasons.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;My needs are to have separate browser windows on &lt;em&gt;Desktop 1 / Work&lt;/em&gt; for previews, on &lt;em&gt;Desktop 3 / Mail&lt;/em&gt; for mail links and on &lt;em&gt;Desktop 4 / Social&lt;/em&gt; for looking at tweeted links, so I do not pin Safari. Instead, I open new, blank Safari windows on each of these desktops.&lt;/p&gt;</description></item><item><title>Being Productive with Virtual Desktops</title><link>https://hiltmon.com/blog/2013/01/17/being-productive-with-virtual-desktops/</link><pubDate>Thu, 17 Jan 2013 10:16:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/17/being-productive-with-virtual-desktops/</guid><description>&lt;p&gt;There are a bunch of applications I always want running on my computer, such as &lt;a href="http://www.apple.com/osx/apps/#mail"&gt;Mail.app&lt;/a&gt;, &lt;a href="https://itunes.apple.com/us/app/omnifocus/id402835630?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;OmniFocus&lt;/a&gt;, &lt;a href="https://itunes.apple.com/us/app/billings-pro/id434514810?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Billings Pro&lt;/a&gt; and &lt;a href="https://itunes.apple.com/us/app/tweetbot-for-twitter/id557168941?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;Tweetbot&lt;/a&gt;, but I also do not want to be distracted by them. One option is to hide them using &lt;code&gt;⌘H&lt;/code&gt; on the Mac, the other way is to use virtual desktops.&lt;/p&gt;
&lt;p&gt;My goal is to create context-aware desktops where I can stay focussed on the task at hand without distractions, and to be able to switch and restore contexts instantly and predictably, that is most productive.&lt;/p&gt;</description></item><item><title>RVM in TextMate 2</title><link>https://hiltmon.com/blog/2013/01/16/rvm-in-textmate-2/</link><pubDate>Wed, 16 Jan 2013 20:04:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/16/rvm-in-textmate-2/</guid><description>&lt;p&gt;I use Ruby Version Manager (&lt;a href="https://rvm.io"&gt;rvm&lt;/a&gt;) to manage the interpreters and gemsets for all of my projects. But the default install of &lt;a href="https://github.com/textmate/textmate"&gt;TextMate 2&lt;/a&gt; uses the &lt;em&gt;system&lt;/em&gt; ruby interpreter for internal command execution as well as for external runs. Here is how to use your &lt;code&gt;rvm&lt;/code&gt; environment for both.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;tl;dr&lt;/strong&gt;: Set the &lt;code&gt;TM_RUBY&lt;/code&gt; variable in preferences or your &lt;code&gt;~/.tm_properties&lt;/code&gt; file to the path returned by &lt;code&gt;which rvm-auto-ruby&lt;/code&gt; and restart. That will set the internal runner. For external runs from within TextMate 2, also comment out the shebang in the script before pressing &lt;code&gt;⌘R&lt;/code&gt; (or run from the terminal directly). &lt;a href="http://www.sublimetext.com/2"&gt;Sublime Text 2&lt;/a&gt; users, check the end of this post for &lt;code&gt;⌘B&lt;/code&gt; use.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Back to TextMate 2</title><link>https://hiltmon.com/blog/2013/01/14/back-to-textmate-2/</link><pubDate>Mon, 14 Jan 2013 22:01:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/14/back-to-textmate-2/</guid><description>&lt;p&gt;I spent the latter half of 2012 trying out new &lt;em&gt;programmer’s editors&lt;/em&gt;, getting them set up the way I like and getting productive in them. This was no fly-by-night few-hour test, it was full-monty Rails development work for months. Lots of shell scripts, file manipulations, formats, different programming languages, different platforms, all my programming activities.&lt;/p&gt;
&lt;p&gt;I tried &lt;a href="hhttps://itunes.apple.com/us/app/bbedit/id404009241?mt=12&amp;amp;uo=4&amp;amp;at=10l894"&gt;BBEdit&lt;/a&gt; for programming, and it is good. BBEdit remains my &lt;em&gt;text editing&lt;/em&gt; and &lt;em&gt;file manipulation&lt;/em&gt; tool of choice and I suspect it always will be. It’s running all the time for me to take notes, scratch around, manipulate data or experiment. But the language grammars, language-in-language syntax highlighting and snippets were not as good as &lt;a href="http://macromates.com"&gt;TextMate&lt;/a&gt; 1’s for &lt;em&gt;programming&lt;/em&gt;. I installed a bunch of tools, wrote a few of my own scripts, but gave up.&lt;/p&gt;</description></item><item><title>Hit by a Bus</title><link>https://hiltmon.com/blog/2013/01/14/hit-by-a-bus/</link><pubDate>Mon, 14 Jan 2013 12:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/14/hit-by-a-bus/</guid><description>&lt;blockquote&gt;
&lt;p&gt;What would happen to my clients and my products if I got hit by a bus?&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I answer this question in my &lt;a href="https://noverse.com"&gt;Noverse&lt;/a&gt; (my company) blog in &lt;a href="https://noverse.com/blog/2013/01/hit-by-a-bus/"&gt;Hit by a Bus&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Did I miss anything?&lt;/p&gt;
&lt;p&gt;Follow the author as &lt;a href="https://twitter.com/hiltmon"&gt;@hiltmon&lt;/a&gt; on Twitter.&lt;/p&gt;</description></item><item><title>Priming the Pump</title><link>https://hiltmon.com/blog/2013/01/14/priming-the-pump/</link><pubDate>Mon, 14 Jan 2013 09:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/14/priming-the-pump/</guid><description>&lt;p&gt;When it comes to stocks, &lt;em&gt;priming the pump&lt;/em&gt; works like this:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Release a very negative article on a stock, citing rumors and anonymous sources (none of which is verifiable).&lt;/li&gt;
&lt;li&gt;Wait for the stock price to drop because your readers trust your credibility.&lt;/li&gt;
&lt;li&gt;Buy loads of the stock cheaply at the new lower price.&lt;/li&gt;
&lt;li&gt;Wait for the next earnings report to prove you wrong (which you knew already).&lt;/li&gt;
&lt;li&gt;Profit.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Despicable. Yet legal.&lt;/p&gt;</description></item><item><title>Workable Social Network Connection Heuristics</title><link>https://hiltmon.com/blog/2013/01/12/workable-social-network-connection-heuristics/</link><pubDate>Sat, 12 Jan 2013 21:35:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/12/workable-social-network-connection-heuristics/</guid><description>&lt;p&gt;I’m not sure how other people decide these things, but I have created my own &lt;a href="http://en.wikipedia.org/wiki/Heuristic"&gt;heuristics&lt;/a&gt; as to whom I connect with on different social networks. In case you wish to blame me for &lt;em&gt;your&lt;/em&gt; decisions — &lt;em&gt;you’re welcome&lt;/em&gt; — here they are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Family and Friends&lt;/strong&gt;: These are blood relatives, friends I see socially on a regular basis, and old friends from way back — basically the people who accept me for who I am and I can share my more embarrassing and private moments with. Since our relationship is personal, I use these social networks for personal interaction, for staying in touch with a global group and I maximize the privacy settings. For personal, find me on:
&lt;ul&gt;
&lt;li&gt;Facebook&lt;/li&gt;
&lt;li&gt;Foursquare&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Professional Relationships&lt;/strong&gt;: If we have &lt;em&gt;ever&lt;/em&gt; met face to face, or had a phone conversation related to &lt;em&gt;work&lt;/em&gt; (or you are family or friend), then I am happy to interact with you on a more professional social network where I limit my personal &lt;em&gt;exuberance&lt;/em&gt;, and just conduct some business. Lets connect on:
&lt;ul&gt;
&lt;li&gt;LinkedIn&lt;/li&gt;
&lt;li&gt;Skype&lt;/li&gt;
&lt;li&gt;Instant Messaging&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Internet Friends&lt;/strong&gt;: If either of us follow each-other on a popular social network, or we connect via email, comments or this web site, I’d love to connect with you on public social networks. I maintain my public persona there (and leak some of my personal tastes and quirks), am not afraid to express myself, but try to remain polite, humorous, responsive and not too chatty. So lets connect on:
&lt;ul&gt;
&lt;li&gt;Twitter: &lt;a href="https://twitter.com/hiltmon"&gt;@hiltmon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Instagram: hiltmon&lt;/li&gt;
&lt;li&gt;Flickr: &lt;a href="http://www.flickr.com/photos/hiltmon"&gt;hiltmon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Github: &lt;a href="https://github.com/hiltmon"&gt;hiltmon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Quora: hiltmon&lt;/li&gt;
&lt;li&gt;Google+: &lt;a href="https://plus.google.com/u/0/106938375254936779482/about"&gt;hiltmon&lt;/a&gt; (although, seriously, who really uses it)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;But, like all of us, there are some people I prefer &lt;em&gt;not&lt;/em&gt; to connect with on any social network. For that, there is always email. I do not hide my email addresses (see the &lt;a href="https://hiltmon.com/about/"&gt;About&lt;/a&gt; page), and prefer &lt;em&gt;work&lt;/em&gt; email to &lt;a href="mailto:hiltmon@noverse.com"&gt;Noverse&lt;/a&gt;, &lt;em&gt;personal&lt;/em&gt; emails at &lt;a href="mailto:hiltmon@gmail.com"&gt;gmail&lt;/a&gt; and &lt;em&gt;public&lt;/em&gt; emails at &lt;a href="mailto:hiltmon@hiltmon.com"&gt;hiltmon.com&lt;/a&gt; (but not to all three, see &lt;a href="https://hiltmon.com/blog/2012/10/24/email-etiquette/"&gt;Email Etiquette&lt;/a&gt;). I do enjoy receiving emails from anyone, even PR folks, recruiters &lt;em&gt;I know&lt;/em&gt; and mailing lists &lt;em&gt;I signed up for&lt;/em&gt;. I believe you cannot go wrong contacting me via email, it works great. And when it comes for me to reach out, I prefer to email or tweet first.&lt;/p&gt;</description></item><item><title>Ruby Tempfile Aggressive Unlink</title><link>https://hiltmon.com/blog/2013/01/11/ruby-tempfile-aggressive-unlink/</link><pubDate>Fri, 11 Jan 2013 10:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/11/ruby-tempfile-aggressive-unlink/</guid><description>&lt;p&gt;I often use Ruby’s &lt;code&gt;Tempfile&lt;/code&gt; class when generating files in Rails for download. But something went wrong in the Rails 3.2.11 update.&lt;/p&gt;
&lt;p&gt;Here is the code I normally use (as per the &lt;a href="http://www.ruby-doc.org/stdlib-1.9.3/libdoc/tempfile/rdoc/Tempfile.html"&gt;Tempfile documentation&lt;/a&gt;):&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#fff;-moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-ruby" data-lang="ruby"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#000"&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#a90d91"&gt;begin&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#000"&gt;temp&lt;/span&gt; &lt;span style="color:#000"&gt;=&lt;/span&gt; &lt;span style="color:#000"&gt;Tempfile&lt;/span&gt;&lt;span style="color:#000"&gt;.&lt;/span&gt;&lt;span style="color:#000"&gt;new&lt;/span&gt;(&lt;span style="color:#000"&gt;“&lt;/span&gt;&lt;span style="color:#000"&gt;temp&lt;/span&gt;&lt;span style="color:#000"&gt;-&lt;/span&gt;&lt;span style="color:#000"&gt;file&lt;/span&gt;&lt;span style="color:#000"&gt;-&lt;/span&gt;&lt;span style="color:#a90d91"&gt;name&lt;/span&gt;&lt;span style="color:#000"&gt;.&lt;/span&gt;&lt;span style="color:#000"&gt;xlsx&lt;/span&gt;&lt;span style="color:#000"&gt;”&lt;/span&gt;)
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#000"&gt;report&lt;/span&gt; &lt;span style="color:#000"&gt;=&lt;/span&gt; &lt;span style="color:#000"&gt;ReportClass&lt;/span&gt;&lt;span style="color:#000"&gt;.&lt;/span&gt;&lt;span style="color:#000"&gt;new&lt;/span&gt;(&lt;span style="color:#000"&gt;temp&lt;/span&gt;&lt;span style="color:#000"&gt;.&lt;/span&gt;&lt;span style="color:#000"&gt;path&lt;/span&gt;, &lt;span style="color:#000"&gt;params&lt;/span&gt;)
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#000"&gt;report&lt;/span&gt;&lt;span style="color:#000"&gt;.&lt;/span&gt;&lt;span style="color:#000"&gt;generate&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#000"&gt;send_file&lt;/span&gt; &lt;span style="color:#000"&gt;temp&lt;/span&gt;&lt;span style="color:#000"&gt;.&lt;/span&gt;&lt;span style="color:#000"&gt;path&lt;/span&gt;, &lt;span style="color:#c41a16"&gt;:filename&lt;/span&gt; &lt;span style="color:#000"&gt;=&amp;gt;&lt;/span&gt; &lt;span style="color:#000"&gt;“&lt;/span&gt;&lt;span style="color:#177500"&gt;#{user_file_name}.xlsx&amp;#34;, :type =&amp;gt; &amp;#34;application/xlsx&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#a90d91"&gt;ensure&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#000"&gt;temp&lt;/span&gt;&lt;span style="color:#000"&gt;.&lt;/span&gt;&lt;span style="color:#000"&gt;close&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#000"&gt;temp&lt;/span&gt;&lt;span style="color:#000"&gt;.&lt;/span&gt;&lt;span style="color:#000"&gt;unlink&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#a90d91"&gt;end&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#000"&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;In short, create a temp file, stream the data to it in the report class, then send the file to the user. Ensure the file is closed and deleted after. Prior to Rails 3.2.11, this worked fine.&lt;/p&gt;</description></item><item><title>Reprogramming my Brace Style Mind</title><link>https://hiltmon.com/blog/2013/01/07/reprogramming-my-brace-style-mind/</link><pubDate>Mon, 07 Jan 2013 13:24:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/07/reprogramming-my-brace-style-mind/</guid><description>&lt;p&gt;Each and every programmer has their own style of coding, their own preferences for how code should look, and are generally happy to argue the case for their preference. Somehow these discussions became heated, and the most fights happen over &lt;strong&gt;spaces vs tabs&lt;/strong&gt; (See &lt;a href="http://www.jwz.org/doc/tabs-vs-spaces.html"&gt;Tabs versus Spaces: An Eternal Holy War.&lt;/a&gt; and &lt;a href="http://www.codinghorror.com/blog/2009/04/death-to-the-space-infidels.html"&gt;Death to the Space Infidels!&lt;/a&gt;), &lt;strong&gt;the 80 column rule&lt;/strong&gt; (See &lt;a href="http://zuzu-curl.blogspot.com/2010/02/in-defense-of-80-column-rule.html"&gt;In defense of the 80-column rule&lt;/a&gt;) and &lt;strong&gt;brace indent style&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Recently, I have had to change my choices, they were wrong. But a bit of history first.&lt;/p&gt;</description></item><item><title>The Entirety Of Information</title><link>https://hiltmon.com/blog/2013/01/07/the-entirety-of-information/</link><pubDate>Mon, 07 Jan 2013 12:26:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/07/the-entirety-of-information/</guid><description>&lt;blockquote&gt;
&lt;p&gt;I possess a device in my pocket that is capable of accessing the entirety of information known to man.&lt;/p&gt;
&lt;p&gt;I use it to look at pictures of cats and get in arguments with strangers.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In answer to:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;If someone from the 1950s suddenly appeared today, what would be the most difficult thing to explain to them about life today?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Source: &lt;a href="https://twitter.com/Bill_Gross/status/288115780531412992"&gt;@Bill_Gross&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Assembly Notes</title><link>https://hiltmon.com/blog/2013/01/03/assembly-notes/</link><pubDate>Thu, 03 Jan 2013 11:27:00 -0400</pubDate><guid>https://hiltmon.com/blog/2013/01/03/assembly-notes/</guid><description>&lt;p&gt;&lt;strong&gt;Assembly Notes&lt;/strong&gt; are documentation that a programmer creates to record all the steps they go through when crafting an application, setting up a new server or configuring a new device. The idea is to log all the things they do &lt;em&gt;and all the commands they type in&lt;/em&gt; so that they can reproduce the process again later. Assembly Notes are personal or project internal, not shared.&lt;/p&gt;
&lt;p&gt;I started writing these when I launched &lt;a href="https://noverse.com"&gt;Noverse&lt;/a&gt;, and use them on all projects. I have notes for each step I performed when creating each application, more notes for how all servers are set up and configured and even notes on how the development environments are set up. In my case, I break these up into weekly files by project, store them in my &lt;a href="https://hiltmon.com/blog/2012/06/30/project-folder-layout/"&gt;standard project folder’s&lt;/a&gt; Notes folder and use these logs as the source when reporting progress to clients as well.&lt;/p&gt;</description></item><item><title>1GHz Titanium PowerBook</title><link>https://hiltmon.com/blog/2012/12/31/1ghz-titanium-powerbook/</link><pubDate>Mon, 31 Dec 2012 11:01:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/31/1ghz-titanium-powerbook/</guid><description>&lt;figure class="left-right"&gt;&lt;img src="https://hiltmon.com/blog/2012/12/31/1ghz-titanium-powerbook/images/1ghz-titanium-powerbook.jpg" width="320" height="240"&gt;
&lt;/figure&gt;

&lt;p&gt;It was about this time 10 years ago that I purchased my &lt;em&gt;precious&lt;/em&gt;, a 1GHz Titanium Powerbook from a back street store in Akihabara (Electric Town) in Tokyo, Japan. I bought it based on a single viewing of another PowerBook because it ran UNIX with a GUI. Oh and it was thin and fast and beautiful.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;It surely is the best device I ever owned&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I had been a Mac user in the early 1990&amp;rsquo;s, but, like most, I moved over to Windows for work. The Mac hardware had been falling behind, the operating system was sluggish, and the Dell/Microsoft combination was cheap and cheerful and necessary.&lt;/p&gt;</description></item><item><title>Mind hacks</title><link>https://hiltmon.com/blog/2012/12/28/mind-hacks/</link><pubDate>Fri, 28 Dec 2012 13:28:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/28/mind-hacks/</guid><description>&lt;p&gt;A lot of people, including myself, talk a lot about organization, productivity and &lt;em&gt;life hacks&lt;/em&gt; that make things run better for us, and share it with others. But on a more personal note, some of us also need additional hacks just to function &lt;em&gt;normally&lt;/em&gt; in &lt;em&gt;normal&lt;/em&gt; situations.&lt;/p&gt;
&lt;p&gt;I call these &lt;em&gt;mind-hacks&lt;/em&gt;, tricks that enable people like me to function and get through the day. Without them, our minds just spin off in a hundred directions and we get nothing done.&lt;/p&gt;</description></item><item><title>Be Organized and Productive</title><link>https://hiltmon.com/blog/2012/12/26/be-organized-and-productive/</link><pubDate>Wed, 26 Dec 2012 16:59:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/26/be-organized-and-productive/</guid><description>&lt;p&gt;The theme of 2012 was all about getting organized and productive using software. I may have spent 2012 developing Kifu and some internal applications for clients, but I spent a lot of time this year getting better organized and more productive on my Mac. &lt;em&gt;It&amp;rsquo;s ridiculous how much this has paid off.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;So, instead of a &lt;em&gt;cool-products-of-2012-year-in-review&lt;/em&gt; post, here are many of the things I do and tools I use to be organized and productive, with thanks to those to shared the ideas with us. Maybe these ideas, tools and folks can help you too.&lt;/p&gt;</description></item><item><title>2012 Year End iPad Essentials</title><link>https://hiltmon.com/blog/2012/12/26/2012-year-end-ipad-essentials/</link><pubDate>Wed, 26 Dec 2012 13:47:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/26/2012-year-end-ipad-essentials/</guid><description>&lt;p&gt;I posted my &lt;a href="https://hiltmon.com/blog/2012/03/17/2012-ipad-essentials/"&gt;2012 iPad Essentials&lt;/a&gt; (excluding games) in March this year when the iPad 3 came out. Since then, the iPad 4 and the iPad mini have launched. Surprisingly enough, the early 2012 essentials (excluding games) have changed very little:&lt;/p&gt;
&lt;h2 id="new-additions"&gt;New Additions&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fthe-magazine.%252Fid557744510%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;The Magazine&lt;/a&gt; - Technically not an app, The Magazine is a brilliant new take on how a magazine should work, with great writing on a wide variety of interesting topics.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fnetbot-for-app.net-ipad-edition%252Fid563596528%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;NetBot&lt;/a&gt; - Joins &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Ftweetbot-for-twitter-ipad%252Fid498801050%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;TweetBot&lt;/a&gt; at the top of my most popular apps page. I trust you will all join &lt;a href="https://join.app.net"&gt;App.Net&lt;/a&gt; and follow me there. I find the level and depth of conversation on App.Net so much better than Twitter.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252F500px%252Fid471965292%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;500px&lt;/a&gt; - to show off my very best pictures. Better go out and take some more.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fpaper-by-fiftythree%252Fid506003812%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Paper by Fifty Three&lt;/a&gt; - has become my go-to drawing and scratchpad app, it’s unique take on pens and color is amazing. I find myself spending more time in design just because this app creates such good looking sketches.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Ftweet-library%252Fid365768793%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Tweet Library&lt;/a&gt; - to save old tweets that did not make it into &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fday-one-journal%252Fid421706526%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;DayOne&lt;/a&gt; via &lt;a href="http://ttscoff.github.com/Slogger/"&gt;Slogger&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fpinbook-for-pinboard%252Fid564452716%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Pinbook&lt;/a&gt; - to access my links saved on Pinboard.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fdiet-coda%252Fid500906297%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Diet Coda&lt;/a&gt; - for writing code and fixing up static web sites, replacing &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Ftextastic-code-editor%252Fid383577124%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Textastic&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fpythonista%252Fid528579881%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Pythonista&lt;/a&gt; - to help me learn Python programming.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fistat-2%252Fid571129458%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;iStat 2&lt;/a&gt; - To remotely view the performance of my servers.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fquotebook-notebook-for-quotes%252Fid423726272%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Quotebook&lt;/a&gt; - For quickly saving great quotes I find while reading.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="updates"&gt;Updates&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fday-one-journal%252Fid421706526%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Day One&lt;/a&gt; - has become more important as I now use &lt;a href="http://ttscoff.github.com/Slogger/"&gt;Slogger&lt;/a&gt; to record daily social network interactions, site stats (my own plugin) and stock prices.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252F1password%252Fid568903335%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;1Password&lt;/a&gt; - great makeover of the best password manager in existence.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="old-favorites"&gt;Old Favorites&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/omnifocus-for-ipad/id383804552?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;OmniFocus&lt;/a&gt; - for all my to-do and project needs. One of my top-5 must have tools.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/reeder-2/id697846300?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Reeder&lt;/a&gt; - For RSS.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/instapaper/id288545208?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Instapaper&lt;/a&gt; - for offline reading of saved articles.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/soulver-for-ipad/id371982536?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Soulver&lt;/a&gt; - A better calculation tool, using it more and more for project estimation.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/elements-for-dropbox-markdown/id382752422?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Elements&lt;/a&gt; - (back to it) to view and create notes, and write, replacing &lt;a href="https://itunes.apple.com/us/app/byword/id482063361?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Byword&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/textexpander/id326180690?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;TextExpander&lt;/a&gt; - I just wish more apps used its expansions.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/ibooks/id364709193?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;iBooks&lt;/a&gt; - I still read almost everything in the iPad.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="still-there"&gt;Still There&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/flipboard-your-social-news/id358801284?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;FlipBoard&lt;/a&gt; - for more news.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/zite/id419752338?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Zite&lt;/a&gt; - for even more news.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/facebook/id284882215?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Facebook&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/keynote/id361285480?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Keynote&lt;/a&gt;, &lt;a href="https://itunes.apple.com/us/app/numbers/id361304891?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Numbers&lt;/a&gt; and &lt;a href="https://itunes.apple.com/us/app/pages/id361309726?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Pages&lt;/a&gt; - Just in case.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/xscope-mirror/id488819289?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;xScope Mirror&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/prompt/id421507115?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Prompt&lt;/a&gt; - for SSH access to servers in emergencies.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/yojimbo-for-ipad/id396307682?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Yojimbo&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="removals"&gt;Removals&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/penultimate/id354098826?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Penultimate&lt;/a&gt; - replaced by &lt;a href="https://itunes.apple.com/us/app/paper-by-fiftythree/id506003812?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Paper by Fifty Three&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://itunes.apple.com/us/app/skype-for-ipad/id442012681?mt=8&amp;amp;uo=4&amp;amp;at=10l894"&gt;Skype&lt;/a&gt; - I use it on the Mac only these days.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;Note: The links above to the App Store are affiliate links, so if you purchase any of these products, I get a few pennies.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>CD to Current Finder Path</title><link>https://hiltmon.com/blog/2012/12/21/cd-to-current-finder-path/</link><pubDate>Fri, 21 Dec 2012 08:29:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/21/cd-to-current-finder-path/</guid><description>&lt;p&gt;To open a &lt;em&gt;new&lt;/em&gt; terminal in the current Finder path in OS X, you can use the built-in service (See below on how to enable). But if you are &lt;em&gt;already&lt;/em&gt; in a Terminal session, you need to leave the keyboard, mouse to Finder and drag and drop the path back. Here’s a trick that gets you to the frontmost Finder path without leaving the Terminal or keyboard.&lt;/p&gt;
&lt;p&gt;Add the following to your &lt;code&gt;.bash_profile&lt;/code&gt;:&lt;/p&gt;</description></item><item><title>How to Flexify a Class</title><link>https://hiltmon.com/blog/2012/12/19/how-to-flexify-a-class/</link><pubDate>Wed, 19 Dec 2012 13:19:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/19/how-to-flexify-a-class/</guid><description>&lt;p&gt;OK, so you managed months ago to stop yourself from &lt;a href="https://hiltmon.com/blog/2012/12/19/premature-flexification/"&gt;Premature Flexification&lt;/a&gt; when creating a class (or someone else did), but now the time has come to add features or flexify the existing feature set of the class.&lt;/p&gt;
&lt;p&gt;There are many &lt;strong&gt;wrong&lt;/strong&gt; ways to do this, and I have seen all of them in practice:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Duplicate the existing class, rename it and add the flexibility to the new class. This sounds great as existing code remains unaffected, but sucks if a bug is found in the original and both need to be maintained.&lt;/li&gt;
&lt;li&gt;Wrap the existing class in a new class (or sub-class it), passing through the original methods, and adding new methods for the flexible class. Replace all calls to the original with the new wrapper or sub- class (or not!). This time, it seems that the maintenance problem above is dealt with, but the code base becomes crufty, and the workarounds in the wrapper start to break.&lt;/li&gt;
&lt;li&gt;Create a new class that has nothing to do with the original and write a new implementation. Great, now you have two problems.&lt;/li&gt;
&lt;li&gt;Extract the class implementation code into a new implementation sub-class, and default the original to use the extracted implementation class. Then create a new implementation class for the new flexibility version and add a method to the original class to enable you to change the implementation. This is why the suicide rate for Java programmers is so high.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Why do people do this? For a lot of &lt;em&gt;not very good&lt;/em&gt; reasons. Some do it because they do not &lt;em&gt;own&lt;/em&gt; the code, as in they did not write it or do not have permission to modify it. Some do it because they have no idea where the code is being used and are afraid to break something else somewhere else. Some do it because they think they can write a better class. And some do it because it is easy to be lazy and copy and paste code. And some do it because they just don’t have the time to do it right. And some just don’t care.&lt;/p&gt;</description></item><item><title>Free Instagram Ad Image for Advertisers</title><link>https://hiltmon.com/blog/2012/12/19/instagram-ad-image/</link><pubDate>Wed, 19 Dec 2012 13:09:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/19/instagram-ad-image/</guid><description>&lt;p&gt;Dear Instagram,&lt;/p&gt;
&lt;p&gt;Feel free to use the below image to promote any product out there on my behalf. It’s available at &lt;a href="http://instagram.com/p/TbW5CmjjYx/"&gt;http://instagram.com/p/TbW5CmjjYx/&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Ok, thanks, bye.
~Hilton&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/12/19/instagram-ad-image/images/instagram-ad.jpg" width="612" height="612"&gt;
&lt;/figure&gt;

&lt;p&gt;Follow the author as &lt;a href="https://twitter.com/hiltmon"&gt;@hiltmon&lt;/a&gt; on Twitter.&lt;/p&gt;</description></item><item><title>Premature Flexification</title><link>https://hiltmon.com/blog/2012/12/19/premature-flexification/</link><pubDate>Wed, 19 Dec 2012 10:42:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/19/premature-flexification/</guid><description>&lt;p&gt;I was sitting down to design an iOS widget to display an analogue clock face for an upcoming app. I wanted to make sure, as we all do, that the widget will work for all scenarios needed by the app. The app needs to display the time in different time zones, given a reference time in a reference timezone.&lt;/p&gt;
&lt;p&gt;✓ User defined background image and hand images&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;STOP!&lt;/strong&gt; &lt;em&gt;You Aren&amp;rsquo;t Gonna Need It.&lt;/em&gt; It’s my widget for my app, it’s OK to hardcode the image assets.&lt;/p&gt;</description></item><item><title>Depersonalize because you can’t quit</title><link>https://hiltmon.com/blog/2012/12/18/depersonalize-because-you-cant-quit/</link><pubDate>Tue, 18 Dec 2012 12:58:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/18/depersonalize-because-you-cant-quit/</guid><description>&lt;p&gt;My Twitter stream today is full of people quitting Instagram because of the new Terms of Service, see &lt;a href="https://hiltmon.com/blog/2012/12/17/youre-the-advertisement/"&gt;You’re the Advertisement&lt;/a&gt;. Six months ago, it was Twitter, and six months before that it was Facebook. Quitting over privacy.&lt;/p&gt;
&lt;p&gt;Except they didn’t quit. They are all &lt;em&gt;still&lt;/em&gt; on Twitter and Facebook and will remain on Instagram, because we, their friends are still there and the service remains awesomely useful.&lt;/p&gt;
&lt;p&gt;If you are worried about privacy, but wish to remain on these services, just &lt;em&gt;depersonalize&lt;/em&gt;. Turn off locations, use a login and display name that is not yours (but your friends will recognize and accept), remove or fake the remainder of your data, and &lt;em&gt;never&lt;/em&gt; post photos of yourself, friends and family. Let these services use your depersonalized data however they want, because it’s not you. A falsely advertised recommendation from “xyzzy68000” means &lt;em&gt;nothing&lt;/em&gt; compared to a real recommendation from “hiltmon”.&lt;/p&gt;</description></item><item><title>You’re the Advertisement</title><link>https://hiltmon.com/blog/2012/12/17/youre-the-advertisement/</link><pubDate>Mon, 17 Dec 2012 16:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/17/youre-the-advertisement/</guid><description>&lt;p&gt;It used to be said that:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If you pay for a product, you’re a customer. If you don’t, you’re the product.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Now its getting worse. The new &lt;a href="http://instagram.com/about/legal/terms/updated/"&gt;Instagram Terms of Use&lt;/a&gt; make you the advertisement for any unknown third party product. &lt;strong&gt;Anyone can pay Instagram to use &lt;em&gt;your&lt;/em&gt; user name, &lt;em&gt;your&lt;/em&gt; image, and &lt;em&gt;your&lt;/em&gt; photos to advertise their product to anyone else, without your knowledge or consent.&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;ol start="2"&gt;
&lt;li&gt;Some or all of the Service may be supported by advertising revenue. To help us deliver interesting paid or sponsored content or promotions, you agree that a business or other entity may pay us to display your username, likeness, photos (along with any associated metadata), and/or actions you take, in connection with paid or sponsored content or promotions, without any compensation to you. If you are under the age of eighteen (18), or under any other applicable age of majority, you represent that at least one of your parents or legal guardians has also agreed to this provision (and the use of your name, likeness, username, and/or photos (along with any associated metadata)) on your behalf.
&lt;a href="http://instagram.com/about/legal/terms/updated/"&gt;Instagram Terms of Use&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;
&lt;p&gt;It seems there is no way to prevent this.&lt;/p&gt;</description></item><item><title>Gun Control does Work</title><link>https://hiltmon.com/blog/2012/12/16/gun-control-does-work/</link><pubDate>Sun, 16 Dec 2012 10:06:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/16/gun-control-does-work/</guid><description>&lt;p&gt;&lt;em&gt;Personal note: I have lived in the USA for 9 years now, and think this place is magnificent. Two days ago, in Newtown CT, 20 children and 6 adults were massacred. The dark side of America that is in denial about gun violence, that refuses to even discuss gun control, that treats massacres as a normal and regular part of life, a country that gives up its civil rights over a single terrorist act, but takes no action on a score of massacres of its children, well, that just scares the shit out of me. Whether you are religious or not, parent or not, patriotic or not, surely we can all agree that we can and should do everything in our power to prevent this kind of horror. It can be done, it has been done elsewhere, lets make it happen here.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>De Fault with Default</title><link>https://hiltmon.com/blog/2012/12/11/de-fault-with-default/</link><pubDate>Tue, 11 Dec 2012 17:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/11/de-fault-with-default/</guid><description>&lt;p&gt;The word &lt;strong&gt;default&lt;/strong&gt; has many meanings:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;To a &lt;strong&gt;geek&lt;/strong&gt; means the value set for a preference by the developer, as in “the default value for the web server port is 80”.&lt;/li&gt;
&lt;li&gt;To a &lt;strong&gt;finance person&lt;/strong&gt; means the failure to fulfill an obligation, like pay off a security, as in “the company’s corporate bond is in default”.&lt;/li&gt;
&lt;li&gt;To a &lt;strong&gt;sports person&lt;/strong&gt; means the failure of a team to arrive in time to participate in a sports match, thereby losing the match, as in “Qatar lose the soccer game by default to Uzbekistan”.&lt;/li&gt;
&lt;li&gt;To a &lt;strong&gt;lawyer&lt;/strong&gt; means the failure to appear in court, as in “an order for default as entered in case XYZZY”.&lt;/li&gt;
&lt;li&gt;And to &lt;strong&gt;everyone else&lt;/strong&gt; means “De Fault”, as in “the replacement ref’s incompetence is &lt;em&gt;de fault&lt;/em&gt; of the league.”&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Just a quick reminder to ensure you use the right terms in the right context for the right audience.&lt;/p&gt;</description></item><item><title>On Customer and Developer Entitlements</title><link>https://hiltmon.com/blog/2012/12/11/on-customer-and-developer-entitlements/</link><pubDate>Tue, 11 Dec 2012 13:52:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/11/on-customer-and-developer-entitlements/</guid><description>&lt;blockquote&gt;
&lt;p&gt;en·ti·tle·ment /enˈtītlmənt/ Noun
The fact of having a right to something, or the amount to which a person has a right.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;There has been a huge amount written this year about software pricing, availability and support, especially in light of the “race to the bottom” pricing and lack of trials and upgrade pricing in the Apple App Stores. Developers feel they are &lt;em&gt;entitled&lt;/em&gt; to more money and respect for the effort they put in, customers feel &lt;em&gt;entitled&lt;/em&gt; to free upgrades, multiple platforms and cheaper prices. Yet the discussion has quickly gotten off topic in the incessant white noise of name calling and the use of words like “greedy”, “double-dipping”, “unfair” and “angry”.&lt;/p&gt;</description></item><item><title>Forced Arbitration and the Right to Sue</title><link>https://hiltmon.com/blog/2012/12/05/forced-arbitration-and-the-right-to-sue/</link><pubDate>Wed, 05 Dec 2012 09:36:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/05/forced-arbitration-and-the-right-to-sue/</guid><description>&lt;p&gt;One of the things that is bothering me these days is the number of vendors changing their contracts &lt;em&gt;unilaterally&lt;/em&gt; to require us to use their own arbitration and giving up our right to sue. You can ‘opt out’ of this change, where ‘opt out’ means they will immediately terminate service. The mobile carriers in the USA have had these for a while, as have the credit card companies and many employers. Paypal is implementing it now.&lt;/p&gt;</description></item><item><title>Apple, Please make a Touchscreen Laptop</title><link>https://hiltmon.com/blog/2012/12/03/apple-please-make-a-touchscreen-laptop/</link><pubDate>Mon, 03 Dec 2012 09:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/03/apple-please-make-a-touchscreen-laptop/</guid><description>&lt;p&gt;I think Sean Hollister gets it right in The Verge article &lt;a href="http://www.theverge.com/2012/11/30/3710900/gorilla-arm-touchscreen-laptop-windows-8-apple"&gt;Surprisingly, touchscreen laptops don&amp;rsquo;t suck&lt;/a&gt;. In short, Windows 8 challenges the idea that they do not work, and proves that they do.&lt;/p&gt;
&lt;p&gt;The argument against touchscreen laptops and desktops has always been &lt;a href="http://www.wired.com/gadgetlab/2010/10/gorilla-arm-multitouch/"&gt;Gorilla Arm&lt;/a&gt;, the idea that users will get tired holding their arms up in the air for longer interactions, they will look and feel like Gorillas.&lt;/p&gt;
&lt;p&gt;But the theory of Gorilla Arm only makes sense when you consider it for &lt;em&gt;longer interactions&lt;/em&gt; (for example typing or drawing). Hollister, in his article, points out that Microsoft as proven that for &lt;em&gt;shorter interactions&lt;/em&gt; (launching, navigating, selecting), touchscreens work great. And I agree.&lt;/p&gt;</description></item><item><title>Bills Doubled in 8 Years</title><link>https://hiltmon.com/blog/2012/12/02/bills-doubled-in-8-years/</link><pubDate>Sun, 02 Dec 2012 11:21:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/02/bills-doubled-in-8-years/</guid><description>&lt;p&gt;While shredding old, unnecessary paperwork today, I noticed that the cost of our monthly utilities have more than doubled in 8 years, yet almost nothing in our way of life has changed.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/12/02/bills-doubled-in-8-years/images/household-bills.jpg" width="409" height="324"&gt;
&lt;/figure&gt;

&lt;p&gt;We live in exactly the same apartment. We still have no kids. We still have only 1 TV, but the new one uses less juice. We both use modern laptops and iPads, which also use less juice, so our monthly kWh has not gone up, but our power bill has more than doubled.&lt;/p&gt;</description></item><item><title>Yahoo Finance Logger for Slogger</title><link>https://hiltmon.com/blog/2012/12/01/yahoo-finance-logger-for-slogger/</link><pubDate>Sat, 01 Dec 2012 16:24:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/01/yahoo-finance-logger-for-slogger/</guid><description>&lt;p&gt;One thing I find myself doing every once in a while is trying to find out the &lt;a href="http://www.google.com/finance?q=NASDAQ:AAPL"&gt;$AAPL&lt;/a&gt; share price for a given date. This usually requires a trip to Google Finance or Yahoo Finance and a need to download a data table to find what I need.&lt;/p&gt;
&lt;p&gt;Wouldn&amp;rsquo;t it be nice if this information was in my journal?&lt;/p&gt;
&lt;p&gt;So I spun up a simple &lt;a href="http://ttscoff.github.com/Slogger/"&gt;Slogger&lt;/a&gt; plugin to do it. This plugin:&lt;/p&gt;</description></item><item><title>Inbox Kinda Zero</title><link>https://hiltmon.com/blog/2012/12/01/inbox-kinda-zero/</link><pubDate>Sat, 01 Dec 2012 14:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/12/01/inbox-kinda-zero/</guid><description>&lt;p&gt;The idea behind &lt;a href="http://inboxzero.com"&gt;Inbox Zero&lt;/a&gt; is to manage email overload. Basically, you aggressively process your email inbox by&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Deleting everything you don’t need, want, care about, don’t care about, couldn’t be bothered with or is too old to act on.&lt;/li&gt;
&lt;li&gt;Respond and file what you can process quickly.&lt;/li&gt;
&lt;li&gt;Queue, by filing, emails that you need to get back to.&lt;/li&gt;
&lt;li&gt;Schedule tasks and time to process the queue folder.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;With Inbox Zero, if there is an email in the inbox, it needs to be processed away. The intention is to help you minimize the amount of time spent in email.&lt;/p&gt;</description></item><item><title>Back to Byword from iA Writer</title><link>https://hiltmon.com/blog/2012/11/29/back-to-byword-from-ia-writer/</link><pubDate>Thu, 29 Nov 2012 17:26:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/29/back-to-byword-from-ia-writer/</guid><description>&lt;p&gt;For as long as it has been available, I have been using &lt;a href="http://bywordapp.com"&gt;Byword&lt;/a&gt; for writing in Markdown. All blog posts, all knowledge base notes, all written using Byword. But I really liked the look of &lt;a href="http://www.iawriter.com"&gt;iA Writer&lt;/a&gt;, so I made Byword’s font look more like iA Writer’s (see &lt;a href="https://hiltmon.com/blog/2012/02/23/text-editing-fonts-and-colors/"&gt;Text Editing Fonts and Colors&lt;/a&gt;). Perfect.&lt;/p&gt;
&lt;p&gt;I even started a “why I prefer one over the other” post, but it only contained one item:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;* Prefer the font size in Byword (too big in iA Writer)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;At the beginning of November, iA Writer for Mac was updated with their new responsive design, which varies the font size based on the window width. Perfect, the font was no longer too big when the iA Writer window takes up the left half of my 15” display. So I switched the default Markdown editor over to iA Writer.&lt;/p&gt;</description></item><item><title>Workflow is Functionality</title><link>https://hiltmon.com/blog/2012/11/27/hiltmonism-workflow-is-functionality/</link><pubDate>Tue, 27 Nov 2012 17:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/27/hiltmonism-workflow-is-functionality/</guid><description>&lt;p&gt;Functionality, &lt;em&gt;the range of operations that can be run in a computer system&lt;/em&gt;, is the foundation upon which all software product collateral, designs, discussions and comparisons are based. Customers buy on functionality. Developers create functionality. Users question &lt;em&gt;what&lt;/em&gt; the product can do.&lt;/p&gt;
&lt;p&gt;That is fine, but it’s not the whole story.&lt;/p&gt;
&lt;p&gt;The right question is not &lt;em&gt;what&lt;/em&gt; operations exist (or should exist), it’s &lt;em&gt;how&lt;/em&gt; these operations work together, how the functionality flows. How can you tell which operations have been performed, and what operations need to be performed next? That is workflow. The product’s collateral should tell the customer &lt;em&gt;how&lt;/em&gt; the workflows in this software helps them run their business better. The workflows in a software plan should tell the developers what functions are needed and which can be ignored. The workflows in software help users learn and track what they are doing.&lt;/p&gt;</description></item><item><title>Multi-Platform Editing is Sublime</title><link>https://hiltmon.com/blog/2012/11/26/multi-platform-editing-is-sublime/</link><pubDate>Mon, 26 Nov 2012 20:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/26/multi-platform-editing-is-sublime/</guid><description>&lt;p&gt;One of the best things about the &lt;a href="http://www.sublimetext.com/2"&gt;Sublime Text 2&lt;/a&gt; license is that it&amp;rsquo;s a per-user license. This allows you to run it on all computers where you are the primary user. And since Sublime Text 2 is multi-platform, that means on &lt;em&gt;all&lt;/em&gt; the operating systems you use as well.&lt;/p&gt;
&lt;p&gt;For example, in my case, I can and do run Sublime Text 2 on&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;My laptop Macintosh which is my regular workhorse.&lt;/li&gt;
&lt;li&gt;My OS X Server for maintaining Slogger and other scheduled scripts.&lt;/li&gt;
&lt;li&gt;My Windows 7 VM which is where I do all my Windows coding and testing.&lt;/li&gt;
&lt;li&gt;And on all my GUI Linux VMs too.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;No more jumping between &lt;em&gt;TextMate&lt;/em&gt;, &lt;em&gt;UltraEdit&lt;/em&gt;, and &lt;em&gt;GEdit&lt;/em&gt;. Or worse, having to use &lt;em&gt;Notepad&lt;/em&gt; because nothing else is installed.&lt;/p&gt;</description></item><item><title>Hiltmon.com - One Year Old</title><link>https://hiltmon.com/blog/2012/11/24/one-year-old/</link><pubDate>Sat, 24 Nov 2012 16:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/24/one-year-old/</guid><description>&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/11/24/one-year-old/images/hiltmon-one-year.jpg" width="640" height="127"&gt;
&lt;/figure&gt;

&lt;p&gt;On Nov 22, 2012, the revamped &lt;a href="https://hiltmon.com"&gt;hiltmon.com&lt;/a&gt; turned one year old. And I missed it as I was too busy guzzling turkey.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Thank you all for reading, sharing and responding to my writing.&lt;/em&gt;&lt;/p&gt;
&lt;h3 id="stats-from-the-first-year"&gt;Stats from the First Year&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;287&lt;/strong&gt; posts.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;67,536&lt;/strong&gt; pageviews.&lt;/li&gt;
&lt;li&gt;Taking the HN/Reddit outliers out, &lt;a href="https://hiltmon.com"&gt;hiltmon.com&lt;/a&gt; is averaging &lt;strong&gt;4,278&lt;/strong&gt; page views per month.&lt;/li&gt;
&lt;li&gt;Over the year, &lt;strong&gt;41.66%&lt;/strong&gt; of visitors used Chrome, &lt;strong&gt;20.82%&lt;/strong&gt; used Firefox and &lt;strong&gt;20.07%&lt;/strong&gt; used Safari. But over the last 6 months, this has changed to &lt;strong&gt;36.31%&lt;/strong&gt; Chrome, &lt;strong&gt;34.62%&lt;/strong&gt; Safari and &lt;strong&gt;13.97%&lt;/strong&gt; Firefox, tracking the demise of Firefox.&lt;/li&gt;
&lt;li&gt;Over the year, &lt;strong&gt;36.66%&lt;/strong&gt; of visitors were on Windows, &lt;strong&gt;33.27%&lt;/strong&gt; Macintosh and &lt;strong&gt;11.55%&lt;/strong&gt; on Linux. Over the past 6 months, this has changed to &lt;strong&gt;44.94%&lt;/strong&gt; Macintosh, &lt;strong&gt;28.37%&lt;/strong&gt; Windows, &lt;strong&gt;16.15%&lt;/strong&gt; iOS and &lt;strong&gt;7.12%&lt;/strong&gt; Linux tracking the tone and content of this site.&lt;/li&gt;
&lt;li&gt;Only &lt;strong&gt;18.17%&lt;/strong&gt; of page views are from mobile devices and this rate is growing rapidly. &lt;strong&gt;84.2%&lt;/strong&gt; of mobile access is from iOS devices and the remainder seem to be Android variants.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;57.1%&lt;/strong&gt; of page views source from from Google searches, &lt;strong&gt;21.9%&lt;/strong&gt; direct and &lt;strong&gt;5.2%&lt;/strong&gt; from Twitter and Facebook.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;$0&lt;/strong&gt; spent on advertising and marketing. My plan was to focus on writing only this year and see how it went.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="the-top-10-most-popular-articles"&gt;The Top 10 most popular articles&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/"&gt;The Markdown Mindset&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/01/11/it-should-only-take-you-a-few-hours-dot-dot-dot/"&gt;It Should Only Take You a Few Hours&amp;hellip;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/02/01/the-paradox-of-choice/"&gt;The Paradox of Choice&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/06/30/project-folder-layout/"&gt;Project Folder Layout&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/03/17/2012-ipad-essentials/"&gt;2012 iPad Essentials&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/03/13/not-your-free-tech-support/"&gt;Not Your Free Tech Support&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/08/14/my-sublime-text-2-setup/"&gt;My Sublime Text 2 Setup&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/02/27/quick-and-dirty-rails-performance-profiling/"&gt;Quick and Dirty Rails Performance Profiling&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/01/26/test-driven-development-really-works/"&gt;Test Driven Development Really Works&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hiltmon.com/blog/2012/02/23/text-editing-fonts-and-colors/"&gt;Text Editing Fonts and Colors&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Once again, thank you all for reading &lt;a href="https://hiltmon.com"&gt;hiltmon.com&lt;/a&gt; and sharing this site with your friends. I intend to continue writing here on the topics that interest us all, especially software design, productivity ideas and about awesome tools that I love to use.&lt;/p&gt;</description></item><item><title>Vegemite Sandwich</title><link>https://hiltmon.com/blog/2012/11/22/vegemite-sandwich/</link><pubDate>Thu, 22 Nov 2012 14:04:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/22/vegemite-sandwich/</guid><description>&lt;p&gt;It&amp;rsquo;s Thanksgiving here in the USA today and all us good Aussies are making our own comfort food, &lt;strong&gt;Vegemite Sandwiches&lt;/strong&gt;. If you have listened to the Men at Work song &lt;a href="http://www.youtube.com/watch?v=xhnn6yb4Mmc"&gt;Down Under&lt;/a&gt;, you&amp;rsquo;ve heard of this magical foodstuff.&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s how to do it right.&lt;/p&gt;
&lt;h2 id="the-ingredients"&gt;The Ingredients&lt;/h2&gt;
&lt;figure class="image-right"&gt;&lt;img src="https://hiltmon.com/blog/2012/11/22/vegemite-sandwich/images/vegemite-ingredients.jpg" width="280" height="254"&gt;
&lt;/figure&gt;

&lt;ul&gt;
&lt;li&gt;2 x slices of bread (most prefer fluffy white, I prefer a wholegrain brown). One is never enough, and more than two is only allowed after a vigorous &lt;a href="http://en.wikipedia.org/wiki/Rugby_football"&gt;rugby&lt;/a&gt; game.&lt;/li&gt;
&lt;li&gt;Butter or margarine to taste.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Vegemite"&gt;Vegemite&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Cheddar cheese (actually New York cheddar is very good for this), sliced thinly using a cheese slicer.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="preparation"&gt;Preparation&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Very lightly heat up the bread, I run it in the toaster for 15 seconds. Do not let it dry out or get toasty. The idea is to warm up the bread so that the butter melts easily when spread. There are those who incorrectly believe in buttering cold bread, but forget that Australia is a warm country and this is Australian food.&lt;/li&gt;
&lt;li&gt;Spread the butter on the bread. Do not overdo it. Ensure the the top of each slice is moist, but not soggy. If the butter dribbles through the bread and hits the plate, you&amp;rsquo;ve put too much on and should start again.&lt;/li&gt;
&lt;/ul&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/11/22/vegemite-sandwich/images/vegemite-butter.jpg" width="640" height="210"&gt;
&lt;/figure&gt;

&lt;ul&gt;
&lt;li&gt;Spread the Vegemite on top of the butter. The Vegemite should be slathered thick, and be spread to all edges of the bread. Leaving un-Vegemited corners is sloppy and proves that you are a &lt;a href="http://www.urbandictionary.com/define.php?term=pommy%20bastard"&gt;pommy bastard&lt;/a&gt; who is used to marmite sandwiches where only the very centre has a dab of flavor. And while we are on &lt;a href="http://www.urbandictionary.com/define.php?term=pom"&gt;poms&lt;/a&gt;, what&amp;rsquo;s with the marmalade thing?&lt;/li&gt;
&lt;/ul&gt;
&lt;figure class="left-right"&gt;&lt;img src="https://hiltmon.com/blog/2012/11/22/vegemite-sandwich/images/vegemite-cheese.jpg" width="280" height="157"&gt;
&lt;/figure&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Place the cheese on top. Ensure proper coverage, but leave a few millimeters on each edge for cheese expansion. If you use imperial measures, leave a 1/18 span (1/8 finger or gnats-thorax length) between cheese edge and crust edge.&lt;/p&gt;</description></item><item><title>Day One iCloud Sync Fail</title><link>https://hiltmon.com/blog/2012/11/17/day-one-icloud-sync-fail/</link><pubDate>Sat, 17 Nov 2012 14:08:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/17/day-one-icloud-sync-fail/</guid><description>&lt;blockquote&gt;
&lt;p&gt;This post seems to have become popular. To clarify, the problem is with iCloud, Day One is just plain brilliant and you should all be using it.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I use the &lt;a href="http://dayoneapp.com"&gt;Day One&lt;/a&gt; journalling program a lot, especially to log commits and all social activity using &lt;a href="http://ttscoff.github.com/Slogger/"&gt;Slogger&lt;/a&gt;. But today I noticed that the Journals on all my devices were out of sync, and new entries created were not passed on to other devices. Somehow, sync was jammed up.&lt;/p&gt;</description></item><item><title>No Sale: It does not have what we can and will not use</title><link>https://hiltmon.com/blog/2012/11/16/it-does-not-have-what-we-can-and-will-not-use/</link><pubDate>Fri, 16 Nov 2012 12:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/16/it-does-not-have-what-we-can-and-will-not-use/</guid><description>&lt;p&gt;As a buyer of software, I always focus on what the software &lt;em&gt;does&lt;/em&gt; do. If it does what I need to do well, and the price is right, I buy it, I use it and I gain the productivity benefits from it.&lt;/p&gt;
&lt;p&gt;As a seller of software, I find potential customers focus on what the product &lt;strong&gt;does not&lt;/strong&gt; do, and use this as a reason to avoid purchasing. That’s fine as long as the missing feature is something they &lt;em&gt;can and do or will use&lt;/em&gt;. But it makes no sense to me when the missing feature is something that they already have and &lt;em&gt;do not use, don’t know how to use or have no reason to use&lt;/em&gt;.&lt;/p&gt;</description></item><item><title>Python Zen</title><link>https://hiltmon.com/blog/2012/11/15/python-zen/</link><pubDate>Thu, 15 Nov 2012 16:18:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/15/python-zen/</guid><description>&lt;p&gt;After reading Federico Viticci&amp;rsquo;s &lt;a href="http://www.macstories.net/stories/automating-ios-how-pythonista-changed-my-workflow/"&gt;Automating iOS: How Pythonista Changed My Workflow&lt;/a&gt;, I think its time I added the &lt;a href="http://www.python.org"&gt;Python&lt;/a&gt; Programming Language to my repertoire.&lt;/p&gt;
&lt;p&gt;The first thing I learned about &lt;a href="http://www.python.org"&gt;Python&lt;/a&gt; is the &lt;a href="http://www.python.org/dev/peps/pep-0020/"&gt;Zen of Python&lt;/a&gt; by Tim Peters:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Beautiful is better than ugly.&lt;/li&gt;
&lt;li&gt;Explicit is better than implicit.&lt;/li&gt;
&lt;li&gt;Simple is better than complex.&lt;/li&gt;
&lt;li&gt;Complex is better than complicated.&lt;/li&gt;
&lt;li&gt;Flat is better than nested.&lt;/li&gt;
&lt;li&gt;Sparse is better than dense.&lt;/li&gt;
&lt;li&gt;Readability counts.&lt;/li&gt;
&lt;li&gt;Special cases aren&amp;rsquo;t special enough to break the rules.&lt;/li&gt;
&lt;li&gt;Although practicality beats purity.&lt;/li&gt;
&lt;li&gt;Errors should never pass silently.&lt;/li&gt;
&lt;li&gt;Unless explicitly silenced.&lt;/li&gt;
&lt;li&gt;In the face of ambiguity, refuse the temptation to guess.&lt;/li&gt;
&lt;li&gt;There should be one &amp;ndash; and preferably only one &amp;ndash; obvious way to do it.&lt;/li&gt;
&lt;li&gt;Although that way may not be obvious at first unless you&amp;rsquo;re Dutch.&lt;/li&gt;
&lt;li&gt;Now is better than never.&lt;/li&gt;
&lt;li&gt;Although never is often better than &lt;em&gt;right&lt;/em&gt; now.&lt;/li&gt;
&lt;li&gt;If the implementation is hard to explain, it&amp;rsquo;s a bad idea.&lt;/li&gt;
&lt;li&gt;If the implementation is easy to explain, it may be a good idea.&lt;/li&gt;
&lt;li&gt;Namespaces are one honking great idea &amp;ndash; let&amp;rsquo;s do more of those!&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I think this really applies to all languages and programming in general.&lt;/p&gt;</description></item><item><title>Google Analytics Logger for Slogger</title><link>https://hiltmon.com/blog/2012/11/14/google-analytics-logger-for-slogger/</link><pubDate>Wed, 14 Nov 2012 09:14:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/14/google-analytics-logger-for-slogger/</guid><description>&lt;p&gt;This article explains how to set up Brett Terpstra&amp;rsquo;s &lt;a href="http://ttscoff.github.com/Slogger/"&gt;Slogger&lt;/a&gt; with a new plugin to journal your daily Google Analytics site stats. This plugin supports:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Multiple web properties as long as they are under the same Google login.&lt;/li&gt;
&lt;li&gt;Multiple dates so you can skip a few Slogger run days and catch up (or back fill).&lt;/li&gt;
&lt;li&gt;Only logs a full day&amp;rsquo;s worth of stats, so if it runs now, it logs up to yesterday&amp;rsquo;s stats.&lt;/li&gt;
&lt;li&gt;Captures page views, visitors, top 5 sources and top 10 popular pages. If you want different stats, let me know in the comments or via Twitter &lt;a href="https://twitter.com/hiltmon"&gt;@hiltmon&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Warning: This plugin is &lt;em&gt;alpha&lt;/em&gt; code, so assume the usual no warranty legalize, basically proceed at your own peril.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Another Reason to love this Community</title><link>https://hiltmon.com/blog/2012/11/12/another-reason-why-i-love-this-community/</link><pubDate>Mon, 12 Nov 2012 18:13:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/12/another-reason-why-i-love-this-community/</guid><description>&lt;p&gt;Friendly competition, another reason to love this community.&lt;/p&gt;
&lt;p&gt;The gang at App.Net just released their new integrated stream marker feature.&lt;/p&gt;
&lt;p&gt;The first response I see (at the top) is from Manton Reece (TW: &lt;a href="https://twitter.com/manton"&gt;@manton&lt;/a&gt;, ADN: @manton), the maker of &lt;a href="http://tweetmarker.net"&gt;Tweet Marker&lt;/a&gt; that competes with this feature, congratulating them on their implementation.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/11/12/another-reason-why-i-love-this-community/images/stream-marker.png" width="437" height="628"&gt;
&lt;/figure&gt;

&lt;p&gt;Screenshot off App.Net using &lt;a href="http://wedge.natestedman.com"&gt;Wedge&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Linking to Bullshit</title><link>https://hiltmon.com/blog/2012/11/08/linking-to-bullshit/</link><pubDate>Thu, 08 Nov 2012 16:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/08/linking-to-bullshit/</guid><description>&lt;p&gt;While I was working on my &lt;a href="https://hiltmon.com/blog/2012/11/08/adverse-apple-articles/"&gt;Adverse Apple Articles&lt;/a&gt; post this morning, Marco Arment was writing this: &lt;a href="http://www.marco.org/2012/11/07/linking-to-bullshit"&gt;Linking to bullshit&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If you truly dislike bullshit writing and don’t want to support it, hit the publishers where it hurts: don’t read it, and don’t link to it.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I only partially agree. If the site and the article is truly link bait, then sure, we should ignore it and not send others to it.&lt;/p&gt;</description></item><item><title>Adverse Apple Articles</title><link>https://hiltmon.com/blog/2012/11/08/adverse-apple-articles/</link><pubDate>Thu, 08 Nov 2012 11:30:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/08/adverse-apple-articles/</guid><description>&lt;p&gt;As part of my research into &lt;a href="https://hiltmon.com/blog/2012/11/05/aapl-vs-amzn-performance-madness/"&gt;AAPL vs AMZN Performance Madness&lt;/a&gt;, I noticed a lot of negative press on AAPL&amp;rsquo;s share price. So I decided to wait until after the election, then sample the press again to see whether it was a blip or a trend.&lt;/p&gt;
&lt;p&gt;In short, the evidence points to a concerted effort to create a negative impression of Apple and push the stock price down. Lets take a look, shall we.&lt;/p&gt;</description></item><item><title>Multiple Themes in Sublime Text 2</title><link>https://hiltmon.com/blog/2012/11/07/multiple-themes-in-sublime-text-2/</link><pubDate>Wed, 07 Nov 2012 15:09:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/07/multiple-themes-in-sublime-text-2/</guid><description>&lt;p&gt;One thing I like to do is to have &lt;em&gt;different&lt;/em&gt; themes for different file types in my text editor. That way, at a glance, I can guess what kind of file a text-filled window contains, especially when zoomed out using Mission Control. I&amp;rsquo;ve been using &lt;em&gt;Custom Language Preferences&lt;/em&gt; in &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fbbedit%252Fid404009241%253Fmt%253D12%2526uo%253D4%2526partnerId%253D30"&gt;BBEdit&lt;/a&gt; preferences to set up the color scheme for each file type there. &lt;em&gt;&lt;a href="https://github.com/textmate/textmate"&gt;TextMate 2&lt;/a&gt; users, check out &lt;a href="https://hiltmon.com/blog/2013/02/22/multiple-themes-in-textmate-2/"&gt;Multiple Themes in TextMate 2&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Rarely Microsoft Office</title><link>https://hiltmon.com/blog/2012/11/07/rarely-microsoft-office/</link><pubDate>Wed, 07 Nov 2012 12:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/07/rarely-microsoft-office/</guid><description>&lt;p&gt;I rarely use Microsoft Office. There, I said it. And it&amp;rsquo;s true. There are electronic cobwebs on my copy. You may now run out of the room screaming.&lt;/p&gt;
&lt;p&gt;For many, this is like saying I rarely bathe. I rarely use Microsoft Office because I have absolutely no reason to use it except for two specific cases.&lt;/p&gt;
&lt;h3 id="email-not-outlook"&gt;Email, not Outlook&lt;/h3&gt;
&lt;p&gt;There are several reasons why I don&amp;rsquo;t use Outlook for email:&lt;/p&gt;</description></item><item><title>Managing the Productivity Context</title><link>https://hiltmon.com/blog/2012/11/06/managing-the-productivity-context/</link><pubDate>Tue, 06 Nov 2012 15:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/06/managing-the-productivity-context/</guid><description>&lt;p&gt;Productivity is doing less stuff to get more stuff done. Managing its context is the key to becoming more productive. Here is a framework to establish and manage your productivity context to maximize your productivity when using your computer, based on what I have been doing to manage my own on my Mac. Hang in there, this is a long one.&lt;/p&gt;</description></item><item><title>Reducing Inboxes</title><link>https://hiltmon.com/blog/2012/11/06/reducing-inboxes/</link><pubDate>Tue, 06 Nov 2012 11:54:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/06/reducing-inboxes/</guid><description>&lt;p&gt;We&amp;rsquo;ve all heard about &lt;a href="http://inboxzero.com"&gt;Inbox Zero&lt;/a&gt;, where you try to reclaim your email, your attention and your life by clearing out your email inbox. I needed to reduce the &lt;em&gt;number&lt;/em&gt; of inboxes first.&lt;/p&gt;
&lt;p&gt;Those of us who have been on the Internet for decades have amassed a large number of email addresses on a variety of services. As time passed, and new services emerged, we added more. Most of us are loathe to close any of these addresses down &lt;em&gt;just in case&lt;/em&gt; we get an email there. Which means setting them up every time we set up a new device, and checking them regularly. That is not productive!&lt;/p&gt;</description></item><item><title>Surface Disk Free Space</title><link>https://hiltmon.com/blog/2012/11/05/surface-disk-free-space/</link><pubDate>Mon, 05 Nov 2012 15:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/05/surface-disk-free-space/</guid><description>&lt;p&gt;Yikes! A 32GB Microsoft Surface RT has only 16GB free according to the &lt;a href="http://www.microsoft.com/Surface/en-US/support/surface-with-windows-RT/files-folders-and-online-storage/surface-disk-space-faq"&gt;Microsoft Surface FAQ&lt;/a&gt;. &lt;strong&gt;Thats 16GB for the Operating System!&lt;/strong&gt; 5GB of that is &lt;em&gt;recovery tools&lt;/em&gt; which could be on the net, but instead chews up expensive internal flash memory! This bloat explains the pricing and performance issues with the device. Arguably, you can expand the Surface (and Android devices) with up to 64GB more disk space using a single SD card, but that I/O is pretty slow compared to the built-in flash memory.&lt;/p&gt;</description></item><item><title>AAPL vs AMZN Performance Madness</title><link>https://hiltmon.com/blog/2012/11/05/aapl-vs-amzn-performance-madness/</link><pubDate>Mon, 05 Nov 2012 13:26:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/11/05/aapl-vs-amzn-performance-madness/</guid><description>&lt;p&gt;Philip Elmer-DeWitt	noted something interesting on Saturday in Fortune magazine, &lt;a href="http://tech.fortune.cnn.com/2012/11/03/amazons-price-to-earnings-ratio-is-now-2767-apples-is-13/"&gt;Amazon&amp;rsquo;s price-to-earnings ratio is now 2,767. Apple&amp;rsquo;s is 13&lt;/a&gt;! In the last quarter, Apple&amp;rsquo;s earnings were &lt;strong&gt;up&lt;/strong&gt; and the stock went &lt;strong&gt;down&lt;/strong&gt;, whereas Amazon reported a loss and the stock went up.&lt;/p&gt;
&lt;p&gt;When a company reports bumper earnings, I assume its stock price should rise, and when a company takes a loss, the stock price should fall. After all, the stock price is really the public valuation of the company. So this response to earnings makes no sense to me. I decided to investigate this madness to see if there are any other rational indicators that explain it. Instead, I found support for my thesis, and no answer to why this is happening.&lt;/p&gt;</description></item><item><title>Grand Central Today</title><link>https://hiltmon.com/blog/2012/10/29/grand-central-today/</link><pubDate>Mon, 29 Oct 2012 15:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/29/grand-central-today/</guid><description>&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/10/29/grand-central-today/images/grand-central-today.png" width="640" height="512"&gt;
&lt;/figure&gt;

&lt;p&gt;&lt;em&gt;Images courtesy MTAInfo.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Surface RT is not a Duck</title><link>https://hiltmon.com/blog/2012/10/27/surface-rt-is-not-a-duck/</link><pubDate>Sat, 27 Oct 2012 16:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/27/surface-rt-is-not-a-duck/</guid><description>&lt;p&gt;What is a duck? Well, if it looks like a duck, floats like a duck, and quacks like a duck, it’s a duck. The just-released Microsoft Surface RT fails the duck test, it looks like a tablet, but it is not a tablet. Windows 8 RT also fails the duck test, it looks like Windows 8, but it is not Windows 8.&lt;/p&gt;
&lt;p&gt;For the record, I have used the real proper Windows 8 on a Samsung tablet before, so my impressions of the Surface and Windows RT are based on that experience.&lt;/p&gt;</description></item><item><title>Marco and the Surface</title><link>https://hiltmon.com/blog/2012/10/27/marco-and-the-surface/</link><pubDate>Sat, 27 Oct 2012 11:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/27/marco-and-the-surface/</guid><description>&lt;p&gt;Marco Arment, of &lt;a href="http://instapaper.com"&gt;Instapaper&lt;/a&gt; and The Magazine fame, went to a Microsoft Store yesterday to try out the new Surface and wrote about the experience in his blog in &lt;a href="http://www.marco.org/2012/10/26/an-alternate-universe"&gt;An alternate universe&lt;/a&gt;. Go read it. I’ll wait.&lt;/p&gt;
&lt;p&gt;I’m sad to say but I think I may have to agree with his conclusion:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;But it’s not for me at all. Not even for testing, experimenting, or curiosity. It feels too much like using a Windows PC, which was exactly Microsoft’s intention, and it will appeal to people who want that. But that’s a world I fled 8 years ago with no intention of returning.&lt;/p&gt;</description></item><item><title>Windows 8 Launch MIA</title><link>https://hiltmon.com/blog/2012/10/25/windows-8-launch-mia/</link><pubDate>Thu, 25 Oct 2012 14:07:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/25/windows-8-launch-mia/</guid><description>&lt;p&gt;So I sat back today to watch the live stream of the Microsoft Windows 8 launch. I was excited, this is the first Windows launch that interested me since Windows 95. And I waited for them to show me the product, its features and its pricing. And I waited, and waited, and then the show ended. Information about Windows 8 was &lt;strong&gt;missing in action&lt;/strong&gt; at the launch.&lt;/p&gt;
&lt;p&gt;Now I &lt;em&gt;know&lt;/em&gt; that the press has had it for ages. I &lt;em&gt;know&lt;/em&gt; I have been running a Windows 8 preview in the VM for ages, and so have most developers and corporate IT departments. And I have also used it on a Samsung tablet. &lt;em&gt;But most customers have not touched, seen or played with Windows 8.&lt;/em&gt; Maybe I assumed, incorrectly it seems, that the launch audience was potential Windows 8 customers, just like the audiences for Apple and Google’s launches are. Maybe I assumed &lt;em&gt;incorrectly&lt;/em&gt; that the purpose of a launch is to talk about the product and then show it off, its features and pricing. I must be &lt;em&gt;incorrect&lt;/em&gt; because the Windows 8 launch did none of that.&lt;/p&gt;</description></item><item><title>Apple vs Microsoft Launch Differences</title><link>https://hiltmon.com/blog/2012/10/25/apple-vs-microsoft-launch-differences/</link><pubDate>Thu, 25 Oct 2012 12:41:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/25/apple-vs-microsoft-launch-differences/</guid><description>&lt;p&gt;I started a post on the Windows 8 Launch which I will get back to later, because there were some very key differences between the two presentations and they really resounded with me. Some of them stylistic, some fundamental, you choose which.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Microsoft: “will”, Apple: “is”&lt;/strong&gt;. A lot of the Microsoft presentation was all about “will”, you &lt;em&gt;will&lt;/em&gt; be more productive, you &lt;em&gt;will&lt;/em&gt; have more device choices, you &lt;em&gt;will&lt;/em&gt; enjoy, you &lt;em&gt;will&lt;/em&gt; do X better. Apple’s presentation was all about what “is”. This &lt;em&gt;is&lt;/em&gt; how you do X better, these &lt;em&gt;are&lt;/em&gt; your choices, this &lt;em&gt;is&lt;/em&gt; fun. To me, a product launch is about what the product &lt;em&gt;is&lt;/em&gt; not what it &lt;em&gt;will&lt;/em&gt; be.&lt;/p&gt;</description></item><item><title>Email Etiquette</title><link>https://hiltmon.com/blog/2012/10/24/email-etiquette/</link><pubDate>Wed, 24 Oct 2012 15:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/24/email-etiquette/</guid><description>&lt;p&gt;I don’t know about you, but I get a lot of emails across a lot of accounts and the time and effort to process my inbox is growing exponentially. I just wish that senders and responders on email would follow some basic etiquette rules that will make our use of email both more pleasant and more productive.&lt;/p&gt;
&lt;p&gt;Email is a form of communication which is a reflection of you. Bad email etiquette reflects badly on you, and a record of this is kept in mailboxes over which you have no control. Good email etiquette reflects well on you, improves your public perception and persona and increases the chance of a prompt and comprehensive response. It’s not hard to maintain good email etiquette once you know what it is.&lt;/p&gt;
&lt;p&gt;One thing before we start, before creating or responding to an email, ask yourself this: is email the right medium for this communication? If you are not sure, pick up the phone or wander over to the person and have a conversation. Email only if it is the right medium.&lt;/p&gt;
&lt;p&gt;And always follow good etiquette. This article contains a comprehensive list of rules and recommendations learned through experience and research.&lt;/p&gt;</description></item><item><title>The Big 5 Windows 8 Lineups</title><link>https://hiltmon.com/blog/2012/10/24/the-big-5-windows-8-lineups/</link><pubDate>Wed, 24 Oct 2012 09:51:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/24/the-big-5-windows-8-lineups/</guid><description>&lt;p&gt;My thoughts on announced hardware for Windows 8 being released this week.&lt;/p&gt;
&lt;h2 id="asus"&gt;Asus&lt;/h2&gt;
&lt;p&gt;Asus will be launching their &lt;em&gt;Zenbooks&lt;/em&gt; with touch screens for Windows 8 in November, or really replacing the screens on their old Zenbooks with touch screens and selling them as new models.&lt;/p&gt;
&lt;p&gt;They are updating their modular tablet to run Windows RT and calling it the &lt;em&gt;Vivo Tab RT&lt;/em&gt;. 10.1” with a dock for the low price of $599.00, but it’s just the old transformer with bad resolution, slow CPU’s and better-than-average speakers.&lt;/p&gt;</description></item><item><title>There’d be something called a mini</title><link>https://hiltmon.com/blog/2012/10/23/thered-be-something-called-a-mini/</link><pubDate>Tue, 23 Oct 2012 20:15:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/23/thered-be-something-called-a-mini/</guid><description>&lt;p&gt;My thoughts on today’s announcements by Apple.&lt;/p&gt;
&lt;h2 id="13-retina-macbook-pro"&gt;13” Retina Macbook Pro&lt;/h2&gt;
&lt;p&gt;The 13” Retina Macbook Pro looks good, is priced high as expected, and is probably going to sell very very well. But the 8GB RAM limit and the lack of an external graphics card to drive the Retina display is puzzling. The 15” has an external NVIDIA GT 650M and can go up to 16GB RAM, that makes it a pro machine. The old 13” Pro had the same limitations, odd.&lt;/p&gt;</description></item><item><title>The myth of the wireless spectrum crisis</title><link>https://hiltmon.com/blog/2012/10/22/the-myth-of-the-wireless-spectrum-crisis/</link><pubDate>Mon, 22 Oct 2012 17:23:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/22/the-myth-of-the-wireless-spectrum-crisis/</guid><description>&lt;p&gt;Great article by Tim Farrar, a real pro on Gigaom entitled &lt;a href="http://gigaom.com/2012/10/21/the-myth-of-the-wireless-spectrum-crisis/"&gt;The myth of the wireless spectrum crisis&lt;/a&gt;, presents the fact that wireless data growth has stalled because of tiered pricing, low caps and market saturation instead of growing out of control:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;However, underlying the statistics are numbers that tell a far different story: in fact, there was a dramatic slowdown in wireless traffic growth during the first half of 2012. Of course, CTIA doesn’t want anyone to realize that, because it is significantly at variance with CTIA’s narrative of an impending “spectrum crunch” into which so much lobbying effort has been invested.&lt;/p&gt;</description></item><item><title>Huge Last Week in October 2012 for Tech</title><link>https://hiltmon.com/blog/2012/10/22/huge-last-week-in-october-2012-for-tech/</link><pubDate>Mon, 22 Oct 2012 12:05:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/22/huge-last-week-in-october-2012-for-tech/</guid><description>&lt;p&gt;It’s going to be a huge week in tech this week, with launches and events from the big three, Microsoft, Google and Apple. Here’s what happening and my take on each.&lt;/p&gt;
&lt;h2 id="microsoft-windows-8-and-surface"&gt;Microsoft Windows 8 and Surface&lt;/h2&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/10/22/huge-last-week-in-october-2012-for-tech/images/microsoft-event-oct-25-2012.jpg" width="440" height="330"&gt;
&lt;/figure&gt;

&lt;p&gt;On October 25, 2012, Microsoft will hold an event to launch their new Windows 8 Operating System for release the next day. I expect to see more demos of the system itself, a lot more Metro, er Windows UI, style applications and some great hardware that is tuned for it, especially touchable wrap-around laptops from Lenovo and Acer. It will be a good show, unless Ballmer speaks, in which case all bets are off.&lt;/p&gt;</description></item><item><title>Solutions born from deep experience</title><link>https://hiltmon.com/blog/2012/10/22/solutions-born-from-deep-experience/</link><pubDate>Mon, 22 Oct 2012 11:36:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/22/solutions-born-from-deep-experience/</guid><description>&lt;p&gt;Comment of the Day:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[Aaron Mahnke] (on App.Net)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In response to:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I love it when my clients casually ask, &amp;ldquo;Can you teach me how to [insert knowledge that comes from supporting Macs for 20+ years] so I don&amp;rsquo;t have to [call/pay/wait for] you?&amp;rdquo; Um, sure&amp;hellip; Have twenty years or so?
[Patrick Rhone] (on App.Net)&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>45 Revolutions</title><link>https://hiltmon.com/blog/2012/10/20/45-revolutions/</link><pubDate>Sat, 20 Oct 2012 13:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/20/45-revolutions/</guid><description>&lt;p&gt;When the Earth was in the same relative position to the sun 45 revolutions ago, a baby boy was born at the southernmost point of a continent called Africa. The Earth did not stop, or even pause as it continued its solitary journey.&lt;/p&gt;
&lt;p&gt;Yet the baby grew up and made his own journey. Cape Town to Sydney to Tokyo to New York. Via Jerusalem, Johannesburg, London, Paris, Amsterdam, Nice, Geneva, Munich, Salzburg, Milan, Rome, Athens, Hong Kong, Melbourne, Singapore, Bangkok, Phnom Penh, Saigon, Hanoi, Vientiane, Sapporo, Kobe, Nagano, Kuala Lumpur, Borneo, Berlin, Barcelona, Prague, Budapest, Vienna, Venice, Malta, Sicily and hundreds of places in between, all filled with wonder, sights, tastes, experiences and joys.&lt;/p&gt;</description></item><item><title>Say NO to Spec Work</title><link>https://hiltmon.com/blog/2012/10/19/say-no-to-spec-work/</link><pubDate>Fri, 19 Oct 2012 11:55:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/19/say-no-to-spec-work/</guid><description>&lt;p&gt;&lt;em&gt;TL;DR: Spec work is delivering creative work for free to prospective clients, encouraged by a bunch of work-listing or contest-hosting services. Say NO, even if that means you have quiet times, or you’ll never become a professional.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;One of the negative things about being an indie is that the consulting and project work comes in fits and starts, and there are times, like now, when we have no client work to do at all (&lt;a href="mailto:contact@noverse.com"&gt;so contact me&lt;/a&gt;). On a positive note, it means we have time to spend on personal projects and building our own products. To use an American phrase, it’s a wash. Client work pays the bills while we develop our own products, too &lt;em&gt;much&lt;/em&gt; client work and our products never get done, too &lt;em&gt;little&lt;/em&gt; client work and we cannot fund our own products.&lt;/p&gt;</description></item><item><title>Why Windows Just Can’t Win</title><link>https://hiltmon.com/blog/2012/10/19/why-windows-just-cant-win/</link><pubDate>Fri, 19 Oct 2012 10:27:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/19/why-windows-just-cant-win/</guid><description>&lt;p&gt;Mat Honan, writing in Wired in &lt;a href="http://www.wired.com/gadgetlab/2012/10/why-windows-just-cant-win/"&gt;Why Windows Just Can&amp;rsquo;t Win&lt;/a&gt;, concludes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;It doesn’t matter if Microsoft creates the greatest operating system in the world if it then allows others to junk it up. And, ultimately, it means that Microsoft isn’t in control of its brand.&lt;/p&gt;
&lt;p&gt;The Metro name, the crapware, and the horrible release dates all point to the same problem: Even when Microsoft has a great product on its hands, even when its product, engineering and design teams manage to hit one out of the park, it won’t matter once the business team comes in and ruins it for everyone. Windows 8, Windows Phone 8, Windows Surface — these are all potentially great products. But if past is prologue, that may not matter.&lt;/p&gt;</description></item><item><title>Too Many Menu Bar Apps?</title><link>https://hiltmon.com/blog/2012/10/16/too-many-menu-bar-apps/</link><pubDate>Tue, 16 Oct 2012 17:27:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/16/too-many-menu-bar-apps/</guid><description>&lt;p&gt;These days, in order to maximize my productivity, I seem to be running a lot of menu bar apps on my Macintosh OS X system. So many that I had to buy a menu bar manager, &lt;a href="http://www.macbartender.com"&gt;Bartender&lt;/a&gt;! &lt;em&gt;Add what you use in the comments.&lt;/em&gt;&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/10/16/too-many-menu-bar-apps/images/menu-bar-all.jpg" width="655" height="49&amp;#34;"&gt;
&lt;/figure&gt;

&lt;p&gt;Here’s what each one is and why I use it (in no particular order):&lt;/p&gt;
&lt;p&gt;&lt;figure class="left-right"&gt;&lt;img src="https://hiltmon.com/blog/2012/10/16/too-many-menu-bar-apps/images/menu-bar-1password.jpg"&gt;
&lt;/figure&gt;
 &lt;strong&gt;1Password&lt;/strong&gt; - One of my &lt;em&gt;must have&lt;/em&gt; tools, enables me to reach and log into sites securely using strong site-specific passwords. Without it, I have no access to anything &lt;a href="https://agilebits.com/onepassword"&gt;https://agilebits.com/onepassword&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Walled Gardens are Permeable</title><link>https://hiltmon.com/blog/2012/10/15/walled-gardens-are-permeable/</link><pubDate>Mon, 15 Oct 2012 12:36:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/15/walled-gardens-are-permeable/</guid><description>&lt;p&gt;There is an incredible amount of Fear, Uncertainty and Doubt (FUD) on the internet about &lt;em&gt;walled gardens&lt;/em&gt;, or closed ecosystems, especially focussed on Apple and ignoring everyone else. The open versus closed ecosystem holy war is in full force, with a lot of words written in absolute and extreme terms. Yet the so-called walled garden systems appear to be most popular and most successful.&lt;/p&gt;
&lt;p&gt;I believe that in reality these closed ecosystems actually have very permeable walls and that we&amp;rsquo;re really working in the middle ground between open and closed. They both have benefits and problems, but the balance is achievable and, in some cases, already working. We can end this war of words with knowledge, understanding and in making our own choices.&lt;/p&gt;</description></item><item><title>The Post-PC future, iCloud turns one</title><link>https://hiltmon.com/blog/2012/10/14/the-post-pc-future/</link><pubDate>Sun, 14 Oct 2012 11:20:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/14/the-post-pc-future/</guid><description>&lt;p&gt;Apple&amp;rsquo;s iCloud service turned 1-year old on October 12, 2012. The day passed with a whimper in a tech press focussed on irrelevant issues such scratching, purple flares, maps and other Apple so-called &amp;ldquo;failures&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;I think it&amp;rsquo;s a big deal, because with iCloud, Apple may finally be getting internet services right and the post-PC era just got real for most people. And no-one seems to have noticed.&lt;/p&gt;
&lt;p&gt;As an early adopter, though, post-PC started early for me. I had one of the early Motorola V710 phones, the ones Verizon got sued for and lost because they advertised sync on the phone, then blocked it on release. I managed to acquire the original Motorola version of the V710 operating system and installed that. Whenever the phone was within bluetooth range of my PC, I could manually sync contacts. How amazing was that, I did not need to maintain two separate address books. &lt;em&gt;Surely that was the post-PC future.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Fixing Open With in OS X</title><link>https://hiltmon.com/blog/2012/10/13/fixing-open-with-in-os-x/</link><pubDate>Sat, 13 Oct 2012 12:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/13/fixing-open-with-in-os-x/</guid><description>&lt;p&gt;If you use the &lt;strong&gt;Open With&amp;hellip;&lt;/strong&gt; contextual menu on OS X (right-click on a file in Finder), you may find a lot of applications get duplicated or are just plain wrong. This is how you reset this menu.&lt;/p&gt;
&lt;p&gt;In my case I had this for Markdown files:&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/10/13/fixing-open-with-in-os-x/images/open-with-before.jpeg" width="576" height="603"&gt;
&lt;/figure&gt;

&lt;p&gt;What a mess. Open a Terminal session from &lt;strong&gt;Applications/Utilities&lt;/strong&gt; and type the following command:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Make sure the whole thing is on a single line and wait for it to finish.&lt;/p&gt;</description></item><item><title>Scratched iPhones</title><link>https://hiltmon.com/blog/2012/10/10/scratched-iphones/</link><pubDate>Wed, 10 Oct 2012 10:58:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/10/scratched-iphones/</guid><description>&lt;p&gt;There’s a big brouhaha in the news these days that new iPhone 5’s come scratched out of the box, and that the new aluminium backs scratch too easily. So much noise that Apple is trying to “fix” the problem by not shipping pre-scratched ones, and by telling people that scratching is normal for aluminium products.&lt;/p&gt;
&lt;p&gt;I prefer Remy Labesque’s take back in 2011 in &lt;a href="http://designmind.frogdesign.com/blog/aged-to-perfection.html"&gt;Aged to Perfection&lt;/a&gt;, the &lt;em&gt;back&lt;/em&gt; of scratched iPhones can and does look beautiful.&lt;/p&gt;</description></item><item><title>Spent more on Patents than R&amp;D?</title><link>https://hiltmon.com/blog/2012/10/10/spent-more-on-patents-than-r/</link><pubDate>Wed, 10 Oct 2012 10:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/10/spent-more-on-patents-than-r/</guid><description>&lt;p&gt;Ian Betteridge &lt;a href="http://twitter.com/ianbetteridge"&gt;@ianbetteridge&lt;/a&gt; takes the New York Times &lt;em&gt;down&lt;/em&gt; in &lt;a href="http://www.technovia.co.uk/2012/10/did-apple-and-google-really-spend-more-on-patents-than-rd-yes-but-its-not-all-it-seems.html"&gt;Did Apple and Google really spend more on patents than R&amp;amp;D?&lt;/a&gt;, in response to the NYT article &lt;a href="http://www.nytimes.com/interactive/business/ieconomy.html"&gt;The iEconomy: Apple and Technology Manufacturing&lt;/a&gt; (Subscription required):&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Read the NYT piece, and you would think that the technology market has shifted from being about research and development of new products to being about acquisition of patents. Given that this is based on a single year, when some very big patent portfolios came on the market in one-off deals that aren’t likely to be repeated in the future, that’s a long way from the truth.&lt;/p&gt;</description></item><item><title>Microsoft Lost its Mojo</title><link>https://hiltmon.com/blog/2012/10/10/microsoft-lost-its-mojo/</link><pubDate>Wed, 10 Oct 2012 09:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/10/microsoft-lost-its-mojo/</guid><description>&lt;p&gt;Another well written article today in Vanity Faire, &lt;a href="http://www.vanityfair.com/business/2012/08/microsoft-lost-mojo-steve-ballmer"&gt;How Microsoft Lost Its Mojo: Steve Ballmer and Corporate America’s Most Spectacular Decline&lt;/a&gt;, which visits Microsoft’s lost decade and current structural problems. Well worth &lt;a href="http://www.instapaper.com/"&gt;Instapering&lt;/a&gt; (Is that a word?).&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Ballmer’s key business philosophy for Microsoft was so antiquated as to be irrelevant. The Microsoft C.E.O. used to proclaim that it would not be first to be cool, but would be first to profit—in other words, it would be the first to make money by selling its own version of new technologies. But that depended on one fact: Microsoft could buy its way into the lead, because it always had so much more cash on hand than any of its competitors.&lt;/p&gt;</description></item><item><title>BBEdit still Rules</title><link>https://hiltmon.com/blog/2012/10/10/bbedit-still-rules/</link><pubDate>Wed, 10 Oct 2012 09:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/10/bbedit-still-rules/</guid><description>&lt;p&gt;Lovely article on how the stalwart classic &lt;a href="http://www.barebones.com/products/bbedit/index.html"&gt;BBEdit&lt;/a&gt; still rules by Andy Ihnatko (&lt;a href="http://twitter.com/ihnatko"&gt;@ihnatko&lt;/a&gt;) on Macworld today, entitled &lt;a href="http://www.macworld.com/article/2011461/mac-classics-why-bbedit-rules.html"&gt;Mac classics: Why BBEdit rules&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;“BBEdit’s still important because at its essential core, it’s a tool for working with text,” says Rich Siegel, Bare Bones Software’s founder and CEO. “Not text for presentation, as in a word processor or page-layout application, but rather text as data supplied to other software: code for compilers and interpreters, markup and Web applications for Web browsers, log files and data tables for analysis, and for any tool that inhales raw text and turns it into something else.”&lt;/p&gt;</description></item><item><title>Stop with the old Text Editors already</title><link>https://hiltmon.com/blog/2012/10/08/stop-with-the-old-text-editors-already/</link><pubDate>Mon, 08 Oct 2012 19:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/08/stop-with-the-old-text-editors-already/</guid><description>&lt;p&gt;Over the past few years, it has become &lt;em&gt;a thing&lt;/em&gt; to stop using IDE’s and modern text editors in favor of Vim. I understand older programmers using Vim out of habit, but the new generation of programmers? I don’t get it. Every-time I write about text editors, this growing group tweets to give modern GUI editors up and switch to old trusty rusty crusty terminal-based Vim.&lt;/p&gt;
&lt;p&gt;Stop it! I’m not going to do that.&lt;/p&gt;</description></item><item><title>Minimize the Glue</title><link>https://hiltmon.com/blog/2012/10/08/hiltmonism-minimize-the-glue/</link><pubDate>Mon, 08 Oct 2012 15:19:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/10/08/hiltmonism-minimize-the-glue/</guid><description>&lt;p&gt;Glue is bad. Too much glue and your systems and processes become rigid, inflexible and incomprehensible. In technology and in business, you need to minimize the glue.&lt;/p&gt;
&lt;p&gt;Let’s start with a few definitions. Lets call a potential interconnection between two systems a &lt;strong&gt;path&lt;/strong&gt;. An &lt;strong&gt;interface&lt;/strong&gt; is code to import or export data from an application. Now we can define an &lt;strong&gt;integration&lt;/strong&gt; as a process whereby data is pulled from one interface, travels down a path and is loaded into another interface. A &lt;strong&gt;reconciliation&lt;/strong&gt; is the process of checking that the data that travels along paths matches in both systems. &lt;strong&gt;Glue&lt;/strong&gt; are programs that implement integrations.&lt;/p&gt;</description></item><item><title>Export to Excel is a Red Flag</title><link>https://hiltmon.com/blog/2012/09/29/export-to-excel-is-a-red-flag/</link><pubDate>Sat, 29 Sep 2012 15:57:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/09/29/export-to-excel-is-a-red-flag/</guid><description>&lt;p&gt;As a developer, I often get requests from clients asking me if I could deliver them a spreadsheet using their data from their systems that contains X and Y and Z. As a maker of software products, I often get asked whether my product supports ‘Export to Excel’.&lt;/p&gt;
&lt;p&gt;Most developers say &lt;em&gt;yes&lt;/em&gt;, here is your spreadsheet and &lt;em&gt;yes&lt;/em&gt;, the product has ‘Export to Excel’. My answer is different, it’s &lt;em&gt;sometimes&lt;/em&gt; and &lt;em&gt;no&lt;/em&gt;, and this is why.&lt;/p&gt;</description></item><item><title>Entitlement</title><link>https://hiltmon.com/blog/2012/09/28/entitlement/</link><pubDate>Fri, 28 Sep 2012 14:29:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/09/28/entitlement/</guid><description>&lt;p&gt;Excellent post by Aaron Mahnke called &lt;a href="http://aaronmahnke.com/blog/2012/9/27/entitlement"&gt;Entitlement&lt;/a&gt; about all those moaning about the new iPhone (although I think it applies to all new products), please read and share it:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Where is the sense of gratitude and wonder that we used to have? A tech company sells millions and millions of an amazing smart phone, but decided to create a new model by investing untold amounts of money and energy. And then they released it for the same price as the last model. They didn&amp;rsquo;t have to, but they did. To moan and complain about that smacks of entitlement and selfishness.&lt;/p&gt;</description></item><item><title>Windows 8 Preview on a Tablet</title><link>https://hiltmon.com/blog/2012/09/27/windows-8-preview-on-a-tablet/</link><pubDate>Thu, 27 Sep 2012 17:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/09/27/windows-8-preview-on-a-tablet/</guid><description>&lt;p&gt;While on holiday, I got to play with the Windows 8 Preview on a Samsung tablet. It made some notes of the experience, then decided to wait until I returned home to see what I remembered about the experience.&lt;/p&gt;
&lt;p&gt;The tablet itself was larger than the iPad, a lot thicker, a lot heavier and had a lot more ports. It also came with a stylus and a keyboard dock which was useful in turning it into a laptop when needed. The screen was a 16:9 widescreen, bright and colorful, which made it amazing for the kids to watch movies on. The sound was loud and clear. All in all, the feel was hefty, but quite comfortable. The tablet hardware seemed solidly built.&lt;/p&gt;</description></item><item><title>Bye bye Skitch, Hello LittleSnapper</title><link>https://hiltmon.com/blog/2012/09/27/bye-bye-skitch/</link><pubDate>Thu, 27 Sep 2012 15:29:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/09/27/bye-bye-skitch/</guid><description>&lt;p&gt;&lt;em&gt;Editor&amp;rsquo;s Note: Written six months ago, I&amp;rsquo;ve since moved on to using &lt;a href="https://hiltmon.com/blog/2013/02/20/glui-a-better-skitch/"&gt;Glui - a better Skitch&lt;/a&gt; to replace Skitch.&lt;/em&gt;&lt;/p&gt;
&lt;h2 id="bye-bye-skitch"&gt;Bye bye Skitch&lt;/h2&gt;
&lt;p&gt;I’ve been using &lt;a href="https://skitch.com"&gt;Skitch&lt;/a&gt; to grab screenshots since the first beta was announced way back in June, 2007. I paid for Skitch Plus in February 2011 because I loved the product, and the work by &lt;a href="http://plasq.com"&gt;Plasq&lt;/a&gt;, so much. Then &lt;a href="http://evernote.com"&gt;Evernote&lt;/a&gt; purchased Skitch and I hoped that they would not mess it up.&lt;/p&gt;</description></item><item><title>New iOS6 Cached Maps</title><link>https://hiltmon.com/blog/2012/09/24/new-ios6-cached-maps/</link><pubDate>Mon, 24 Sep 2012 16:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/09/24/new-ios6-cached-maps/</guid><description>&lt;p&gt;One feature I do like about the new Maps in iOS 6, the vectors and data are now cached. Seems the application caches the last viewed maps, so the GPS works rather well when offline.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/09/24/new-ios6-cached-maps/images/cached_zushi.png" width="640" height="960"&gt;
&lt;/figure&gt;

&lt;p&gt;Screenshot taken near Zushi station in Japan, with no WiFi or cellular data enabled.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/09/24/new-ios6-cached-maps/images/cached_proof.png" width="640" height="960"&gt;
&lt;/figure&gt;

&lt;p&gt;Note also that the detail in semi-rural Japan seems pretty good.&lt;/p&gt;</description></item><item><title>The best Sushi</title><link>https://hiltmon.com/blog/2012/09/20/the-best-sushi/</link><pubDate>Thu, 20 Sep 2012 20:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/09/20/the-best-sushi/</guid><description>&lt;p&gt;If you love traditional Japanese sushi, not the Western or Californian styles, then I have found the best sushi place in the world. But you had better hurry of you want a chance to eat there, the sushi chef is getting old.&lt;/p&gt;
&lt;h2 id="getting-there"&gt;Getting There&lt;/h2&gt;
&lt;p&gt;The restaurant is in Kanazawa city on the Japan Sea side of Japan, about 450 km north-west of Tokyo. Getting there is easy if you take a &lt;em&gt;shinkansen&lt;/em&gt; (bullet train) about half the way and an express train the rest of the way, give yourself 5-6 hours of travel from Tokyo.&lt;/p&gt;</description></item><item><title>Buying a new Suitcase</title><link>https://hiltmon.com/blog/2012/09/19/buying-a-new-suitcase/</link><pubDate>Wed, 19 Sep 2012 18:18:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/09/19/buying-a-new-suitcase/</guid><description>&lt;p&gt;My suitcase broke on the way back to Japan from Australia, so we decided it was time to buy a new one. As usual, the geek in me meant that we could not just run down to the local Yodobashi Camera and purchase the first one we found (although I did spend a lot of time prodding the ones there). I need facts and information to make the right decision. Here&amp;rsquo;s how I chose the one I purchased.&lt;/p&gt;</description></item><item><title>Text Editor Addict</title><link>https://hiltmon.com/blog/2012/08/25/text-editor-addict/</link><pubDate>Sat, 25 Aug 2012 13:10:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/25/text-editor-addict/</guid><description>&lt;p&gt;Hi, my name is Hilton and maybe, just maybe, I am a text editor addict.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Hello Hilton&amp;rdquo; you all say.&lt;/p&gt;
&lt;p&gt;I seem to have a lot of text manipulation tools on my devices. Of course, I don’t think I have too many, but most people only seem to have one. You see, to me, each one has it’s own use, &lt;em&gt;it’s the best tool for it’s job&lt;/em&gt;, that’s why I have and use it. Here is a list of all the text editors on my laptop that I use right now, and why:&lt;/p&gt;</description></item><item><title>Thwarted by Patents</title><link>https://hiltmon.com/blog/2012/08/25/thwarted-by-patents/</link><pubDate>Sat, 25 Aug 2012 11:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/25/thwarted-by-patents/</guid><description>&lt;p&gt;As you all know, teleportation is easy. But one cannot make a teleporter due to the crazy US Patent system. And it&amp;rsquo;s frustrating me.&lt;/p&gt;
&lt;p&gt;Like you all, I am pretty tired of traveling to airports via trains and monorails, waiting in check-in lines, fighting those darn kiosk things, standing in baggage lines, standing in TSA lines, removing shoes and belt, getting frisked, getting dressed then waiting in dingy boarding areas with horrid coffee and no useable wifi only to spend hours upon hours squished in small cramped seats with bland food and annoying strangers, just to get somewhere.&lt;/p&gt;</description></item><item><title>Care</title><link>https://hiltmon.com/blog/2012/08/22/care/</link><pubDate>Wed, 22 Aug 2012 08:58:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/22/care/</guid><description>&lt;blockquote&gt;
&lt;p&gt;As a species , we have proven that there is nothing we can’t do if we set out to do so. We have cured the incurable countless times before. I fervently believe that, if we can send robots to Mars and fix elections with money, we can cure cancer. All it takes is the same thing it always has for every one of those challenges…&lt;/p&gt;
&lt;p&gt;Care.
&lt;a href="http://patrickrhone.com/2012/08/21/how-to-cure-cancer/"&gt;Patrick Rhone&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I don’t know Patrick personally, we’ve never met and probably will never meet. He’s just a guy I follow on Twitter and App.net because his tweets and posts show that his interests and mine align.&lt;/p&gt;</description></item><item><title>Where is the International News</title><link>https://hiltmon.com/blog/2012/08/20/where-is-the-international-news/</link><pubDate>Mon, 20 Aug 2012 10:29:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/20/where-is-the-international-news/</guid><description>&lt;p&gt;Claire Belinski explains in the badly titled &lt;a href="http://www.gatestoneinstitute.org/3294/how-to-read-today-unbelievably-bad-news"&gt;How to Read Today&amp;rsquo;s Unbelievably Bad News :: Gatestone Institute&lt;/a&gt; where good international news coverage has gone.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Something has gone very wrong in American coverage of news from abroad. It is shoddy, lazy, riddled with mistakes, and excessively simplistic.&lt;/p&gt;
&lt;p&gt;Above all, it is absent.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Mainly this is why:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;In the event of a massive breaking story—such as the uprisings in Tahrir Square—the networks parachute their people in. They bone up on the story by reading the local English-language newspapers (and in any country where English isn&amp;rsquo;t widely spoken, it is important to ask: Why does it have an English-language newspaper? The answer, usually, is that the paper is trying to sell a particular version of local events to investors and to English-speakers—a version, needless to say, that is not necessarily the whole truth).&lt;/p&gt;</description></item><item><title>AT&amp;T effs users again</title><link>https://hiltmon.com/blog/2012/08/18/att-effs-users-again/</link><pubDate>Sat, 18 Aug 2012 12:41:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/18/att-effs-users-again/</guid><description>&lt;p&gt;The beard, Jim Dalrymple nails it in &lt;a href="http://www.loopinsight.com/2012/08/18/att-fucks-users-again/"&gt;AT&amp;amp;T fucks users… again&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;“Our network sucks balls. If we tried to let all of you rapid iPhone users have FaceTime, our network would take a firey crash into Hell. Many of the executives that have been too goddamn cheap to upgrade the network are now scared shitless that they will lose their cushy bonuses. So we decided to fuck our users.”&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Why? AT&amp;amp;T is only allowing cellular FaceTime if you buy into their new overpriced and underserviced family share plans. I am on a grandfathered unlimited data plan, which is not really unlimited. The new share plan will cost me $40 a month more for significantly less data that we already use (and our usage is way less than the cap or throttle trigger on the unlimited plan).&lt;/p&gt;</description></item><item><title>Hipstamatic fires its devs</title><link>https://hiltmon.com/blog/2012/08/17/hipstamatic-fires-its-devs/</link><pubDate>Fri, 17 Aug 2012 14:08:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/17/hipstamatic-fires-its-devs/</guid><description>&lt;p&gt;Of all the stupid things to do, Hipstamatic fired its 3 devs, 1 designer and writer yesterday. Here’s how it played out on Twitter.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;So in case you didn’t get the memo. Entire team laid off. 3 devs, 1 designer, 1 writer. Some of THE best people I’ve ever worked with…
&lt;a href="https://twitter.com/schwa/status/236155846680260608"&gt;Jonathan Wight&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is a company making 22 million dollars this year (according to &lt;a href="http://www.theverge.com/2012/8/16/3247801/hipstamatic-layoffs-synthetic"&gt;The Verge here&lt;/a&gt;). And expects to continue without its creatives!&lt;/p&gt;</description></item><item><title>RIP Twitter</title><link>https://hiltmon.com/blog/2012/08/17/rip-twitter/</link><pubDate>Fri, 17 Aug 2012 08:26:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/17/rip-twitter/</guid><description>&lt;p&gt;“&lt;em&gt;I wish to complain about this parrot what I purchased not half an hour ago from this very boutique.&lt;/em&gt;”&lt;/p&gt;
&lt;p&gt;In March, Ryan Sarver, Platform Lead at Twitter speaking with MG Siegler on Techcrunch in &lt;a href="http://techcrunch.com/2011/03/11/twitter-ecosystem-guidelines/"&gt;Twitter Drops The Ecosystem Hammer: Don&amp;rsquo;t Try To Compete With Us On Clients, Focus On Data And Verticals&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;We need to move to a less fragmented world, where every user can experience Twitter in a consistent way.&lt;/p&gt;</description></item><item><title>My Sublime Text 2 Setup</title><link>https://hiltmon.com/blog/2012/08/14/my-sublime-text-2-setup/</link><pubDate>Tue, 14 Aug 2012 12:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/14/my-sublime-text-2-setup/</guid><description>&lt;p&gt;I have been using Sublime Text 2 for a month or so now, and I still do &lt;em&gt;not&lt;/em&gt; love it. Here’s hoping TextMate 2 gets it’s game on. But at least I have it working closer to the way I want it to work and look now. Here are the minor changes I have made to make it work for me and how it compares to TextMate 2 &lt;span class="light"&gt;(Updated: See &lt;a href="https://hiltmon.com/blog/2013/04/15/my-textmate-2-setup/"&gt;My TextMate 2 Setup - The Hiltmon&lt;/a&gt;).&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Choosing Sunglasses</title><link>https://hiltmon.com/blog/2012/08/13/choosing-sunglasses/</link><pubDate>Mon, 13 Aug 2012 15:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/13/choosing-sunglasses/</guid><description>&lt;p&gt;Two weeks ago I went kayaking on Long Island sound, and lost my sunglasses. Once again, my friends, it was time to research the next pair.&lt;/p&gt;
&lt;p&gt;My criteria for sunglasses may differ from yours, they are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Good lenses&lt;/strong&gt;: I program for a living, and need my eyes to remain in top condition for as long as possible. Cheap lenses increase eye strain for me, which is bad for my work and mood. UVA and UVB protection is obviously a must. So is having a light weight. Modern polycarbonate lenses achieve this goal.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Low Glare&lt;/strong&gt;: The greatest damage to my eyes after UV comes from glare, so I need good anti-glare protection while maintaining excellent clarity. For this, an anti-reflective coating and well done polarization really helps.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Good Color&lt;/strong&gt;: My hobby is photography, which means I also want to see a wide and true color range through my sunglass lenses. I seek a lens color that blocks a color gamut range I know about (and choose), and does not block other color gamut ranges. Cheap lenses shift colors which annoys me. Neutral lens colors such as gray or green have been my preferred choice (but I tried brown for the last pair).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Wrap Around&lt;/strong&gt;: Good glasses must not only protect my eyes from frontal light but also side light and reflections. I’m not looking for a full cycling wrap-around set, or side shields, but I do expect my sunglasses to curve around towards my temples to catch stray light.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Comfortable fit&lt;/strong&gt;: I pretty much wear sunglasses whenever I am outside, which means that the fit needs to be exceptional. No side or nose pinching allowed, and the glasses must stay on as I lead my active lifestyle. And perch comfortably on top of my head when indoors.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Scratch and Moisture Resistant&lt;/strong&gt;: I’m also not the most careful person out there, so having a pair of sunglasses that shake off dust, water and scratches is very valuable to me.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Looks Good&lt;/strong&gt;: Honestly, this is probably the most important criteria for most people, but being the geek I am, it’s the last thing I look at. I do, however, have some self-respect, and so this is also a requirement.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Previously, I had always gone towards the Ray Ban classic green lenses, the ones made famous in their &lt;a href="http://www.ray-ban.com/usa/sunglasses?cat=19"&gt;Wayfarer&lt;/a&gt; and &lt;a href="http://www.ray-ban.com/usa/sunglasses?cat=12"&gt;Aviator&lt;/a&gt; ranges. I have always liked the protection and neutrality these lenses provide. In fact, my wife just replaced her sunglasses with modern Wayfarers, and they are most excellent. But they look horrible on me.&lt;/p&gt;</description></item><item><title>App.Net Funded</title><link>https://hiltmon.com/blog/2012/08/13/app-dot-net-funded/</link><pubDate>Mon, 13 Aug 2012 12:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/13/app-dot-net-funded/</guid><description>&lt;p&gt;Today, &lt;a href="https://join.app.net"&gt;App.Net&lt;/a&gt; got funded. Not many of us expected that to happen, but it did, and we’re happy to pay our $50 or $100 to kick it off. Most reports are reporting this service as a paid Twitter clone, and yes, that’s part of it. But the goals are bigger:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;You are not the product&lt;/strong&gt;: The product in Twitter is you, because it’s free. On App.Net, you are paying for the ID and the service and the access. It’s yours. Your ID. Your Data.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Low or no Spam&lt;/strong&gt;: Adding a spam account to Twitter is easy, bots can sign up. If a spammer wants to use App.Net’s platform, they have to pay $50 per account, not a viable business model for them.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;It’s a platform&lt;/strong&gt;: The real plan for App.Net is to provide a real-time platform for inter-process communications across the web, with tweets being the first cab off the rank. Twitter is all about mass and messages, not as a common carrier.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you want to reserve your twitter handle, better back App.Net today before funding closes at &lt;a href="http://join.app.net"&gt;join.app.net&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Textmate 2 is now Open Source</title><link>https://hiltmon.com/blog/2012/08/09/textmate-2-is-now-open-source/</link><pubDate>Thu, 09 Aug 2012 11:07:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/09/textmate-2-is-now-open-source/</guid><description>&lt;p&gt;My favorite programmers editor of all time, TextMate, recently updated to TextMate 2 Alpha. I’ve been using the alpha for a while, still love it, but it&amp;rsquo;s an alpha release and therefore buggy and slow. So I’ve been trying out Sublime Text 2 as a replacement. So far, I switch between TextMate 2 Alpha and Sublime Text 2 daily, only because closing the last tab in TextMate 2 closes the darn project editor and that annoys me.&lt;/p&gt;</description></item><item><title>Expect the Unexpected</title><link>https://hiltmon.com/blog/2012/08/08/expect-the-unexpected/</link><pubDate>Wed, 08 Aug 2012 11:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/08/expect-the-unexpected/</guid><description>&lt;p&gt;There was a panic at one of my client sites today when the reporting software I wrote for them stopped working. Instead of presenting reports as usual, the software threw an unknown error.&lt;/p&gt;
&lt;p&gt;WTF, an unknown error!&lt;/p&gt;
&lt;p&gt;I wrote the darn system, I know all the errors, because I coded all of them!&lt;/p&gt;
&lt;p&gt;A quick glance at the logs indicated that indeed, Passenger was throwing an unknown error when accessing one Rails URL (and all others were working just fine). It’s as if that Rails path just disappeared.&lt;/p&gt;</description></item><item><title>Well Managed Scripts better than Platforms</title><link>https://hiltmon.com/blog/2012/08/07/well-managed-scripts-better-than-platforms/</link><pubDate>Tue, 07 Aug 2012 12:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/07/well-managed-scripts-better-than-platforms/</guid><description>&lt;p&gt;One of the most misunderstood things in computing is the need and power of scripts. Most IT shops seek out platforms, tools and technologies to perform business functions, when a bunch of well architected and documented scripts is all that is really needed.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;script&lt;/strong&gt; /noun/&lt;/p&gt;
&lt;p&gt;An automated series of instructions carried out in a specific order written in an interpreted computer language&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Over the years, I have seen many organizations go out and buy very expensive platforms and hardware, and hire very expensive staff, without even once looking at the alternative, well managed scripts. As a result, they have had to deal with high costs and slow turnaround times when things change (as they inevitably do). In several of these cases, I would have recommended them to get a good scripting programmer, and let that programmer create a series of well managed scripts, leading to cheaper and quicker implementations and more responsiveness to business change.&lt;/p&gt;</description></item><item><title>No competition in Carrier space</title><link>https://hiltmon.com/blog/2012/08/06/no-competition-in-carrier-space/</link><pubDate>Mon, 06 Aug 2012 14:16:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/06/no-competition-in-carrier-space/</guid><description>&lt;p&gt;If you are looking for more proof that there is no real competition in the US mobile carrier space, check out BGR’s &lt;a href="http://www.bgr.com/2012/08/06/iphone-data-caps-upgrade-fees-att-verizon/"&gt;iPhone: Data caps, upgrade fees blamed on iPhone by AT&amp;amp;T, Verizon&lt;/a&gt; by Brad Reed:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;AT&amp;amp;T reported a 45% margin in Q2 2012 and Verizon reported a record-high 49% margin.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Challenge: Name one &lt;em&gt;competitive&lt;/em&gt; industry with such high margins and such terrible service?&lt;/p&gt;</description></item><item><title>Mischief Managed: Update Tools, Learn New</title><link>https://hiltmon.com/blog/2012/08/06/mischief-managed-update-tools/</link><pubDate>Mon, 06 Aug 2012 12:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/06/mischief-managed-update-tools/</guid><description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;Mischief Managed&lt;/strong&gt; is a series of posts on tasks and technologies I use to maintain my computing environment. It’s part of what I do between projects. Try it out.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Most of us do not update our operating systems or toolkits while a project is ongoing. It increases the time to produce the product, adds risk that things will stop working, it’s just not worth doing. But once the project is over, it’s time to update the tools and study new ones.&lt;/p&gt;</description></item><item><title>Mischief Managed: Archiving</title><link>https://hiltmon.com/blog/2012/08/06/mischief-managed-archiving/</link><pubDate>Mon, 06 Aug 2012 12:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/06/mischief-managed-archiving/</guid><description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;Mischief Managed&lt;/strong&gt; is a series of posts on tasks and technologies I use to maintain my computing environment. It’s part of what I do between projects. Try it out.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;When a project or engagement is completed, support is over, and you’re on to the next thing (or taking a break), it’s best to move these files and tasks out of your current folders and into archive folders.&lt;/p&gt;
&lt;p&gt;Here are some of the things I do:&lt;/p&gt;</description></item><item><title>Mischief Managed: Google 2-Factor Authentication</title><link>https://hiltmon.com/blog/2012/08/06/mischief-managed-google-2-factor-authentication/</link><pubDate>Mon, 06 Aug 2012 11:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/06/mischief-managed-google-2-factor-authentication/</guid><description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;Mischief Managed&lt;/strong&gt; is a series of posts on tasks and technologies I use to maintain my computing environment. It’s part of what I do between projects. Try it out.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I’ve been planning on doing this for ages, but no excuses, you should too.&lt;/p&gt;
&lt;p&gt;And then this happened. Last week, Mat Honan got hacked hard (see &lt;a href="http://www.emptyage.com/post/28679875595/yes-i-was-hacked-hard"&gt;Yes, I was hacked. Hard.&lt;/a&gt;). Someone gained access to his Apple ID, reset his other accounts and nuked all his computers. You should read his experience, resecure your accounts and start backing up too. &lt;em&gt;Aside: Ignore the comments, the haters simply embarrass themselves.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Mischief Managed: Clean Inbox</title><link>https://hiltmon.com/blog/2012/08/06/mischief-managed-clean-inbox/</link><pubDate>Mon, 06 Aug 2012 11:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/06/mischief-managed-clean-inbox/</guid><description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;Mischief Managed&lt;/strong&gt; is a series of posts on tasks and technologies I use to maintain my computing environment. It’s part of what I do between projects. Try it out.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;My Inbox has gotten out of control, several thousand emails reside in the combined inbox in Mail.app and I have not filed or archived any for weeks.&lt;/p&gt;
&lt;p&gt;The last time I cleaned it up, it took me hours because I had to drag and drop each email into the right folder, and half the time I had to scroll to find the right folder. There has to be a better way.&lt;/p&gt;</description></item><item><title>New Site Font</title><link>https://hiltmon.com/blog/2012/08/05/new-site-font/</link><pubDate>Sun, 05 Aug 2012 15:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/05/new-site-font/</guid><description>&lt;p&gt;I love &lt;a href="https://github.com/octopress/octopress"&gt;Octopress&lt;/a&gt;, but I have never been happy with the default fonts. The default &lt;a href="http://www.google.com/webfonts/specimen/PT+Sans"&gt;PT Sans&lt;/a&gt; and &lt;a href="http://www.google.com/webfonts/specimen/PT+Serif"&gt;PT Serif&lt;/a&gt; fonts are very, very nice, but not awesome. I did like the X and Y height, the clarity, the ease of reading, but the letterspacing on the serif font was too tight and it started to look jaggy.&lt;/p&gt;
&lt;p&gt;This week, Adobe released &lt;a href="http://blogs.adobe.com/typblography/2012/08/source-sans-pro.html"&gt;Source Sans Pro&lt;/a&gt;, their first free and open font, and I think it&amp;rsquo;s great for a technical blog-style web site. The letterforms are large, well spaced, and just perfect for screen reading, as the font was designed for user interfaces.&lt;/p&gt;</description></item><item><title>Change is Good - New Applications replacing Old Ones</title><link>https://hiltmon.com/blog/2012/08/03/change-is-good-new-applications-replacing-old-ones/</link><pubDate>Fri, 03 Aug 2012 15:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/03/change-is-good-new-applications-replacing-old-ones/</guid><description>&lt;p&gt;There is some amazing independent software out there for the Mac. And I use a lot of it. I realized today, while fixing a problem on my wife&amp;rsquo;s laptop, that I have pretty much replaced many older products with new ones on my computer over the last year or so, yet she still uses all the old stuff.&lt;/p&gt;
&lt;p&gt;Change is good for me. I love using new products that improve my productivity, work better or look better. I love trying new products to see if they can replace the ones I am currently using.&lt;/p&gt;</description></item><item><title>Moom Corners</title><link>https://hiltmon.com/blog/2012/08/03/moom-corners/</link><pubDate>Fri, 03 Aug 2012 13:07:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/03/moom-corners/</guid><description>&lt;p&gt;Another quick trick, this time for &lt;a href="http://manytricks.com/moom/"&gt;Moom&lt;/a&gt;. When doing Ruby on Rails programming, I like my terminal at the bottom-right of the screen, my text editor at the bottom-left, the browser top-right and BBEdit (for taking notes) at the top-left. When blogging, I like the terminal in the same place, but I want Byword at the top-left. I got tired of dragging windows everywhere, so I set up keyboard shortcuts usimg Moom to place windows in the corners.&lt;/p&gt;</description></item><item><title>Setting up BBEdit for Markdown</title><link>https://hiltmon.com/blog/2012/08/03/setting-up-bbedit-for-markdown/</link><pubDate>Fri, 03 Aug 2012 11:50:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/03/setting-up-bbedit-for-markdown/</guid><description>&lt;p&gt;Two advanced settings are needed to make &lt;a href="http://www.barebones.com/products/bbedit/index.html"&gt;BBEdit&lt;/a&gt; treat all &lt;em&gt;new&lt;/em&gt; documents as Markdown format, and to save with the correct file extension. They are:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#fff;-moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-sh" data-lang="sh"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;defaults write com.barebones.bbedit PreferredFilenameExtension_Markdown -string &lt;span style="color:#c41a16"&gt;&amp;#34;markdown&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;defaults write com.barebones.bbedit DefaultLanguageNameForNewDocuments Markdown
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;If you use &lt;a href="http://www.barebones.com/products/TextWrangler/"&gt;TextWrangler&lt;/a&gt;, replace the “bbedit” in the above with “textwrangler”. But I’d recommend purchasing BBEdit instead.&lt;/p&gt;</description></item><item><title>Day One updated to v1.7</title><link>https://hiltmon.com/blog/2012/08/02/day-one-updated-to-v1-dot-7/</link><pubDate>Thu, 02 Aug 2012 15:30:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/02/day-one-updated-to-v1-dot-7/</guid><description>&lt;p&gt;My favorite journaling application &lt;a href="http://dayoneapp.com"&gt;Day One&lt;/a&gt; has been updated for both Mac and iOS. Amongst the best new features are photo’s, location checkins using Foursquare and weather. They have also updated the markdown engine. I use it all day to capture what I do as well as log all my activities (such as creating this post or committing code, see &lt;a href="https://hiltmon.com/blog/2012/01/23/bread-crumbs-in-day-one/"&gt;Bread crumbs in Day One - The Hiltmon&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Since this new version is sandboxed, the command line client has been moved. You now have to download and install it manually from &lt;a href="http://dayoneapp.com/tools/"&gt;here&lt;/a&gt;. After that, all scripts will work just fine again.&lt;/p&gt;</description></item><item><title>My first computer - Sinclair ZX81</title><link>https://hiltmon.com/blog/2012/08/01/my-first-computer-sinclair-zx81/</link><pubDate>Wed, 01 Aug 2012 14:24:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/01/my-first-computer-sinclair-zx81/</guid><description>&lt;p&gt;With the Commodore 64 turning 30 today (See: &lt;a href="http://www.bbc.co.uk/news/technology-19055707"&gt;BBC News - Commodore 64 turns 30: What do today&amp;rsquo;s kids make of it?&lt;/a&gt;), I started thinking about my first computer, the Sinclair ZX81 (see it on &lt;a href="http://en.wikipedia.org/wiki/ZX81"&gt;Wikipedia&lt;/a&gt;), also called the Timex Sinclair 1000 in the USA.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/08/01/my-first-computer-sinclair-zx81/images/sinclair-zx81-tv-tape.png" width="640" height="502"&gt;
&lt;/figure&gt;

&lt;p&gt;&lt;em&gt;Photo of Sinclair ZX81, tv and tape (c) &lt;a href="http://www.flickr.com/people/mikecattell/"&gt;Mike Cattell&lt;/a&gt; on Flickr (because I have none).&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The year would have been 1982, I was an awkward teenager, and this new device changed my world. It had a Zilog Z80 CPU running at 3.25MHz, 1KB RAM, 8KB ROM, was connected to a portable Black and White TV for display and used a battery powered manual cassette tape player for external storage. We got it a year before the Commodore 64 came out in our region.&lt;/p&gt;</description></item><item><title>Lead the Business</title><link>https://hiltmon.com/blog/2012/08/01/hiltmonism-lead-the-business/</link><pubDate>Wed, 01 Aug 2012 13:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/08/01/hiltmonism-lead-the-business/</guid><description>&lt;p&gt;There exists a common situation in business where management wants to take the business in a certain direction, but the technical and operations staff declare that it &lt;em&gt;cannot&lt;/em&gt; be done. They then bring out a litany of reasons which boil down to two: the current systems &lt;em&gt;cannot&lt;/em&gt; do it and current processes &lt;em&gt;cannot&lt;/em&gt; support it. Therefore, management &lt;em&gt;cannot&lt;/em&gt; make the change. And if management &lt;em&gt;cannot&lt;/em&gt; make the changes, may the business &lt;em&gt;cannot&lt;/em&gt; compete, &lt;em&gt;cannot&lt;/em&gt; be successful and &lt;em&gt;cannot&lt;/em&gt; continue.&lt;/p&gt;</description></item><item><title>If the NBC Olympics team did the NFL</title><link>https://hiltmon.com/blog/2012/07/30/if-the-nbc-olympics-team-did-the-nfl/</link><pubDate>Mon, 30 Jul 2012 13:04:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/30/if-the-nbc-olympics-team-did-the-nfl/</guid><description>&lt;p&gt;The current NBC Olympics coverage is the absolute worst thing to ever happen to TV, sports and the Olympics. Talk about &lt;a href="https://twitter.com/#!/search/%23nbcfail"&gt;#NBCFail&lt;/a&gt;, here’s it is in context if the NBC Olympics team were responsible for NFL broadcasts:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You would only see games played by one chosen team&lt;/li&gt;
&lt;li&gt;Only people with cable subscriptions could watch the chosen game of the week&lt;/li&gt;
&lt;li&gt;Only people with cable subscriptions could watch the selected game on the internet&lt;/li&gt;
&lt;li&gt;Only people with cable subscriptions could read about the game in the newspaper&lt;/li&gt;
&lt;li&gt;NBC will ensure other broadcasters do show any clips of any games on their channels or on the internet at any time&lt;/li&gt;
&lt;li&gt;Expats outside the USA will be unable to watch any NFL, ever&lt;/li&gt;
&lt;li&gt;They would only show the plays by this chosen team where they score points, to protect the audience from watching the boring bits of the game (like the actual game itself)&lt;/li&gt;
&lt;li&gt;One exception to the scoring play rule: if another team does something completely stupid or embarrassing, they&amp;rsquo;ll show that too, but only a short clip, and repeat it many times&lt;/li&gt;
&lt;li&gt;The one game shown would be tape delayed until Thursday night to prepare the audience for the upcoming weekend&amp;rsquo;s games (which they cannot watch)&lt;/li&gt;
&lt;li&gt;While the other team has offense, or the chosen team is not scoring, they will show hours of sad, sobby backstories about chosen team&amp;rsquo;s players tough upbringings&lt;/li&gt;
&lt;li&gt;They would never show any injuries to protect the feelings of the audience&lt;/li&gt;
&lt;li&gt;They would never show any umpire decisions to protect the feelings of the audience&lt;/li&gt;
&lt;li&gt;They would never show any cheerleaders to protect the feelings of the audience&lt;/li&gt;
&lt;li&gt;They would never show any team changeovers to protect the feelings of the audience&lt;/li&gt;
&lt;li&gt;When people complain on twitter, they will &amp;ldquo;embrace the feedback&amp;rdquo;, and ignore it (oh wait, this is the third olympics I&amp;rsquo;ve seen and they&amp;rsquo;re still ignoring the complaints)&lt;/li&gt;
&lt;li&gt;They will interrupt the stream of advertising only for a few moments every hour to show the scoring play, backstory or softball interview with an old player from the chosen team&lt;/li&gt;
&lt;li&gt;The commentators will, of course, have never watched an NFL game before, being chosen for the whiteness of their teeth or largeness of their, er, eyes.&lt;/li&gt;
&lt;li&gt;If the chosen team loses, they will, instead, replay an ancient game when the chosen team won&lt;/li&gt;
&lt;li&gt;NBC will claim a ratings win for NFL (because it&amp;rsquo;s the only way to even get a glimpse of a game, and the competition shows low rating reruns at the same time)&lt;/li&gt;
&lt;li&gt;NBC News will, of course, announce all game results on the day of the game, thereby spoiling the actual Thursday night prime time show&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>The value of Apps</title><link>https://hiltmon.com/blog/2012/07/24/the-value-of-apps/</link><pubDate>Tue, 24 Jul 2012 08:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/24/the-value-of-apps/</guid><description>&lt;p&gt;The online conversation on the Sparrow sale continues unabated. But in amongst all the vitriol, I found some amazing articles written long before the sale pretty much predicting how it is now. Here are some great quotes and links.&lt;/p&gt;
&lt;p&gt;Guy English, in &lt;a href="http://kickingbear.com/blog/archives/67"&gt;Software Sea Change&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;An Application represents the developer’s best effort at creating software that applies the capabilities of the device to solving a specific problem. Making people laugh is not a problem an Application can solve; it’s not about the device it’s about the person using it.&lt;/p&gt;</description></item><item><title>Low app prices unsustainable</title><link>https://hiltmon.com/blog/2012/07/23/low-app-prices-unsustainable/</link><pubDate>Mon, 23 Jul 2012 19:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/23/low-app-prices-unsustainable/</guid><description>&lt;p&gt;David Barnard, of AppCubby, writing in &lt;a href="http://appcubby.com/blog/the-sparrow-problem/"&gt;The Sparrow Problem&lt;/a&gt;, where he competently works out that the sales and income numbers for Sparrow were not enough to sustain the team, and therefore the business, concludes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The age of selling software to users at a fixed, one-time price is coming to an end. It’s just not sustainable at the absurdly low prices users have come to expect. Sure, independent developers may scrap it out one app at a time, and some may even do quite well and be the exception to the rule, but I don’t think Sparrow would have sold-out if the team — and their investors — believed they could build a substantially profitable company on their own. The gold rush is well and truly over.&lt;/p&gt;</description></item><item><title>How many 99c apps it takes to afford that guy</title><link>https://hiltmon.com/blog/2012/07/23/how-many-99c-apps-it-takes-to-afford-that-guy/</link><pubDate>Mon, 23 Jul 2012 10:04:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/23/how-many-99c-apps-it-takes-to-afford-that-guy/</guid><description>&lt;p&gt;Drew Crawford, jumping in on the Sparrow story in &lt;a href="http://sealedabstract.com/rants/lets-talk-about-sparrow/"&gt;Let’s talk about Sparrow&lt;/a&gt;, actually covers another area I have been trying to find the words for, why good, experienced software developers, like myself, cost real money:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Let me tell you how it actually is, because I write iOS apps. A fully-dedicated senior iOS developer is way more expensive than you think. I’m not talking about “some guy whose LinkedIn profile says he is a senior iOS developer, let’s send his profile to HR.” I mean, a person who can read your ARM assembler, lecture on the finer points of Core Data, coordinate with graphic designers, draw mockups, tell you what is going to pass Apple review, solve customer problems, be a primary on the sales call with the client, negotiate the cost, write the proposal, know what’s in the HIG, come up with a class diagram that doesn’t suck, give presentations to management, train any developer in your organization, and actually get the coding done. Specifically, a guy who you can lock in a room with a Macbook for three months and he emerges without any oversight or management from anyone, with Sparrow.app. That guy can go from interview to interview and never even hear a starting offer under $125k, or $175k in the valley. Never even hear. That guy has Apple HR calling him saying “we know we can’t poach you, but maybe you can recommend someone?” Apple HR.&lt;/p&gt;</description></item><item><title>Talent Acquisitions and Product Casualties</title><link>https://hiltmon.com/blog/2012/07/22/talent-acquisitions-and-product-casualties/</link><pubDate>Sun, 22 Jul 2012 10:20:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/22/talent-acquisitions-and-product-casualties/</guid><description>&lt;p&gt;This week, Google &lt;a href="http://www.theverge.com/2012/7/20/3172222/google-buys-sparrow-mail"&gt;purchased Sparrow SAS&lt;/a&gt;, the company that made the very popular &lt;a href="http://sprw.me/index.php"&gt;Sparrow&lt;/a&gt; mail application for Mac and iOS. But they did &lt;strong&gt;not&lt;/strong&gt; buy the company for the product, the bought the company for its people - the talent. Sparrow, the product, is done for.&lt;/p&gt;
&lt;p&gt;Facebook also executed a talent acquisition on &lt;a href="http://www.acrylicapps.com"&gt;Acrylic&lt;/a&gt;, makers of Pulp, an RSS reader, and Wallet, a secure store. Both these products are now dead.&lt;/p&gt;
&lt;p&gt;This is not the first or last time this will happen. Larger firms need talent to push their own products, but &lt;em&gt;this talent does &lt;strong&gt;not&lt;/strong&gt; directly apply for jobs with them&lt;/em&gt;. So, they need to buy the indie companies this talent starts up to gain access to these resources.&lt;/p&gt;</description></item><item><title>Joining the SSD Club</title><link>https://hiltmon.com/blog/2012/07/22/joining-the-ssd-club/</link><pubDate>Sun, 22 Jul 2012 09:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/22/joining-the-ssd-club/</guid><description>&lt;p&gt;On Friday, I joined the SSD club. That’s the &lt;strong&gt;S&lt;/strong&gt;olid &lt;strong&gt;S&lt;/strong&gt;tate &lt;strong&gt;D&lt;/strong&gt;rive club, not the &lt;strong&gt;S&lt;/strong&gt;pecial &lt;strong&gt;S&lt;/strong&gt;chool &lt;strong&gt;D&lt;/strong&gt;istrict or the &lt;strong&gt;S&lt;/strong&gt;ocial &lt;strong&gt;S&lt;/strong&gt;ecurity &lt;strong&gt;D&lt;/strong&gt;isability clubs. I installed a &lt;a href="http://eshop.macsales.com/search/Mercury+Electra+3G+240GB"&gt;OWC Mercury Electra 3G 240GB&lt;/a&gt; SSD in my Mid-2009 MacBook Pro to replace my &lt;em&gt;never working&lt;/em&gt; DVD drive.&lt;/p&gt;
&lt;p&gt;I purchased the kit that included the bracket (they call it a data doubler), the tools and the SSD:&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/07/22/joining-the-ssd-club/images/ssd-parts.png" width="640" height="428"&gt;
&lt;/figure&gt;

&lt;p&gt;Installation was easy, I used the video and the manual that came with it.&lt;/p&gt;</description></item><item><title>The 10-year rule</title><link>https://hiltmon.com/blog/2012/07/19/the-10-year-rule/</link><pubDate>Thu, 19 Jul 2012 21:44:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/19/the-10-year-rule/</guid><description>&lt;blockquote&gt;
&lt;p&gt;If you aren’t willing to own a stock for 10 years, don’t even think about owning it for 10 minutes.
Warren Buffett&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I was just messing around in Google Finance today after reading that Microsoft made its first quarterly loss since going public (see &lt;a href="http://www.washingtonpost.com/business/technology/microsoft-reports-first-quarterly-loss-as-public-company-after-write-down-of-ad-business/2012/07/19/gJQAmtbrwW_story.html"&gt;Washington Post&lt;/a&gt;), and decided to take a look at our favorite tech stocks and see how they would have fared under Buffet&amp;rsquo;s 10-year rule.&lt;/p&gt;
&lt;table&gt;
	&lt;thead&gt;
		&lt;tr&gt;
			&lt;th style="min-width:140px;"&gt;&lt;strong&gt;Company&lt;/strong&gt;&lt;/th&gt;
			&lt;th&gt;&lt;strong&gt;10 Year Return&lt;/strong&gt;&lt;/th&gt;
		&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;td&gt;Apple&lt;/td&gt;
			&lt;td&gt;6,893%&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;Google &lt;sup&gt;(1)&lt;/sup&gt;&lt;/td&gt;
			&lt;td&gt;434%&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;IBM&lt;/td&gt;
			&lt;td&gt;168%&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;Yahoo&lt;/td&gt;
			&lt;td&gt;145%&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;Intel&lt;/td&gt;
			&lt;td&gt;41%&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;&lt;em&gt;Dow Jones&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;38%&lt;/em&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;Microsoft &lt;sup&gt;(2)&lt;/sup&gt;&lt;/td&gt;
			&lt;td&gt;14%&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;br/&gt;
&lt;p&gt;Source Data and Graph: &lt;a href="http://www.google.com/finance?chdnp=0&amp;amp;chdd=0&amp;amp;chds=0&amp;amp;chdv=0&amp;amp;chvs=Linear&amp;amp;chdeh=0&amp;amp;chfdeh=0&amp;amp;chdet=1342531800000&amp;amp;chddm=995486&amp;amp;chls=IntervalBasedLine&amp;amp;cmpto=NASDAQ:MSFT;NYSE:IBM;NASDAQ:INTC;NASDAQ:YHOO;NASDAQ:GOOG;INDEXDJX:.DJI&amp;amp;cmptdms=0;0;0;0;0;0&amp;amp;q=NASDAQ:AAPL&amp;amp;&amp;amp;fct=big"&gt;Google Finance&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Two kinds of innovations in tech</title><link>https://hiltmon.com/blog/2012/07/19/two-kinds-of-innovations-in-tech/</link><pubDate>Thu, 19 Jul 2012 19:07:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/19/two-kinds-of-innovations-in-tech/</guid><description>&lt;p&gt;Kevin Kelleher, writing for ReadWriteWeb in &lt;a href="http://www.readwriteweb.com/mobile/2012/07/how-att-verizon-learned-to-stop-worrying-and-love-data-hogs.php"&gt;How AT&amp;amp;T &amp;amp; Verizon Learned to Stop Worrying and Love Data Hogs&lt;/a&gt; about AT&amp;amp;T&amp;rsquo;s new pricing model, nails the conclusion in regards to the carriers in the USA:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There are two kinds of innovations in tech. One that is often celebrated – the creation of great new things people will gladly pay for – and another that few companies will brag about – finding new ways to get people to pay for something they already have. The top two carriers are innovative in the second way.&lt;/p&gt;</description></item><item><title>7 Reasons Why I Can’t Do “Free”</title><link>https://hiltmon.com/blog/2012/07/19/7-reasons-why-i-cant-do-free/</link><pubDate>Thu, 19 Jul 2012 19:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/19/7-reasons-why-i-cant-do-free/</guid><description>&lt;p&gt;Sharon Hayes clearly explains why she does not work for free in &lt;a href="http://www.sharonhayes.com/musings/no-free-lunch/"&gt;7 Reasons Why I Can’t Do “Free”&lt;/a&gt;, check it out.&lt;/p&gt;
&lt;blockquote&gt;
&lt;ol start="3"&gt;
&lt;li&gt;It Zaps My Creative Juice&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Each of us has only so many truly productive hours in a day. In my own case, I can get in about 5 solid productive hours on a typical day. It’s like a bank for me. Each day, I start off with this reserve of 5 hours. As I do work through the day, the reserve gets depleted. But it gets depleted at a faster rate when I have to shift gears more frequently.&lt;/p&gt;</description></item><item><title>Software will always trump Hardware</title><link>https://hiltmon.com/blog/2012/07/19/software-will-always-trump-hardware/</link><pubDate>Thu, 19 Jul 2012 18:59:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/19/software-will-always-trump-hardware/</guid><description>&lt;p&gt;Shawn Blanc reviews the Nexus 7 tablet in &lt;a href="http://shawnblanc.net/2012/07/the-nexus-7/"&gt;Thoughts and Impressions of the Nexus 7&lt;/a&gt;, and concludes with a great point:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;For me, when it comes down to it, software will always trump hardware. When I’m using a device like the Nexus 7 I want to know where the details are. Where is the magic? The fun? The incredible 3rd-party apps? It is because of these elements that the iPad is more than the sum of its parts while its competition continues to remains less than.&lt;/p&gt;</description></item><item><title>International Terpstra Day</title><link>https://hiltmon.com/blog/2012/07/19/international-terpstra-day/</link><pubDate>Thu, 19 Jul 2012 11:06:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/19/international-terpstra-day/</guid><description>&lt;p&gt;One of the nicest things I have ever seen for one of the nicest guys on our corner of the internet. It&amp;rsquo;s &lt;a href="http://brettterpstra.com"&gt;Brett Terpstra&amp;rsquo;s&lt;/a&gt; birthday today and all his friends have taken the time to celebrate him and his works, including:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;David Sparks at MacSparky: &lt;a href="http://www.macsparky.com/blog/2012/7/19/international-terpstra-day.html"&gt;International Terpstra Day&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Gabe at Macdrifter: &lt;a href="http://www.macdrifter.com/2012/07/terpstra-day/"&gt;Terpstra Day&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Frederico Viticci at Macstories: &lt;a href="http://www.macstories.net/links/terpstra-day/"&gt;Terpstra Day&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Dr Drang at LeanCrew: &lt;a href="http://www.leancrew.com/all-this/2012/07/brett-terpstra-day/"&gt;Brett Terpstra day&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Michael Schechter at A Better Mess: &lt;a href="http://bettermess.com/celebrate-terpstra-day/"&gt;Celebrate Terpstra Day&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Eddie Smith at Practically Efficient: &lt;a href="http://www.practicallyefficient.com/2012/07/19/terpstra/"&gt;Terpstra Day&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For the few of you who do not know of him, Brett is the developer of &lt;a href="http://markedapp.com"&gt;Marked.app&lt;/a&gt; that I use every day for preview and export of markdown files, he&amp;rsquo;s the developer of &lt;a href="http://brettterpstra.com/project/nvalt/"&gt;nvAlt&lt;/a&gt; which I recommend for all your notes, he writes as part of &lt;a href="http://readandtrust.com"&gt;Read &amp;amp; Trust&lt;/a&gt;, has a new Podcast called &lt;a href="http://5by5.tv/systematic"&gt;Systematic&lt;/a&gt;, and he gives away huge numbers of &lt;a href="http://brettterpstra.com/code/"&gt;free tools and scripts&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Octopress Post and Publish</title><link>https://hiltmon.com/blog/2012/07/18/octopress-post-and-publish/</link><pubDate>Wed, 18 Jul 2012 18:01:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/18/octopress-post-and-publish/</guid><description>&lt;p&gt;Since this site is getting larger and it&amp;rsquo;s running on &lt;a href="https://github.com/octopress/octopress"&gt;Octopress&lt;/a&gt;, the &lt;code&gt;rake generate&lt;/code&gt; and &lt;code&gt;rake preview&lt;/code&gt; processes are getting slower. Enter &lt;code&gt;rake isolate[&amp;quot;x&amp;quot;]&lt;/code&gt; to isolate the site down to the selected post. But isolating requires me to note the file name down, there is too much to remember and type and I am lazy.&lt;/p&gt;
&lt;p&gt;So have created two macros and a script to speed this process up.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note: You must run these commands in the root of the Octopress folder, else they will not work at all!&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Estimating Software like it is</title><link>https://hiltmon.com/blog/2012/07/18/estimating-software-like-it-is/</link><pubDate>Wed, 18 Jul 2012 13:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/18/estimating-software-like-it-is/</guid><description>&lt;p&gt;Software estimates are hard. Clients expect things to take little time (see &lt;a href="https://hiltmon.com/blog/2012/01/11/it-should-only-take-you-a-few-hours-dot-dot-dot/"&gt;It Should Only Take You a Few Hours&amp;hellip;&lt;/a&gt;) and cost little money. But the reality is that software is hard, there is lots to do, lots of work over and above just programming and it takes a lot more time and money to make good product. Most people underestimate the work to be done, or &lt;em&gt;try to make the estimates look good&lt;/em&gt;, so most projects run over time and over budget because of this.&lt;/p&gt;</description></item><item><title>Kinds of Files in a Project Folder</title><link>https://hiltmon.com/blog/2012/07/16/kinds-of-files-in-a-project-folder/</link><pubDate>Mon, 16 Jul 2012 12:47:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/16/kinds-of-files-in-a-project-folder/</guid><description>&lt;p&gt;In preparation for a client call, I wrote a quick and dirty script to count the kinds of files in a project folder to show them what&amp;rsquo;s involved. I wanted a nice presentation, and the files grouped into categories. I also added parameters to &lt;em&gt;exclude&lt;/em&gt; certain folder patterns from the counter.&lt;/p&gt;
&lt;p&gt;The command is&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#fff;-moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-sh" data-lang="sh"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;$ ~/Scripts/cfile.rb ~/Projects/Kifu/code/kifu log tmp doc versions
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The output is&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;Project File Counter v0.1 ©hiltmon.com 2012 https://hiltmon.com

Project: kifu
-------------------------------------------------------
Text Files:
 Markdown : 1
 Plain Text : 1
-------------------------------------------------------
Code Files:
 CoffeeScript : 7
 CSS : 10
 ERB : 251
 HTML : 3
 JavaScripts : 10
 Ruby : 265
 SCSS : 10
-------------------------------------------------------
Data Files:
 XML : 1
-------------------------------------------------------
Image Files:
 GIF Images : 2
 Icon Images : 1
 PNG Images : 168
-------------------------------------------------------
Configuration Files:
 Configuration : 3
 Rackup : 1
 YML : 4
-------------------------------------------------------
Other Files:
 Unknown Kind : 6
 .eot files : 2
 Locks : 1
 Rake : 8
 .rdb files : 1
 Fonts : 4
-------------------------------------------------------
TOTAL : 760 Files
-------------------------------------------------------
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;It aint pretty, as it was written very quickly. The script in a &lt;a href="https://gist.github.com/hiltmon/3123720"&gt;gist&lt;/a&gt; is:&lt;/p&gt;</description></item><item><title>TextExpander in Terminal</title><link>https://hiltmon.com/blog/2012/07/15/textexpander-in-terminal/</link><pubDate>Sun, 15 Jul 2012 10:21:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/15/textexpander-in-terminal/</guid><description>&lt;p&gt;I spend a lot of time in Terminal.app mostly running Rails or Git commands. I am also lazy, so I like to use short macros instead of typing in the same thing over and over again. I used to use bash aliases or functions, but I mostly use &lt;a href="http://smilesoftware.com/TextExpander/"&gt;TextExpander&lt;/a&gt; snippets now because I like to be sure they don&amp;rsquo;t conflict with internal UNIX commands.&lt;/p&gt;
&lt;p&gt;In this post I will show you&lt;/p&gt;</description></item><item><title>Cheap programmers cost more and ship less</title><link>https://hiltmon.com/blog/2012/07/14/cheap-programmers-cost-more-and-ship-less/</link><pubDate>Sat, 14 Jul 2012 16:34:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/14/cheap-programmers-cost-more-and-ship-less/</guid><description>&lt;p&gt;I&amp;rsquo;ve been programming for 22 years. When I started Noverse two years ago as a professional software design and development company, I knew I would be competing against younger, cheaper programmers and masses of very cheap outsourced programmers.&lt;/p&gt;
&lt;p&gt;A lot has happened over the past two years, and this article is about my own observations regarding the nature of this competition and how things have worked out for a lot of people &lt;em&gt;I have spoken with&lt;/em&gt; who have chosen cheap.&lt;/p&gt;</description></item><item><title>Kifu v1.0 Released</title><link>https://hiltmon.com/blog/2012/07/12/kifu-v1-dot-0-released/</link><pubDate>Thu, 12 Jul 2012 15:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/12/kifu-v1-dot-0-released/</guid><description>&lt;p&gt;Note: The Kifu website (kifuapp.com) is no longer active. This post is preserved for historical reference.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://noverse.com"&gt;Noverse LLC&lt;/a&gt; (my company) and the Shukai Company LLC, is very pleased to announce that Kifu v1.0.0 has shipped. And our first customers are already happily using Kifu in production. We want to thank all our beta testers and beta clients for testing Kifu and helping us make such a great product.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Kifu is an intuitive, easy-to-use software product for small non-profits and community organizations to easily manage their community and its events. Kifu has a comprehensive people database and implements membership, communications, billing, statements, payments, and donations, all in a single integrated environment available on the web. For more see the Kifu web site and play with the demo.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Building and dismantling the Windows advantage</title><link>https://hiltmon.com/blog/2012/07/11/building-and-dismantling-the-windows-advantage/</link><pubDate>Wed, 11 Jul 2012 23:16:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/11/building-and-dismantling-the-windows-advantage/</guid><description>&lt;p&gt;Horace Dediu, of the excellent Asymco blog, presents some interesting Mac vs PC stats in &lt;a href="http://www.asymco.com/2012/07/04/the-building-and-dismantling-of-the-windows-advantage/"&gt;Building and dismantling the Windows advantage&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Take a look, then come back, I&amp;rsquo;ll wait.&lt;/p&gt;
&lt;p&gt;In 1984, Windows was outselling Mac at 6 to 1. In 2004, it was an incredible 56 to 1. Microsoft was killing it. Microsoft had won.&lt;/p&gt;
&lt;p&gt;But then Apple turned around. By 2010, the number had dropped to 20 to 1, still strongly in Microsoft&amp;rsquo;s favor, unless you add iPhone and iPad into the mix. Then, it drops to below 2 to 1.&lt;/p&gt;</description></item><item><title>Great since day one</title><link>https://hiltmon.com/blog/2012/07/11/great-since-day-one/</link><pubDate>Wed, 11 Jul 2012 23:01:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/11/great-since-day-one/</guid><description>&lt;p&gt;Marco Arment nails it in &lt;a href="http://www.marco.org/2010/07/04/great-since-day-one"&gt;Great since day one&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I never make technology-buying decisions based on future promises, rumors, or potential.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;and&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I buy things that are great today. They’re usually things that have been great since day one. And, more often than not, they’re Apple products.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I agree with Marco, I buy what I need &lt;em&gt;now&lt;/em&gt;, so I can be productive &lt;em&gt;now&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I do not understand how folks can put up with the frustration with what they have, the inability to get things done or the doing without by waiting for something that may never happen. In my case, not waiting led to:&lt;/p&gt;</description></item><item><title>The unreasonable man</title><link>https://hiltmon.com/blog/2012/07/11/the-unreasonable-man/</link><pubDate>Wed, 11 Jul 2012 22:58:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/11/the-unreasonable-man/</guid><description>&lt;blockquote&gt;
&lt;p&gt;The reasonable man adapts himself to the world: the unreasonable one persists in trying to adapt the world to himself. Therefore all progress depends on the unreasonable man.
George Bernard Shaw, Maxims for Revolutionists&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Stay hungry, stay unreasonable.&lt;/p&gt;</description></item><item><title>Slicy Photoshop Artwork</title><link>https://hiltmon.com/blog/2012/07/11/slicy-photoshop-artwork/</link><pubDate>Wed, 11 Jul 2012 21:50:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/11/slicy-photoshop-artwork/</guid><description>&lt;p&gt;I have been using the same process to export application artwork using &lt;a href="http://www.adobe.com/products/photoshop.html"&gt;Adobe Photoshop&lt;/a&gt; &lt;em&gt;forever&lt;/em&gt;. Most Mac, iOS and Web applications have large numbers of small image files that are used everywhere. They need to be sliced up, scaled and exported into the files and formats needed by the application. Exporting multiple art items in multiple resolutions has been a tedious and time consuming task, a task that had to be repeated manually every time the artwork changed. Until now.&lt;/p&gt;</description></item><item><title>Target the Forward Fringe</title><link>https://hiltmon.com/blog/2012/07/06/target-the-forward-fringe/</link><pubDate>Fri, 06 Jul 2012 11:51:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/06/target-the-forward-fringe/</guid><description>&lt;p&gt;Daniel Jalkut, writing on his Red-Sweater blog in &lt;a href="http://www.red-sweater.com/blog/2568/target-the-forward-fringe"&gt;Target The Forward Fringe&lt;/a&gt; nails who our target market truly is, in discussing whether to retina-ize (HiDPI) our websites and applications.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Because HiDPI customers may be a fringe group, but they are a forward-facing fringe. They represent the users of the future, and the more we cater to them now, the more deeply embedded our products and designs will be in their culture. The future culture.&lt;/p&gt;</description></item><item><title>Carriers are the biggest threat to innovation</title><link>https://hiltmon.com/blog/2012/07/05/carriers-are-the-biggest-threat-to-innovation/</link><pubDate>Thu, 05 Jul 2012 11:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/07/05/carriers-are-the-biggest-threat-to-innovation/</guid><description>&lt;p&gt;Nilay Patel, writing for The Verge gets it in &lt;a href="http://www.theverge.com/2012/7/5/3138711/five-years-after-the-iphone-carriers-are-the-biggest-threat-to-innovation-editorial"&gt;Five years after the iPhone, carriers are the biggest threat to innovation&lt;/a&gt;. Extremely clear and well written, too many awesome quotes.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Getting a device on a major carrier can take up to 15 months and cost millions of dollars; carriers are notorious for demanding custom devices in order to create customer lock-in. &amp;ldquo;Exclusivity is the bane of my existence,&amp;rdquo; says one source at a major phone manufacturer. &amp;ldquo;But it&amp;rsquo;s the only way business gets done.&amp;rdquo;&lt;/p&gt;</description></item><item><title>Project Folder Layout</title><link>https://hiltmon.com/blog/2012/06/30/project-folder-layout/</link><pubDate>Sat, 30 Jun 2012 12:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/30/project-folder-layout/</guid><description>&lt;p&gt;We all work on multiple projects. And we&amp;rsquo;re creating new ones all the time, whether for new engagements, new personal projects or spikes. I personally like to have all my project files properly organized, every component of the project has its place, so I have been using my own standard project folder layout for years.&lt;/p&gt;
&lt;p&gt;Until now. The old one was no longer working.&lt;/p&gt;
&lt;p&gt;So I rearranged my standard project folder layout. &lt;em&gt;This time&lt;/em&gt; I automated the creation of these folders. &lt;em&gt;This time&lt;/em&gt; I made a single tree. &lt;em&gt;This time&lt;/em&gt; I think I got it right.&lt;/p&gt;</description></item><item><title>iPhone is 5 today</title><link>https://hiltmon.com/blog/2012/06/29/iphone-is-5-today/</link><pubDate>Fri, 29 Jun 2012 19:18:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/29/iphone-is-5-today/</guid><description>&lt;p&gt;Five years ago, the first iPhone went on sale. My, have mobile phones changed since then.&lt;/p&gt;
&lt;h2 id="my-mobiles-before-the-iphone-launch"&gt;My Mobiles before the iPhone launch&lt;/h2&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/06/29/iphone-is-5-today/images/pre-iphone-phones.png" width="640" height="480"&gt;
&lt;/figure&gt;

&lt;p&gt;When I first came to the USA, the only phones I could get were pay-as-you-go bricks. After some time, I finally became eligible for a contract phone.&lt;/p&gt;
&lt;p&gt;My first was the Verizon V710 flip phone (first left). It was sold as the first phone to allow bluetooth sync between the phone and your computer, so I got that one. Then Verizon disabled the bluetooth, lost a class action lawsuit, settled and never fixed it.&lt;/p&gt;</description></item><item><title>Syncing the Desktop and the Laptop</title><link>https://hiltmon.com/blog/2012/06/29/syncing-the-desktop-and-the-laptop/</link><pubDate>Fri, 29 Jun 2012 16:05:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/29/syncing-the-desktop-and-the-laptop/</guid><description>&lt;p&gt;For the past few years, I have been working about 5½ days a week on the desktop and 1½ days a week on the laptop. The desktop is a monster 8-core Mac Pro with loads of RAM and my good old &lt;a href="https://hiltmon.com/blog/2012/05/16/apple-cinema-hd-display-circa-2003/"&gt;23&amp;quot; Cinema HD Display&lt;/a&gt;, which makes it perfect for compiling, graphics work and the usual day-to-day work stuff. The laptop is a mid-2009 MacBook Pro 15&amp;quot;, perfect for on-site work and demos.&lt;/p&gt;</description></item><item><title>Data presentation at its best</title><link>https://hiltmon.com/blog/2012/06/28/data-presentation-at-its-best/</link><pubDate>Thu, 28 Jun 2012 09:47:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/28/data-presentation-at-its-best/</guid><description>&lt;p&gt;One thing we all try to do is to simplify the presentation of data and tell a story. That&amp;rsquo;s why charts, graphs, infographics and dashboards are so popular these days.&lt;/p&gt;
&lt;p&gt;At the UEFA site, they created a brilliant way to present the story of the tournament. Instead of the usual brackets with the final in the middle and the upper and lower quadrants blank wasted space, they created a railway network, wherein you can follow the story of each team as the tournament progressed (the lines highlight as you hover over them). See it live &lt;a href="http://www.uefa.com/uefaeuro/season=2012/matches/index.html"&gt;here&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>On the Nexus 7</title><link>https://hiltmon.com/blog/2012/06/28/on-the-nexus-7/</link><pubDate>Thu, 28 Jun 2012 09:07:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/28/on-the-nexus-7/</guid><description>&lt;p&gt;Yesterday, Google announced the &lt;a href="http://www.google.com/nexus/#/7"&gt;Nexus 7&lt;/a&gt;, their first hardware and software combination tablet.&lt;/p&gt;
&lt;p&gt;In short, and in my opinion, they have created the reference platform for Android tablet &lt;em&gt;development&lt;/em&gt;. Pair that with the Galaxy Nexus phone and you have the best Android pair since the iPhone/iPad duo, for development.&lt;/p&gt;
&lt;p&gt;But until I need to &lt;em&gt;develop&lt;/em&gt; for Android, I&amp;rsquo;m &lt;strong&gt;not&lt;/strong&gt; going to buy one. I already have an iPad and an iPhone.&lt;/p&gt;</description></item><item><title>Someone is coming to eat you</title><link>https://hiltmon.com/blog/2012/06/28/someone-is-coming-to-eat-you/</link><pubDate>Thu, 28 Jun 2012 08:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/28/someone-is-coming-to-eat-you/</guid><description>&lt;p&gt;Michael Lopp, for Rands in Repose, wrote &lt;a href="http://www.randsinrepose.com/archives/2012/06/28/someone_is_coming_to_eat_you.html"&gt;Someone is Coming to Eat You&lt;/a&gt;, a brilliant article on success and competition, well worth reading.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Apple’s current biggest competitor is itself, and I think Steve Jobs learned this the hard way - from the sidelines. When he returned, one of his first hires was a gentlemen named Tim Cook, and while Tim Cook holds a degree in industrial engineering, he is not an engineer, a designer, or a poet. Tim Cook is an execution machine and he exists at Apple to enable them to pull off one thing - the iPod Mini moment.&lt;/p&gt;</description></item><item><title>Compete to maintain, Disrupt to succeed</title><link>https://hiltmon.com/blog/2012/06/22/compete-to-maintain/</link><pubDate>Fri, 22 Jun 2012 12:13:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/22/compete-to-maintain/</guid><description>&lt;p&gt;There is a huge difference between &lt;em&gt;competing&lt;/em&gt; in a market and &lt;em&gt;disrupting&lt;/em&gt; a market. When &lt;em&gt;competing&lt;/em&gt;, a company tries to make a similar product in a given market segment, then competes against incumbent products on price or features to gain share and hopefully profits. When &lt;em&gt;disrupting&lt;/em&gt;, a company produces a whole new product (or a viable derivative) that creates or changes a market, then dominates share and profits in that segment.&lt;/p&gt;</description></item><item><title>Non-upgradable Smartphones</title><link>https://hiltmon.com/blog/2012/06/20/non-upgradable-smartphones/</link><pubDate>Wed, 20 Jun 2012 19:07:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/20/non-upgradable-smartphones/</guid><description>&lt;p&gt;Today, Microsoft announced it&amp;rsquo;s new Windows 8 smartphone platform, and it looks quite good. But they also announced that their recently released Windows 7.x phones cannot be upgraded to Windows 8. Which means all those early Metro interface adopters who purchased the brilliant Nokia Lumia smartphones are screwed until their lock-ins expire in two years time.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s the same in the Android space, whether caused by manufacturers or carriers, they both seem to spend too much time blaming each other so in my book, they&amp;rsquo;re both responsible. If you buy a brand new Android phone from Samsung or HTC or Motorola today, chances are it&amp;rsquo;s still running Android 2.1 and will never be upgraded to the latest version 4. Oh, promises have been made, none kept.&lt;/p&gt;</description></item><item><title>Single-pay, Ad-pay or Both-pay?</title><link>https://hiltmon.com/blog/2012/06/20/single-pay/</link><pubDate>Wed, 20 Jun 2012 10:10:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/20/single-pay/</guid><description>&lt;p&gt;&lt;em&gt;Author&amp;rsquo;s note: This article makes no point, takes no stand and argues no single position. I wrote it to see if I could come to come conclusion on which of &amp;lsquo;user-pay&amp;rsquo; vs &amp;lsquo;ad-pay&amp;rsquo; vs &amp;lsquo;both-pay&amp;rsquo; makes sense, and failed. But published it anyway to see if it spurs others smarter than me to explain and solve this conundrum.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;It used to be in the old days when news was delivered to your home in paper form that the only way to get coupons or know about a sale at Macy&amp;rsquo;s was from the advertising in this newspaper. If you wanted to save money, or learn the price of products or see what&amp;rsquo;s new in fashion, you bought the paper. The value proposition was that the only way to access this information was to pay, and the information itself had value. Both the ads and the news had value, so we happily paid, knowing that the advertisers paid too.&lt;/p&gt;</description></item><item><title>Learn to Automate</title><link>https://hiltmon.com/blog/2012/06/20/learn-to-automate/</link><pubDate>Wed, 20 Jun 2012 08:57:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/20/learn-to-automate/</guid><description>&lt;p&gt;It&amp;rsquo;s been almost six months since the &lt;a href="http://www.codecademy.com"&gt;Codecademy&lt;/a&gt; launched &lt;a href="http://codeyear.com"&gt;learn to code in 2012&lt;/a&gt;, headlined by &lt;a href="https://twitter.com/mikebloomberg/status/154999795159805952"&gt;Mayor Bloomberg&lt;/a&gt;. Lots of people pledged, lots signed up.&lt;/p&gt;
&lt;p&gt;And I&amp;rsquo;ll be flabbergasted if any of them are still doing it.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m not going to go into why having everybody learn to code is a bad thing in detail, Jeff Attwood nails that in &lt;a href="http://www.codinghorror.com/blog/2012/05/please-dont-learn-to-code.html"&gt;Please Don&amp;rsquo;t Learn to Code&lt;/a&gt;. Short version, it puts the method before the problem, programmers like to solve problems and create solutions, and the tool they mostly use is code. We need problems solved and solutions, not more code.&lt;/p&gt;</description></item><item><title>Markdown Metadata</title><link>https://hiltmon.com/blog/2012/06/18/markdown-metadata/</link><pubDate>Mon, 18 Jun 2012 13:31:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/18/markdown-metadata/</guid><description>&lt;p&gt;As you all know, I write everything in &lt;a href="http://daringfireball.net/projects/markdown/"&gt;Markdown&lt;/a&gt;, see my &lt;a href="https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/"&gt;The Markdown Mindset&lt;/a&gt;. It would be nice, though, to also save metadata - information &lt;em&gt;about&lt;/em&gt; the document - in the document, to make it searchable, but not to have it appear in the final output.&lt;/p&gt;
&lt;p&gt;Turns out, &lt;a href="https://github.com/fletcher/MultiMarkdown"&gt;MultiMarkdown&lt;/a&gt; (and other new Markdown processors) do support this. It&amp;rsquo;s easy.&lt;/p&gt;
&lt;p&gt;Simply add the metadata to the top of a markdown file as follows:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;Title: |
Subtitle: |
Project: |
Author: Hilton Lipschitz
Affiliation: Noverse LLC
Web: https://noverse.com
Date: June 18, 2012

Your first paragraph starts here
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The metadata is just a set of key-value pairs, where the key is before the &lt;code&gt;:&lt;/code&gt; and the value after. The keys can be anything you want them to be, although Fletcher Penney, creator of MultiMarkdown, has recommended some standard ones &lt;a href="https://github.com/fletcher/MultiMarkdown/wiki/MultiMarkdown-Syntax-Guide"&gt;here&lt;/a&gt;. From what I can tell, adding your own makes no difference. So I do.&lt;/p&gt;</description></item><item><title>Unrepairable</title><link>https://hiltmon.com/blog/2012/06/17/unrepairable/</link><pubDate>Sun, 17 Jun 2012 14:27:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/17/unrepairable/</guid><description>&lt;p&gt;Last week, Apple launched the new retina Macbook Pro. Which, of course, was immediately followed by a brouhaha (&lt;em&gt;Definition: A noisy and overexcited critical response, display of interest, or trail of publicity.&lt;/em&gt;)&lt;/p&gt;
&lt;p&gt;Kyle Wiens, who runs a web site called &lt;a href="http://www.ifixit.com"&gt;iFixit&lt;/a&gt; which creates videos for people who want to fix things, posted an article in Wired entitled &lt;a href="http://www.wired.com/gadgetlab/2012/06/opinion-apple-retina-displa/"&gt;The New MacBook Pro: Unfixable, Unhackable, Untenable&lt;/a&gt; claiming that the new laptop is unfixable by the general public, and that this is, of course, obviously &amp;ldquo;a very bad thing&amp;rdquo; and part of a trend that will destroy the tech industry as we know it.&lt;/p&gt;</description></item><item><title>The care and feeding of software engineers</title><link>https://hiltmon.com/blog/2012/06/17/the-care-and-feeding-of-software-engineers/</link><pubDate>Sun, 17 Jun 2012 13:21:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/17/the-care-and-feeding-of-software-engineers/</guid><description>&lt;p&gt;Nicholas C. Zakas (&lt;a href="https://twitter.com/#!/slicknet"&gt;@slicknet&lt;/a&gt;), writing in NCZOnline in &lt;a href="http://www.nczonline.net/blog/2012/06/12/the-care-and-feeding-of-software-engineers-or-why-engineers-are-grumpy/"&gt;The care and feeding of software engineers (or, why engineers are grumpy)&lt;/a&gt;, writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;And here’s the real crux of the problem: software engineers aren’t builders. Software engineers are creators. Building is what you do when you buy a piece of furniture from Ikea and get it home. The instructions are laid out and if you go step by step, you’ll get that comically small table you wanted. Creating is a different process, it’s birthing something without direction or instruction. It’s starting with a blank canvas and painting a masterpiece. Software engineers don’t get into coding because they want someone to tell them what to do, they get into it because they discovered they could create something useful. Every single software engineer fell in love with coding because she made a small, useful program early on and was hooked.&lt;/p&gt;</description></item><item><title>I love my lawyers</title><link>https://hiltmon.com/blog/2012/06/15/i-love-my-lawyers/</link><pubDate>Fri, 15 Jun 2012 11:17:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/15/i-love-my-lawyers/</guid><description>&lt;p&gt;As an experienced indie running my own business, there are things I know I am good at, things I know I am passable at and things that I simply cannot do. And one thing I will &lt;em&gt;not&lt;/em&gt; do is enter into an engagement without a good contract. And I cannot do contracts. So one of the first things I did when I set up &lt;a href="https://noverse.com"&gt;Noverse&lt;/a&gt; was to find and engage the best lawyers I could find to take care of this for me.&lt;/p&gt;</description></item><item><title>My WWDC 2012 Scorecard</title><link>https://hiltmon.com/blog/2012/06/11/my-wwdc-2012-scorecard/</link><pubDate>Mon, 11 Jun 2012 17:51:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/11/my-wwdc-2012-scorecard/</guid><description>&lt;p&gt;I published my &lt;a href="https://hiltmon.com/blog/2012/06/09/my-wwdc-2012-predictions/"&gt;WWDC 2012 Keynote Predictions&lt;/a&gt; a few days ago, lets see how well I did:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Sales&lt;/strong&gt;: [0/1] Instead of the boring &amp;ldquo;we sold a lot&amp;rdquo;, they went emotional, &amp;ldquo;we helped a lot&amp;rdquo;. Nice, but not worth the 10 minutes as it made them hurry the laptop announcements.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hardware updates&lt;/strong&gt; [2/4]
&lt;ul&gt;
&lt;li&gt;No Mac Pro updates (&lt;em&gt;Correction, they did bump the Mac Pro, just silently, but not to the new E5 CPU&amp;rsquo;s&lt;/em&gt;)&lt;/li&gt;
&lt;li&gt;Lovely Macbook Pro updates&lt;/li&gt;
&lt;li&gt;Lovely Air updates&lt;/li&gt;
&lt;li&gt;And the new Retina Macbook Pro (I was so wrong there)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;OS X 10.8 Mountain Lion&lt;/strong&gt;: [3/3] As expected, we got a release date, no radical new features (except dictation and power nap), and we did get Facebook.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;iOS 6&lt;/strong&gt;: [3/4] Beta, check, new maps, check, updated Siri, check. Did not expect the nice updates to the phone app and the new passbook app, but these do seem incremental.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;iCloud&lt;/strong&gt;: [1/2] Expected more features and got them, shared photostream and cloud tabs stand out. But not all of MobileMe has been replaced.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Apple TV&lt;/strong&gt;: [1/1] No mention, as expected&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Apple applications&lt;/strong&gt;: [2/3] Expected iCloud updates for iLife and iWork (actually was expecting new versions, but the updates are OK). Did not expect any Pro updates like Aperture.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Steve Jobs&lt;/strong&gt;: [0/1] No mention&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;No &amp;ldquo;one more thing&amp;rdquo;&lt;/strong&gt;: [1/1] Check&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And on the meta:&lt;/p&gt;</description></item><item><title>Sandboxing and Productivity Utilities</title><link>https://hiltmon.com/blog/2012/06/11/sandboxing-and-productivity-utilities/</link><pubDate>Mon, 11 Jun 2012 09:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/11/sandboxing-and-productivity-utilities/</guid><description>&lt;p&gt;Apple&amp;rsquo;s recent requirement for all App Store applications to be sandboxed has led to a problem for us pro users, many of our magical productivity utilities will no longer work. And if you think that&amp;rsquo;s a problem for us, imagine how the developers feel.&lt;/p&gt;
&lt;h2 id="er-sandboxing"&gt;Er, Sandboxing?&lt;/h2&gt;
&lt;p&gt;Sandboxing is a computer security term for separating running programs so that they can only access a limited set of files and resources on your computer and not interfere with other programs and files. The idea is that each program requests access to only those things it needs to do, and the operating system ensures that the program cannot access anything else. So a sandboxed application may not have access to the network, or it can only access it&amp;rsquo;s own files.&lt;/p&gt;</description></item><item><title>My WWDC 2012 Predictions</title><link>https://hiltmon.com/blog/2012/06/09/my-wwdc-2012-predictions/</link><pubDate>Sat, 09 Jun 2012 14:36:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/09/my-wwdc-2012-predictions/</guid><description>&lt;p&gt;After writing &lt;a href="https://hiltmon.com/blog/2012/06/05/annual-apple-wwdc-disappointment/"&gt;Annual Apple WWDC Disappointment&lt;/a&gt;, several people have asked me what I do expect at the WWDC 2012 keynote, ignoring the rumors. So here it is, my WWDC 2012 keynote predictions, what I think in my opinion, without rumor or factual basis, will be covered at the WWDC 2012 keynote on Monday:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Sales&lt;/strong&gt;: Apple has had its best year ever, and Tim Cook will enjoy sharing the numbers. And he should!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;OS X 10.8 Mountain Lion&lt;/strong&gt;: We&amp;rsquo;ll get a clearer release date and a top 10 new feature demo. At least 8 will be features we already know, and one will be a lot more on the Messages app. Maybe a new developer beta, but it&amp;rsquo;s not ready yet.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;iOS 6&lt;/strong&gt;: The next iOS will be announced, without a release date (so that they can do it with the next iPhone), but us developers can get started developing for it. I do expect new maps, new background process options, and a new version of Siri. But after the US 4G marketing bungle, I expect the next iOS and iPhone to be a more world phone than a US one and so the next iOS update will be incremental software, not radically new.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;iCloud&lt;/strong&gt;: It was announced last year, it will get more features this year. Now that MobileMe is gone, I expect iCloud to take on some of its features, such as photo galleries and maybe personal web hosting. But more, I expect that iCloud synching will just work better.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Apple TV&lt;/strong&gt;: Nothing new here, it was updated recently.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Apple applications&lt;/strong&gt;: I expect new versions of the iLife and iWork suites. Neither has been updated in ages (iWork was in January &amp;lsquo;09), and all would work better with iCloud (Their iOS versions already do). I do not expect any of the Pro applications to be updated, they&amp;rsquo;ll save that for another event.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hardware updates&lt;/strong&gt;: I expect Mac Pro updates as we developers love our Mac Pro&amp;rsquo;s (see my &lt;a href="https://hiltmon.com/blog/2012/06/03/the-last-of-the-workstations/"&gt;The Last of the Workstations&lt;/a&gt;). And probably a 15&amp;quot; MacBook Pro update. But no laptop retina displays (or it&amp;rsquo;s going to cost me!).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Steve Jobs&lt;/strong&gt;: It&amp;rsquo;s been 9 months, and I think Apple will spend a small amount of WWDC keynote time just remembering him. And this will be the last time they bring Steve Jobs up in public.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;No &amp;ldquo;one more thing&amp;rdquo;&lt;/strong&gt;: That&amp;rsquo;s it, no new product lines, no TV, just good old operating system and developer updates.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I also predict:&lt;/p&gt;</description></item><item><title>No more than Five</title><link>https://hiltmon.com/blog/2012/06/09/hiltmonism-no-more-than-five/</link><pubDate>Sat, 09 Jun 2012 13:35:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/09/hiltmonism-no-more-than-five/</guid><description>&lt;p&gt;We&amp;rsquo;ve all seen those interfaces: &lt;a href="http://windows.microsoft.com/en-us/internet-explorer/products/ie/home"&gt;Internet Explorer&lt;/a&gt; windows with racks upon racks of toolbars, forms with hundreds of fields to fill in or applications with menus that run off the bottom of the screen, or worse, have unending levels of sub-menus. They are confusing, messy, hard to use and even harder to navigate.&lt;/p&gt;
&lt;p&gt;This &lt;a href="https://hiltmon.com/blog/categories/hiltmonism/"&gt;Hiltmonism&lt;/a&gt; is simple. One, &lt;em&gt;there shall be no more than five&lt;/em&gt; things on an interface element. Ever! No more than five fields in a form section, no more than 5 menu items in a menu section, no more than five things in a toolbar segment, no more than 5 tabs on screen.&lt;/p&gt;</description></item><item><title>Shuttle on the Hudson</title><link>https://hiltmon.com/blog/2012/06/06/shuttle-on-the-hudson/</link><pubDate>Wed, 06 Jun 2012 20:04:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/06/shuttle-on-the-hudson/</guid><description>&lt;p&gt;So this happened when I looked out the window today.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/06/06/shuttle-on-the-hudson/images/shuttle-on-barge.png" width="640" height="428"&gt;
&lt;/figure&gt;</description></item><item><title>How support via Twitter works</title><link>https://hiltmon.com/blog/2012/06/06/how-support-via-twitter-works/</link><pubDate>Wed, 06 Jun 2012 16:21:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/06/how-support-via-twitter-works/</guid><description>&lt;p&gt;Daniel Jalkut asked a question on Twitter&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There are over 2000 items in my Keychain. So if I want to dump/migrate to e.g. @1Password, do I really have to approve every single access?
&lt;a href="https://twitter.com/danielpunkass/status/210380715962019840"&gt;@danielpunkass&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The gang at &lt;a href="https://agilebits.com/"&gt;agilebits&lt;/a&gt; (makers of 1Password) respond with a set of scripts to completely solve his issue, no questions asked:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;@danielpunkass &lt;a href="https://gist.github.com/1583781"&gt;&lt;a href="https://gist.github.com/1583781"&gt;https://gist.github.com/1583781&lt;/a&gt;&lt;/a&gt;
&lt;a href="https://twitter.com/1Password/status/210450781026009088"&gt;@1Password&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;That, friends, is how Twitter support should and does work.&lt;/p&gt;</description></item><item><title>The Demo Bag</title><link>https://hiltmon.com/blog/2012/06/05/the-demo-bag/</link><pubDate>Tue, 05 Jun 2012 12:31:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/05/the-demo-bag/</guid><description>&lt;p&gt;I&amp;rsquo;m demonstrating software this afternoon, so out comes the demo bag. It&amp;rsquo;s a &lt;a href="http://www.cocooninnovations.com/product_info.php?cat_id=50&amp;amp;product_id=225"&gt;Cocoon 15&amp;quot; GRID-IT™ Case&lt;/a&gt; (not an affiliate link) that I picked up at the local Apple store.&lt;/p&gt;
&lt;p&gt;The things that sold it to me are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It&amp;rsquo;s black and conservative looking so no-one knows how cool it is&lt;/li&gt;
&lt;li&gt;It&amp;rsquo;s a hard-ish case, so my goods are protected&lt;/li&gt;
&lt;li&gt;It&amp;rsquo;s the right size for a 15&amp;quot; Macbook Pro, an iPad and related cables, and no bulkier&lt;/li&gt;
&lt;li&gt;But the biggest selling point of all, it has the GRID-IT™ system, no more digging around a bag to find the cables and accessories needed in a demo. Just look at it:&lt;/li&gt;
&lt;/ul&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/06/05/the-demo-bag/images/demo-bag.png" width="640" height="853"&gt;
&lt;/figure&gt;

&lt;p&gt;The only negative is that the shoulder strap squeaks in the shoulder pad when I walk. But I can live with that.&lt;/p&gt;</description></item><item><title>Annual Apple WWDC Disappointment</title><link>https://hiltmon.com/blog/2012/06/05/annual-apple-wwdc-disappointment/</link><pubDate>Tue, 05 Jun 2012 08:30:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/05/annual-apple-wwdc-disappointment/</guid><description>&lt;p&gt;It&amp;rsquo;s the annual &amp;ldquo;week before WWDC&amp;rdquo; and the rumor mill is going wild. Newspapers and blogs publish wild rumors, people read them as real insider knowledge predictions, and this sets high expectations. Then WWDC happens, Apple releases some amazing products, and these same people are disappointed because the releases don&amp;rsquo;t match their wild expectations. Apple shares fall. Lamentations are written.&lt;/p&gt;
&lt;p&gt;Happens every year.&lt;/p&gt;
&lt;p&gt;History repeats itself.&lt;/p&gt;
&lt;p&gt;You&amp;rsquo;d think we&amp;rsquo;d learn.&lt;/p&gt;</description></item><item><title>Notice of Revocation of Independence</title><link>https://hiltmon.com/blog/2012/06/03/notice-of-revocation-of-independence/</link><pubDate>Sun, 03 Jun 2012 17:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/03/notice-of-revocation-of-independence/</guid><description>&lt;p&gt;Since it&amp;rsquo;s Jubilee day in the UK, I&amp;rsquo;m taking this opportunity to reprint a fake &amp;ldquo;John Cleese Letter to America&amp;rdquo; from 2005, otherwise known as the &amp;ldquo;Notice of Revocation of Independence&amp;rdquo;. Note that John Cleese do not, in fact, write this. It&amp;rsquo;s just a really great internet joke, and appropriate for jubilee day.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Dear Citizens of America,&lt;/p&gt;
&lt;p&gt;In view of your failure to elect a competent President and thus to govern yourselves, we hereby give notice of the revocation of your independence, effective immediately.&lt;/p&gt;
&lt;p&gt;Her Sovereign Majesty, Queen Elizabeth II, will resume monarchical duties over all states, commonwealths and other territories &amp;gt; (except Kansas, which she does not fancy), as from Monday next.&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>Screw the Power Users</title><link>https://hiltmon.com/blog/2012/06/03/screw-the-power-users/</link><pubDate>Sun, 03 Jun 2012 17:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/03/screw-the-power-users/</guid><description>&lt;p&gt;Nick Bradbury in &lt;a href="http://nick.typepad.com/blog/2012/05/screw-the-power-users.html"&gt;Screw the Power Users&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;We&amp;rsquo;re the ones who made computers so hard to use. And we’ve done it by catering to power users - by building software for people like us instead of for people who don’t know and don’t care about all the geeky little details.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Couldn&amp;rsquo;t agree more.&lt;/p&gt;</description></item><item><title>Mac App Store vs Buying Direct</title><link>https://hiltmon.com/blog/2012/06/03/mac-app-store-vs-buying-direct/</link><pubDate>Sun, 03 Jun 2012 16:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/03/mac-app-store-vs-buying-direct/</guid><description>&lt;p&gt;Jonathan &amp;lsquo;Wolf&amp;rsquo; Rentzsch wrote a great article on &lt;a href="http://rentzsch.tumblr.com/post/24207015641/mac-app-store-vs-buying-direct"&gt;Mac App Store vs Buying Direct&lt;/a&gt;, positing that application sandboxing tips the scale in buying direct.&lt;/p&gt;
&lt;p&gt;I always prefer to buy direct because (using his words):&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;More Money Goes to the Developer: For a $10 application, only $7 goes to the developer when you buy it through the Mac App Store. For a direct purchase, it’s more on the order of $9.&lt;/p&gt;
&lt;p&gt;The fact more developers weren’t encouraging customers to buy directly is a testament to how much Mac developers care about User Experience — they’re willing to forego the extra profit of selling direct to make things easier for their customers.&lt;/p&gt;</description></item><item><title>The Last of the Workstations</title><link>https://hiltmon.com/blog/2012/06/03/the-last-of-the-workstations/</link><pubDate>Sun, 03 Jun 2012 13:22:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/03/the-last-of-the-workstations/</guid><description>&lt;blockquote&gt;
&lt;p&gt;I started this post a few days ago, before WWDC 2012, before Jim Dalrymple&amp;rsquo;s famous &amp;lsquo;No&amp;rsquo; to whether it will be discontinued (see &lt;a href="http://www.marco.org/2012/05/30/amplified-9"&gt;Marco&amp;rsquo;s note&lt;/a&gt;), when I felt that Apple had finally given up on the Mac Pro. I&amp;rsquo;m posting it now because I really do love true workstation performance, and hope that the Mac Pro product line continues this tradition.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Is the current Mac Pro the last of the true workstations? I hope not. Apple has not updated this product line for years now, yet there is nothing else on the market today that provides the Mac Pro&amp;rsquo;s badass performance and expandability in the true workstation space.&lt;/p&gt;</description></item><item><title>Using Mission Control Desktops</title><link>https://hiltmon.com/blog/2012/06/03/using-mission-control-desktops/</link><pubDate>Sun, 03 Jun 2012 10:01:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/06/03/using-mission-control-desktops/</guid><description>&lt;p&gt;In order to reduce distractions while I am working, yet still have the benefit of having these applications running, I use multiple &lt;a href="http://www.apple.com/macosx/whats-new/mission-control.html"&gt;Mission Control&lt;/a&gt; desktops on my Macintosh computers. In short, I work, with focus, on Desktop 1; respond to email on Desktop 2; IM and Tweet from Desktop 3; and manage my time and activity on Desktop 4.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/06/03/using-mission-control-desktops/images/all-desktops.png" width="640" height="83"&gt;
&lt;/figure&gt;

&lt;p&gt;Here&amp;rsquo;s why and how it works.&lt;/p&gt;
&lt;h2 id="each-desktop-has-a-purpose"&gt;Each desktop has a purpose&lt;/h2&gt;
&lt;p&gt;Desktop 1 is my &lt;em&gt;work&lt;/em&gt; desktop. I only want the applications I need to perform the current task running on this desktop. So I use my &lt;a href="https://hiltmon.com/blog/2012/04/26/application-context-packs/"&gt;Application Context Pack&lt;/a&gt; macros to launch and terminate the application packs I need for the task that I am performing.&lt;/p&gt;</description></item><item><title>Project Specific Data</title><link>https://hiltmon.com/blog/2012/05/27/project-specific-data/</link><pubDate>Sun, 27 May 2012 12:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/27/project-specific-data/</guid><description>&lt;p&gt;One of my personal workflow bugbears has always been managing project specific data. Data like project specific contacts (who to call for what for a given project); IP&amp;rsquo;s, logins and passwords (for servers, VPN&amp;rsquo;s, specific applications, client LAN&amp;rsquo;s); and account information (hosting, third party vendors and project specific subscriptions).&lt;/p&gt;
&lt;p&gt;I have finally nailed a way to do this that works just great for me and my markdown flow (See &lt;a href="https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/"&gt;The Markdown Mindset&lt;/a&gt;). I create project specific wikis using &lt;a href="http://flyingmeat.com/voodoopad/"&gt;VoodooPad 5&lt;/a&gt; from &lt;a href="http://flyingmeat.com/"&gt;Flying Meat Inc&lt;/a&gt; written by the great Gus Mueller (Blog: &lt;a href="http://shapeof.com/"&gt;The Shape of Everything&lt;/a&gt;, Twitter: &lt;a href="http://twitter.com/#!/ccgus"&gt;@ccgus&lt;/a&gt;).&lt;/p&gt;</description></item><item><title>The Missing Feature Fallacy</title><link>https://hiltmon.com/blog/2012/05/26/the-missing-feature-fallacy/</link><pubDate>Sat, 26 May 2012 14:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/26/the-missing-feature-fallacy/</guid><description>&lt;p&gt;If I had a dollar for every time a potential customer told me that they would buy my product if it just had this one missing feature, I&amp;rsquo;d have enough to pay rent, in a penthouse, in New York, with a view, for a year.&lt;/p&gt;
&lt;p&gt;The assertion is that the customer would buy the product if I would implement the specified missing feature. The counterpoint assertion is that the customer perceives the product as useless without this missing feature, and the product becomes useful only because of the missing feature.&lt;/p&gt;</description></item><item><title>Old Farts Know How to Code</title><link>https://hiltmon.com/blog/2012/05/25/old-farts-know-how-to-code/</link><pubDate>Fri, 25 May 2012 16:14:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/25/old-farts-know-how-to-code/</guid><description>&lt;p&gt;Nick Bradbury nails it in &lt;a href="http://nick.typepad.com/blog/2012/05/old-farts-know-how-to-code.html"&gt;Old Farts Know How to Code&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;Old farts&amp;rdquo; are often excluded from that (Ed: startup) culture, not because we&amp;rsquo;re lousy coders but because we won&amp;rsquo;t put up with that shit. We have lives, we have families, we have other things that are important to us. We&amp;rsquo;re not about to sleep at our desks and trade watching our kids grow up for the promise of striking it rich. Especially when the people who really strike it rich aren&amp;rsquo;t the ones writing code.&lt;/p&gt;</description></item><item><title>Please Learn to Write</title><link>https://hiltmon.com/blog/2012/05/25/please-learn-to-write/</link><pubDate>Fri, 25 May 2012 16:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/25/please-learn-to-write/</guid><description>&lt;p&gt;Michael Lopp, writing in Rands in Repose, counterpoints the current meme of &amp;ldquo;Learning to Code&amp;rdquo; in &lt;a href="http://www.randsinrepose.com/archives/2012/05/16/please_learn_to_write.html"&gt;Please Learn to Write&lt;/a&gt;, great article. Love how he compares writing to programming:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Writing appears more forgiving because there is no compiler or interpreter catching your its/it’s issues or reminding you of the rules regarding that or which. Here’s the rub: there is a compiler and it’s fucking brutal. It’s your readers. Your readers are far more critical than the Python interpreter. Not only do they care about syntax, but they also want to learn something, and, perhaps, be entertained while all this learning is going down. Success means they keep coming back - failure is a lonely silence. Python is looking pretty sweet now, right?&lt;/p&gt;</description></item><item><title>Stylizing my Services Agreement</title><link>https://hiltmon.com/blog/2012/05/22/stylizing-my-services-agreement/</link><pubDate>Tue, 22 May 2012 14:31:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/22/stylizing-my-services-agreement/</guid><description>&lt;p&gt;I believe that everything that a person or company delivers to another should reflect their image, style, nature, professionalism and character. Which is why the look of the &lt;a href="https://noverse.com"&gt;Noverse&lt;/a&gt; Professional Services Agreement drove me mad.&lt;/p&gt;
&lt;p&gt;Don&amp;rsquo;t get me wrong. My attorney and his team are absolutely brilliant. The contract content is the best, it&amp;rsquo;s well written, well balanced, contains all the right terms and conditions for both sides, and my clients are all very happy to sign it as is. Between the content of the agreement and the great advice, the legal side of my business is well taken care of.&lt;/p&gt;</description></item><item><title>Distributed Note Taking</title><link>https://hiltmon.com/blog/2012/05/22/distributed-note-taking/</link><pubDate>Tue, 22 May 2012 09:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/22/distributed-note-taking/</guid><description>&lt;p&gt;I have switched over to and finally locked in on a new distributed note taking process, using &lt;a href="http://www.secondgearsoftware.com/elements/"&gt;Elements&lt;/a&gt; on the iPad, &lt;a href="http://www.dropbox.com"&gt;Dropbox&lt;/a&gt; synching, &lt;a href="http://smilesoftware.com/TextExpander/"&gt;TextExpander&lt;/a&gt; file naming and &lt;a href="http://brettterpstra.com/project/nvalt/"&gt;nvAlt&lt;/a&gt; on the Mac. Here&amp;rsquo;s how I got to this point, and how it works.&lt;/p&gt;
&lt;h2 id="going-electronic-the-old-way"&gt;Going electronic, the old way&lt;/h2&gt;
&lt;p&gt;Since I switched over to the iPad from a paper notepad about two years ago, I used &lt;a href="http://www.cocoabox.com/penultimate"&gt;Penultimate&lt;/a&gt; and a stylus to scribble notes. I thought this would be a great process. I can scribble quite quickly, I can draw pictures (I have a visual mind) and I can save the PDF&amp;rsquo;s of these notes and refer back to them. Something like this:&lt;/p&gt;</description></item><item><title>Zombie email</title><link>https://hiltmon.com/blog/2012/05/18/zombie-email/</link><pubDate>Fri, 18 May 2012 12:52:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/18/zombie-email/</guid><description>&lt;p&gt;So, I decided today to archive my old emails, and that meant connecting to the Google Apps holding pen for my last hedge fund which closed in 2009. This is a zombie email account I have not looked at in more than two years.&lt;/p&gt;
&lt;p&gt;There were a lot of emails in it.&lt;/p&gt;
&lt;p&gt;None of which I wanted or needed.&lt;/p&gt;
&lt;p&gt;Surely by now, everyone knows that the company is gone and the email address is defunct.&lt;/p&gt;</description></item><item><title>My own support call line</title><link>https://hiltmon.com/blog/2012/05/18/my-own-support-call-line/</link><pubDate>Fri, 18 May 2012 11:08:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/18/my-own-support-call-line/</guid><description>&lt;p&gt;My ideal vendor support line is a direct number to call the exact person I need to speak to for support. Unfortunately, this is not economic for vendors, especially since I may never call this lucky, and quite bored, person for support.&lt;/p&gt;
&lt;p&gt;My second worst vendor support line is the most common, a 1800 number that puts one in the queue, where you wait, listening to a robotic voice tell you how long you still need to wait, like a lump. And when they do pick up, the person on the other end is a professional phone answerer not a tech. So you have to go through the process of first identifying yourself, then identifying the product, then, before you explain the problem, having to go through the script that the professional phone answerer must follow. Is it plugged in? Did you reboot? Did you try this? Did you do that? And when you explain the problem, they create a ticket and let you go, with the issue unresolved. As a professional IT person, the only time I call support is when I have exhausted all possibilities, all of which I have to redo as the dumb and useless script progresses.&lt;/p&gt;</description></item><item><title>Apple Cinema HD Display circa 2003</title><link>https://hiltmon.com/blog/2012/05/16/apple-cinema-hd-display-circa-2003/</link><pubDate>Wed, 16 May 2012 16:26:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/16/apple-cinema-hd-display-circa-2003/</guid><description>&lt;p&gt;That&amp;rsquo;s right kids, I am still using the old 23&amp;quot; Apple Cinema HD Display I purchased in 2003, 9 years ago, before Apple went all aluminium.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/05/16/apple-cinema-hd-display-circa-2003/images/apple-cinema-hd.png" width="640" height="480"&gt;
&lt;/figure&gt;

&lt;p&gt;I use an ADB to DVI adapter to connect it to the Mac Pro. I love its matte screen, 1080p support and the fact that I have to prop it up using old Final Cut manuals. It still works great, though.&lt;/p&gt;</description></item><item><title>Automatically Managed Files</title><link>https://hiltmon.com/blog/2012/05/16/automatically-managed-files/</link><pubDate>Wed, 16 May 2012 16:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/16/automatically-managed-files/</guid><description>&lt;p&gt;I&amp;rsquo;m moving back to the desktop for a while to do some iOS programming. Many of the files on my laptop are auto-managing, so as I am moving the process, I thought I&amp;rsquo;d share how they are automatically managed using &lt;a href="http://www.noodlesoft.com/hazel.php"&gt;Hazel&lt;/a&gt; from NoodleSoft.&lt;/p&gt;
&lt;p&gt;Hazel is a background process that monitors folders and executes automated actions on matched files. Once a rule is created in Hazel, I can forget about what I have to do and Hazel takes care of things for me.&lt;/p&gt;</description></item><item><title>US Aircraft Embarkation Etiquette Failures</title><link>https://hiltmon.com/blog/2012/05/16/us-aircraft-embarcation-etiquette-failures/</link><pubDate>Wed, 16 May 2012 14:08:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/16/us-aircraft-embarcation-etiquette-failures/</guid><description>&lt;p&gt;I just returned from a European vacation which involved flying in several aircraft from a wide variety of airports. Over the past few years, I have flown throughout the USA on local carriers and there are many things about the local embarcation experience that leaves a lot to be desired. Here are some of my annoyances, with proposed solutions as usual.&lt;/p&gt;</description></item><item><title>Recent Travels and Tech</title><link>https://hiltmon.com/blog/2012/05/15/recent-travels-and-tech/</link><pubDate>Tue, 15 May 2012 10:46:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/05/15/recent-travels-and-tech/</guid><description>&lt;p&gt;My wife and I have been on vacation the past two weeks, the real vacation kind where you go to exotic places and are too busy seeing, trying, doing, eating and drinking things to keep up with email, tweets and blogging. We travelled to three European destinations with four iPhones, two iPads, a MacBook Pro and two plug adapter sets. Here&amp;rsquo;s how they performed.&lt;/p&gt;
&lt;h2 id="the-macbook-pro"&gt;The MacBook Pro&lt;/h2&gt;
&lt;p&gt;I brought the laptop along &amp;ldquo;just in case&amp;rdquo; I needed to jump in and fix any software issues while away. It was a stupid decision as I only turned it on once to backup my camera SD card (I have an iPad camera connection kit that could do it, but left that at home). The laptop was a bulky, heavy item that had to be removed and replaced at each border post and was never needed.&lt;/p&gt;</description></item><item><title>Application Context Packs</title><link>https://hiltmon.com/blog/2012/04/26/application-context-packs/</link><pubDate>Thu, 26 Apr 2012 09:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/26/application-context-packs/</guid><description>&lt;p&gt;When developing in Rails, I use a certain pack of applications; when coding for iOS, I use a different pack of applications; and when in a blogging context, I use a third pack of applications. And then there is the regular set of applications that I usually leave running. Starting and switching between these contexts used to take time, until I found a better way.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Old Way&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;After a clean reboot, I would then have to go through the same dance every time, launch the regular applications manually. Start Mail.app, &lt;a href="http://www.omnigroup.com/products/omnifocus/"&gt;OmniFocus&lt;/a&gt;, &lt;a href="http://www.marketcircle.com/billings/"&gt;Billings&lt;/a&gt;, &lt;a href="https://brettterpstra.com/project/nvalt/"&gt;nvAlt&lt;/a&gt;, &lt;a href="http://iconfactory.com/software/twitterrific"&gt;Twitterrific&lt;/a&gt;, &lt;a href="http://reederapp.com/"&gt;Reeder&lt;/a&gt;, iChat and &lt;a href="http://www.skype.com/"&gt;Skype&lt;/a&gt;, waiting for each to launch before clicking the next one.&lt;/p&gt;</description></item><item><title>My iPhone Home Screen</title><link>https://hiltmon.com/blog/2012/04/26/my-iphone-home-screen/</link><pubDate>Thu, 26 Apr 2012 09:22:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/26/my-iphone-home-screen/</guid><description>&lt;p&gt;I have noticed of late a trend in people or sites showing off their iPhone home screens, the first page on your iPhone with the dock, and explaining why they rearranged the applications and icons. Some have even moved the Phone.app off their home screens.&lt;/p&gt;
&lt;p&gt;They are all doing it, so it must be cool.&lt;/p&gt;
&lt;p&gt;My home screen on the iPhone is factory original. All the applications are exactly in the same place that Apple put them when the iPhone was first set up. Much cooler. Why? Two reasons.&lt;/p&gt;</description></item><item><title>Why Scope Creep is your fault</title><link>https://hiltmon.com/blog/2012/04/25/why-scope-creep-is-your-fault/</link><pubDate>Wed, 25 Apr 2012 13:00:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/25/why-scope-creep-is-your-fault/</guid><description>&lt;p&gt;Christopher Butler writes in &lt;a href="http://www.newfangled.com/why_scope_creep_is_your_fault"&gt;Why Scope Creep Is Your Fault (And What You Can Do To Prevent It)&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Scope creep is like slowly loading up your plate with little portions of everything on the buffet until you realize man, this plate is getting heavy and omigod I can&amp;rsquo;t eat all of this, what was I thinking!&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In essence, it&amp;rsquo;s just as much how we manage our clients as how we manage our work. Great article.&lt;/p&gt;</description></item><item><title>This Industry Is Full Of Crap</title><link>https://hiltmon.com/blog/2012/04/25/this-industry-is-full-of-crap/</link><pubDate>Wed, 25 Apr 2012 12:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/25/this-industry-is-full-of-crap/</guid><description>&lt;p&gt;Lovely rant by Amber Weinberg in &lt;a href="http://www.amberweinberg.com/this-industry-is-full-of-crap/"&gt;This Industry Is Full of Crap&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;We get to do something that regular people can’t understand so we’re think we’re cool. We’re not.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;And I&amp;rsquo;m right with her on this too:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I love the fact that as a freelancer, I can choose who ever I want to work with – both in terms of clients and other freelancers.&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>Microsoft did not always suck</title><link>https://hiltmon.com/blog/2012/04/22/microsoft-did-not-always-suck/</link><pubDate>Sun, 22 Apr 2012 11:27:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/22/microsoft-did-not-always-suck/</guid><description>&lt;p&gt;I was a Mac when Apple was beleaguered. Those were the days when Microsoft was in ascendancy, this new Blackberry thing was cool and Google was just a search engine. It&amp;rsquo;s traditional, and expected, for us Mac people to outright disparage Microsoft and all its products as things that suck. But the reality is that Microsoft has made some pretty amazing products in spite of its size, bureaucracy and inertia. These are some of the things I think they did just right.&lt;/p&gt;</description></item><item><title>US Dining Etiquette Failures</title><link>https://hiltmon.com/blog/2012/04/21/us-dining-etiquette-failures/</link><pubDate>Sat, 21 Apr 2012 18:13:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/21/us-dining-etiquette-failures/</guid><description>&lt;p&gt;I&amp;rsquo;ve been living in New York for almost nine years, and I love to go out and eat at all the myriad of restaurants that pepper this town. The variety, quality and prices of food is amazing. But there are still things about the dining experience here that drive me insane. Here are some of my annoyances, with proposed solutions to each of them.&lt;/p&gt;</description></item><item><title>Spike UI Teaser</title><link>https://hiltmon.com/blog/2012/04/19/spike-ui-teaser/</link><pubDate>Thu, 19 Apr 2012 18:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/19/spike-ui-teaser/</guid><description>&lt;p&gt;Following on to last week&amp;rsquo;s &lt;a href="https://hiltmon.com/blog/2012/04/06/spike-solutions/"&gt;Spike Solutions&lt;/a&gt; piece, I did some work on the second spike, to see if I could use CoreGraphics to render some of the UI components I want for the new product. Wow, worked out great, one less known unknown to deal with. Turns out, CoreGraphics does a lot of what you can do in PhotoShop, just in real time and on the GPU.&lt;/p&gt;
&lt;p&gt;The following snaps were generated on the fly, quickly, using code, no image or artwork required, and the values change and update dynamically. The best part, I can skin them later once I pick the theme and design for the product (or just use these as is).&lt;/p&gt;</description></item><item><title>The news routine</title><link>https://hiltmon.com/blog/2012/04/19/the-news-routine/</link><pubDate>Thu, 19 Apr 2012 13:58:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/19/the-news-routine/</guid><description>&lt;p&gt;Twitter, Facebook, RSS, all wonderful services, all bombarding us with information, all taking time and attention away from things we should be doing. In order to remain productive, I have moved these services onto the iPad and created a &lt;em&gt;reading&lt;/em&gt; routine to eliminate the temptation to waste hours on these services.&lt;/p&gt;
&lt;h2 id="two-screens-are-now-one"&gt;Two screens are now one&lt;/h2&gt;
&lt;p&gt;Previously, I did all my work on my Mac Pro with dual 24&amp;quot; Dell monitors. The main monitor had my work on it, and the secondary monitor had Mail, iChat, Skype, &lt;a href="http://iconfactory.com/software/twitterrific"&gt;Twitterriffic&lt;/a&gt; and &lt;a href="http://reederapp.com/"&gt;Reeder&lt;/a&gt; running all the time. Result: The secondary screen always had something happening on it and I constantly interrupted my work to glance over and pay attention to it. 88 new tweets. 34 unread RSS items. 5 unread emails. And my productivity suffered.&lt;/p&gt;</description></item><item><title>Augmented Paper</title><link>https://hiltmon.com/blog/2012/04/16/augmented-paper/</link><pubDate>Mon, 16 Apr 2012 14:00:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/16/augmented-paper/</guid><description>&lt;p&gt;Matt Gemmell wrote yet another brilliant post on what makes a great application interface (with examples) in &lt;a href="http://mattgemmell.com/2012/04/13/augmented-paper/"&gt;Augmented Paper&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;For me, software experiences that feel like Augmented Paper are those that second-guess our (developers’) natural tendency to put functionality first, or to think of our apps as software. Apps are only incidentally software; software is an implementation detail. Instead, apps are experiences.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Honestly, if you are an app designer, this is a must-read.&lt;/p&gt;</description></item><item><title>Another view of the TSA problem</title><link>https://hiltmon.com/blog/2012/04/16/another-view-of-the-tsa-problem/</link><pubDate>Mon, 16 Apr 2012 13:53:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/16/another-view-of-the-tsa-problem/</guid><description>&lt;p&gt;We all read TSA previous head Kip Hawley&amp;rsquo;s WSJ essay on the weekend entitled &lt;a href="http://online.wsj.com/article/SB10001424052702303815404577335783535660546.html?mod=WSJ_hps_editorsPicks_1"&gt;Why Airport Security Is Broken—And How To Fix It&lt;/a&gt; (you may hit the paywall, sorry). If not, read it now, then come back. We&amp;rsquo;ll wait.&lt;/p&gt;
&lt;p&gt;Ben Brooks makes a great point in &lt;a href="http://brooksreview.net/2012/04/tsa-hawley/"&gt;‘Why Airport Security Is Broken—and How to Fix It&amp;rsquo;&lt;/a&gt;, that it&amp;rsquo;s the people too:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Because even if we succeed in getting rid of porno scanners and allowing liquid through, we still face the issue of TSA “officers” over stepping their bounds.&lt;/p&gt;</description></item><item><title>Text Notes - Going Electronic</title><link>https://hiltmon.com/blog/2012/04/15/text-notes-going-electronic/</link><pubDate>Sun, 15 Apr 2012 13:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/15/text-notes-going-electronic/</guid><description>&lt;p&gt;One of the big changes I made in the last year is how I take and store text notes. By text notes, I mean meeting notes, book lists, blog ideas, thoughts, even project estimates. I&amp;rsquo;ve finally gone paperless.&lt;/p&gt;
&lt;p&gt;tl;dr (too long; didn&amp;rsquo;t read): I write notes in &lt;a href="https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/"&gt;Markdown&lt;/a&gt;, in files named using &lt;a href="http://smilesoftware.com/TextExpander/"&gt;TextExpander&lt;/a&gt; macros, using &lt;a href="http://brettterpstra.com/project/nvalt/"&gt;nvALT&lt;/a&gt; with &lt;a href="https://www.dropbox.com/"&gt;Dropbox&lt;/a&gt; sync on the Mac and &lt;a href="http://www.secondgearsoftware.com/elements/"&gt;Elements&lt;/a&gt; or &lt;a href="http://bywordapp.com/"&gt;Byword&lt;/a&gt; on iOS sharing the same Dropbox folder. I still keep project development logs in separate Markdown files within each product&amp;rsquo;s folder because I format and deliver them. I don&amp;rsquo;t use &lt;a href="http://www.evernote.com/"&gt;Evernote&lt;/a&gt; because I cannot stand it.&lt;/p&gt;</description></item><item><title>Don't Panic - Flashback Trojan</title><link>https://hiltmon.com/blog/2012/04/12/dont-panic-flashback-trojan/</link><pubDate>Thu, 12 Apr 2012 10:05:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/12/dont-panic-flashback-trojan/</guid><description>&lt;p&gt;Please read the following list in its entirety before acting:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;600,000+ OS X Computers have been infected by the Flashback Trojan&lt;/li&gt;
&lt;li&gt;In percentage terms, that&amp;rsquo;s more than the largest virus infection on Windows ever&lt;/li&gt;
&lt;li&gt;You should panic, the &amp;ldquo;running down a corridor screaming with your hair on fire&amp;rdquo; kind of panic&lt;/li&gt;
&lt;li&gt;You should download, install and run all the Flashback removal tools (Links: &lt;a href="http://download.cnet.com/Flashback-Removal-Tool/3000-2239_4-75700492.html?tag=mncol;txt"&gt;here&lt;/a&gt; or &lt;a href="http://www.kaspersky.com/about/news/virus/2012/Kaspersky_Lab_Offers_Kaspersky_Flashback_Removal_Tool"&gt;here&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;You should buy and install at least one anti-virus package immediately, maybe two.&lt;/li&gt;
&lt;li&gt;You should ensure that the anti-virus package has the latest definitions, so run its updater over and over again&lt;/li&gt;
&lt;li&gt;You should sit and wait while it scans all your drives, feel free to continue to hyperventilate&lt;/li&gt;
&lt;li&gt;You must pay for the annual subscription to the AV vendor&lt;/li&gt;
&lt;li&gt;You are safe, and may now stop panicking&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;Don&amp;rsquo;t do any of the above. There&amp;rsquo;s no point.&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;We investigated &amp;gt;300 breaches in 2011. 100% used malware. 0% detected by AV on targets. In lab 25 AV engines detected 12%.
&lt;a href="https://twitter.com/#!/c7five/status/191496387031085057"&gt;Nicholas J Percoco&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Marked 1.4</title><link>https://hiltmon.com/blog/2012/04/09/marked-1-dot-4/</link><pubDate>Mon, 09 Apr 2012 12:13:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/09/marked-1-dot-4/</guid><description>&lt;p&gt;If you are a fans of the &lt;a href="https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/"&gt;The Markdown Mindset&lt;/a&gt;, then the must-have Markdown preview app &lt;a href="http://markedapp.com/"&gt;Marked&lt;/a&gt; has just been updated to V1.4 by &lt;a href="http://brettterpstra.com/"&gt;Brett Terpstra&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Marked has gone from a simple preview app that always sits to the right of my writing window to an integral part of my writing, checking, publishing and delivery process. As you know, I already do all my writing in Markdown. I use Marked to preview the results using the formatting I intend to deliver it (Kifu format, blog format, report format), and then use it&amp;rsquo;s great export features to generate the HTML or PDFs I send out.&lt;/p&gt;</description></item><item><title>The Candle Problem</title><link>https://hiltmon.com/blog/2012/04/09/the-candle-problem/</link><pubDate>Mon, 09 Apr 2012 11:53:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/09/the-candle-problem/</guid><description>&lt;p&gt;Graham Morehead, writing in nature.com in &lt;a href="http://blogs.nature.com/a_mad_hemorrhage/2012/04/02/ceos-and-the-candle-problem"&gt;CEOs and the Candle Problem&lt;/a&gt; starts:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;In America we have a motivation problem : money. I&amp;rsquo;m not a communist. I love capitalism (I even love money), but here&amp;rsquo;s a simple fact we&amp;rsquo;ve known since 1962: using money as a motivator makes us less capable at problem-solving. It actually makes us dumber.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Then he goes on to talk about the &lt;a href="http://en.wikipedia.org/wiki/Candle_problem"&gt;Candle problem&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Functional_fixedness"&gt;Functional fixedness&lt;/a&gt;, using them to explain how some CEO&amp;rsquo;s who are improperly motivated by money drive their businesses into ruin, something we have all seen in action.&lt;/p&gt;</description></item><item><title>Explaining the Internet to Old Powerbrokers</title><link>https://hiltmon.com/blog/2012/04/09/explaining-the-internet-to-old-powerbrokers/</link><pubDate>Mon, 09 Apr 2012 11:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/09/explaining-the-internet-to-old-powerbrokers/</guid><description>&lt;p&gt;Ben Hammersley gave a speech to the IAAC and reproduced it online at &lt;a href="https://www.benhammersley.com/2011/09/my-speech-to-the-iaac/"&gt;Check Against Delivery. My speech to the IAAC&lt;/a&gt;. Instapaper it and read the whole thing, it&amp;rsquo;s one of the best things I have read in a while.&lt;/p&gt;
&lt;p&gt;In short, he explains the importance of the internet to a bunch of old, pre-internet security politicians. He points out how their ignorance is viewed by the rest of us, and how their decisions, while correct by their lights, are completely wrong and insipid.&lt;/p&gt;</description></item><item><title>Spike Solutions</title><link>https://hiltmon.com/blog/2012/04/06/spike-solutions/</link><pubDate>Fri, 06 Apr 2012 10:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/06/spike-solutions/</guid><description>&lt;p&gt;I am a huge fan of throwing together a few &lt;em&gt;spike solutions&lt;/em&gt; at the start of a project. I get the biggest technical problems solved early, I gain understanding of any pitfalls I may encounter and I can estimate the time and work better. I highly recommend the practice. A few days spent spiking solutions saves weeks and months later.&lt;/p&gt;
&lt;p&gt;Get your geek on, were diving in.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;A &lt;strong&gt;spike solution&lt;/strong&gt; is a software project to figure out a tough technical or design problem (note: singular). Use it to explore potential solutions, ignoring all other requirements and standards. Expect to throw it away. The goal is to see if and how a specific problem can be dealt with.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Adjusting the Cap</title><link>https://hiltmon.com/blog/2012/04/04/adjusting-the-cap/</link><pubDate>Wed, 04 Apr 2012 19:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/04/adjusting-the-cap/</guid><description>&lt;p&gt;Alex Knight, writing in his own blog &lt;a href="http://zerodistraction.com/"&gt;Zero Distraction&lt;/a&gt; in &lt;a href="http://zerodistraction.com/blog/2012/4/3/the-disparity-between-smartphones-and-mobile-carriers.html"&gt;The Disparity between Smartphones And Mobile Carriers&lt;/a&gt; sets the scene exactly as I see it:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There’s a massive disparity between data sucking smartphones and data plans offered by carriers. Customers know this, and the carriers are fully cognizant of it. The problem is they make a ton of money from you already, and since you probably don’t have a lot of choice as far as competition is concerned, they can charge whatever they see fit.&lt;/p&gt;</description></item><item><title>And this is why</title><link>https://hiltmon.com/blog/2012/04/01/and-this-is-why/</link><pubDate>Sun, 01 Apr 2012 12:35:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/04/01/and-this-is-why/</guid><description>&lt;p&gt;Life, communication, programming, it&amp;rsquo;s all about structuring a rational argument. But too many people are either unable to, or are unwilling to, rationalize.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;I hold this opinion because I&amp;rsquo;ve read the facts and thought it through&amp;rdquo; matters. &amp;ldquo;I hold this opinion, and that&amp;rsquo;s it&amp;rdquo; doesn&amp;rsquo;t.
&lt;a href="https://twitter.com/#!/ianbetteridge/status/186371647987658752"&gt;Ian Betteridge&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Whether the argument is about creative design, system architecture, which restaurant to eat at or politics and religion, it&amp;rsquo;s critically important to express, clarify and declare the rationalization behind it. Failure to do so, or the inability to do so, changes the argument from a rational, reasonable one, to a waste of time, words, and emotions. Unfortunately, rational discourse has given way to spin, faith, linguistic traps, talking points, lies and misrepresentations that are treated with the respect they do not deserve.&lt;/p&gt;</description></item><item><title>I love debugging</title><link>https://hiltmon.com/blog/2012/03/31/i-love-debugging/</link><pubDate>Sat, 31 Mar 2012 12:17:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/31/i-love-debugging/</guid><description>&lt;p&gt;Rob Galankis tongue-in-cheek writing in &lt;a href="http://altdevblogaday.com/2012/03/30/why-i-hate-tdd/"&gt;Why I hate Test Driven Development&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;hellip; So why do I hate TDD?&lt;/p&gt;
&lt;p&gt;Because debugging is fun. There, I said it. I love debugging. I think lots of clever people like debugging. I love someone having a problem, coming to me, looking at it together, getting up to walk around, look at the ceiling, talk to myself, stand in front of a whiteboard, draw some lines that spark some idea, try it, manually test a fix out, slouch down in my chair staring at my computer lost in thought, and repeating this until I actually find and fix the problem.&lt;/p&gt;</description></item><item><title>Photoshop Etiquette for Web Designers</title><link>https://hiltmon.com/blog/2012/03/31/photoshop-etiquette-for-web-designers/</link><pubDate>Sat, 31 Mar 2012 12:13:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/31/photoshop-etiquette-for-web-designers/</guid><description>&lt;p&gt;There is a brilliant list of things web designers &lt;em&gt;should&lt;/em&gt; be doing when designing web apps in PhotoShop at &lt;a href="http://photoshopetiquette.com/"&gt;the photoshop etiquette manifesto for web designers&lt;/a&gt;. Do these and we developers will have a much easier time implementing your designs.&lt;/p&gt;
&lt;p&gt;Applies to iOS app designers, Mac App designers, in fact any app designers too.&lt;/p&gt;
&lt;p&gt;From now on, all my designers will be asked to follow these rules.&lt;/p&gt;</description></item><item><title>Maker's Schedule, Manager's Schedule</title><link>https://hiltmon.com/blog/2012/03/31/makers-schedule-managers-schedule/</link><pubDate>Sat, 31 Mar 2012 12:06:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/31/makers-schedule-managers-schedule/</guid><description>&lt;p&gt;Classic article by Paul Graham in 2009 called &lt;a href="http://www.paulgraham.com/makersschedule.html"&gt;Maker&amp;rsquo;s Schedule, Manager&amp;rsquo;s Schedule&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;One reason programmers dislike meetings so much is that they&amp;rsquo;re on a different type of schedule from other people. Meetings cost them more.&lt;/p&gt;
&lt;p&gt;There are two types of schedule, which I&amp;rsquo;ll call the manager&amp;rsquo;s schedule and the maker&amp;rsquo;s schedule. The manager&amp;rsquo;s schedule is for bosses. It&amp;rsquo;s embodied in the traditional appointment book, with each day cut into one hour intervals.&lt;/p&gt;</description></item><item><title>The Mac App Store Needs Paid Upgrades</title><link>https://hiltmon.com/blog/2012/03/27/the-mac-app-store-needs-paid-upgrades/</link><pubDate>Tue, 27 Mar 2012 16:16:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/27/the-mac-app-store-needs-paid-upgrades/</guid><description>&lt;p&gt;Brilliant post by Wil Shipley on his blog called &lt;a href="http://blog.wilshipley.com/2012/03/mac-app-store-needs-paid-upgrades.html"&gt;The Mac App Store Needs Paid Upgrades&lt;/a&gt;, well worth a read:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Right now developers selling through the Mac App Store face a lose/lose choice: either provide all major upgrades to existing customers for free (thus losing a quarter of our revenue), or create a “new” product for each major version (creating customer confusion) and charge existing customers full price again (creating customer anger).&lt;/p&gt;</description></item><item><title>On Digital Hoarding</title><link>https://hiltmon.com/blog/2012/03/27/on-digital-hoarding/</link><pubDate>Tue, 27 Mar 2012 10:47:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/27/on-digital-hoarding/</guid><description>&lt;p&gt;Melinda Beck writing in the WSJ in &lt;a href="http://online.wsj.com/article/SB10001424052702303404704577305520318265602.html?mod=wsj_share_tweet"&gt;Drowning in Email, Photos, Files? Hoarding Goes Digital&lt;/a&gt; presents a fact-less and ridiculous claim that we are doing something &lt;em&gt;wrong&lt;/em&gt; by storing all the emails and files that we do. In the article, she equates the rest of us, people and companies alike, with those crazy nutters who fill their houses with junk.&lt;/p&gt;
&lt;p&gt;My take: We, especially businesses, need to keep all old emails under law in case of subpoena, just like individuals need to store tax records. We need all our old work files as they are referenced in later works. We need our music and photo files because we no longer have their physical equivalents (or have to buy them again and again in case of media). In short, we&amp;rsquo;re not hoarding, we&amp;rsquo;re filing, scrapbooking and holding on to our possessions that are no longer physical.&lt;/p&gt;
&lt;p&gt;But let me respond to the article.&lt;/p&gt;</description></item><item><title>You're being stalked</title><link>https://hiltmon.com/blog/2012/03/27/youre-being-stalked/</link><pubDate>Tue, 27 Mar 2012 10:20:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/27/youre-being-stalked/</guid><description>&lt;p&gt;In the same vein as an earlier article on my blog, &lt;a href="https://hiltmon.com/blog/2012/03/24/giving-yourself-away-with-a-facebook-login/"&gt;Giving Yourself Away With a Facebook Login&lt;/a&gt;, Alexis Madrigal writing in the atlantic in &lt;a href="http://www.theatlantic.com/technology/print/2012/02/im-being-followed-how-google-and-104-other-companies-are-tracking-me-on-the-web/253758/"&gt;I&amp;rsquo;m Being Followed: How Google—and 104 Other Companies—Are Tracking Me on the Web&lt;/a&gt; quotes Joe Turow saying:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If a company can follow your behavior in the digital environment &amp;ndash; an environment that potentially includes your mobile phone and television set &amp;ndash; its claim that you are &amp;ldquo;anonymous&amp;rdquo; is meaningless. That is particularly true when firms intermittently add off-line information such as shopping patterns and the value of your house to their online data and then simply strip the name and address to make it &amp;ldquo;anonymous.&amp;rdquo; It matters little if your name is John Smith, Yesh Mispar, or 3211466. The persistence of information about you will lead firms to act based on what they know, share, and care about you, whether you know it is happening or not.&lt;/p&gt;</description></item><item><title>iPad 4G Misleading</title><link>https://hiltmon.com/blog/2012/03/27/ipad-4g-misleading/</link><pubDate>Tue, 27 Mar 2012 10:08:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/27/ipad-4g-misleading/</guid><description>&lt;p&gt;As reported in the Verge, &lt;a href="http://www.theverge.com/2012/3/27/2905415/apple-ipad-4g-misleading-advertising-accc"&gt;Apple&amp;rsquo;s iPad &amp;lsquo;4G&amp;rsquo; advertising labeled misleading by Australian watchdog, may be banned&lt;/a&gt;. The same can be said for the fictitious 4G on my iPhone 4S.&lt;/p&gt;
&lt;p&gt;As a proud Aussie, I am a fan of the ACCC (Australian Competition and Consumer Commission) and Australia&amp;rsquo;s Trade Practices Act that supports them. In short, companies cannot lie or mislead customers in any way, or the ACCC can nail them and force them to make things right.&lt;/p&gt;</description></item><item><title>Freemium Simulation Games prove Stupidity</title><link>https://hiltmon.com/blog/2012/03/25/freemium-simulation-games-prove-stupidity/</link><pubDate>Sun, 25 Mar 2012 13:26:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/25/freemium-simulation-games-prove-stupidity/</guid><description>&lt;p&gt;I don&amp;rsquo;t get the allure and popularity of freemium time-based simulation games like Farmville, DragonVale, Tap Zoo, and Smurfs Village. Yet these games are the top grossing games on the App Store. So I decided to take one on to see if I can find the &amp;lsquo;it&amp;rsquo; factor that makes these games so enjoyable, popular and profitable, without paying real money to short-circuit the game.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;tl;dr (Too Long; Didn&amp;rsquo;t Read)&lt;/strong&gt;: You have got to be out of your mind to find these &amp;lsquo;games&amp;rsquo; enjoyable or worth spending money on. They are slow, skill and challenge lacking, chore-based, time-draining, naggy, annoying proofs of stupidity. The only conclusion I can draw from this experience is that people don&amp;rsquo;t value their time, have no self-respect and are just plain stupid to be playing and spending money on these products. &amp;ldquo;Men in Black&amp;rdquo; got it right: &amp;ldquo;A person is smart. People are dumb, panicky, dangerous animals and you know it&amp;rdquo;.&lt;/p&gt;</description></item><item><title>Giving yourself away with a Facebook Login</title><link>https://hiltmon.com/blog/2012/03/24/giving-yourself-away-with-a-facebook-login/</link><pubDate>Sat, 24 Mar 2012 12:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/24/giving-yourself-away-with-a-facebook-login/</guid><description>&lt;blockquote&gt;
&lt;p&gt;Applications that require a Facebook login are doing so to gain access to you, your name, your friends, your location, your personal details. They are &lt;strong&gt;not&lt;/strong&gt; using the login because they are too lazy to create their own.
&lt;a href="http://hiltmon.com"&gt;Hilton Lipschitz&lt;/a&gt;, right here right now&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;My wife asked me why I deleted Draw Something this week, as we were both enjoying drawing pictures with each other. I told her that Zynga purchased them, who Zynga were and why I did not want them to have access to my information. See &lt;a href="http://blogs.wsj.com/digits/2010/10/19/facebook-and-zynga-face-lawsuits-over-privacy-breach/"&gt;Facebook and Zynga Face Lawsuits over Privacy Breach&lt;/a&gt; and &lt;a href="http://online.wsj.com/article/SB10001424052702304772804575558484075236968.html?mod=wsj_share_twitter"&gt;Facebook in Privacy Breach&lt;/a&gt; from the WSJ alone.&lt;/p&gt;</description></item><item><title>Clarity</title><link>https://hiltmon.com/blog/2012/03/22/clarity/</link><pubDate>Thu, 22 Mar 2012 15:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/22/clarity/</guid><description>&lt;p&gt;Jason Fried, on the 37 Signals blog, sums it up in &lt;a href="http://37signals.com/svn/posts/3144-what-clarity-is-all-about"&gt;What clarity is all about&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Lots of people think simplicity is the opposite of confusion (“It’s confusing, let’s make this simpler”). It’s not. The opposite of confusion is clarity.&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>Markdown Quick Look</title><link>https://hiltmon.com/blog/2012/03/22/markdown-quick-look/</link><pubDate>Thu, 22 Mar 2012 15:24:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/22/markdown-quick-look/</guid><description>&lt;p&gt;If you use markdown like I do on a Mac, you &lt;em&gt;may&lt;/em&gt; notice that &lt;a href="http://en.wikipedia.org/wiki/Quick_Look"&gt;Quick Look&lt;/a&gt; does not render &lt;code&gt;.markdown&lt;/code&gt; files as documents, instead providing an icon only. If you have tools like &lt;a href="http://www.iawriter.com/"&gt;iAWriter&lt;/a&gt; installed (I used to), they install a Quick Look plugin, and the markdown is rendered readable.&lt;/p&gt;
&lt;p&gt;For the rest of us, Brett Terpstra of &lt;a href="http://brettterpstra.com/project/marked/"&gt;Marked&lt;/a&gt; and &lt;a href="http://brettterpstra.com/project/nvalt/"&gt;nvAlt&lt;/a&gt; fame has released an update to &lt;a href="http://fletcherpenney.net/"&gt;Fletcher Penney&amp;rsquo;s&lt;/a&gt; &lt;a href="https://github.com/fletcher/MMD-QuickLook"&gt;Quick Look&lt;/a&gt; generator.&lt;/p&gt;
&lt;p&gt;Check it out at &lt;a href="http://brettterpstra.com/multimarkdown-quick-look-with-style/"&gt;Multimarkdown Quick Look With Style&lt;/a&gt;. I&amp;rsquo;m using it.&lt;/p&gt;</description></item><item><title>2012 iPad Essentials</title><link>https://hiltmon.com/blog/2012/03/17/2012-ipad-essentials/</link><pubDate>Sat, 17 Mar 2012 13:30:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/17/2012-ipad-essentials/</guid><description>&lt;p&gt;&lt;em&gt;Editor’s Note: This was written way back in March 2012 with the launch of the iPad 3. For updates see &lt;a href="https://hiltmon.com/blog/2012/12/26/2012-year-end-ipad-essentials/"&gt;2012 Year End iPad Essentials&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The new iPad arrived yesterday. Instead of restoring from a backup, I decided to build it clean and install only essential apps. Here are the ones (&lt;em&gt;excluding games&lt;/em&gt;) that made it in the first 24 hours, pretty much in order of addition:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fibooks%252Fid364709193%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;iBooks&lt;/a&gt; - I read a lot of ePub books on the iPad, and the new retina text rendering is so great.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Finstapaper%252Fid288545208%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Instapaper&lt;/a&gt; - Essential tool to save, search and read long form writing found on the net. Use it to archive all the cool articles I find.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Ftweetbot-for-twitter-ipad%252Fid498801050%253Fmt%253D8%2526uo%253D4%2526partnerId%253D308"&gt;TweetBot&lt;/a&gt; - The best twitter client out there, even better than my old favorite &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Ftwitterrific-5-for-twitter%252Fid580311103%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Twitterrific&lt;/a&gt;. Love the UI and the gap detection.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Freeder-for-ipad%252Fid375661689%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Reeder&lt;/a&gt; - Lovely RSS reader, for all my news and technology feeds.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fflipboard-your-social-news%252Fid358801284%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;FlipBoard&lt;/a&gt; - More news, from sources not followed in RSS.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fzite-personalized-magazine%252Fid419752338%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Zite&lt;/a&gt; - Even more reading material, should I run out of the above.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fskype-for-ipad%252Fid442012681%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Skype&lt;/a&gt; - For those who do not use Facetime.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Ffacebook%252Fid284882215%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Facebook&lt;/a&gt; - Cause I gotta share.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fkeynote%252Fid361285480%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Keynote&lt;/a&gt;, &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fnumbers%252Fid361304891%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Numbers&lt;/a&gt; and &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fpages%252Fid361309726%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Pages&lt;/a&gt; - I have to iWork too. Most of my demos these days are on the iPad, and Keynote rocks.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fimovie%252Fid377298193%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;iMovie&lt;/a&gt;, &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fiphoto%252Fid497786065%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;iPhoto&lt;/a&gt; and &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fgarageband%252Fid408709785%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Garageband&lt;/a&gt; - So I can create, or play, or annoy.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fomnifocus-for-ipad%252Fid383804552%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;OmniFocus&lt;/a&gt; - to keep me on track and remind me what I need to get done, synched across all my iDevices.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fday-one-journal%252Fid421706526%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;DayOne&lt;/a&gt; - to remember what I did.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fbyword%252Fid482063361%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Byword&lt;/a&gt; - to view and create notes, and write, replacing &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Felements-for-dropbox-markdown%252Fid382752422%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Elements&lt;/a&gt; for notes.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fpenultimate%252Fid354098826%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Penultimate&lt;/a&gt; - scribble notes, or draw diagrams to support my points, it&amp;rsquo;s my scratchpad.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fxscope-mirror%252Fid488819289%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;xScope Mirror&lt;/a&gt; - to see how things look from the Mac.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Ftextexpander%252Fid326180690%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;TextExpander&lt;/a&gt; - to share my expansions, especially for notes.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fprompt%252Fid421507115%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Prompt&lt;/a&gt; - to get to servers when I need to, when Murphy&amp;rsquo;s Law strikes.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Ftextastic-code-editor%252Fid383577124%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Textastic&lt;/a&gt; - so I can edit code anywhere, this is my &amp;ldquo;Emergency: Break Glass&amp;rdquo; app after Prompt.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fyojimbo-for-ipad%252Fid396307682%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Yojimbo&lt;/a&gt; - Key document and information backup.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252F1password%252Fid568903335%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;1Password&lt;/a&gt; - Of course&lt;/li&gt;
&lt;li&gt;&lt;a href="http://click.linksynergy.com/fs-bin/stat?id=V41G*FiMqjc&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fsoulver-for-ipad%252Fid371982536%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30"&gt;Soulver&lt;/a&gt; - A better calculation tool.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Of course, &lt;strong&gt;Mail&lt;/strong&gt;, &lt;strong&gt;FaceTime&lt;/strong&gt;, &lt;strong&gt;iMessage&lt;/strong&gt; and &lt;strong&gt;iTunes Match&lt;/strong&gt; were set up first.&lt;/p&gt;</description></item><item><title>With In-App Coins, We're all Losers</title><link>https://hiltmon.com/blog/2012/03/17/with-in-app-coins/</link><pubDate>Sat, 17 Mar 2012 12:06:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/17/with-in-app-coins/</guid><description>&lt;p&gt;There are a lot of games on the iPhone App Store that offer in-app purchases of game currency in order to enable players to either speed up the game, or to buy their way to higher levels, without adding additional content. Many of these games are offered free (the &lt;em&gt;freemium&lt;/em&gt; model), but make it difficult to play unless you buy these in-app coins.&lt;/p&gt;
&lt;p&gt;If &lt;em&gt;you&lt;/em&gt; do this, &lt;em&gt;you&lt;/em&gt; are a loser.&lt;/p&gt;
&lt;p&gt;If you do this, &lt;em&gt;I&lt;/em&gt; too become a loser.&lt;/p&gt;
&lt;p&gt;And I don&amp;rsquo;t like being a loser!&lt;/p&gt;</description></item><item><title>First impressions of the new iPad</title><link>https://hiltmon.com/blog/2012/03/16/first-impressions-of-the-new-ipad/</link><pubDate>Fri, 16 Mar 2012 14:19:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/16/first-impressions-of-the-new-ipad/</guid><description>&lt;p&gt;In short, between the iPad 2 and the new iPad (retina):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Weight&lt;/strong&gt;: Same&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Thickness&lt;/strong&gt;: Same&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Screen&lt;/strong&gt;: Yowser! The old screen looks pixellated and blurry, the new screen is brilliant. Also a lot warmer.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Performance&lt;/strong&gt;: Same&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Between the original and the new iPad (retina):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Weight&lt;/strong&gt;: Oh, so much lighter&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Thickness&lt;/strong&gt;: Oh, so much thinner&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Screen&lt;/strong&gt;: As above, but the original was warmer than the iPad 2.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Performance&lt;/strong&gt;: Blazingly faster, yet the original is still no slouch.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="comparing-the-screens"&gt;Comparing the Screens&lt;/h2&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/03/16/first-impressions-of-the-new-ipad/images/ipad-screens.png" width="640" height="640"&gt;
&lt;/figure&gt;

&lt;h2 id="comparing-the-thickness"&gt;Comparing the Thickness&lt;/h2&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2012/03/16/first-impressions-of-the-new-ipad/images/ipad-sides.png" width="640" height="640"&gt;
&lt;/figure&gt;</description></item><item><title>My Blog Writing Workflow</title><link>https://hiltmon.com/blog/2012/03/15/my-blog-writing-workflow/</link><pubDate>Thu, 15 Mar 2012 14:52:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/15/my-blog-writing-workflow/</guid><description>&lt;p&gt;With the release of &lt;a href="http://itunes.apple.com/us/app/byword/id482063361?mt=8"&gt;Byword for iOS&lt;/a&gt; (iTunes app store link), my blog writing workflow has come full circle.&lt;/p&gt;
&lt;p&gt;All posts start as ideas and notes jotted down in &lt;a href="https://brettterpstra.com/project/nvalt/"&gt;nvAlt&lt;/a&gt;, Brett Terpstra&amp;rsquo;s fork of &lt;a href="http://notational.net/"&gt;Notational Velocity&lt;/a&gt;. I like this product because the &lt;em&gt;search&lt;/em&gt; and &lt;em&gt;use&lt;/em&gt; of notes is fully integrated, and it supports markdown. I have set it up so that all notes are stored as markdown files in a &lt;a href="http://www.dropbox.com"&gt;Dropbox&lt;/a&gt; folder and &lt;a href="http://bywordapp.com/"&gt;Byword&lt;/a&gt; has been set up as the external editor.&lt;/p&gt;</description></item><item><title>Get to read quicker</title><link>https://hiltmon.com/blog/2012/03/14/get-to-read-quicker/</link><pubDate>Wed, 14 Mar 2012 19:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/14/get-to-read-quicker/</guid><description>&lt;p&gt;People come to &lt;a href="https://hiltmon.com"&gt;hiltmon.com&lt;/a&gt; to read, and occasionally to comment on the writing found here. Statistics show that no-one uses the social icons to tweet, Facebook or Google+ the articles.&lt;/p&gt;
&lt;p&gt;The average page loads in 2.53 seconds and makes 84 requests. Thats a long time for readers to wait, and a lot of requests. So I decided to check out what is going on.&lt;/p&gt;
&lt;p&gt;The basic page requires 29 requests and takes ~800ms to load (when the cache is clear). That&amp;rsquo;s pretty good when you consider Google Analytics and recent tweets come in. So where is the rest of the time going?&lt;/p&gt;</description></item><item><title>Not Your Free Tech Support</title><link>https://hiltmon.com/blog/2012/03/13/not-your-free-tech-support/</link><pubDate>Tue, 13 Mar 2012 12:56:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/13/not-your-free-tech-support/</guid><description>&lt;p&gt;Friends, family, colleagues, I love you all, but I am not your free tech support guy. Computer &lt;em&gt;programmers&lt;/em&gt; do &lt;em&gt;not&lt;/em&gt; exist to fix &lt;em&gt;your&lt;/em&gt; computer, printer or network problems, we don&amp;rsquo;t even fix our own. Do us all a favor, and &lt;em&gt;stop&lt;/em&gt; asking us to fix your things, or worse, just expecting us to do so. We&amp;rsquo;re not interested. It&amp;rsquo;s not what we do. Move along.&lt;/p&gt;
&lt;p&gt;In the last week, I received the following requests (reminding you I work from home, alone):&lt;/p&gt;</description></item><item><title>Top of the Line</title><link>https://hiltmon.com/blog/2012/03/09/top-of-the-line/</link><pubDate>Fri, 09 Mar 2012 15:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/09/top-of-the-line/</guid><description>&lt;p&gt;I&amp;rsquo;m not rich, but when I buy technology, I always get the top-of-the-line model &lt;em&gt;within my product range&lt;/em&gt;. Why? &lt;strong&gt;Longevity&lt;/strong&gt; and &lt;strong&gt;Productivity&lt;/strong&gt;. I choose the range to suit my needs and skill levels. And the long-term benefits of productivity and time savings way exceed the short-term incremental cost.&lt;/p&gt;
&lt;p&gt;All my devices last forever because I purchased the top-of-the-line within the range I needed. In 1998, I purchased the best Dell Inspiron laptop, it lasted until 2003 when I moved to the best Titanium PowerBook, which lasted until 2009 when I acquired my current MacBook Pro. In each case, I maxed the CPU, RAM and Disk size, allowing me to operate them without suffering any performance penalties. And these devices each handled several generations of operating system upgrades without changes or noticeable loss of performance.&lt;/p&gt;</description></item><item><title>Writing on the iPad</title><link>https://hiltmon.com/blog/2012/03/09/writing-on-the-ipad/</link><pubDate>Fri, 09 Mar 2012 11:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/09/writing-on-the-ipad/</guid><description>&lt;p&gt;This comment by &lt;em&gt;JohnDoey&lt;/em&gt; (reproduced in full without permission) on the Asymco article &lt;a href="http://www.asymco.com/2012/03/08/the-new-feeds-and-speeds/"&gt;The new feeds and speeds: iPad vs. MacBook Air and iMac&lt;/a&gt; sums up the iPad writing experience beautifully (although I think the iPad is a good production system too):&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;rsquo;m a writer also. You missed a key point about writing on iPad.&lt;/p&gt;
&lt;p&gt;Writers who are using iPads are not using them like Macs (or Mac clones,) they are using them like typewriters. A writer with an iPad is exactly the same as a writer with a typewriter or a filmmaker with a movie camera or a singer with a microphone. Those are capture devices, not editing devices. You just write, shoot, or sing with as few interruptions and as little technical overhead as possible.&lt;/p&gt;</description></item><item><title>iPad - On Two Years of Use</title><link>https://hiltmon.com/blog/2012/03/09/ipad-on-two-years-of-use/</link><pubDate>Fri, 09 Mar 2012 09:44:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/09/ipad-on-two-years-of-use/</guid><description>&lt;p&gt;Can you believe it, the iPad has been around only &lt;em&gt;two&lt;/em&gt; years, two! Yet it feels like there was never a time before we had them.&lt;/p&gt;
&lt;p&gt;I was one of those who pre-ordered the original iPad on launch (and the iPad 2 on its launch). I also wrote three blog posts back then, and it seems my usage patterns have not changed that much:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Apr 4, 2010&lt;/strong&gt; &lt;a href="https://noverse.com/blog/2010/04/ipad-first-impressions/"&gt;iPad First Impressions&lt;/a&gt; - written after 24 hours of use&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Apr 12,2010&lt;/strong&gt; &lt;a href="https://noverse.com/blog/2010/04/its-been-one-week-since-you-looked-at-me/"&gt;It&amp;rsquo;s Been One Week Since You Looked at Me&lt;/a&gt; - after 1 week of use&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;May 15, 2010&lt;/strong&gt; &lt;a href="https://noverse.com/blog/2010/05/ipad-update-after-almost-a-month-traveling-with-it/"&gt;iPad Update - After Almost a Month Traveling With It&lt;/a&gt; - in Eastern Europe as my only computing device.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Back then, email, news, and twitter were primarily consumed on the iPad using the built-in mail app, using &lt;a href="http://itunes.apple.com/us/app/netnewswire-for-ipad/id363704172?mt=8"&gt;NetNewsWire&lt;/a&gt; and &lt;a href="http://itunes.apple.com/us/app/twitterrific-for-ipad/id359914600?mt=8"&gt;Twitterrific&lt;/a&gt;. Today, still the same, just using &lt;a href="http://itunes.apple.com/us/app/reeder-for-ipad/id375661689?mt=8"&gt;Reeder&lt;/a&gt; and the amazing &lt;a href="http://itunes.apple.com/us/app/tweetbot-twitter-client-personality/id498801050?mt=8"&gt;Tweetbot&lt;/a&gt; instead.&lt;/p&gt;</description></item><item><title>The Markdown File Extension</title><link>https://hiltmon.com/blog/2012/03/07/the-markdown-file-extension/</link><pubDate>Wed, 07 Mar 2012 11:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/07/the-markdown-file-extension/</guid><description>&lt;p&gt;The correct file extension for markdown files is:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;.markdown&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;That is all. No others.&lt;/p&gt;
&lt;p&gt;Make it so!&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Update: It seems the GitHub &lt;code&gt;.md&lt;/code&gt; extension is becoming canonical for those who prefer shorter file names. And Dr Drang &lt;a href="http://twitter.com/drdrang"&gt;@drdrang&lt;/a&gt; uses it. Who am I to argue. But I&amp;rsquo;ll be sticking with &lt;code&gt;.markdown&lt;/code&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I suppose I&amp;rsquo;d better say why:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We no longer live in a 8.3 world, so we should be using the most descriptive file extensions. It&amp;rsquo;s sad that all our operating systems rely on this stupid convention instead of the better creator code or a metadata model, but great that they now support longer file extensions.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Markdown is text but text is not markdown&lt;/strong&gt;. It&amp;rsquo;s a few seconds work to associate an application to edit text and another to edit markdown files, so use that. I use different editors for them, so its best to help the operating system here.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;(No longer applicable)&lt;/strong&gt; &lt;strike&gt;&lt;code&gt;.md&lt;/code&gt; (a.k.a the GitHub extension) could be mistaken for GCC Machine Description files, confusion is bad, don&amp;rsquo;t do it.&lt;/strike&gt;&lt;/li&gt;
&lt;li&gt;All the others are just shortened forms on the canonical &lt;code&gt;.markdown&lt;/code&gt;, so use the canon. Avoid &lt;code&gt;.mdown&lt;/code&gt;, &lt;code&gt;.mkdn&lt;/code&gt;, &lt;code&gt;.mdn&lt;/code&gt; or even the horrible &lt;code&gt;.mdtext&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;If you have made the mistake in the past of using the &lt;em&gt;wrong&lt;/em&gt; file extension, write a script to rename the old files now. Ok, now run it. Good. Problem solved.&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>You Are Not Ruthless Enough</title><link>https://hiltmon.com/blog/2012/03/05/you-are-not-ruthless-enough/</link><pubDate>Mon, 05 Mar 2012 20:57:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/05/you-are-not-ruthless-enough/</guid><description>&lt;p&gt;Chris Parker writing in &lt;a href="http://playswithfire.com/blog/2012/02/19/you-are-not-ruthless-enough/"&gt;You Are Not Ruthless Enough&lt;/a&gt; on being ruthless instead of lax when crafting software:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Being ruthless to yourself is having the discipline to become a better developer - not letting yourself get away with the easy or convenient. Being ruthless to your objects is having the discipline to write the API which separates their responsibilities effectively. The combination is what enables you to produce consistent results - to keep shipping, to keep creating great software, and to keep improving.&lt;/p&gt;</description></item><item><title>The 10 commandments of good source control management</title><link>https://hiltmon.com/blog/2012/03/05/the-10-commandments-of-good-source-control-management/</link><pubDate>Mon, 05 Mar 2012 20:36:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/05/the-10-commandments-of-good-source-control-management/</guid><description>&lt;p&gt;Troy Hunt lists the &lt;a href="http://www.troyhunt.com/2011/05/10-commandments-of-good-source-control.html"&gt;The 10 commandments of good source control management&lt;/a&gt; in his blog. I use &lt;a href="http://git-scm.com/"&gt;git&lt;/a&gt; and &lt;a href="https://github.com/hiltmon"&gt;github&lt;/a&gt; for &lt;em&gt;eveything&lt;/em&gt;, including this web site and blog.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Stop right now if you’re using VSS – just stop it!&lt;/li&gt;
&lt;li&gt;If it’s not in source control, it doesn’t exist&lt;/li&gt;
&lt;li&gt;Commit early, commit often and don’t spare the horses&lt;/li&gt;
&lt;li&gt;Always inspect your changes before committing&lt;/li&gt;
&lt;li&gt;Remember the axe-murderer when writing commit messages&lt;/li&gt;
&lt;li&gt;You must commit your own changes – you can’t delegate it&lt;/li&gt;
&lt;li&gt;Versioning your database isn’t optional&lt;/li&gt;
&lt;li&gt;Compilation output does not belong in source control&lt;/li&gt;
&lt;li&gt;Nobody else cares about your personal user settings&lt;/li&gt;
&lt;li&gt;Dependencies need a home too&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;None of these things are hard. Honestly, they’re really very basic: commit early and often, know what you’re committing and that it should actually be in VCS, explain your commits and make sure you do it yourself, don’t forget the databases and don’t forget the dependencies.&lt;/p&gt;</description></item><item><title>Is Antivirus Software a Waste of Money?</title><link>https://hiltmon.com/blog/2012/03/05/is-antivirus-software-a-waste-of-money/</link><pubDate>Mon, 05 Mar 2012 13:25:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/05/is-antivirus-software-a-waste-of-money/</guid><description>&lt;p&gt;Not astonishing at all in Wired&amp;rsquo;s &lt;a href="http://www.wired.com/wiredenterprise/2012/03/antivirus/"&gt;Is Antivirus Software a Waste of Money?&lt;/a&gt; by Robert McMillan:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;He doesn’t use antivirus software. As it turns out, many of his security-minded peers don’t use it either. The reason: If someone is going to try and attack them, they’re likely to use a new technique, one that most antivirus products will miss. “If you asked the average security expert whether they use antivirus or not,” Grossman says “a significant proportion of them do not.”&lt;/p&gt;</description></item><item><title>Presenting a Professional Indie Image</title><link>https://hiltmon.com/blog/2012/03/05/presenting-a-professional-indie-image/</link><pubDate>Mon, 05 Mar 2012 12:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/05/presenting-a-professional-indie-image/</guid><description>&lt;p&gt;In &lt;a href="https://noverse.com/blog/2012/03/presenting-a-professional-indie-image/"&gt;Presenting a Professional Indie Image&lt;/a&gt; on the &lt;a href="https://noverse.com"&gt;Noverse Blog&lt;/a&gt;, I present a checklist of all the things you need as an indie to present yourself to strangers via email with some credibility:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;You are what you do, not what you say. &amp;ndash; C.G. Jung&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;As my Hiltmon.com blog takes off, I am starting to get emails from indie developers promoting their wares. This is great, I love getting them, looking at new products and helping out where I can. But many of them fail on the basics of presenting themselves as the professionals they are.&lt;/p&gt;</description></item><item><title>Serious and Snark</title><link>https://hiltmon.com/blog/2012/03/05/serious-and-snark/</link><pubDate>Mon, 05 Mar 2012 11:18:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/05/serious-and-snark/</guid><description>&lt;p&gt;One of the key reasons I separated &lt;a href="https://hiltmon.com"&gt;hiltmon.com&lt;/a&gt; and &lt;a href="https://noverse.com"&gt;noverse.com&lt;/a&gt; at the start of this year was to separate my serious business voice from my larrakin personal voice.&lt;/p&gt;
&lt;p&gt;Last evening, on twitter, it seems some of the indie celebs are doing the same:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;@marcoarment @gte @gruber My only handicap is I am afraid to tarnish red-sweater with too many crazy posts, so I&amp;rsquo;m building a new blog&amp;hellip;
@danielpunkass, Twitter&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;David Barnard points out that your business should have a voice:&lt;/p&gt;</description></item><item><title>Thank you for a great February</title><link>https://hiltmon.com/blog/2012/03/01/thank-you-for-a-great-february/</link><pubDate>Thu, 01 Mar 2012 11:13:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/01/thank-you-for-a-great-february/</guid><description>&lt;p&gt;It&amp;rsquo;s been two months since I consolidated all my sites into this blog and started writing more. This blog just has a great February and I thought I&amp;rsquo;d share some stats.&lt;/p&gt;</description></item><item><title>The End of Advertising</title><link>https://hiltmon.com/blog/2012/03/01/the-end-of-advertising/</link><pubDate>Thu, 01 Mar 2012 11:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/01/the-end-of-advertising/</guid><description>&lt;p&gt;Daniel Jalkut, writing in his Red Sweater blog in &lt;a href="http://www.red-sweater.com/blog/2367/the-end-of-advertising"&gt;The End Of Advertising&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If I want to know what a lawnmower is, Google. If I want to know which lawnmower to buy? Amazon, or another site that strives to empower customers, not advertisers.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I think we all do this without knowing it.&lt;/p&gt;</description></item><item><title>TSA:Fail</title><link>https://hiltmon.com/blog/2012/03/01/tsa-fail/</link><pubDate>Thu, 01 Mar 2012 10:53:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/03/01/tsa-fail/</guid><description>&lt;p&gt;Steve Moore, an experienced ex-FBI Counterterrorist Agent writing in &lt;a href="http://gmancasefile.blogspot.com/2012/01/tsa-fail.html"&gt;TSA: Fail&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The Transportation Security Administration (TSA) was formed to ensure America’s freedom to travel.  Instead, they have made air travel the most difficult means of mass transit in the United States, at the same time failing to make air travel any more secure.&lt;/p&gt;
&lt;p&gt;TSA has never, (and I invite them to prove me wrong), foiled a terrorist plot or stopped an attack on an airliner. Ever.&lt;/p&gt;</description></item><item><title>Quick and Dirty Rails Performance Profiling</title><link>https://hiltmon.com/blog/2012/02/27/quick-and-dirty-rails-performance-profiling/</link><pubDate>Mon, 27 Feb 2012 22:46:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/27/quick-and-dirty-rails-performance-profiling/</guid><description>&lt;p&gt;When I find some Ruby on Rails or Rake tasks running slowly, I throw a quick and dirty profiler around the suspect code to find the bottlenecks with ease. Here&amp;rsquo;s how I do it, maybe this approach can help you too.&lt;/p&gt;</description></item><item><title>iPhone Data Plan Follies</title><link>https://hiltmon.com/blog/2012/02/25/iphone-data-plan-follies/</link><pubDate>Sat, 25 Feb 2012 10:25:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/25/iphone-data-plan-follies/</guid><description>&lt;p&gt;This week, three stories came to my attention regarding iPhone data plans and usage: man wins $850 from AT&amp;amp;T for data throttling, Siri is ruining your cellphone service, and its all about the camera.&lt;/p&gt;
&lt;h3 id="iphone-user-wins-850-in-throttling-case"&gt;iPhone user wins $850 in throttling case&lt;/h3&gt;
&lt;p&gt;Source: &lt;a href="http://news.yahoo.com/judge-awards-iphone-user-850-throttling-case-195042925.html"&gt;Judge awards iPhone user $850 in throttling case&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In short, so a guy who was sold the unlimited AT&amp;amp;T data plan gets throttled, sues AT&amp;amp;T in small claims court and wins some money. That&amp;rsquo;s the story presented.&lt;/p&gt;</description></item><item><title>Text Editing Fonts and Colors</title><link>https://hiltmon.com/blog/2012/02/23/text-editing-fonts-and-colors/</link><pubDate>Thu, 23 Feb 2012 20:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/23/text-editing-fonts-and-colors/</guid><description>&lt;p&gt;In &lt;a href="https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/"&gt;The Markdown Mindset&lt;/a&gt; I described how I use a variety of different editors to write Markdown in different contexts. I also use different fonts and color schemes to help me differentiate as I go along.&lt;/p&gt;
&lt;p&gt;For the record, everything &lt;em&gt;was&lt;/em&gt; done in &lt;strong&gt;Monaco&lt;/strong&gt; a few years ago.&lt;/p&gt;
&lt;h3 id="cousine"&gt;Cousine&lt;/h3&gt;
&lt;p&gt;Blogging is done in &lt;a href="http://bywordapp.com/"&gt;Byword&lt;/a&gt; using &lt;a href="http://www.google.com/webfonts/specimen/Cousine"&gt;Cousine&lt;/a&gt; 15pt and the light theme. It&amp;rsquo;s pretty close to &lt;a href="http://www.boldmonday.com/en/nitti_overview"&gt;Nitti Light&lt;/a&gt; as used in &lt;a href="http://www.iawriter.com/"&gt;iAWriter&lt;/a&gt;, but has variable sizing and is free from Google. I really like it in Byword because they render the font a tad large and it matches their cool anti-aliasing scheme.&lt;/p&gt;</description></item><item><title>Apple and Facebook</title><link>https://hiltmon.com/blog/2012/02/22/apple-and-facebook/</link><pubDate>Wed, 22 Feb 2012 14:05:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/22/apple-and-facebook/</guid><description>&lt;p&gt;Ben Parr in Cnet&amp;rsquo;s &lt;a href="http://news.cnet.com/8301-33617_3-57381092-276/apple-vs-facebook-why-users-are-the-losers/"&gt;Apple vs. Facebook: Why users are the losers&lt;/a&gt; gets it wrong!&lt;/p&gt;
&lt;p&gt;In the article, he postulates that Apple&amp;rsquo;s favorite social media service is Twitter and that Apple just hates Facebook (really?). He then explains there is no integration between Apple and Facebook because of some old Ping issues and some HP rubbish and some unsubstantiated hatred. Then he mentions that there actually is some Facebook integration, but its sandboxed in iPhoto.&lt;/p&gt;</description></item><item><title>The Markdown Mindset</title><link>https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/</link><pubDate>Mon, 20 Feb 2012 20:07:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/20/the-markdown-mindset/</guid><description>&lt;p&gt;Over the last year, I have moved all my non-code writing to &lt;a href="http://daringfireball.net/projects/markdown/"&gt;Markdown&lt;/a&gt; format. I don&amp;rsquo;t even have Microsoft Word installed on my laptop anymore. Here&amp;rsquo;s why:&lt;/p&gt;</description></item><item><title>The 4G deception</title><link>https://hiltmon.com/blog/2012/02/17/the-4g-deception/</link><pubDate>Fri, 17 Feb 2012 12:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/17/the-4g-deception/</guid><description>&lt;p&gt;These days, all the US mobile carriers are touting their allegedly hot new 4G networks, pushing people to upgrade their phones and get up to 10x faster mobile data speeds.&lt;/p&gt;
&lt;p&gt;Note the only single consumer benefit touted is a &lt;em&gt;possibly&lt;/em&gt; faster download time, it is not guaranteed.&lt;/p&gt;
&lt;p&gt;This whole thing is a deception. Here&amp;rsquo;s why.&lt;/p&gt;</description></item><item><title>All to Octopress</title><link>https://hiltmon.com/blog/2012/02/16/all-to-octopress/</link><pubDate>Thu, 16 Feb 2012 19:51:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/16/all-to-octopress/</guid><description>&lt;p&gt;I have moved all of my sites over to &lt;a href="https://github.com/octopress/octopress"&gt;Octopress&lt;/a&gt; by &lt;a href="https://github.com/imathis"&gt;Brandin Mathis&lt;/a&gt;. This means &lt;a href="https://hiltmon.com"&gt;hiltmon.com&lt;/a&gt;, &lt;a href="https://noverse.com"&gt;noverse.com&lt;/a&gt; and shukaico.com are all on the same platform.&lt;/p&gt;
&lt;p&gt;Why?&lt;/p&gt;</description></item><item><title>The App Store playing field</title><link>https://hiltmon.com/blog/2012/02/16/the-app-store-playing-field/</link><pubDate>Thu, 16 Feb 2012 18:52:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/16/the-app-store-playing-field/</guid><description>&lt;p&gt;Excellent article by Emeric Thoa in &lt;a href="http://thegamebakers.com/"&gt;The Game Bakers&lt;/a&gt; called &lt;a href="http://thegamebakers.com/money-and-the-app-store-a-few-figures-that-might-help-an-indie-developer.html"&gt;Money And The App Store: A Few Figures That Might Help An Indie Developer&lt;/a&gt; where he covers some myths about the app store and provides advice to indies trying to make it there.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m going to borrow his myths and reference my own experiences with my own apps.&lt;/p&gt;</description></item><item><title>Taking down my old iPhone Apps</title><link>https://hiltmon.com/blog/2012/02/13/taking-down-my-old-iphone-apps/</link><pubDate>Mon, 13 Feb 2012 10:16:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/13/taking-down-my-old-iphone-apps/</guid><description>&lt;p&gt;Its time.&lt;/p&gt;
&lt;p&gt;As of right now, my first two iPhone App Store apps, &lt;strong&gt;Emergency List&lt;/strong&gt; and &lt;strong&gt;Sights to See&lt;/strong&gt; are &lt;a href="https://noverse.com/blog/2012/02/end-of-life-sights-to-see-and-emergency-list/"&gt;no longer available for sale&lt;/a&gt;, anywhere. I have taken them down.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;These apps were developed two years ago, for old versions of the iPhone, and no longer represent the best we can do. We were learning iOS at the time, did not have access to the right designers and did the best we could back then. It got us the business we did the last 2 years. But they are not good enough to keep alive.&lt;/p&gt;</description></item><item><title>Fix instead of Blame</title><link>https://hiltmon.com/blog/2012/02/11/hiltmonism-fix-instead-of-blame/</link><pubDate>Sat, 11 Feb 2012 09:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/11/hiltmonism-fix-instead-of-blame/</guid><description>&lt;p&gt;&lt;em&gt;I was saving this one up for later, but events of this week prompted me to write it now.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Whenever something goes wrong, the first reaction of many people is to find someone else to blame. Arguments and vitriol erupt, things are said or smashed, as each team member tries to protect themselves from being blamed.&lt;/p&gt;
&lt;p&gt;I, for one, do not ever again want to be on a team that does this. Nor should you.&lt;/p&gt;</description></item><item><title>Speculative Developers</title><link>https://hiltmon.com/blog/2012/02/07/speculative-developers/</link><pubDate>Tue, 07 Feb 2012 09:19:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/07/speculative-developers/</guid><description>&lt;p&gt;I totally agree with the sentiment in David Sparks&amp;rsquo;s note &lt;a href="http://www.macsparky.com/blog/2012/2/6/speculative-developers.html"&gt;Speculative Developers&lt;/a&gt; where he compares developers who &amp;lsquo;barf&amp;rsquo; out volumes of bad apps versus developers who lovingly craft a single great app.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;They are, however, completely wrong. Their chance of hitting it big with two (or twenty) crappy apps instead of one good one is about the same as their chance of retiring with their lotto winnings. Infinitesimally small.&lt;/p&gt;
&lt;p&gt;If you want to develop apps, take your time and make something awesome. Make it fast. Make it beautiful. Make something you’re proud of. Don’t make 60 crappy apps: Make one really good one.&lt;/p&gt;</description></item><item><title>Design needs an Advocate</title><link>https://hiltmon.com/blog/2012/02/07/design-needs-an-advocate/</link><pubDate>Tue, 07 Feb 2012 08:58:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/07/design-needs-an-advocate/</guid><description>&lt;p&gt;Felicity Evans, writing in the Smashing Magazine article &lt;a href="http://www.smashingmagazine.com/2010/10/26/a-thousand-words-is-worth-a-picture-the-importance-of-justifying-your-designs/"&gt;When A Thousand Words Is Worth A Picture
&lt;/a&gt; writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Design is itself a process of deduction. It involves a number of decisions, both conscious and unconscious. During this process, the designer dismisses some ideas as unworkable and pursues others in order to arrive at a solution.&lt;/p&gt;
&lt;p&gt;But this process is completely opaque to the client. The client likely views the design not as the outcome of an in-depth process, but as a response to the brief, merely a visual representation of the constraints and considerations set before the designer. As the designer, part of your job is to educate the client and reveal the design process to them.&lt;/p&gt;</description></item><item><title>Structure First. Content Always.</title><link>https://hiltmon.com/blog/2012/02/07/structure-first-content-always/</link><pubDate>Tue, 07 Feb 2012 08:54:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/07/structure-first-content-always/</guid><description>&lt;p&gt;Mark Boulton makes good points in &lt;a href="http://www.markboulton.co.uk/journal/comments/structure-first-content-always"&gt;Structure First. Content Always.&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Let’s stop siloing content, shall we? We did it for a while when we were designing a largely brochureware, templated web. Now, we’re trying to move that silo from one end of the process to the other. Let’s focus on structure to begin with, and think about content all the time. There is a symbiotic relationship between content and design. One cannot thrive without the other.&lt;/p&gt;</description></item><item><title>Your idea sucks, now go do it anyway</title><link>https://hiltmon.com/blog/2012/02/03/your-idea-sucks/</link><pubDate>Fri, 03 Feb 2012 10:26:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/03/your-idea-sucks/</guid><description>&lt;p&gt;Lovely article by Jason Cohen, worth a read, called &lt;a href="http://blog.asmartbear.com/your-idea-sucks-now-go-do-it-anyway.html"&gt;Your idea sucks, now go do it anyway&lt;/a&gt; makes a great point on how the original idea for something usually evolves into something completely different, and success comes from embracing that evolution.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;“My idea isn’t good enough yet” explained a friend who is thinking of starting his own company. He’s waiting for the idea to be completely fleshed out before taking the leap.&lt;/p&gt;</description></item><item><title>Cheap iPhones, Wealthy Workers, Pick One?</title><link>https://hiltmon.com/blog/2012/02/03/cheap-iphones/</link><pubDate>Fri, 03 Feb 2012 10:19:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/03/cheap-iphones/</guid><description>&lt;p&gt;Randy Murray presents a different view in &lt;a href="http://whowritesforyou.com/2012/02/02/an-observer-from-shenzhen-thoughts-on-apples-recent-bad-press/"&gt;An Observer From Shenzhen—Thoughts on Apple’s Recent Bad Press&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Do workers in Foxconn factories who build products for Apple, Dell, HP, and others, work long hours at tedious tasks? Yes they do. Do they work for a fraction of what a worker in the US, Japan, or even Korea would? Yes they do.&lt;/p&gt;
&lt;p&gt;Are they being enslaved? Clearly, they are not.&lt;/p&gt;
&lt;p&gt;I suspect that a lot of the heat from the recent press comes from a lack of understanding about Chinese culture, their rapid change from manual agrarian life to high-tech manufacturing, and the significant differences and scales of our economies.&lt;/p&gt;</description></item><item><title>News Logic</title><link>https://hiltmon.com/blog/2012/02/03/news-logic/</link><pubDate>Fri, 03 Feb 2012 10:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/03/news-logic/</guid><description>&lt;p&gt;Paddy Harrington, writing in &lt;a href="http://www.fastcodesign.com/1668945/wanna-figure-out-if-your-work-is-any-good-think-like-a-news-editor"&gt;Wanna Figure Out If Your Product Is Any Good? Think Like A News Editor&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;At its heart, news logic is about value creation and the primacy of the design output instead of a story that traditionally gets applied after the fact. Where in the old days (i.e., five years ago), you designed something and then told a story about it in the hopes that it was a story worth telling, more and more of tomorrow’s design projects will have a story worth telling built into their hearts right from the get-go.&lt;/p&gt;</description></item><item><title>The paradox of choice</title><link>https://hiltmon.com/blog/2012/02/01/the-paradox-of-choice/</link><pubDate>Wed, 01 Feb 2012 10:41:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/01/the-paradox-of-choice/</guid><description>&lt;p&gt;&lt;strong&gt;People desire more choices, yet are unable to choose when the selection is greater, that is the paradox of choice.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.columbia.edu/~ss957/"&gt;Sheena Iyengar&lt;/a&gt;, a professor of business at Columbia University, conducted an interesting study in 1995. She set up a display of 24 samples of jam for customers to taste, and every few hours, she switched to a 6 sample set. The results were astonishing: 60% of customers stopped to try the jams when the selection was large versus 40% when small; and 30% of those that stopped when the selection was small purchased a jam, versus 3% when the selection was large.&lt;/p&gt;</description></item><item><title>Childlike Wonder</title><link>https://hiltmon.com/blog/2012/02/01/childlike-wonder/</link><pubDate>Wed, 01 Feb 2012 10:31:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/02/01/childlike-wonder/</guid><description>&lt;p&gt;Ever watch a child with an iPad? They seem to get it immediately, they prod and tap and swipe and rotate and in no time at all seem comfortable with it.&lt;/p&gt;
&lt;p&gt;Ever watch an adult with an iPad? They hold it, and stare at it, and, well, stare some more, and maybe wave a finger near it, but hesitate to touch. And after all that staring and hesitating, they remain uncomfortable with it.&lt;/p&gt;</description></item><item><title>Fragility of Free</title><link>https://hiltmon.com/blog/2012/01/29/fragility-of-free/</link><pubDate>Sun, 29 Jan 2012 11:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/29/fragility-of-free/</guid><description>&lt;p&gt;A great article by Ben Brooks called &lt;a href="http://brooksreview.net/2011/03/fragility-free/"&gt;Fragility of Free&lt;/a&gt;, well worth a read:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The fragility of free is a catchy term that describes what happens when the free money runs out. Or — perhaps more accurately — when the investors/founders/venture capitalists run out of cash, or patience, or both. Because at some point Twitter and all other companies have to make the move from ‘charity’ to ‘business’ — or, put another way, they have to make the move from spending tons of money to making slightly more money than they spend.&lt;/p&gt;</description></item><item><title>Test Driven Development Really Works</title><link>https://hiltmon.com/blog/2012/01/26/test-driven-development-really-works/</link><pubDate>Thu, 26 Jan 2012 11:09:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/26/test-driven-development-really-works/</guid><description>&lt;p&gt;In 2008, Nachiappan Nagappan, E. Michael Maximilien, Thirumalesh Bhat, and Laurie Williams wrote a paper called &lt;a href="http://research.microsoft.com/en-us/groups/ese/nagappan_tdd.pdf"&gt;“Realizing quality improvement through test driven development: results and experiences of four industrial teams“&lt;/a&gt; (PDF link). The abstract:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Test-driven development (TDD) is a software development practice that has been used sporadically for decades. With this practice, a software engineer cycles minute-by-minute between writing failing unit tests and writing implementation code to pass those tests. Test-driven development has recently re-emerged as a critical enabling practice of agile software development methodologies. However, little empirical evidence supports or refutes the utility of this practice in an industrial context. Case studies were conducted with three development teams at Microsoft and one at IBM that have adopted TDD. The results of the case studies indicate that the pre-release defect density of the four products decreased between 40% and 90% relative to similar projects that did not use the TDD practice. Subjectively, the teams experienced a 15–35% increase in initial development time after adopting TDD.&lt;/p&gt;</description></item><item><title>Where the light is better</title><link>https://hiltmon.com/blog/2012/01/26/where-the-light-is-better/</link><pubDate>Thu, 26 Jan 2012 10:30:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/26/where-the-light-is-better/</guid><description>&lt;blockquote&gt;
&lt;p&gt;A woman comes across a man crawling under a street lamp. &amp;ldquo;I&amp;rsquo;ve lost my car keys,&amp;rdquo; he explains.&lt;/p&gt;
&lt;p&gt;The woman tries to help the man find his keys. After a few minutes of searching, she asks &amp;ldquo;Where exactly did you drop them?&amp;rdquo;&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Down the street, next to my car.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Puzzled, she asks &amp;ldquo;Then why aren&amp;rsquo;t you looking over there?&amp;rdquo;&lt;/p&gt;
&lt;p&gt;&amp;ldquo;The light is better here.&amp;rdquo;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;People often look where it seems easiest or most convenient to look, rather than in a more difficult, but more correct place. Opinions regarding where the best place to look often comes down to &amp;ldquo;Where The Light Is Better&amp;rdquo;.&lt;/p&gt;</description></item><item><title>Less Wasting Time</title><link>https://hiltmon.com/blog/2012/01/26/less-wasting-time/</link><pubDate>Thu, 26 Jan 2012 10:18:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/26/less-wasting-time/</guid><description>&lt;p&gt;The sub-theme this week is on trying to find ways to improve developer happiness and to reduce unpleasant time wasters.&lt;/p&gt;
&lt;p&gt;Rafe Colburn in &lt;a href="http://rc3.org/2012/01/17/dont-order-your-team-to-work-more-hours/"&gt;Don’t order your team to work more hours&lt;/a&gt; talks about bosses who ask staff to work more hours:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Every time you’re tempted to do so, sit down with members of the team and ask them how many hours a week they spend dealing with stuff not related to shipping and work to make those things go away instead.&lt;/p&gt;</description></item><item><title>Trade Trade Secrets</title><link>https://hiltmon.com/blog/2012/01/24/trade-trade-secrets/</link><pubDate>Tue, 24 Jan 2012 09:38:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/24/trade-trade-secrets/</guid><description>&lt;p&gt;A brilliant essay by Danielle Fong called &lt;a href="http://einfall.wordpress.com/2012/01/23/trade-trade-secrets/"&gt;Trade Trade Secrets&lt;/a&gt;, very worth a read, covers everything from Intellectual Property, to explaining the differences between theft, transcription, transformation and inspiration, to how the law stifles all four of them.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The great danger of laws that ignore these is not that they will prevent theft, but that they will so heavyhandedly prevent transformation and inspiration: the engines of our entire civilization.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Just read it.&lt;/p&gt;</description></item><item><title>Understanding ACTA</title><link>https://hiltmon.com/blog/2012/01/23/understanding-acta/</link><pubDate>Mon, 23 Jan 2012 18:20:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/23/understanding-acta/</guid><description>&lt;p&gt;Lets see if I understand ACTA, the &lt;a href="http://en.wikipedia.org/wiki/Anti-Counterfeiting_Trade_Agreement"&gt;Anti-Counterfeiting Trade Agreement&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;THEM: It&amp;rsquo;s purpose is to create a legal standard for global intellectual property rights enforcement. &lt;br/&gt;&lt;em&gt;US: &lt;q&gt;Sounds good, it&amp;rsquo;s all so confusing, consistency may be nice.&lt;/q&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;THEM: The WTO already has 153 countries signed up to TRIPS which is a legal standard for global intellectual property rights enforcement, ACTA overrides it. &lt;br/&gt;&lt;em&gt;US: &lt;q&gt;Mmmbokaaay, do we need a new deal then?&lt;/q&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;THEM: It was &lt;em&gt;negotiated&lt;/em&gt; by a small group of countries, &lt;em&gt;excluding&lt;/em&gt; most countries, governments, trade organizations and any public forums. &lt;br/&gt;&lt;em&gt;US: &lt;q&gt;Negotiated? Excluding most players? Not good.&lt;/q&gt;&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Operations by Exception</title><link>https://hiltmon.com/blog/2012/01/23/hiltmonism-operations-by-exception/</link><pubDate>Mon, 23 Jan 2012 17:14:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/23/hiltmonism-operations-by-exception/</guid><description>&lt;p&gt;If we define operations as &amp;ldquo;a piece of organized and concerted activity involving a number of people&amp;rdquo;, then all businesses consist of a lot of operations. Back offices, accounting groups, processing units, operations departments, call them what you may, there are departments and departments of operations.&lt;/p&gt;
&lt;p&gt;In the &lt;a href="https://hiltmon.com/blog/2011/12/04/hiltmonism-automate-or-die/"&gt;Automate or Die&lt;/a&gt; Hiltmonism, I pointed out the need to automate as much of your process flow as you can. This means tackling operations, its hordes of people, its arcane processes, its political hierarchy and its bureaucratic inertia.&lt;/p&gt;</description></item><item><title>Bread crumbs in Day One</title><link>https://hiltmon.com/blog/2012/01/23/bread-crumbs-in-day-one/</link><pubDate>Mon, 23 Jan 2012 13:09:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/23/bread-crumbs-in-day-one/</guid><description>&lt;p&gt;I switched over to &lt;a href="http://dayoneapp.com/"&gt;Day One&lt;/a&gt; for journaling at the start of the year on a lark, and its become a core part of my process.&lt;/p&gt;
&lt;p&gt;Here are three things I do with it:&lt;/p&gt;
&lt;h3 id="1-bread-crumb-blog-posts"&gt;1. Bread crumb blog posts&lt;/h3&gt;
&lt;p&gt;I have updated the Octopress &lt;code&gt;rake&lt;/code&gt; file for &lt;code&gt;new_post&lt;/code&gt; to also bread crumb the new post in &lt;a href="http://dayoneapp.com/"&gt;Day One&lt;/a&gt; (and launch &lt;a href="http://bywordapp.com/"&gt;Byword&lt;/a&gt; for editing).&lt;/p&gt;
&lt;p&gt;Place this at the end of the &lt;code&gt;:new_post&lt;/code&gt; task (see below for details on the &lt;code&gt;LogToDayOne.rb&lt;/code&gt; script)&lt;/p&gt;</description></item><item><title>Developers, A Love Story</title><link>https://hiltmon.com/blog/2012/01/23/developers-a-love-story/</link><pubDate>Mon, 23 Jan 2012 12:58:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/23/developers-a-love-story/</guid><description>&lt;p&gt;By &lt;a href="https://twitter.com/#!/macdrifter"&gt;@macdrifter&lt;/a&gt;, &lt;a href="http://www.macdrifter.com/2012/01/developers-a-love-story/#fn:1"&gt;Developers, A Love Story&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;While browsing my Application folder on my Mac, I noticed something. I have a fondness for some apps that I rarely use. I’m just glad that I own them. I may not use them all but I feel good about the money I’ve spent.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I second the motion.&lt;/p&gt;</description></item><item><title>A Spellchecker Used to Be a Major Feat of Software Engineering</title><link>https://hiltmon.com/blog/2012/01/23/a-spellchecker-used-to-be-a-major-feat-of-software-engineering/</link><pubDate>Mon, 23 Jan 2012 12:52:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/23/a-spellchecker-used-to-be-a-major-feat-of-software-engineering/</guid><description>&lt;p&gt;A classic by James Hague entitled &lt;a href="http://prog21.dadgum.com/29.html"&gt;A Spellchecker Used to Be a Major Feat of Software Engineering&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Writing a spellchecker in the mid-1980s was a hard problem. Programmers came up with some impressive data compression methods in response to the spellchecker challenge. Likewise there were some very clever data structures for quickly finding words in a compressed dictionary. This was a problem that could take months of focused effort to work out a solution to.&lt;/p&gt;</description></item><item><title>Make a better product</title><link>https://hiltmon.com/blog/2012/01/18/make-a-better-product/</link><pubDate>Wed, 18 Jan 2012 13:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/18/make-a-better-product/</guid><description>&lt;p&gt;Rich Siegel, of &lt;a href="http://www.barebones.com/products/bbedit/index.html"&gt;BBEdit&lt;/a&gt; fame, in his blog article &lt;a href="http://rms2.tumblr.com/post/16065567721/bar-sopa"&gt;Bar Sopa&lt;/a&gt;, makes the right point on piracy:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;A good way to do this is to make a product for which more people want to pay a fair price than who are willing to steal it.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;and&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Take the money you would have spent on fighting piracy and use it to make a better product and/or service. Making more laws is not the answer.&lt;/p&gt;</description></item><item><title>Software is Eating the World</title><link>https://hiltmon.com/blog/2012/01/18/software-is-eating-the-world/</link><pubDate>Wed, 18 Jan 2012 09:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/18/software-is-eating-the-world/</guid><description>&lt;p&gt;Marc Andreessen, writing in the WSJ &lt;a href="http://online.wsj.com/article/SB10001424053111903480904576512250915629460.html"&gt;Why Software Is Eating The World&lt;/a&gt;, writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;More and more major businesses and industries are being run on software and delivered as online services—from movies to agriculture to national defense. Many of the winners are Silicon Valley-style entrepreneurial technology companies that are invading and overturning established industry structures.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The best evidence of Software eating the world, one that I think he missed, is that the Phone component on an iPhone or Android device &lt;em&gt;is an app&lt;/em&gt;, just another piece of software!&lt;/p&gt;</description></item><item><title>Stop SOPA and PIPA, a personal request</title><link>https://hiltmon.com/blog/2012/01/18/stop-sopa-and-pipa/</link><pubDate>Wed, 18 Jan 2012 08:27:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/18/stop-sopa-and-pipa/</guid><description>&lt;p&gt;This blog exists due to the confluence of a few cool things&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Freedom of Speech&lt;/li&gt;
&lt;li&gt;The Internet being a free and open platform that interconnects us all&lt;/li&gt;
&lt;li&gt;Me, having something to say and share&lt;/li&gt;
&lt;li&gt;You, having the option and the ability to read my writing&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In this blog I can express my opinions, emotions, teach, joke, and write about anything. You can find me in your browser or search engine. Confluence.&lt;/p&gt;</description></item><item><title>Hollywood Accounting and SOPA</title><link>https://hiltmon.com/blog/2012/01/17/hollywood-accounting/</link><pubDate>Tue, 17 Jan 2012 20:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/17/hollywood-accounting/</guid><description>&lt;p&gt;Hollywood Accounting refers to the opaque accounting practices used by the film, video and music industry to hyper-inflate expenditures such that their products &lt;em&gt;never&lt;/em&gt; make any profits so they can then screw artists out of fees and royalties due to them. See a friendlier definition in &lt;a href="http://en.wikipedia.org/wiki/Hollywood_accounting"&gt;wikipedia&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Basically by the terms of my contract, if a set on a WB movie burns down in Botswana, they can charge it against B5&amp;rsquo;s profits.
Michael Strazynski, Writer &amp;amp; Producer of Babylon 5&lt;/p&gt;</description></item><item><title>Google's Schmidt Solution to Android</title><link>https://hiltmon.com/blog/2012/01/16/googles-schmidt-solution-to-android/</link><pubDate>Mon, 16 Jan 2012 17:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/16/googles-schmidt-solution-to-android/</guid><description>&lt;p&gt;Following on to my earlier post on &lt;a href="https://hiltmon.com/blog/2012/01/16/how-google-failed-to-fix-the-mobile-market/"&gt;How Google Failed to Fix the Mobile Market&lt;/a&gt;, Jamie Lendino writes in &lt;a href="http://www.pcmag.com/article2/0,2817,2398783,00.asp"&gt;Hey, Google: Here&amp;rsquo;s What Fragmentation Means&lt;/a&gt; in PCMag:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Schmidt&amp;rsquo;s solution—that &amp;ldquo;if you don&amp;rsquo;t like it, you can buy the phone from someone else&amp;rdquo;—doesn&amp;rsquo;t work when you&amp;rsquo;re locked in a two-year contract, when there are over 300,000 apps in Android Market to test, and when a phone vendor goes back on its promise to provide an OS upgrade. How could you possibly know beforehand what&amp;rsquo;s going to happen?&lt;/p&gt;</description></item><item><title>Products define you</title><link>https://hiltmon.com/blog/2012/01/16/products-define-you/</link><pubDate>Mon, 16 Jan 2012 13:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/16/products-define-you/</guid><description>&lt;p&gt;Dustin Curtis makes an excellent point in his article skewering Visio entitled &lt;a href="http://dcurt.is/2012/01/09/consumer-electronics-entertainment-connected-scenarios/"&gt;The soul of a “consumer electronics entertainment connected scenario”&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;People stopped buying computers based on specifications and features years ago. All computers sold now are practically identical in functionality. Today, people are increasingly buying computers the same way they buy cars: to define themselves.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I own Apple products because I love fine software, I drink 12 year old scotch because I like fine drinks, I use a Nikon camera because I adore fine photography equipment and I celebrate at fancy restaurants because I really enjoy fine foods.&lt;/p&gt;</description></item><item><title>Newspapers, Paywalls, and Core Users</title><link>https://hiltmon.com/blog/2012/01/16/newspapers-paywalls-and-core-users/</link><pubDate>Mon, 16 Jan 2012 12:44:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/16/newspapers-paywalls-and-core-users/</guid><description>&lt;p&gt;Clay Shirky exposes the story behind &lt;a href="http://www.shirky.com/weblog/2012/01/newspapers-paywalls-and-core-users/"&gt;Newspapers, Paywalls, and Core Users&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As a heavy consumer of news, my biggest problem is finding good old-fashioned journalism in a world of spin, hype, agendas, placements and sponsored content. &lt;em&gt;I worry that we&amp;rsquo;re entering a world where the truth becomes what other people have paid for me to read because journalists have no other way to finance an honest service.&lt;/em&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This isn’t a problem with general-interest paywalls — it is the problem, widely understood before the turn of the century, and one to which there has never been a convincing answer. The easy part of treating digital news as a product is getting money from 2% of your audience. The hard part is losing 98% of your advertising base.&lt;/p&gt;</description></item><item><title>How Google failed to fix the mobile market</title><link>https://hiltmon.com/blog/2012/01/16/how-google-failed-to-fix-the-mobile-market/</link><pubDate>Mon, 16 Jan 2012 12:21:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/16/how-google-failed-to-fix-the-mobile-market/</guid><description>&lt;p&gt;MG Siegler, in his blog &lt;a href="http://parislemon.com"&gt;parislemon&lt;/a&gt;, wrote an excellent but badly titled article called &lt;a href="http://parislemon.com/post/15604811641/why-i-hate-android"&gt;Why I Hate Android&lt;/a&gt; on how Google blew its, and therefore our, chances at an equitable mobile phone market in the USA.&lt;/p&gt;
&lt;p&gt;Google wanted to give-away or sell Android phones unlocked in stores and allow consumers to then choose their carrier. Consumers could then get the best phones, a great operating system, all updates and choice in carriers, something the iPhone only gets us half way to.&lt;/p&gt;</description></item><item><title>It should only take you a few hours...</title><link>https://hiltmon.com/blog/2012/01/11/it-should-only-take-you-a-few-hours-dot-dot-dot/</link><pubDate>Wed, 11 Jan 2012 22:55:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/11/it-should-only-take-you-a-few-hours-dot-dot-dot/</guid><description>&lt;p&gt;It sure seems easy to make a table. Anyone can do it, right? Get 1 large flat rectangular piece of wood, 4 equally tall wooden poles, 4 nails and a hammer. Nail the 4 poles to each corner of the flat rectangular bit, and you have a table. Ta daaa!&lt;/p&gt;
&lt;p&gt;Now ask a carpenter to craft you a table. First they will spend time discussing the purpose and function of the table - indoor or outdoor, kitchen or dining room, for show or heavy use, what load does it need to bear. Then they will determine the materials to use - hard vs soft woods, laminate, plywood or railway sleepers. Then they will look at the aesthetics of the table - beveled edges, foot design, center or corner mounted legs. And when they finally get down to crafting the table, they spend a lot of time to mitre, mortise and dovetail all joints, install bracing points, use quality glues, dowels and screws, test its levelness, sand it flat, stain it, seal it, polish it and produce a table they are proud of. Seems a whole bunch more work, doesn&amp;rsquo;t it? It just a table, no?&lt;/p&gt;</description></item><item><title>Why patents are a big problem</title><link>https://hiltmon.com/blog/2012/01/11/why-patents-are-a-big-problem/</link><pubDate>Wed, 11 Jan 2012 09:39:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/11/why-patents-are-a-big-problem/</guid><description>&lt;p&gt;Brad Lindenberg nails it in &lt;a href="http://www.lindventures.com/blog/2012/01/11/why-patents-are-a-big-fucking-problem/"&gt;Why patents are a big f******* problem&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There has to be a correlation between ideas and execution otherwise those who can execute get shafted by those who cannot.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I don&amp;rsquo;t have a problem with patenting a physical thing that you make, I do have a problem patenting an idea, concept or discovery.&lt;/p&gt;</description></item><item><title>Always Be Selling</title><link>https://hiltmon.com/blog/2012/01/09/hiltmonism-always-be-selling/</link><pubDate>Mon, 09 Jan 2012 18:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/09/hiltmonism-always-be-selling/</guid><description>&lt;p&gt;There is no right time to start selling.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;If you have a great idea, you should be talking about it, you should be selling it.&lt;/li&gt;
&lt;li&gt;If you have an alpha level product, you should be finding beta testers, you should be selling it.&lt;/li&gt;
&lt;li&gt;If you have a beta level product, you should know what the final product will look like, you should be selling it.&lt;/li&gt;
&lt;li&gt;If the product is done, you should be selling it.&lt;/li&gt;
&lt;li&gt;If you meet someone, you should tell them what you are doing, you should be selling it.&lt;/li&gt;
&lt;li&gt;If you are in a bar, and are trying to meet girls, you should be selling it (in this case, yourself).&lt;/li&gt;
&lt;li&gt;When you run down the street for some milk, dress nice, you never know if you will bump into someone, you should be selling.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The most successful CEO&amp;rsquo;s are the one who are always selling their ideas and their companies. The most successful sports stars are always selling their sport, their team and their sponsor&amp;rsquo;s products. The most successful sales people are always selling their products. The most successful people picking up in bars are always selling. Those vacuous celebrities in the papers and on TV are always selling something.&lt;/p&gt;</description></item><item><title>Does money even exist anymore?</title><link>https://hiltmon.com/blog/2012/01/06/does-money-even-exist-anymore/</link><pubDate>Fri, 06 Jan 2012 10:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/06/does-money-even-exist-anymore/</guid><description>&lt;p&gt;Dave Caolo, writing in &lt;a href="http://52tiger.net/does-money-even-exist-anymore/"&gt;Does money even exist anymore?&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;More and more it seems like money is a myth.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I assume he does not live in the USA or Japan. Back in Australia in the 1990&amp;rsquo;s I certainly would have answered no, everything was BPay and a card swipe. In Japan in the early naughts, the answer was yes, they still hold on to cash as a primary form of exchange because its polite, but now do most smaller transactions via SUICA.&lt;/p&gt;</description></item><item><title>Bandwidth caps never necessary</title><link>https://hiltmon.com/blog/2012/01/06/bandwidth-caps-never-necessary/</link><pubDate>Fri, 06 Jan 2012 10:03:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/06/bandwidth-caps-never-necessary/</guid><description>&lt;p&gt;The carriers blame a small proportion of their users with hogging all the available bandwidth on their networks and thus explain why their networks are so slow. They then use this excuse to cap and throttle their users, us, and to charge us more per month.&lt;/p&gt;
&lt;p&gt;I call bullshit.&lt;/p&gt;
&lt;p&gt;There is plenty of backbone bandwidth available, its cheap and its getting cheaper, and carriers buy it in bulk. There is just no rational profit in it.&lt;/p&gt;</description></item><item><title>My Favorite Mac Apps of 2011</title><link>https://hiltmon.com/blog/2012/01/05/my-favorite-mac-apps-of-2011/</link><pubDate>Thu, 05 Jan 2012 18:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/05/my-favorite-mac-apps-of-2011/</guid><description>&lt;p&gt;I&amp;rsquo;ve compiled a list of my favorite Mac apps for 2011. Just wanted to mention the ones that make my life that much easier. I am intentionlly excluding all built-in applications or anything from Apple, such as &lt;a href="http://www.apple.com/iwork/"&gt;iWork&lt;/a&gt;, &lt;a href="http://www.apple.com/ilife/"&gt;iLife&lt;/a&gt; and &lt;a href="http://www.apple.com/aperture/"&gt;Aperture&lt;/a&gt; which are mainstays.&lt;/p&gt;
&lt;p&gt;Some you may know, some you may not.&lt;/p&gt;</description></item><item><title>Misconceptions About iOS Multitasking</title><link>https://hiltmon.com/blog/2012/01/02/misconceptions-about-ios-multitasking/</link><pubDate>Mon, 02 Jan 2012 20:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/02/misconceptions-about-ios-multitasking/</guid><description>&lt;p&gt;There is a meme going aroung that you need to terminate applications on your iOS device to prevent the device from slowing down, running out of memory or chewing up battery.&lt;/p&gt;
&lt;p&gt;Rubbish.&lt;/p&gt;
&lt;p&gt;In iOS, &lt;em&gt;if it aint on the screen or playing music, it aint running and it aint using memory or battery&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Fraser Spiers has the &lt;a href="http://speirs.org/blog/2012/1/2/misconceptions-about-ios-multitasking.html"&gt;technical details&lt;/a&gt; if you want them &lt;a href="http://speirs.org/blog/2012/1/2/misconceptions-about-ios-multitasking.html"&gt;here&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>The coming war on general computation</title><link>https://hiltmon.com/blog/2012/01/02/the-coming-war-on-general-computation/</link><pubDate>Mon, 02 Jan 2012 19:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2012/01/02/the-coming-war-on-general-computation/</guid><description>&lt;p&gt;Excellent talk by Cory Doctorow on &lt;a href="http://www.youtube.com/watch?v=HUEvRyemKSg"&gt;The coming war on general computation&lt;/a&gt;, transcript &lt;a href="https://github.com/jwise/28c3-doctorow/blob/master/transcript.md"&gt;here&lt;/a&gt;, talking about the war between copyright holders and reality, and why it needs to be fought:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;So when I get into a car &amp;ndash; a computer I put my body into &amp;ndash; with my hearing aid &amp;ndash; a computer I put inside my body &amp;ndash; I want to know that these technologies are not designed to keep secrets from me, and to prevent me from terminating processes on them that work against my interests.&lt;/p&gt;</description></item><item><title>The definition of open</title><link>https://hiltmon.com/blog/2011/12/30/the-definition-of-open/</link><pubDate>Fri, 30 Dec 2011 18:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/30/the-definition-of-open/</guid><description>&lt;p&gt;The tweet that &lt;em&gt;was&lt;/em&gt;, then &lt;em&gt;was not&lt;/em&gt;, then &lt;em&gt;was&lt;/em&gt; again, saved for claim chowder:&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2011/12/30/the-definition-of-open/images/arubin-tweet.png" width="528" height="191"&gt;
&lt;/figure&gt;

&lt;p&gt;For most of 2011, while this tweet &lt;em&gt;was not&lt;/em&gt;, the git repo of Android was &lt;em&gt;2 versions behind&lt;/em&gt;.&lt;/p&gt;</description></item><item><title>Get it brilliant</title><link>https://hiltmon.com/blog/2011/12/30/get-it-brilliant/</link><pubDate>Fri, 30 Dec 2011 18:20:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/30/get-it-brilliant/</guid><description>&lt;p&gt;I wrote a post in September 2011 in the &lt;a href="https://noverse.com/blog/"&gt;Noverse Blog&lt;/a&gt; called &lt;a href="https://noverse.com/blog/2011/09/get-it-brilliant/"&gt;Get It Brilliant&lt;/a&gt; on the what you really need to achieve to create amazing software products. They are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Get it &lt;strong&gt;Designed&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Get it &lt;strong&gt;Architected&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Get it &lt;strong&gt;Working&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Get it &lt;strong&gt;Right&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Get it &lt;strong&gt;Fast&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Get it &lt;strong&gt;Intuitive&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Get it &lt;strong&gt;Out&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Looking back, it sure was not one of my finest writing efforts, but the concepts are important.&lt;/p&gt;
&lt;p&gt;Since that article was written, I have worked on two products that you will see early next year. Both are properly designed and architected. Both are working, right, fast and intuitive. All that&amp;rsquo;s left is to do is ship.&lt;/p&gt;</description></item><item><title>The difference between drivers and passengers</title><link>https://hiltmon.com/blog/2011/12/30/the-difference-between-drivers-and-passengers/</link><pubDate>Fri, 30 Dec 2011 18:12:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/30/the-difference-between-drivers-and-passengers/</guid><description>&lt;p&gt;Douglas Rushkoff, Author of &lt;a href="http://www.amazon.com/Program-Be-Programmed-Commands-Digital/dp/1935928155"&gt;Program or Be Programmed&lt;/a&gt;, in an interview on &lt;a href="http://www.readwriteweb.com/hack/2011/05/douglas-rushkoff-interview.php"&gt;ReadWriteWeb&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;A lot of us our too willing to accept roles as consumers in society. I understand the economic reasons for that, but I don&amp;rsquo;t think it leads to a fulfilling life or a sustainable community. The best way out of this is to deconstruct what you&amp;rsquo;re consuming, or better yet to become a creator yourself.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I create software. I write a blog. I&amp;rsquo;m good at one of these things. And I am always the driver.&lt;/p&gt;</description></item><item><title>Creating games in genres you hate</title><link>https://hiltmon.com/blog/2011/12/30/creating-games-in-genres-you-hate/</link><pubDate>Fri, 30 Dec 2011 18:05:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/30/creating-games-in-genres-you-hate/</guid><description>&lt;p&gt;Ben Kuchera, writing in Ars Technical in &lt;a href="http://arstechnica.com/gaming/news/2011/12/spelltower-on-ios-shows-the-power-of-creating-games-in-genres-you-hate.ars"&gt;SpellTower on iOS shows power of creating games in genres you hate&lt;/a&gt; resonates with me because I do &lt;em&gt;dislike&lt;/em&gt; word games, yet I really enjoy &lt;a href="http://spelltower.com/"&gt;SpellTower&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;It&amp;rsquo;s not just about knowing words, it&amp;rsquo;s about knowing when and where to use words,&amp;rdquo; Gage explained. &amp;ldquo;The difficulty also gives the game a weight that I don&amp;rsquo;t think games like Bookworm have. Because it has constant micro goals—such as don&amp;rsquo;t let this column touch the top, bring down this column so I can make words later, or clear out some blank tile—players&amp;rsquo; moves always have importance to them.&amp;rdquo;&lt;/p&gt;</description></item><item><title>Lodsys still trolling</title><link>https://hiltmon.com/blog/2011/12/30/lodsys-still-trolling/</link><pubDate>Fri, 30 Dec 2011 17:40:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/30/lodsys-still-trolling/</guid><description>&lt;p&gt;Jacqui Cheng over at Ars Technica reminds us that &lt;a href="http://arstechnica.com/apple/news/2011/12/ios-developers-go-into-2012-still-slugging-against-patent-troll-lodsys.ars?utm_source=rss&amp;amp;utm_medium=rss&amp;amp;utm_campaign=rss"&gt;iOS developers go into 2012 still battling patent troll Lodsys&lt;/a&gt;. Of course she interviewed &lt;a href="http://mur.mu.rs"&gt;Mike Lee&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;We analyzed the ubiquitous criminal nature of these companies,&amp;rdquo; Lee told Ars. &amp;ldquo;There is nothing you can do to prevent yourself from being targeted, regardless of platform, and regardless of how careful you are, because this is not patent infringement, it is simple extortion, and it is worldwide.&amp;rdquo;&lt;/p&gt;</description></item><item><title>Bogus copyright claims under SOPA</title><link>https://hiltmon.com/blog/2011/12/30/bogus-copyright-claims-under-sopa/</link><pubDate>Fri, 30 Dec 2011 17:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/30/bogus-copyright-claims-under-sopa/</guid><description>&lt;p&gt;Mike Masnyck, writing in Techdirt asks a valid question: &lt;a href="http://www.techdirt.com/articles/20111229/03234617223/shouldnt-their-be-significant-punishment-bogus-copyright-claims-that-kill-companies.shtml"&gt;Shouldn&amp;rsquo;t There Be Significant Punishment For Bogus Copyright Claims That Kill Companies?&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If enforcing their rights involves completely destroying someone else&amp;rsquo;s company, then, as Goldman notes, shouldn&amp;rsquo;t it be difficult?&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Fighting a copyright claim costs at least 1 million dollars in legal fees, &lt;em&gt;whether or not the claim is valid&lt;/em&gt;. Companies with deep pockets can and do use bogus claims to road-kill new competitors. For example, Luma Labs and their &lt;a href="http://luma-labs.com/blogs/news/4540122-an-open-letter-to-our-customers-past-and-future"&gt;amazing camera straps&lt;/a&gt;. How can we stop this?&lt;/p&gt;</description></item><item><title>Not secret subpoena</title><link>https://hiltmon.com/blog/2011/12/30/not-secret-subpoena/</link><pubDate>Fri, 30 Dec 2011 17:23:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/30/not-secret-subpoena/</guid><description>&lt;p&gt;Kudos to Twitter this week for not giving in and and responding to a Subpoena for user records without notifying the users in question. Twitter, according to their privacy policy, always notifies users when they can:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;However, to help users protect their rights, it is our policy to notify our users about law enforcement and governmental requests for their information, unless we are prevented by law from doing so.&amp;rdquo;
Matt Graves, Twitter&lt;/p&gt;</description></item><item><title>Ridiculous Gizmodo</title><link>https://hiltmon.com/blog/2011/12/29/ridiculous-gizmodo/</link><pubDate>Thu, 29 Dec 2011 12:42:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/29/ridiculous-gizmodo/</guid><description>&lt;p&gt;Following on to an earlier post called &lt;a href="https://hiltmon.com/blog/2011/11/28/the-readable-future/"&gt;The Readable Future&lt;/a&gt;, here is &lt;a href="http://gizmodo.com/"&gt;Gizmodo&amp;rsquo;s&lt;/a&gt; insanity:&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://hiltmon.com/blog/2011/12/29/ridiculous-gizmodo/images/gizmodo.png" width="500" height="339"&gt;
&lt;/figure&gt;

&lt;p&gt;Less than 10% of the page contains the article!&lt;/p&gt;</description></item><item><title>Reviews should advise</title><link>https://hiltmon.com/blog/2011/12/28/reviews-should-advise/</link><pubDate>Wed, 28 Dec 2011 18:37:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/28/reviews-should-advise/</guid><description>&lt;p&gt;Matt &amp;ldquo;Legend&amp;rdquo; Gemmell, writing in &lt;a href="http://mattgemmell.com/2011/12/28/opinions-in-journalism/"&gt;Opinions in Journalism&lt;/a&gt; summarizes and continues recent internet discussions on how Tech Journalism has become too bland, impartial and hedged:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;hellip;as readers, we’re often looking for insight to help with a buying decision, rather than raw information.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;As Ben Brooks sees it in &lt;a href="http://brooksreview.net/2011/12/apple-sissling/"&gt;Family Apple&lt;/a&gt; (via &lt;a href="http://www.woooster.co.uk/post/14922514968/family-apple"&gt;Hugh Sissling&lt;/a&gt;):&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;More surprising is that no one asked me which phone or computer to get — they just wanted to know which iPad to get and if they should wait for the next iPad.&lt;/p&gt;</description></item><item><title>Textmate 2 Tips</title><link>https://hiltmon.com/blog/2011/12/28/textmate-2-tips/</link><pubDate>Wed, 28 Dec 2011 18:31:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/28/textmate-2-tips/</guid><description>&lt;p&gt;For those of you who, like me, have already switched to Textmate 2 alpha as a daily programmer&amp;rsquo;s editor, check out &lt;a href="http://tm2tips.tumblr.com/"&gt;Textmate 2 Tips&lt;/a&gt; on tumblr. Lots of useful tips there.&lt;/p&gt;
&lt;p&gt;Its just so nice to have &lt;a href="http://macromates.com/"&gt;Textmate&lt;/a&gt; being updated again. Already added the RailsCasts theme, SCSS and Marked bundles manually, and still getting used to the new File Browser.&lt;/p&gt;</description></item><item><title>Is America Giving Up on the Future?</title><link>https://hiltmon.com/blog/2011/12/26/is-america-giving-up-on-the-future/</link><pubDate>Mon, 26 Dec 2011 15:23:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/26/is-america-giving-up-on-the-future/</guid><description>&lt;p&gt;Umair Haque, writing in the Harvard Business Review in &lt;a href="http://blogs.hbr.org/haque/2011/09/is_america_giving_up_on_the_fu.html"&gt;Is America Giving Up on the Future?&lt;/a&gt; writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;That the wealth of a nation isn&amp;rsquo;t merely the sum of its tradable riches; that a thriving marketplace isn&amp;rsquo;t a big box store; that industrial output matters less than human outcomes; that work that matters yields accomplishments that endure; that Goldman Sachs probably shouldn&amp;rsquo;t be as profitable as Apple, because builders should earn more than shufflers; that the worth of an enduring achievement is denominated in more than mere profit; that how we feel about our lives is worth more than how enviably glamorous they look; that tomorrow matters more — not less — than today.&lt;/p&gt;</description></item><item><title>Programming polytheism</title><link>https://hiltmon.com/blog/2011/12/26/programming-polytheism/</link><pubDate>Mon, 26 Dec 2011 12:51:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/26/programming-polytheism/</guid><description>&lt;p&gt;One of the worst things a programmer can be is a monotheist, a single language and platform developer. Whether you are a corporate programming drone, or a hot-shot indie, you should be a software polytheist.&lt;/p&gt;
&lt;p&gt;It all starts with recruiters and job ads. &amp;ldquo;Looking for a C# programmer with 5 years experience&amp;rdquo;, &amp;ldquo;Looking for a Java back-end developer who understands spring and hibernate&amp;rdquo;, &amp;ldquo;Looking for a COBOL programmer to keep our ancient accounting system running&amp;rdquo;. These are jobs requiring a single skill, for a single project for a single line of business. Don&amp;rsquo;t take them. The employer will lock you in to that skill and project, you&amp;rsquo;ll start by having fun in development and end up spending a career bored and unappreciated in maintenance. And when the product dies, so does your career.&lt;/p&gt;</description></item><item><title>2011 Platforms - Ruby on Rails</title><link>https://hiltmon.com/blog/2011/12/26/2011-platforms-ruby-on-rails/</link><pubDate>Mon, 26 Dec 2011 11:55:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/26/2011-platforms-ruby-on-rails/</guid><description>&lt;p&gt;&lt;em&gt;Part 2 of the platforms I used in 2011 to make products. See &lt;a href="https://hiltmon.com/blog/2011/12/26/2011-platforms-objective-c-and-ios/"&gt;Part 1 - Objective-C and iOS&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The second half of 2011 was spent developing two web app products using Ruby on Rails. And what a joy this platform is to use.&lt;/p&gt;</description></item><item><title>2011 Platforms - Objective-C and iOS</title><link>https://hiltmon.com/blog/2011/12/26/2011-platforms-objective-c-and-ios/</link><pubDate>Mon, 26 Dec 2011 11:54:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/26/2011-platforms-objective-c-and-ios/</guid><description>&lt;p&gt;&lt;em&gt;Part 1 of the platforms I used in 2011 to make products. See &lt;a href="https://hiltmon.com/blog/2011/12/26/2011-platforms-ruby-on-rails/"&gt;Part 2 - Ruby on Rails&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I spent the first half of 2011 writing iOS applications in Objective-C. It&amp;rsquo;s not my first experience with Objective-C, I wrote a Mac app in 2008, and two iOS apps in 2010, so these notes are really about my entire experience with the technology.&lt;/p&gt;</description></item><item><title>The whole world is watching while the USA collapses</title><link>https://hiltmon.com/blog/2011/12/23/the-whole-world-is-watching-while-the-usa-collapses/</link><pubDate>Fri, 23 Dec 2011 11:14:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/23/the-whole-world-is-watching-while-the-usa-collapses/</guid><description>&lt;p&gt;On Reddit a few days ago, &lt;em&gt;spiderfarmer&lt;/em&gt; put up a post entitled &lt;a href="http://www.reddit.com/r/politics/comments/nhb6f/the_whole_world_is_watching_while_the_usa/"&gt;The whole world is watching while the USA collapses&lt;/a&gt;. I have reproduced it here in case it gets lost, but I thoroughly recommend you look through the comments thread. In short, based on the comments alone, he ain&amp;rsquo;t wrong.&lt;/p&gt;</description></item><item><title>You're the product</title><link>https://hiltmon.com/blog/2011/12/23/youre-the-product/</link><pubDate>Fri, 23 Dec 2011 11:04:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/23/youre-the-product/</guid><description>&lt;p&gt;Alicia Eler in &lt;a href="http://www.readwriteweb.com/archives/facebook_wants_you_to_know_all_about_its_ads.php"&gt;Facebook Wants You To Know All About Its Ads&lt;/a&gt;, via Read Write Web, writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If you pay for a product, you&amp;rsquo;re a customer. If you don&amp;rsquo;t, you&amp;rsquo;re the product.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Priceless.&lt;/p&gt;</description></item><item><title>The cartoon villain behind SOPA</title><link>https://hiltmon.com/blog/2011/12/23/the-cartoon-villain-behind-sopa/</link><pubDate>Fri, 23 Dec 2011 10:59:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/23/the-cartoon-villain-behind-sopa/</guid><description>&lt;p&gt;Kevin Fogarty, writing in &lt;a href="http://m.itworld.com/security/234685/best-idea-2011-give-control-internet-content-group-sued-dead-grandmother"&gt;Best idea of 2011: Give control of Internet content to group that sued a dead grandmother&lt;/a&gt; via IT World, goes after the backers of SOPA, especially the RIAA.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The anti-piracy enforcement arm of the RIAA has, for almost a decade, been so aggressive about investigating, suing and attempting to prosecute those it accused of illegally downloading movies or music that it was sued by illegal investigatory practices and invasion of privacy, for fraud, conspiracy and extortion, deceptive business practices and violation of the RICO statutes normally used to prosecute bosses of organized crime families.&lt;/p&gt;</description></item><item><title>One version of the truth</title><link>https://hiltmon.com/blog/2011/12/23/hiltmonism-one-version-of-the-truth/</link><pubDate>Fri, 23 Dec 2011 10:52:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/23/hiltmonism-one-version-of-the-truth/</guid><description>&lt;p&gt;Its not uncommon for different software systems in a company to contain the &lt;em&gt;same kinds&lt;/em&gt; information as others. However, it is &lt;em&gt;very&lt;/em&gt; uncommon for this information to be the &lt;em&gt;same&lt;/em&gt; across all systems. Often the accounting system has different information than the trading system, for example. Inventory systems often have different stock levels than sales systems.&lt;/p&gt;
&lt;p&gt;The impact of this is that traders trade on what they know, accountants report profit on what they know, and sales happens on what they know. Since all have different information, none of them has the &lt;em&gt;correct&lt;/em&gt; information.&lt;/p&gt;</description></item><item><title>Smoke Screening</title><link>https://hiltmon.com/blog/2011/12/21/smoke-screening/</link><pubDate>Wed, 21 Dec 2011 17:54:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/21/smoke-screening/</guid><description>&lt;p&gt;Charles C Mann writing on &lt;a href="http://www.vanityfair.com/culture/features/2011/12/tsa-insanity-201112"&gt;Smoke Screening&lt;/a&gt; in Vanity Fair, spends an afternoon at the airport with Bruce Schneier looking at the TSA in action and asks whether any of it actually makes is safer? His conclusion is obviously no, locked cockpit doors and aware passengers are the only things that work. Even the $1.2b worth of scanners and another $1.2b in air marshals are totally useless.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;We’re spending billions upon billions of dollars doing this—and it is almost entirely pointless. Not only is it not done right, but even if it was done right it would be the wrong thing to do.
Bruce Schneier&lt;/p&gt;</description></item><item><title>Adam Savage on SOPA</title><link>https://hiltmon.com/blog/2011/12/21/adam-savage-on-sopa/</link><pubDate>Wed, 21 Dec 2011 16:29:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/21/adam-savage-on-sopa/</guid><description>&lt;p&gt;Adam Savage from Mythbusters writing in &lt;a href="http://www.popularmechanics.com/science/mythbusters/articles/mythbuster-adam-savage-sopa-could-destroy-the-internet-as-we-know-it-6620300"&gt;SOPA Could Destroy the Internet as We Know It&lt;/a&gt; at Popular Mechanics (sorry about their ads folks).&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The Internet is probably the most important technological advancement of my lifetime. Its strength lies in its open architecture and its ability to allow a framework where all voices can be heard. Like the printing press before it (which states also tried to regulate, for centuries), it democratizes information, and thus it democratizes power. If we allow Congress to pass these draconian laws, we&amp;rsquo;ll be joining nations like China and Iran in filtering what we allow people to see, do, and say on the Web.&lt;/p&gt;</description></item><item><title>The missing feature</title><link>https://hiltmon.com/blog/2011/12/19/the-missing-feature/</link><pubDate>Mon, 19 Dec 2011 23:07:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/19/the-missing-feature/</guid><description>&lt;p&gt;My new product seems to be missing a key feature. One that every client so far has asked about. They are almost incredulous that I do not provide it. Come to think of it, none of the software created in my career, that&amp;rsquo;s 21 years folks, has ever had this feature. The feature I am talking about is &lt;em&gt;export to Excel&lt;/em&gt; for users*.&lt;/p&gt;
&lt;p&gt;No &lt;em&gt;export to Excel&lt;/em&gt;? Am I nuts. What kind of software does not have an &lt;em&gt;export to Excel&lt;/em&gt; function? You &lt;em&gt;&lt;strong&gt;need&lt;/strong&gt; export to Excel&lt;/em&gt;, don&amp;rsquo;t you?&lt;/p&gt;
&lt;p&gt;No you do not, you don&amp;rsquo;t even want it.&lt;/p&gt;</description></item><item><title>Developer and Power Tools</title><link>https://hiltmon.com/blog/2011/12/19/developer-and-power-tools/</link><pubDate>Mon, 19 Dec 2011 18:21:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/19/developer-and-power-tools/</guid><description>&lt;p&gt;Justin Williams has a pretty good list of tools he uses both for daily use and for development in &lt;a href="http://carpeaqua.com/2011/12/19/my-ultimate-developer-and-power-users-tool-list-for-mac-os-x-2011-edition-/"&gt;My Ultimate Developer and Power Users Tool List for Mac OS X (2011 Edition)&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I have quite a few of the same, but several key differences:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Acorn&lt;/em&gt; I have, but use Photoshop, Illustrator and &lt;a href="http://www.pixelmator.com/"&gt;Pixelmator&lt;/a&gt; a lot more&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.barebones.com/products/bbedit/"&gt;BBedit&lt;/a&gt; is open all the time, but I use &lt;a href="http://macromates.com/"&gt;TextMate&lt;/a&gt; for programming (already switched to TextMate 2 Alpha)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.ideaswarm.com/AppViz2.html"&gt;Appviz&lt;/a&gt; instead of &lt;em&gt;Appfigures&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;The great &lt;a href="http://www.kaleidoscopeapp.com/"&gt;Kaleidoscope&lt;/a&gt; for file compares instead of &lt;em&gt;Changes&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Tossing up between &lt;a href="http://panic.com/coda/"&gt;Coda&lt;/a&gt; (my old favorite) and &lt;a href="http://macrabbit.com/espresso/"&gt;Espresso 2&lt;/a&gt; (because I think the old &lt;em&gt;CSSEdit&lt;/em&gt; was the best)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://skitch.com/"&gt;Skitch&lt;/a&gt; for snapping instead of &lt;em&gt;LittleSnapper&lt;/em&gt; (use only for storing well designed web pages, though thinking of going back now that Evernote owns Skitch)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://flexibits.com/fantastical"&gt;Fantastical&lt;/a&gt; instead of &lt;em&gt;Today&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;New to me:&lt;/p&gt;</description></item><item><title>If it ain't broke, break it</title><link>https://hiltmon.com/blog/2011/12/17/hiltmonism-if-it-aint-broke/</link><pubDate>Sat, 17 Dec 2011 12:22:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/17/hiltmonism-if-it-aint-broke/</guid><description>&lt;p&gt;You have all heard the phrase &amp;ldquo;If it ain&amp;rsquo;t broke, don&amp;rsquo;t fix it.&amp;rdquo;. The implication being that if something is working adequately well, leave it alone.&lt;/p&gt;
&lt;p&gt;Unacceptable!&lt;/p&gt;
&lt;p&gt;If this were the case, we&amp;rsquo;d still be using stone axes and living in caves, as we did for 98% of the past 100,000 years. The reason we have metal axes and houses, electricity and cars and computers and internet is because there were people out there who felt it was broke, and they found new and interesting ways to fix it.&lt;/p&gt;</description></item><item><title>Bring in the nerds</title><link>https://hiltmon.com/blog/2011/12/17/bring-in-the-nerds/</link><pubDate>Sat, 17 Dec 2011 12:06:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/17/bring-in-the-nerds/</guid><description>&lt;p&gt;Joshua Kopstein, writing in &lt;a href="http://motherboard.vice.com/2011/12/16/dear-congress-it-s-no-longer-ok-to-not-know-how-the-internet-works"&gt;Dear Congress, It&amp;rsquo;s No Longer OK To Not Know How The Internet Works&lt;/a&gt;, getting angry with Congress on the SOPA hearings:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;It’d be one thing if legitimate technical questions directed at the bill’s supporters weren’t met with either silence or veiled accusations that the other side was sympathetic to piracy. Yet here we are with a group of elected officials openly supporting a bill they can’t explain, and having the temerity to suggest there’s no need to “bring in the nerds” to suss out what’s actually on it.&lt;/p&gt;</description></item><item><title>On the topic of talent</title><link>https://hiltmon.com/blog/2011/12/16/on-the-topic-of-talent/</link><pubDate>Fri, 16 Dec 2011 08:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/16/on-the-topic-of-talent/</guid><description>&lt;p&gt;Jorge Quinteros, writing &lt;a href="http://folio.jorgeq.com/post/14221217462/on-the-topic-of-talent"&gt;on the Topic of Talent&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Talent is the natural ability to do something for which people may think there’s not much effort put into accomplishing something and that’s simply a result of people not always being previewed to what you go through to do what you do.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;rsquo;m a very good software designer. Proof? I have a long track record of excellent software. Those who know me and my work invariably describe me as talented. Therefore, &lt;em&gt;ipso facto&lt;/em&gt;, I must be a good software designer because I am talented. &lt;strong&gt;Rubbish&lt;/strong&gt;! &lt;em&gt;Bunkum and tummyrot!&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Speculative work hurts</title><link>https://hiltmon.com/blog/2011/12/16/speculative-work-hurts/</link><pubDate>Fri, 16 Dec 2011 08:36:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/16/speculative-work-hurts/</guid><description>&lt;p&gt;&lt;a href="https://twitter.com/#!/sdw"&gt;Sebastiaan de With&lt;/a&gt;, a really great designer, posts on Facebook of all places on &lt;a href="http://www.facebook.com/sdewith/posts/213110135435417"&gt;how speculative work hurts the design industry at large&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Happens in software too, where clients expect you to plan, document and design the software before entering into a contract.&lt;/p&gt;</description></item><item><title>Machine-driven</title><link>https://hiltmon.com/blog/2011/12/16/machine-driven/</link><pubDate>Fri, 16 Dec 2011 08:32:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/16/machine-driven/</guid><description>&lt;p&gt;Via &lt;a href="http://log.scifihifi.com/"&gt;Buzz Andersen&lt;/a&gt;,&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Google products are machine-driven. They’re created by machines. And that is what makes us powerful. That’s what makes our products great.
Marissa Mayer, In the Plex&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Explains why their design comes up short.&lt;/p&gt;</description></item><item><title>Design is Horseshit</title><link>https://hiltmon.com/blog/2011/12/16/design-is-horseshit/</link><pubDate>Fri, 16 Dec 2011 08:25:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/16/design-is-horseshit/</guid><description>&lt;p&gt;&lt;a href="https://twitter.com/#!/yongfook"&gt;@yongfook&lt;/a&gt;, writing in &lt;a href="http://yongfook.com/post/14295124427/design-is-horseshit"&gt;Design is Horseshit!&lt;/a&gt;, makes a good point:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Focus on value creation. Design enhances value, it does not create it. Stop creating shitty startups that look amazing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;He&amp;rsquo;s not saying that you should dump design and designers (&lt;em&gt;phew!&lt;/em&gt;), just that he is sick of over-designed new startups that provide no real value.&lt;/p&gt;
&lt;p&gt;Money quote:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Think hard about what problem you can solve that a customer will give you $10 for and work your ass off at delivering that $10 of value as fast and as cheaply as possible.&lt;/p&gt;</description></item><item><title>Seek the Criticism</title><link>https://hiltmon.com/blog/2011/12/14/seek-the-criticism/</link><pubDate>Wed, 14 Dec 2011 12:42:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/14/seek-the-criticism/</guid><description>&lt;p&gt;Brendan Baker nails it in &lt;a href="http://www.quora.com/Brendan-Baker/Fuck-the-Accolades-Seek-the-Criticism"&gt;Fuck the Accolades. Seek the Criticism&lt;/a&gt; on Quora. Just read it. It&amp;rsquo;s short.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Two productive things can come out of a meeting with a VC:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;They help you directly. Money or connections.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;They make you better. They criticize you where it counts. They poke holes. They make you defend. They make you justify. They make you question.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;
&lt;p&gt;Seek the criticism, because accolades don&amp;rsquo;t help you.&lt;/p&gt;</description></item><item><title>Don't give up on your techs</title><link>https://hiltmon.com/blog/2011/12/13/dont-give-up-on-your-techs/</link><pubDate>Tue, 13 Dec 2011 22:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/13/dont-give-up-on-your-techs/</guid><description>&lt;p&gt;My good friend, Brad Lindenberg, writing in &lt;a href="http://www.lindventures.com/blog/2011/12/07/the-diminishing-value-of-technical-founders-in-startups/"&gt;The diminishing value of technical founders in startups&lt;/a&gt; talks about the value of the super technical people needed to perform the heavy lifting at the beginning of a startup.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This value of technical people in startups diminishes quicker than you think and entrepreneurs need to be careful not to give away equity to developers who are super valuable in the short term, but end up twiddling their thumbs in the long term.&lt;/p&gt;</description></item><item><title>The usage lifecycle</title><link>https://hiltmon.com/blog/2011/12/13/the-usage-lifecycle/</link><pubDate>Tue, 13 Dec 2011 09:10:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/13/the-usage-lifecycle/</guid><description>&lt;p&gt;Joshua Porter writes about the Usage Lifecycle in &lt;a href="http://bokardo.com/archives/designing-for-the-social-web-the-usage-lifecycle/"&gt;Designing for the Social Web: The Usage Lifecycle&lt;/a&gt;, well worth reading.&lt;/p&gt;
&lt;p&gt;The stages in the Usage Lifecycle of a product are:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;•	&lt;strong&gt;Unaware&lt;/strong&gt; This isn’t so much a stage as it is a starting point. Most people are in this stage: completely unaware of your product.&lt;/p&gt;
&lt;p&gt;•	&lt;strong&gt;Interested&lt;/strong&gt; These people are interested in your product, but are not yet users. They have lots of questions about how it works and what value it provides.&lt;/p&gt;</description></item><item><title>The lost art of the print statement</title><link>https://hiltmon.com/blog/2011/12/12/the-lost-art-of-the-print-statement/</link><pubDate>Mon, 12 Dec 2011 09:28:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/12/the-lost-art-of-the-print-statement/</guid><description>&lt;p&gt;Debugging software is hard, especially if you were not the original author. All programming languages come with debugging tools, from the arcane GDB to the dead sexy step-through debuggers in Xcode and Visual Studio. But, having watched some newbies recently attempt to debug some code using these tools, I noticed something. With all the data in the world on their screens, breakpoints, stacks, watches and code hovers, the information they needed to solve the bug was being lost is the mix.&lt;/p&gt;</description></item><item><title>Write code for someone else</title><link>https://hiltmon.com/blog/2011/12/12/hiltmonism-write-code-for-someone-else/</link><pubDate>Mon, 12 Dec 2011 09:25:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/12/hiltmonism-write-code-for-someone-else/</guid><description>&lt;p&gt;Whether you are just hacking up a script, writing the next must-have app, or working for the man, always be writing code as if someone else has to read it and understand it. Usually, that someone else is you, six months into the future, older, wiser, with a different mindset. And you&amp;rsquo;d hate to piss yourself off then, right?&lt;/p&gt;
&lt;p&gt;This &lt;em&gt;hiltmonism&lt;/em&gt; is a big one. Its easy to think you can fix something later, even though you know this mysterious later never comes. Its easy to think that you can just get this code out because once its done, its done, even though you know its never done. Its easy to hack to a deadline, and hope you are not the bunny who has to fix it when it fails, even though you are stroking your bunny ears at the time.&lt;/p&gt;</description></item><item><title>Kindle Fire lets kids charge up a storm</title><link>https://hiltmon.com/blog/2011/12/07/kindle-fire-lets-kids-charge-up-a-storm/</link><pubDate>Wed, 07 Dec 2011 08:44:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/07/kindle-fire-lets-kids-charge-up-a-storm/</guid><description>&lt;p&gt;Reuters, today, in &lt;a href="http://sg.finance.yahoo.com/news/Amazon-Kindle-Fire-lets-kids-rsg-3752604696.html?x=0&amp;amp;.v=1"&gt;Amazon&amp;rsquo;s Kindle Fire lets kids charge up a storm&lt;/a&gt; writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;hellip;it comes with your Amazon account information preloaded, along with &amp;ldquo;1-Click&amp;rdquo; ordering. That means anyone who is holding that device can place an order, whether it&amp;rsquo;s their account or not.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;My question is whether this behavior is by design or by accident. In &lt;a href="https://hiltmon.com/blog/2011/11/27/almost-no-one-changes-their-settings/"&gt;Almost No-one Changes Their Settings&lt;/a&gt; I referred an example from Microsoft where the settings were the result of what the developer left them as, not what was best for the user.&lt;/p&gt;</description></item><item><title>Information, not Data</title><link>https://hiltmon.com/blog/2011/12/06/hiltmonism-information-not-data/</link><pubDate>Tue, 06 Dec 2011 19:22:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/06/hiltmonism-information-not-data/</guid><description>&lt;p&gt;How many times have you opened a spreadsheet or a system, and seen pages and pages of numbers and gone &amp;lsquo;Ugh, its too hard to find what I want!&amp;rsquo;.&lt;/p&gt;
&lt;p&gt;Most systems and spreadsheets try to present everything to their users, reams and reams of raw unfettered data. And most users, if you ask them, both want the data and hate the data volume that they have to deal with. Looking closer at the situation, the reason they want the raw data is because they believe they can use the data to get answers to their questions, or use the data to do their jobs. Lets call these answers that they really need &amp;lsquo;information&amp;rsquo;. Wouldn&amp;rsquo;t it be better if the software simply showed the user the information as and when they needed it, instead of making them work and strain to extract it?&lt;/p&gt;</description></item><item><title>Don't be a free user</title><link>https://hiltmon.com/blog/2011/12/06/dont-be-a-free-user/</link><pubDate>Tue, 06 Dec 2011 18:49:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/06/dont-be-a-free-user/</guid><description>&lt;p&gt;Maciej Ceglowski, writing on the &lt;a href="http://pinboard.in/"&gt;Pinboard&lt;/a&gt; blog in &lt;a href="http://blog.pinboard.in/2011/12/don_t_be_a_free_user/"&gt;Don&amp;rsquo;t Be A Free User&lt;/a&gt; calling it as it is.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Someone builds a cool, free product, it gets popular, and that popularity attracts a buyer. The new owner shuts the product down and the founders issue a glowing press release about how excited they are about synergies going forward. They are never heard from again.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;His point is valid. All the businesses he refers to started as a free service, had no business model, got sold and died. And their user base, thats us folks, lost out on a great product or service and lost our data.&lt;/p&gt;</description></item><item><title>Good news - online retailers do not hate their customers</title><link>https://hiltmon.com/blog/2011/12/06/good-news-online-retailers-do-not-hate-their-customers/</link><pubDate>Tue, 06 Dec 2011 09:42:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/06/good-news-online-retailers-do-not-hate-their-customers/</guid><description>&lt;p&gt;Sarah Perez gets it completely wrong writing in a Techcrunch article entitled &lt;a href="http://techcrunch.com/2011/12/05/retailers-arent-ready-for-ipad-shopping-trend/?utm_source=feedburner&amp;amp;utm_medium=feed&amp;amp;utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29"&gt;Retailers Aren’t Ready For iPad Shopping Trend&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Now for the bad news. Despite the increases in tablet traffic, many retailers are not prepared to accommodate these new mobile shoppers. Compuware also prepared a chart showing the top retailers’ sites, and whether or not they offered an iPad-optimized website. Surprisingly, none of them do, not even Apple.com. What’s worse, Apple is also among the retailers who don’t offer a native iPad application.&lt;/p&gt;</description></item><item><title>Zittrain misses the point</title><link>https://hiltmon.com/blog/2011/12/04/zittrain-misses-the-point/</link><pubDate>Sun, 04 Dec 2011 11:43:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/04/zittrain-misses-the-point/</guid><description>&lt;p&gt;Via &lt;a href="http://yro.slashdot.org/story/11/12/04/1450244/have-walled-gardens-killed-the-personal-computer?utm_source=feedburner&amp;amp;utm_medium=feed&amp;amp;utm_campaign=Feed%3A+Slashdot%2Fslashdot+%28Slashdot%29"&gt;slashdot&lt;/a&gt;, directly quoted:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Harvard Law School Prof Jonathan Zittrain explains in &lt;a href="http://www.law.harvard.edu/news/2011/11/30_zittrain-the-personal-computer-is-dead.html"&gt;The Personal Computer is Dead&lt;/a&gt; why you should be afraid — very afraid — of the snowballing replicability of the App Store Model. &amp;lsquo;If we allow ourselves to be lulled into satisfaction with walled gardens,&amp;rsquo; warns Zittrain, &amp;lsquo;we&amp;rsquo;ll miss out on innovations to which the gardeners object, and we&amp;rsquo;ll set ourselves up for censorship of code and content that was previously impossible. We need some angry nerds.&amp;rsquo;
Slashdot&lt;/p&gt;</description></item><item><title>The argument for coding standards</title><link>https://hiltmon.com/blog/2011/12/04/the-argument-for-coding-standards/</link><pubDate>Sun, 04 Dec 2011 10:33:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/04/the-argument-for-coding-standards/</guid><description>&lt;p&gt;&lt;a href="http://cbloomrants.blogspot.com/"&gt;cbloom rants&lt;/a&gt; in &lt;a href="http://cbloomrants.blogspot.com/2011/11/11-22-11-mature-programmer.html"&gt;The Mature Programmer&lt;/a&gt; on the value of coding standards:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Strict coding standards are actually an intellectual relief because they remove all those decisions and give you a specific way to do the syntax. (The same of course goes for reading other people&amp;rsquo;s code - your eyes can immediately start looking at the functionality, not try to figure out the current syntax)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Don&amp;rsquo;t forget that using a great architecture, having great conventions and a strict coding standard takes this up to the next level.&lt;/p&gt;</description></item><item><title>Automate or Die</title><link>https://hiltmon.com/blog/2011/12/04/hiltmonism-automate-or-die/</link><pubDate>Sun, 04 Dec 2011 09:59:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/04/hiltmonism-automate-or-die/</guid><description>&lt;p&gt;Computers are excellent at performing dull repetitive structured tasks, yet many organizations use armies of people to perform these tasks. Computers are also great at following along the same mind numbing process over and over again (we call this programming), yet we tend as users of computers, to perform these tasks manually on our computers.&lt;/p&gt;
&lt;p&gt;Today&amp;rsquo;s &lt;em&gt;Hiltmonism&lt;/em&gt; is very simple. Automate or die. Make the computer do the work so you can have a life.&lt;/p&gt;</description></item><item><title>The best Steve Jobs quote</title><link>https://hiltmon.com/blog/2011/12/04/the-best-steve-jobs-quote/</link><pubDate>Sun, 04 Dec 2011 09:55:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/04/the-best-steve-jobs-quote/</guid><description>&lt;p&gt;This may be it.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;When you grow up you tend to get told the world is the way it is and you&amp;rsquo;re life is just to live your life inside the world. Try not to bash into the walls too much. Try to have a nice family, have fun, save a little money. That&amp;rsquo;s a very limited life. Life can be much broader once you discover one simple fact: Everything around you that you call life was made up by people that were no smarter than you and you can change it, you can influence it, you can build your own things that other people can use. Once you learn that, you&amp;rsquo;ll never be the same again.&amp;rdquo;
Steve Jobs &lt;a href="http://www.youtube.com/watch?v=UvEiSa6_EPA"&gt;Youtube&lt;/a&gt;&lt;/p&gt;</description></item><item><title>The four hour rule</title><link>https://hiltmon.com/blog/2011/12/03/the-four-hour-rule/</link><pubDate>Sat, 03 Dec 2011 09:52:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/03/the-four-hour-rule/</guid><description>&lt;p&gt;Programming is a craft of the mind. Programmers need to think through the feature they are writing, build up the code and a solution in their heads, maintain the product architecture, structure and conventions in the background and plan and design the next part of the code they are assembling. And then they need the time to execute all that. Once in The Zone™, programmers are exceptionally productive. But The Zone™ has limits. &lt;strong&gt;A four hour limit&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>e-reader roundup</title><link>https://hiltmon.com/blog/2011/12/02/e-reader-roundup/</link><pubDate>Fri, 02 Dec 2011 20:23:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/02/e-reader-roundup/</guid><description>&lt;p&gt;&lt;a href="http://www.marco.org"&gt;Marco Arment&lt;/a&gt;, developer of &lt;a href="http://www.instapaper.com/"&gt;Instapaper&lt;/a&gt;, writing in an amazingly comprehensive review of &lt;a href="http://www.marco.org/2011/12/02/kindle-touch-vs-nook-simple-touch-kobo-touch-kindle-4"&gt;current e-readers&lt;/a&gt; (including e-ink devices and new low-end tablets), writes&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If you’re primarily in the market for an e-reader, get an e-ink device. And if you’re looking for a tablet for apps, games, and videos in addition to reading, unless the iPad’s price is absolutely out of the question forever, I suggest getting the iPad.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;And the e-ink winner unsurprisingly is the current Kindle (called the Kindle 4 in the review).&lt;/p&gt;</description></item><item><title>No Service Competition in New York</title><link>https://hiltmon.com/blog/2011/12/02/no-service-competition-in-new-york/</link><pubDate>Fri, 02 Dec 2011 18:47:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/02/no-service-competition-in-new-york/</guid><description>&lt;p&gt;Just a quick check on my choices for 21st century data services available at my apartment in New York city:&lt;/p&gt;
&lt;h2 id="internet-landline-television"&gt;Internet, Landline, Television&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Time Warner Cable&lt;/li&gt;
&lt;li&gt;&lt;strike&gt;Verizon FIOS&lt;/strike&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Oops, only TWC from today based on the agreement reached where Verizon quit the land-based business (See Susan Crawford&amp;rsquo;s article: &lt;a href="http://networkedblogs.com/qWwzk"&gt;Smug and chagrined&lt;/a&gt;). So no choice.&lt;/p&gt;
&lt;h2 id="mobile-phone"&gt;Mobile Phone&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;AT&amp;amp;T&lt;/li&gt;
&lt;li&gt;Verizon&lt;/li&gt;
&lt;li&gt;&lt;strike&gt;T-Mobile&lt;/strike&gt; (still a dead spot after 8 years)&lt;/li&gt;
&lt;li&gt;&lt;strike&gt;Sprint&lt;/strike&gt; (same as T-Mobile)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Neither work well, so I have to stick with AT&amp;amp;T because at least they have a MicroCell. Until the iPhone 4S came out on Verizon, their phones were no good for overseas anyway. Average 1 &lt;em&gt;not&lt;/em&gt;-dropped call a day.&lt;/p&gt;</description></item><item><title>Data caps don't work</title><link>https://hiltmon.com/blog/2011/12/02/data-caps-dont-work/</link><pubDate>Fri, 02 Dec 2011 18:41:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/02/data-caps-dont-work/</guid><description>&lt;p&gt;Nate Anderson, writing for Ars Technica in &lt;a href="http://arstechnica.com/tech-policy/news/2011/12/data-caps-a-crude-and-unfair-tool-for-easing-online-congestion.ars"&gt;Data caps a &amp;ldquo;crude and unfair tool&amp;rdquo; for easing online congestion&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Internet providers argue that they need to impose monthly data caps on their users in order to slay the &amp;ldquo;bandwidth hogs&amp;rdquo; running wild and free through their networks, goring ordinary users with their tusks when all those users want to do is view some funny cat pictures online after a tough day at the office. The idea is that a monthly quota can reduce the amount of network congestion during peak hours throughout the month. Fact or fiction?&lt;/p&gt;</description></item><item><title>Explain the Problem - Not your Solution</title><link>https://hiltmon.com/blog/2011/12/02/explain-the-problem/</link><pubDate>Fri, 02 Dec 2011 09:48:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/02/explain-the-problem/</guid><description>&lt;p&gt;Something that drives me quite batty is when people turn to me for help and request a solution without explaining the problem. In other words, they tell me their answer to a puzzle, without explaining what the puzzle is, and expect me to understand what to do. &lt;em&gt;They want the answer to be 42, but what is the question being asked?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;This happens a lot in software design. The client calls up and tells us they want something done a specific way. They are telling us &lt;em&gt;how&lt;/em&gt; to implement a feature, without explaining &lt;em&gt;what&lt;/em&gt; the feature is or &lt;em&gt;why&lt;/em&gt; it needs to be done their way. Since they don&amp;rsquo;t understand the architecture of the product, they usually don&amp;rsquo;t understand the impact of the request. And since they are approaching the problem from a non-technical perspective, their proposed solution may not technically work.&lt;/p&gt;</description></item><item><title>Close to the Business</title><link>https://hiltmon.com/blog/2011/12/01/hiltmonism-close-to-the-business/</link><pubDate>Thu, 01 Dec 2011 21:20:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/12/01/hiltmonism-close-to-the-business/</guid><description>&lt;p&gt;The best software designers and developers are the ones who completely understand the business and flows for which they are creating product. This understanding allows them to apply their technical skills to business problems and create great product. And the best way to understand is to be a part of the business, &lt;em&gt;to be close to it&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Drawing on my career to date, the best products I have made have all come from me being right in the thick of things. I spent 8 years writing leading edge hedge fund management and financial software, while sitting in the middle of a trading floor, surrounded by traders and analysts and accountants. Before that I worked on financial systems deployments, surrounded by accountants and managers. And before that, right at the beginning, I wrote software to sell trees, surrounded by the people who grew and cut down those trees.&lt;/p&gt;</description></item><item><title>On Designing Web Applications balancing Identity, Usability and Familiarity</title><link>https://hiltmon.com/blog/2011/11/29/on-designing-web-applications-balancing-identity/</link><pubDate>Tue, 29 Nov 2011 22:06:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/29/on-designing-web-applications-balancing-identity/</guid><description>&lt;p&gt;Graphic design without understanding the user, the flow and site interaction leads to pretty, uniquely identifiable web applications that are quite unusable and fail to connect with their users. Web applications that mimic the graphic design of others may seem to be more useable, because they are so familiar, but look like someone else&amp;rsquo;s product, have no identity, seem bland and boring, and also fail to connect with their users.&lt;/p&gt;
&lt;p&gt;Somewhere there has to be a balance between familiarity, identity and usability, in a design that engages users. Here is how we found it.&lt;/p&gt;</description></item><item><title>VC tries to sell a con</title><link>https://hiltmon.com/blog/2011/11/29/vc-tries-to-sell-a-con/</link><pubDate>Tue, 29 Nov 2011 19:26:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/29/vc-tries-to-sell-a-con/</guid><description>&lt;p&gt;In &lt;a href="http://uncrunched.com/2011/11/27/startups-are-hard-so-work-more-cry-less-and-quit-all-the-whining/"&gt;Startups Are Hard. So Work More, Cry Less, And Quit All The Whining&lt;/a&gt;, Michael Arrington uses the &lt;a href="http://www.jwz.org/gruntle/nscpdorm.html"&gt;1994 post&lt;/a&gt; by overworked engineer &lt;a href="http://www.jwz.org"&gt;Jamie Zawinski&lt;/a&gt; to make his point that startups are hard, Silicon Valley is awesome, you must work long hours, and if you do, the rewards are worth it. He states&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;But you also know that there is nowhere on earth like Silicon Valley. Nowhere else that is structurally designed to help you make whatever you can imagine into reality. Nowhere else where there are so many like minded people who are willing to sacrifice and work hard to create something new.&lt;/p&gt;</description></item><item><title>Hundreds of sites ordered deindexed</title><link>https://hiltmon.com/blog/2011/11/29/hundreds-of-sites-ordered-deindexed/</link><pubDate>Tue, 29 Nov 2011 18:53:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/29/hundreds-of-sites-ordered-deindexed/</guid><description>&lt;p&gt;A judge has ruled 700 domain names to be seized and removed from Facebook, Twitter, Google+, Bing, Yahoo and Google searches, on suspicion, &lt;em&gt;not proof&lt;/em&gt;, of selling counterfeit goods. Whether the domain names are local or foreign, infringing or not, or even valid but caught-in-the-net business sites is immaterial. They are ordered seized and taken down without notice or recourse.&lt;/p&gt;
&lt;p&gt;Of course, there is no law to force a registry to change ownership, nor a law to require the search engines to delist in this way, but the judge ordered it anyway. Says Law Professor Venkat Balasubramani &lt;a href="http://blog.ericgoldman.org/archives/2011/11/court_oks_priva.htm"&gt;on this topic yesterday&lt;/a&gt;:&lt;/p&gt;</description></item><item><title>The readable future</title><link>https://hiltmon.com/blog/2011/11/28/the-readable-future/</link><pubDate>Mon, 28 Nov 2011 17:10:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/28/the-readable-future/</guid><description>&lt;p&gt;Brent Simmons nails it again in &lt;a href="http://inessential.com/2011/11/25/the_readable_future"&gt;The Readable Future&lt;/a&gt;, talking about the tools we all use to bypass all the ads and clutter of publisher&amp;rsquo;s sites.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The future is, one way or another, &lt;em&gt;readable&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Because that’s what readers want, and because the technology is easier to find and use and learn than ever. That trend will continue because developers live to give people technologies that make life better.&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>Copycats</title><link>https://hiltmon.com/blog/2011/11/28/copycats/</link><pubDate>Mon, 28 Nov 2011 11:16:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/28/copycats/</guid><description>&lt;p&gt;&lt;a href="http://mattgemmell.com/about/"&gt;Matt Legend Gemmell&lt;/a&gt; writing on &lt;a href="http://mattgemmell.com/2011/11/27/copycats/"&gt;Copycats&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There’s an entire spectrum of terms available besides ‘copied’, ranging from “inspired by” to “plagiarised”, and it’s not necessarily a bad thing to be influenced by the work of others. The key is to ensure that you’re consciously agreeing with a design, rather than just aping (mimicking unthinkingly - a definition which no doubt does our hairy cousins a grave disservice). Sadly, much of the technology sector simply apes.&lt;/p&gt;</description></item><item><title>Almost no-one changes their settings</title><link>https://hiltmon.com/blog/2011/11/27/almost-no-one-changes-their-settings/</link><pubDate>Sun, 27 Nov 2011 18:13:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/27/almost-no-one-changes-their-settings/</guid><description>&lt;p&gt;Following up on my recent &lt;a href="https://hiltmon.com/blog/2011/11/25/i-just-want-a-hamburger/"&gt;I just want a Hamburger&lt;/a&gt; post, I came across a wonderful article by Jared Spool entitled &lt;a href="http://www.uie.com/brainsparks/2011/09/14/do-users-change-their-settings/"&gt;Do users change their settings?&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In line with that I said about developers thoughtfully making decisions on options for their users, Jared makes some beautiful points&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Less than 5% of the users we surveyed had changed any settings at all.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Why?&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;They assumed Microsoft had delivered it turned off for a reason, therefore who were they to set it otherwise. “Microsoft must know what they are doing,” several of the participants told us.&lt;/p&gt;</description></item><item><title>If your site does ..., you hate your Customers</title><link>https://hiltmon.com/blog/2011/11/27/you-hate-your-customers/</link><pubDate>Sun, 27 Nov 2011 11:01:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/27/you-hate-your-customers/</guid><description>&lt;p&gt;There has been a lot of talk on the Internet lately on the inability for web site visitors to actually read the content on publisher&amp;rsquo;s pages because of all the annoyances and clutter on these pages. If you are one of these publishers, read on, this is to help you identify what frustrates your customers. If you are a reader like me, let me know of any major annoyances I may have missed out on.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;If your site&lt;/em&gt; displays a full page ad for 15 seconds before an article can be read, &lt;em&gt;you hate your customers&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;If your site&lt;/em&gt; splits articles, even short ones, into multiple pages, &lt;em&gt;you hate your customers&lt;/em&gt;.&lt;/p&gt;</description></item><item><title>Should I wait?</title><link>https://hiltmon.com/blog/2011/11/25/should-i-wait/</link><pubDate>Fri, 25 Nov 2011 15:24:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/25/should-i-wait/</guid><description>&lt;p&gt;As a technologist, I am often asked by friends and family whether they should buy a new gizmo now or wait a while for the next release of said gizmo.&lt;/p&gt;
&lt;p&gt;I always have the same answer:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If you need it, buy it now.&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>I just want a Hamburger</title><link>https://hiltmon.com/blog/2011/11/25/i-just-want-a-hamburger/</link><pubDate>Fri, 25 Nov 2011 12:30:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/25/i-just-want-a-hamburger/</guid><description>&lt;p&gt;Or &lt;strong&gt;too many choices lead to the inability to choose&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;In the USA, when one walks into a restaurant to eat a hamburger, one has to endure a full interrogation. &lt;em&gt;How would you like the burger cooked? Would you like cheese on it? What kind of cheese would you like? Would you also like bacon on it? Lettuce and tomato? Onions? Raw or Fried? Mayonnaise, ketchup, relish or mustard? Which kind of mustard? Do you want fries on the side? A pickle too? Sesame on the bun? Raw or toasted?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Give us a break. We want a hamburger, make by a professional in the making of hamburgers, and presented to us as the best mix of ingredients prepared properly that they believe makes a great hamburger. We did not go in there to make choices, we went in to eat a delicious burger, pay and leave.&lt;/p&gt;
&lt;p&gt;It turns out software users want the same thing. Product, made by us, that satisfies their needs, without the options and choices and interrogations that make using it difficult, confusing and dissatisfying.&lt;/p&gt;</description></item><item><title>You are not your Customer</title><link>https://hiltmon.com/blog/2011/11/24/you-are-not-your-customer/</link><pubDate>Thu, 24 Nov 2011 12:41:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/24/you-are-not-your-customer/</guid><description>&lt;p&gt;One of the most common memes in software development is that great products come from a programmer scratching an itch. They needed software to do something, did not like what was out there, and created a great product. They were their own customer, they knew what they wanted and they made the software for themselves.&lt;/p&gt;
&lt;p&gt;As with most meme&amp;rsquo;s, this one is only somewhat true. They did have an itch. They did create some software. And hundreds of programmers do this every day. But very few of them make great products with this software. Instead, they create something for themselves, to be used by themselves and never shared. And if they do share it, it&amp;rsquo;s usually a subset of a product that never grows, never sells and never becomes great.&lt;/p&gt;</description></item><item><title>F*ck You, Pay Me</title><link>https://hiltmon.com/blog/2011/11/23/f-star-ck-you-pay-me/</link><pubDate>Wed, 23 Nov 2011 18:11:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/23/f-star-ck-you-pay-me/</guid><description>&lt;p&gt;For all you designers, programmers, indies and freelancers, I give you the best, most informative video, you will ever see. &lt;a href="http://mikemonteiro.com/"&gt;Mike Monteiro&lt;/a&gt; a.k.a. &lt;a href="http://twitter.com/mike_FTW"&gt;@mike_ftw&lt;/a&gt;, of &lt;a href="http://muledesign.com/"&gt;Mule Design&lt;/a&gt; gave a talk on contracts and how to deal with money discussions.&lt;/p&gt;
&lt;p&gt;Check it out: &lt;a href="http://weblog.muledesign.com/2011/04/creative_mornings.php"&gt;F*ck You, Pay Me&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Then follow his advice.&lt;/p&gt;</description></item><item><title>Signing up for Everything</title><link>https://hiltmon.com/blog/2011/11/23/signing-up-for-everything/</link><pubDate>Wed, 23 Nov 2011 17:45:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/23/signing-up-for-everything/</guid><description>&lt;p&gt;I sign up for every new service that comes along. Every single one. Most of them I never log into again, except to unsubscribe from their mailing lists. Every single new social network, professional network, graphics sharing site, instant messenger, free email provider, free home page display, free blogging app, book reading site, iPhone community app and all the hundreds I am missing, all have one thing in common. A &lt;strong&gt;hiltmon&lt;/strong&gt; login. My &lt;strong&gt;hiltmon&lt;/strong&gt; login.&lt;/p&gt;</description></item><item><title>The Pummeling Pages</title><link>https://hiltmon.com/blog/2011/11/23/the-pummeling-pages/</link><pubDate>Wed, 23 Nov 2011 17:34:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/23/the-pummeling-pages/</guid><description>&lt;p&gt;&lt;a href="http://www.inessential.com"&gt;Brent Simmons&lt;/a&gt;, original author of &lt;a href="http://netnewswireapp.com/"&gt;NetNewsWire&lt;/a&gt; and MarsEdit, on visiting modern publication websites:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;They&amp;rsquo;re filled with ads and social-media sharing buttons — and more ads. And Google plus-onesies and Facebook likeys. And also more ads. Plus tweet-this-es. Plus ads. (And, under-the-hood, a whole cruise-ship-full of analytics. The page required well-more than 100 http calls.)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;No wonder we all like &lt;a href="http://www.instapaper.com/"&gt;InstaPaper&lt;/a&gt; and Safari&amp;rsquo;s Reader mode.&lt;/p&gt;
&lt;p&gt;Source: &lt;a href="http://inessential.com/2011/11/22/the_pummeling_pages"&gt;The Pummeling Pages&lt;/a&gt;&lt;/p&gt;</description></item><item><title>The Way of the Code Samurai</title><link>https://hiltmon.com/blog/2011/11/23/the-way-of-the-code-samurai/</link><pubDate>Wed, 23 Nov 2011 00:02:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/23/the-way-of-the-code-samurai/</guid><description>&lt;p&gt;&lt;a href="http://blog.wilshipley.com"&gt;Wil Shipley&lt;/a&gt; has been programming for decades, like me. Recently, he reposted a link to an &lt;a href="http://blog.wilshipley.com/2005/02/free-programming-tips-are-worth-every.html"&gt;old post&lt;/a&gt; that I think all programmers should read. Go on, &lt;a href="http://blog.wilshipley.com/2005/02/free-programming-tips-are-worth-every.html"&gt;read it&lt;/a&gt; now. I&amp;rsquo;ll wait.&lt;/p&gt;
&lt;p&gt;In it, he talks of the &lt;strong&gt;The Way of the Code Samurai&lt;/strong&gt;, but really just points out the same topics I try to impress on all programmers I teach.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Think first&lt;/li&gt;
&lt;li&gt;Write all your code &amp;ldquo;clean&amp;rdquo; the first time you write it&lt;/li&gt;
&lt;li&gt;Less source code is better&lt;/li&gt;
&lt;li&gt;Optimize only after you are done&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The only thing missing from my top 5 is the temporal issue&lt;/p&gt;</description></item><item><title>Four Keys to Apple's Success</title><link>https://hiltmon.com/blog/2011/11/22/four-keys-to-apples-success/</link><pubDate>Tue, 22 Nov 2011 23:47:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/22/four-keys-to-apples-success/</guid><description>&lt;p&gt;Greg Joswiak, Apple’s vice president of worldwide iPod, iPhone, and iOS product marketing, speaking at the “Silicon Valley Comes to Cambridge” event in the UK, shared what he believes to be the four keys to Apple’s success.&lt;/p&gt;
&lt;h3 id="focus"&gt;Focus&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;It means saying no, not saying yes. We do very few things at Apple. We are $100bn in revenue with very few products. There are only so many grade A players. If you spread yourself out over too many things, none of them will be great.&amp;rdquo;&lt;/p&gt;</description></item><item><title>About the Hiltmon</title><link>https://hiltmon.com/about/</link><pubDate>Tue, 22 Nov 2011 20:15:00 -0400</pubDate><guid>https://hiltmon.com/about/</guid><description>&lt;figure class="image-left"&gt;&lt;img src="https://hiltmon.com/about/images/the_hiltmon_2013_end.jpg" width="200" height="270"&gt;
&lt;/figure&gt;

&lt;p&gt;My name is &lt;strong&gt;Hilton Lipschitz&lt;/strong&gt;, but everybody calls me &lt;strong&gt;hiltmon&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Recently, I was Chief Technology Officer (CTO) at my third awesome growing New York Financial Asset Manager, designing and building the most amazing trading technology ever. Before this, I was the designer, consultant, programmer, and owner of &lt;a href="https://noverse.com"&gt;Noverse LLC&lt;/a&gt;, an independent iOS (iPad, iPhone and iPod Touch), Macintosh (OS X) and Web (Ruby on Rails) product development company, based in New York, USA.&lt;/p&gt;</description></item><item><title>Migrating to Octopress</title><link>https://hiltmon.com/blog/2011/11/22/migrating-to-octopress/</link><pubDate>Tue, 22 Nov 2011 20:10:00 -0400</pubDate><guid>https://hiltmon.com/blog/2011/11/22/migrating-to-octopress/</guid><description>&lt;p&gt;Over the years I have created a series of blogs, but never found my voice. It&amp;rsquo;s time to do it better. So here it is, my voice, my errors, my opinions, my mistakes, my soapbox, and maybe, just maybe, someday I&amp;rsquo;ll write something interesting, &lt;em&gt;in my voice&lt;/em&gt;.&lt;/p&gt;</description></item></channel></rss>