<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><title>Nick Wynja</title><link>http://nickwynja.com</link><description>Explore. Define. Deliver.</description><item><title>→ Maker’s vs. Manager’s Schedule</title><link>http://www.paulgraham.com/makersschedule.html</link><guid isPermaLink="false">http://www.paulgraham.com/makersschedule.html</guid><pubDate>Thu, 29 Mar 2012 19:27:40 EDT</pubDate><description>&lt;p&gt;Paul Graham, of Y Combinator on the difference between how manager&amp;#8217;s and developer&amp;#8217;s schedules work:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;For someone on the maker&amp;#8217;s schedule, having a meeting is like throwing an exception. It doesn&amp;#8217;t merely cause you to switch from one task to another; it changes the mode in which you work.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For a developers, meetings cost much more than the hour they span. Keep this in mind when scheduling their time.&lt;/p&gt;


&lt;p&gt;&lt;a href="http://nickwynja.com/2012/03/29/makers-vs-managers-schedule"&gt;&amp;#8734; Permalink&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Deploying Second Crack</title><link>http://nickwynja.com/2012/03/17/deploying-second-crack</link><guid isPermaLink="false">/2012/03/17/deploying-second-crack</guid><pubDate>Sat, 17 Mar 2012 20:43:55 EDT</pubDate><description>&lt;p&gt;&lt;em&gt;Install Marco Arment&amp;#8217;s Second Crack in a few simple steps.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I&amp;#8217;ve been interested in &lt;a href="http://github.com/marcoarment/secondcrack"&gt;Second Crack&lt;/a&gt; ever since I heard &lt;a href="http://twitter.com/marcoarment"&gt;Marco Arment&lt;/a&gt; discuss it on &lt;a href="http://5by5.tv/buildanalyze"&gt;Build and Analyze&lt;/a&gt;. After writing more frequently both here and at &lt;a href="http://hackmake.org"&gt;Hack/Make&lt;/a&gt;, I became frustrated with the workflow of writing in Byword or BBEdit then having to copy and paste into Tumblr. I was a little hesitant getting into hosting my own blogging engine since my sysadmin skills aren&amp;#8217;t great but I was familiar enough with it that I thought I&amp;#8217;d give it a shot. When I set out to implement Second Crack, I wanted to do it in a way that could be replicated so that other who aren&amp;#8217;t total neck-beard Unix nerds could roll out Second Crack on their own and benefit from it&amp;#8217;s simple publishing without struggling with the worst parts of server administration. What I came out with, after a weekend wrestling with shell scripts, folder permissions, and Dropbox daemons, is &lt;code&gt;deploysecondcrack&lt;/code&gt;—a simple four step process that anyone who can copy and paste can use to roll out Second Crack on their own server.&lt;/p&gt;

&lt;p&gt;If you&amp;#8217;re familiar with servers, jump straight to &lt;a href="http://github.com/nickwynja/deploysecondcrack"&gt;&lt;code&gt;deploysecondcrack&lt;/code&gt; on Github&lt;/a&gt;. &lt;code&gt;deploysecondcrack&lt;/code&gt; is optimized to run on CentOS 6. I chose this since Marco is running CentOS and will probably provide the best long-term compatibility.&lt;/p&gt;

&lt;p&gt;If you&amp;#8217;re not familiar with servers, let&amp;#8217;s go through the set up process in a little more detail than what&amp;#8217;s in the &lt;code&gt;README&lt;/code&gt; on Github.&lt;/p&gt;

&lt;h1&gt;1. Get a cloud server account&lt;/h1&gt;

&lt;p&gt;Second Crack is self-hosted so you&amp;#8217;ll need your own server. For this, I suggest &lt;a href="http://www.rackspace.com/cloud/cloud_hosting_products/servers/"&gt;Rackspace Cloud&lt;/a&gt;. A Rackspace account is free and you pay for servers by the hour. The smallest CentOS instance on Rackspace (which is likely enough for most low-traffic blogs is $0.015/hour. This adds up to about $10 a month. They provide amazing support, which is a great thing to have if you aren&amp;#8217;t very comfortable with servers. Amazon Web Services would work fine and prices are generally comparable but Rackspace&amp;#8217;s fanatical support is a great thing to have.&lt;/p&gt;

&lt;h1&gt;2. Create a second Dropbox account (optional)&lt;/h1&gt;

&lt;p&gt;I have about 40GB of data in Dropbox that I don&amp;#8217;t want syncing to my server. I created a second Dropbox account specifically for my blog and shared the folder that will be created automatically later in the process with the other Dropbox account I use. Now&amp;#8217;s a good time to create this account before we get too deep into the server stuff.&lt;/p&gt;

&lt;h1&gt;3. Launch a cloud instance&lt;/h1&gt;

&lt;p&gt;Once you&amp;#8217;ve created your account and it&amp;#8217;s been verified over the phone by a cheery Rackspace employee, you can go into your &lt;a href="https://manage.rackspacecloud.com/"&gt;control panel&lt;/a&gt; and in Hosting &gt; Cloud Servers, add a new server. Here, choose CentOS 6 then name your server and chose a size. Pick a server based on your needs and how much you want to spend but a 256MB or 512MB box will probably be enough. Second Crack serves cached static HTML files which doesn&amp;#8217;t require a lot of memory to be quick and handle a decent amount of traffic. When you click &amp;#8220;Create Server&amp;#8221; it&amp;#8217;ll start spinning up a cloud instance and then email you with and IP address and password for you to SSH into your shiny new server when it&amp;#8217;s done building. If you&amp;#8217;re unsure whether you want to commit to using Second Crack, you can spin up a server with very little commitment since you&amp;#8217;re billed by the hour. If you can&amp;#8217;t get things running or get it going but don&amp;#8217;t like it, just delete the server and you&amp;#8217;ll only be out a few cents.&lt;/p&gt;

&lt;h1&gt;4. SSH into your server&lt;/h1&gt;

&lt;p&gt;Once you have the IP address and password for your server, we can access it from the command line to install Second Crack. Open up Terminal (or PuTTY if you&amp;#8217;re still on Windows) and &lt;a href="http://en.wikipedia.org/wiki/Secure_Shell"&gt;SSH&lt;/a&gt; into your server with the command &lt;code&gt;ssh root@12.34.56.78&lt;/code&gt; using your IP address. Type &lt;code&gt;yes&lt;/code&gt; when prompted to add your RSA and then the password you were emailed. When you see the &lt;code&gt;[root@servername ~]#&lt;/code&gt; prompt, we&amp;#8217;re ready to go.&lt;/p&gt;

&lt;h1&gt;5. Deploy Second Crack&lt;/h1&gt;

&lt;p&gt;Head to the &lt;a href="http://github.com/nickwynja/deploysecondcrack"&gt;Github page for &lt;code&gt;deploysecondcrack&lt;/code&gt;&lt;/a&gt; where you&amp;#8217;ll find the steps to install and configure the server environment, all dependancies, Dropbox, and Second Crack. These steps are mostly copy and paste, but there are a couple places you&amp;#8217;ll need to use the command line text editor Vim. There&amp;#8217;re a few basic commands you&amp;#8217;ll need to know to use it. You can look at the full Vim &lt;a href="http://www.tuxfiles.org/linuxhelp/vimcheat.html"&gt;cheat sheet&lt;/a&gt; if you need, but you&amp;#8217;ll be able to get the job done with a few commands. You can move around the file using the arrow keys. To edit the file, press the &lt;code&gt;i&lt;/code&gt; key to enter into &lt;code&gt;insert mode&lt;/code&gt;. Make any changes you need the press &lt;code&gt;esc&lt;/code&gt; to leave insert mode. You can jump to certain line numbers by typing &lt;code&gt;:42&lt;/code&gt; and pressing enter to jump that that line. You can search by pressing &lt;code&gt;/&lt;/code&gt; and then typing in your term and pressing enter. &lt;code&gt;n&lt;/code&gt; will jump to the next result. Once you&amp;#8217;re done editing a file, press &lt;code&gt;esc&lt;/code&gt; to get to the command mode and you &lt;code&gt;:wq&lt;/code&gt; to save and exit the file. If you screw up and want to start over, &lt;code&gt;:q!&lt;/code&gt; will close the file without saving. You shouldn&amp;#8217;t need it in the standard set up, but a few basic commands if you run into troubles and need to troubleshoot: &lt;code&gt;pwd&lt;/code&gt; (print working directory) will show you the path of your current location, &lt;code&gt;cd /path/to/folder&lt;/code&gt; will change the directory you&amp;#8217;re into the one you specify. If something happens and you aren&amp;#8217;t give the command prompt (the &lt;code&gt;$&lt;/code&gt;), hitting ctrl-c should usually get you there. When you&amp;#8217;re done with the steps on Github, come back here to finish things off.&lt;/p&gt;

&lt;h1&gt;6. Configure your DNS&lt;/h1&gt;

&lt;p&gt;You&amp;#8217;ll need to set up the DNS for your domain name to the IP address of your server. If you don&amp;#8217;t have a domain, use a service like &lt;a href="http://namecheap.com"&gt;Namecheap&lt;/a&gt; to register one. To point your domain to the server, add an A RECORD that points to your IP address and wait a few minutes. You should be able to then access your new blog from your domain.&lt;/p&gt;

&lt;h1&gt;7. Post something&lt;/h1&gt;

&lt;p&gt;Posting is really easy with Second Crack and the main reason I moved it it. All you need to do is save a markdown file in your Dropbox in the &lt;code&gt;_publish-now&lt;/code&gt; folder with the formatting as specified in the Second Crack &lt;a href="https://github.com/marcoarment/secondcrack/blob/master/README.markdown"&gt;documentation&lt;/a&gt; on Github.&lt;/p&gt;

&lt;h1&gt;8. Add some styling&lt;/h1&gt;

&lt;p&gt;&lt;code&gt;deploysecondcrack&lt;/code&gt; includes a very basic stylesheet to get you started. There&amp;#8217;s enough there to dive into and start styling your blog. If you don&amp;#8217;t know CSS, now&amp;#8217;s a great time to learn.&lt;/p&gt;

&lt;h2&gt;Notes&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;I&amp;#8217;ve tested this fairly thoroughly and I&amp;#8217;m hoping it will work for you but I can&amp;#8217;t guarantee it. If you need some help, let me know on &lt;a href="http://twitter.com/nickwynja"&gt;Twitter&lt;/a&gt; but there&amp;#8217;s no promises I&amp;#8217;ll be able to help.&lt;/li&gt;
&lt;li&gt;As outlined in the Github README, this install does not include any security or firewall. Be aware of this.&lt;/li&gt;
&lt;/ul&gt;
</description></item><item><title>→ The Google James Whittaker Left</title><link>http://blogs.msdn.com/b/jw_on_tech/archive/2012/03/13/why-i-left-google.</link><guid isPermaLink="false">http://blogs.msdn.com/b/jw_on_tech/archive/2012/03/13/why-i-left-google.</guid><pubDate>Sat, 17 Mar 2012 15:38:22 EDT</pubDate><description>&lt;blockquote&gt;
  &lt;p&gt;The Google I was passionate about was a technology company that empowered its employees to innovate. The Google I left was an advertising company with a single corporate-mandated focus.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Whittaker recalls Google&amp;#8217;s shift away from a company focused on making great &lt;a href="http://hackmake.org/post/16579330943/google-product-vs-policy"&gt;products&lt;/a&gt;. It looks like they not only turned on their product users but their own people.&lt;/p&gt;


&lt;p&gt;&lt;a href="http://nickwynja.com/2012/03/17/google-james-whittaker-left"&gt;&amp;#8734; Permalink&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Wiping User Data for Local Development</title><link>http://nickwynja.com/2012/03/08/2012-03-08-wiping-user-data-for-local-development</link><guid isPermaLink="false">/2012/03/08/2012-03-08-wiping-user-data-for-local-development</guid><pubDate>Thu, 08 Mar 2012 11:41:45 EST</pubDate><description>&lt;p&gt;Developing locally? Care about your users data and privacy? When you do a database dump of production data for use in local development, be conscious that you have thousands of people&amp;#8217;s names and emails on your machine. If your laptop is stolen, so is your user&amp;#8217;s data. To avoid this problem but maintain a healthy amount of real data for use in development run a query like this to obscure their personal information:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;update users set name='name', email='email@yourcompany.com' where lower(email) not like ('%yourcompany.com')
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This only cleans the data for users other than your team if you used your company email for registration so you don&amp;#8217;t kill test accounts. By doing this, you not only protect user information but you avoid silly things like emailing users by accident when building features. Whether it&amp;#8217;s in production or local, your users information is of utmost importance and you don&amp;#8217;t want to lose their trust.&lt;/p&gt;
</description></item><item><title>Darwin’s Law of Failure</title><link>http://nickwynja.com/2012/02/06/darwins-law-of-failure</link><guid isPermaLink="false">/2012/02/06/darwins-law-of-failure</guid><pubDate>Mon, 06 Feb 2012 22:08:32 EST</pubDate><description>&lt;p&gt;This post is in response to Jonathan Kochis&amp;#8217;s article, &lt;a href="http://jonathankochis.com/the-disturbing-culture-of-failure/"&gt;The Disturbing Culture of Failure&lt;/a&gt;. Kochis lays out the how a culture that encourages failure negatively impacts business—and he&amp;#8217;s right—but let me add my perspective on why I think this culture is in place and why it&amp;#8217;s necessary. Let&amp;#8217;s call it Darwin&amp;#8217;s Law of Failure.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt; It seems to me that the attitude of accepting (or worse, expecting) failure from the outset is a step toward making it happen.  Failure is something that should be dealt with as it happens and is decidedly reactionary.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The &amp;#8220;fail fast, fail cheaply&amp;#8221; mantra exists mostly from the startup generation that we&amp;#8217;re living in. Most current startups are formed around terrible ideas and ran by either nerds with no idea how to run a company or Type A personalities with no idea how to run a company. This combination of bad ideas and no execution breeds failure. Failure to ship, failure to attract users/customers, failing to capture investor attention, and failing in the wrong direction.&lt;/p&gt;

&lt;p&gt;Failure is something that has become a part of the startup culture and in-turn, embraced. In reality, failing is inevitable but this culture encourages pushing harder and faster in spite of fearing failure, even when pushing harder and faster makes failure more likely. There&amp;#8217;s two reasons this happens: competition for investor attention, which these companies feed off of, is more often grabbed by companies who build products faster and cheaper, and secondly, that failure needs to happen because the markets can&amp;#8217;t bear more than a few startups actually taking off.&lt;/p&gt;

&lt;p&gt;VCs control the startup world and startups exist in a distorted reverence of them, their attention, and money. Without VCs, the startup&amp;#8217;s cute little website will shut down so they are driven to the capitalists&amp;#8217; promise of wealth and glory in exchange for their half-baked idea to be built faster and cheaper no matter the cost to the founders integrity, product, or emotions. To mask the pain that comes from pouring everything into an idea that won&amp;#8217;t go anywhere, the startup culture has embraced failure and shaped an acceptance caused by its abundance.&lt;/p&gt;

&lt;p&gt;With so many awful startups, Darwin&amp;#8217;s Law of Failure needs to come into play to maintain a balanced market. Without the startups failing, good talent who are blinded by bad ideas can be locked down long-term and companies would stay afloat longer, sucking up more capital. Just as in nature, startup death is necessary. With an overabundance of startups, the culture of failure pushes the weak startups over the cliff in a culling of ideas.&lt;/p&gt;

&lt;p&gt;Smart people know that planning, designing, accounting for unknowns, and having foresight into your direction takes more time up-front and can mean not building as soon but leads to more successful implementations of products, features, and relationships.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;To foster the entrepreneurial culture that I believe is the backbone of a solid economy we should really be trying more things more often.  None of these things, however, should be treated with such insignificance that failure is a suitable outcome.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Approaching things with the significance that they deserve comes from believing that what you do is a long-term cultivation of relationships, learning, and ideas and if your approach is that of a disposable startup where you &amp;#8220;fail fast, fail often&amp;#8221; then you&amp;#8217;ll take the bruises of a disposable startup. Don&amp;#8217;t take the easy way out where you accept failure but build an economy of value by &amp;#8220;trying often and trying harder&amp;#8221;.&lt;/p&gt;
</description></item><item><title>Ikea Hack Standing Desk</title><link>http://nickwynja.com/2012/02/04/ikea-hack-standing-desk</link><guid isPermaLink="false">/2012/02/04/ikea-hack-standing-desk</guid><pubDate>Sat, 04 Feb 2012 22:56:00 EST</pubDate><description>&lt;p&gt;When we moved into a new office this past summer, I had a chance to Ikea hack the perfect standing desk. I&amp;#8217;ve been using this set up for about 6 months and it&amp;#8217;s been ergonomically sound and I&amp;#8217;m quite happy with it. I&amp;#8217;m taller than most people at 6&amp;#8217; 5&amp;#8221; so it was a bit more of a challenge to get the exact height I needed, but this desk is adjustable so will work for nearly anybody. Here&amp;#8217;s my desk and some of the thought that went into building a desk with my perfect working height &lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" rel="footnote"&gt;1&lt;/a&gt;&lt;/sup&gt; of 45 inches.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://f.cl.ly/items/3F0x3L280Z430b341w1W/IMG_0899.jpg" alt="Standing Desk Front" /&gt;&lt;/p&gt;

&lt;p&gt;The most important part of a standing desk are it&amp;#8217;s legs. Being much higher than a standard table makes it tough to find something solid and adjustable. The &lt;a href="http://www.ikea.com/us/en/catalog/products/00144763/"&gt;Vika Artur trestle&lt;/a&gt; has a max height of 36 5/8&amp;#8221; and a wide base which makes them surprisingly sturdy for how lightweight they are. The shelves help structurally but also give organizational space. The trestles are adjustable and can work at a variety of heights including a normal sitting desk if you find yourself needing to go back to sitting.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://f.cl.ly/items/2H2j3U04303m0k393U3o/IMG_0907.jpg" alt="Standing Desk Side" /&gt;&lt;/p&gt;

&lt;p&gt;The table top I went with is the &lt;a href="http://www.ikea.com/us/en/catalog/products/80071164/"&gt;Vika Amon&lt;/a&gt; that is 59&amp;#8221; wide by 29 1/2&amp;#8221; deep. Don&amp;#8217;t go with anything smaller since the trestles have a depth of 27 1/2&amp;#8221;, but you could likely get away with going larger. I would recommend a solid wood top like the &lt;a href="http://www.ikea.com/us/en/catalog/products/60136557/"&gt;Vika Furuskog&lt;/a&gt; over the Vika Amon since it&amp;#8217;s extra weight would provide more stability and the solid top will allow you to securely screw, drill, or attach anything into it—which I did.&lt;/p&gt;

&lt;p&gt;I had to add a small hack to get just a few more inches to my ideal keyboard height. I found some decent looking doorstops at the local hardware store and used them in between the trestles and the table top to add a few inches. I screwed the end of the doorstop into the table top and, after removing the plastic cap on the doorstop, put the metal piece that remained in the holes in the top of the trestle, which fit perfectly and was secure enough to hold the top in place.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://f.cl.ly/items/090g0f1V0T2w430W2f1n/IMG_0909.JPG" alt="Standing Desk Top" /&gt;&lt;/p&gt;

&lt;p&gt;I added the &lt;a href="http://www.ikea.com/us/en/catalog/products/20192828/"&gt;Ekby Alex&lt;/a&gt; wall shelf on top of the desk for storage room as well as to gain a few extra inches height that I needed for my perfect vertical keyboard position. The size of the shelf provides just enough depth at 11&amp;#8221; to comfortably host a keyboard but isn&amp;#8217;t quite long enough to store a piece of 8 1/2&amp;#8221; x 11&amp;#8221; piece of paper lengthwise inside the drawer, which is frustrating. The shelf just sits on the table and isn&amp;#8217;t fastened because on long days, I can slide the shelf back on the desk and move my keyboard and trackpad down onto the table top which is the perfect typing position for when I pull up a stool.&lt;/p&gt;

&lt;p&gt;Between the 36 5/8&amp;#8221; tall trestles, the 1 3/8&amp;#8221; thick table top, the 4 1/2 &amp;#8221; drawers, and the 2 1/2&amp;#8221; doorstops, I had my &lt;em&gt;perfect&lt;/em&gt; working height of 45 inches. Now I needed to get my monitor high enough.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://f.cl.ly/items/1T0z3K171o083f2C2Z1V/IMG_0902.JPG" alt="Standing Desk Display Riser" /&gt;&lt;/p&gt;

&lt;p&gt;I wanted to have a solid, functional riser that could work with any monitor configuration even though I was planning on getting the yet-to-be released Apple Thunderbolt Display. I made the riser with a &lt;a href="http://www.ikea.com/us/en/catalog/products/30193733/"&gt;Lack wall shelf&lt;/a&gt; on top of the &lt;a href="http://www.ikea.com/us/en/catalog/products/40051196/"&gt;Capita bracket&lt;/a&gt;. This gave me enough clearance that I would have decent monitor positioning and wouldn&amp;#8217;t strain my neck looking down at a display.&lt;/p&gt;

&lt;p&gt;This build gave me adjustability to get the ergonomic working height I needed, the stability to pound away at a keyboard all day without the desk wobbling, and all together a great looking and functional standing desk.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;Here&amp;#8217;s the total parts list for my Ikea standing desk build (with the better table top, since that&amp;#8217;s what I recommend):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.ikea.com/us/en/catalog/products/00144763/"&gt;Vika Artur trestle&lt;/a&gt; $30 x 2 = $60&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.ikea.com/us/en/catalog/products/60136557/"&gt;Vika Furuskog&lt;/a&gt; $60&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.ikea.com/ca/us/catalog/products/20192828/"&gt;Ekby Alex&lt;/a&gt; $50&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.ikea.com/us/en/catalog/products/30193733/"&gt;Lack wall shelf&lt;/a&gt; $17&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.ikea.com/us/en/catalog/products/40051196/"&gt;Capita bracket&lt;/a&gt; $15&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Grand total = $205&lt;/p&gt;

&lt;hr /&gt;

&lt;div class="footnotes"&gt;
&lt;hr /&gt;
&lt;ol&gt;

&lt;li id="fn:1"&gt;
&lt;p&gt;For ideal ergonomics, you need to have your elbows bent slightly greater than 90 degrees. To get your ideal working height, measure from the floor to where your wrists wrest when your elbows are slightly obtuse of 90 degrees.&amp;#160;&lt;a href="#fnref:1" rev="footnote"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;

&lt;/ol&gt;
&lt;/div&gt;
</description></item><item><title>Add Instapaper’s Read Later Button to Your Tumblr Blog</title><link>http://nickwynja.com/2012/01/13/add-instapapers-read-later-button-to-your-tumblr-blog</link><guid isPermaLink="false">/2012/01/13/add-instapapers-read-later-button-to-your-tumblr-blog</guid><pubDate>Fri, 13 Jan 2012 20:28:00 EST</pubDate><description>&lt;p&gt;I really love what &lt;a href="http://twitter.com/marcoarment"&gt;Marco Arment&lt;/a&gt; is doing with &lt;a href="http://instapaper.com"&gt;Instapaper&lt;/a&gt;, so when I was working on alterations to the theme for my new blog &lt;a href="http://hackmake.org"&gt;Hack/Make&lt;/a&gt; I wanted to include Instapaper&amp;#8217;s Read Later button. I went over to the &lt;a href="http://www.instapaper.com/publishers"&gt;documentation&lt;/a&gt; to see what I was getting myself into. The &amp;#8220;one-click button&amp;#8221; that I was interested in is a simple &lt;code&gt;iframe&lt;/code&gt; with a few variables specific to your post. Luckily, the URL and title for you tumblr post are kept in the easy-to-access &lt;code&gt;{Permalink}&lt;/code&gt; and &lt;code&gt;{Title}&lt;/code&gt; variables. All you need to do to add Instapaper&amp;#8217;s Read Later one-click button to your tumblr page is to add follow code into your theme wherever you want the button located:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;iframe border="0" scrolling="no" width="78" height="17" allowtransparency="true" frameborder="0" style="margin-bottom: -3px; z-index: 1338; border: 0px; background-color: transparent; overflow: hidden;" src="http://www.instapaper.com/e2?url={Permalink}&amp;amp;title={Title}"&amp;gt;&amp;lt;/iframe&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;If you need to add some padding, simply put the &lt;code&gt;iframe&lt;/code&gt; into a &lt;code&gt;&amp;lt;div&amp;gt;&lt;/code&gt; and apply the appropriate styling. Now your readers can easily take your article on the go with them on the wonderful Instapaper apps for iPhone and iPad.&lt;/p&gt;
</description></item><item><title>Alfred Extension: Convert Unix Time to Readable Format</title><link>http://nickwynja.com/2012/01/12/alfred-extension-convert-unix-time-to-readable-format</link><guid isPermaLink="false">/2012/01/12/alfred-extension-convert-unix-time-to-readable-format</guid><pubDate>Thu, 12 Jan 2012 00:42:52 EST</pubDate><description>&lt;p&gt;I hacked my first &lt;a href="http://www.alfredapp.com/"&gt;Alfred&lt;/a&gt; extension together to solve a pain that I run into sometimes at work. &lt;a href="http://en.wikipedia.org/wiki/Epoch_time"&gt;Unix time&lt;/a&gt; is about as nerdy of a measurement as you can get. It&amp;#8217;s a count (in seconds) since the arbitrary  date of Thursday, January 1st, 1970 UTC which is used throughout Unix environments as a timestamp. It&amp;#8217;s often used in databases as unique timestamps for rows of data and often enough (before adding human-readable columns into our tables) I need to convert epoch time into something I can read. In comes Alfred. The simple extension contains one line of Ruby (which I didn&amp;#8217;t even write myself) and takes the input of your Alfred query.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Copy the unix timestamp.&lt;/li&gt;
&lt;li&gt;Activate Alfred and use the keyword &amp;#8220;epoch&amp;#8221;.&lt;/li&gt;
&lt;li&gt;Paste in the timestamp.&lt;/li&gt;
&lt;li&gt;The extension puts the human-readable timestamp in your clipboard.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The current output of the extension is in the YYYY-MM-DD_HH:MM:SS format and can be configured however you want in the settings.&lt;/p&gt;

&lt;p&gt;If converting Unix time is something you have enough nerd-cred to do, &lt;a href="http://cl.ly/2Q0K2K2F3l1I24011c3I"&gt;download the extension here&lt;/a&gt;.&lt;/p&gt;
</description></item><item><title>Ineffective Design of “Crazy Ones” Poster</title><link>http://nickwynja.com/2011/12/08/ineffective-design-of-crazy-ones-poster</link><guid isPermaLink="false">/2011/12/08/ineffective-design-of-crazy-ones-poster</guid><pubDate>Thu, 08 Dec 2011 21:12:21 EST</pubDate><description>&lt;p&gt;The Apple tech community is still adjusting to a world without Steve Jobs. People are finding ways to continue on his ideas of design and beauty. &lt;a href="http://www.crazyonesquote.com/"&gt;This poster&lt;/a&gt; is one of those projects. It is designed by &lt;a href="http://www.twitter.com/jaredmcdaniel"&gt;Jared McDaniel&lt;/a&gt; and quotes &amp;#8220;Crazy Ones&amp;#8221; from the famous 1997 ad campaign . It was created to commemorate Steve Jobs and be a piece that can hang in the offices and studios of passionate artists. The poster is beautiful but the design isn&amp;#8217;t effective.&lt;/p&gt;

&lt;p&gt;McDaniel&amp;#8217;s &amp;#8220;Crazy Ones&amp;#8221; poster focuses on the beauty of the individual words which distracts visually and emotionally from the quote. The goal of design is to empower the message. Steve Jobs was a fan of beautiful typography and enlisted Susan Kare to create the first uniquely digital fonts, but &amp;#8220;Think Differnt&amp;#8221; isn&amp;#8217;t about typefaces. Another philospohy Steve Jobs employed was one where design, functionality, utility, and usability are each strands of one common thread to reach a product&amp;#8217;s goals. This philosophy isn&amp;#8217;t realized in McDaniel&amp;#8217;s design.&lt;/p&gt;

&lt;p&gt;So, what are the goals of this poster? From the poster&amp;#8217;s site, &lt;a href="http://crazyonesquote.com/"&gt;crazyonesquote.com&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Like so many, we&amp;#8217;ve been deeply inspired by this quote.  With the recent passing of Steve Jobs, we decided to create something that could hang in the office, commemorating an innovator and challenging us daily to &amp;#8220;think different&amp;#8221;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The poster is meant to be art, to inspire, and to challenge. For being art, it&amp;#8217;s effective in that it would be beautiful hanging on my wall. Art should be aligned (or strategically misaligned) with it&amp;#8217;s intended message for greatest effect. As in anything artistic, interpretation is left for you but I believe great artists solely express and leave their work unadulterated of personal interpretation as to not influence yours. In this case, the design skews the message of the quote. It makes it about beauty, when the words say nothing of that. The poster was also created to be inspiring but the essence of the design makes me think the shot of motivation is to &amp;#8220;make beautiful things&amp;#8221; which again is irrelevant of the quote. Both the poster and message are meant to challenge. One of the greatest challenges I see for designers is the ability to design holistically, following the intent of the message and not infusing their own interpretation into it—something this poster is quilty of.&lt;/p&gt;

&lt;p&gt;The quote itself is beautiful, inspiring, and challenging and the designer who&amp;#8217;s crazy enough to keep the design out of the way and let the words make the impact are the ones who embody Jobs&amp;#8217;s philosophies.&lt;/p&gt;
</description></item><item><title>Blank Page</title><link>http://nickwynja.com/2011/11/29/blank-page</link><guid isPermaLink="false">/2011/11/29/blank-page</guid><pubDate>Tue, 29 Nov 2011 22:37:35 EST</pubDate><description>&lt;p&gt;A blank page is scary but it&amp;#8217;s also something to be thankful for.  A blank page is opportunity and opportunity is a chance at success or failure, learning, and heartbreak. It&amp;#8217;s an essential part of a creative process. These are all things to celebrate. Over time the blank page will fill up with a story, one that you&amp;#8217;ve scribed line by line, through your everyday motions. You&amp;#8217;re choices, actions, and indecision are the prose. The punctuation settles in spot matching pauses, exclamations, abrupt stalls, and questions we encounter and embody.&lt;/p&gt;

&lt;p&gt;Along the way, you&amp;#8217;ll go back and reread the novel that&amp;#8217;s unfolding under your pen to examine that the narrative has a thread running intricately through characters and themes. At any time, a good book will break away from its main theme and follow the characters individually into a dark, downward spiral or fruitful ascent to success, but in the end the author will thread these back into unity. You&amp;#8217;ll go back to your story and correct spelling and continuity errors but this is a luxury in which our metaphor doesn&amp;#8217;t lend to life. In and of themselves, those mistakes are not negative; they are a part of the creative journey. We desire to improve on our mistakes and by doing so we better the next chapter of our story. The mistakes and themes of the past are definite but can empower the script of future stories. You can&amp;#8217;t rewrite the past but you can write the future.&lt;/p&gt;

&lt;p&gt;This path of creative iteration should be celebrated as you experience the writing, the editing, as well as the struggles and glorious highs that come with it.&lt;/p&gt;

&lt;p&gt;The blank page is the beginning and the next step—both the empty notebook and the new chapter. It&amp;#8217;s simply what&amp;#8217;s ahead of you. For a new chapter to begin, what&amp;#8217;s before needs to come to an end, or atleast pause and wait. This ending could be a strained march, grasping to complete a tattered thought. It could also be the neatly wrapped conclusion of a moving story. Either way the chance to start something fresh is on the next page.&lt;/p&gt;

&lt;p&gt;A new start. The next chapter.&lt;/p&gt;

&lt;p&gt;Sometimes you just need to turn the page and let the pure white sheet of snow before you inspire the story. Be a curious and excitable child who opens the door to the potential of a snowy playground and not something frigidly oppressive. Opportunity will rouse or paralyze.&lt;/p&gt;

&lt;p&gt;Despite paralysis the story continues whether you&amp;#8217;re the one writing it or not. It&amp;#8217;s up to you pick the pen back up and choose how the story turns out. Know that through these circumstances not reaching the heights of your expectations—turning your dreams onto what&amp;#8217;s on the page—isn&amp;#8217;t failure, just a step in the creative process. Keep writing even when you don&amp;#8217;t know how the pieces fit and especially when you don&amp;#8217;t know where the story is going. Be roused by what the story could become and excited by how what you create could turn out more interesting than anything you&amp;#8217;ve known before.&lt;/p&gt;

&lt;p&gt;And again you edit.&lt;/p&gt;

&lt;p&gt;When you think most certainly you know the direction of the story, introspection can keep a clear path defined. Under the strength of your convictions, stories will swiftly fill the pages. Meditating on your course isn&amp;#8217;t to slow you down but to make sure your compass is well directed. Move to this direction with gusto.&lt;/p&gt;

&lt;p&gt;Being truly thankful is about examining what we are given, not what we take. In that essence the blank page is what we should celebrate. Possibilities are offered up to us continually, indifferent of their outcome. Our foolishness to let these possibilites go (or lack of awareness that they&amp;#8217;re even in front of us) shouldn&amp;#8217;t stop us from recognizing where they came from. Be thankful for opportunities and celebrate the successes and gains in your creative path. Be grateful of the blank page for you to craft your story.&lt;/p&gt;
</description></item><item><title>Engineer Creativity—Create Ingenuity</title><link>http://nickwynja.com/2011/11/09/engineer-creativity-create-ingenuity</link><guid isPermaLink="false">/2011/11/09/engineer-creativity-create-ingenuity</guid><pubDate>Wed, 09 Nov 2011 21:09:58 EST</pubDate><description>&lt;p&gt;Design, plan, and direct the ability to create.&lt;br /&gt;
Make, cause, or become the power of creative imagination.&lt;/p&gt;
</description></item><item><title>Adam Lisagor on Steve Jobs</title><link>http://nickwynja.com/2011/10/24/adam-lisagor-on-steve-jobs</link><guid isPermaLink="false">/2011/10/24/adam-lisagor-on-steve-jobs</guid><pubDate>Mon, 24 Oct 2011 10:00:53 EDT</pubDate><description>&lt;p&gt;On the &lt;a href="http://5by5.tv/specials/2-thank-you-steve-jobs"&gt;5by5 &amp;#8220;Thank You, Steve Jobs&amp;#8221;&lt;/a&gt; special:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Hi Steve,&lt;/p&gt;
  
  &lt;p&gt;How great is it that you&amp;#8217;re one of the most influential people in the history of the world and we all call you Steve. How great is it that you&amp;#8217;re famously reclusive and private but you read all of your email and answer it on a whim. That&amp;#8217;s something I&amp;#8217;m taking from you, by the way. It&amp;#8217;s a testament to what kind of a man you are; one that holds himself personally accountable for his decisions, who will answer for himself, and is always the most apt representative of the company he created. I&amp;#8217;ll tell you something about what I&amp;#8217;ve learned from you, something that&amp;#8217;s now more clear in the last day or so than it&amp;#8217;s been even before. That&amp;#8217;s it&amp;#8217;s OK to say no to the things in our lives that add no meaning. That by doing so, we set the context within which to be our greatest selves. In the way you began at some point to wake up each day and confront yourself with your mortality, I&amp;#8217;ll from here on wake up and ask myself how many things am I doing that add no meaning and whatever that number is is how many things I&amp;#8217;ll strip away. Because I want to be my greatest self, like you. So thank you, Steve. You brought into the world a real honest love for the promise of humanity. You saw the greatness in us and helped build us the tools to see the greatness in ourselves.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I haven&amp;#8217;t been able to articulate much on Steve&amp;#8217;s death. Adam&amp;#8217;s words, delivered in his solemn but engaged tone, are some I&amp;#8217;ll never forget.&lt;/p&gt;
</description></item><item><title>Like A Disaster</title><link>http://nickwynja.com/2011/09/29/books-like-disaster</link><guid isPermaLink="false">/2011/09/29/books-like-disaster</guid><pubDate>Thu, 29 Sep 2011 13:46:39 EDT</pubDate><description>&lt;blockquote&gt;
  &lt;p&gt;We need the books that affect us like a disaster, that grieve us deeply, like the death of someone we loved more than ourselves, like being banished into forests far from everyone, like a suicide. A book must be the ax for the frozen sea inside us.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;—Franz Kafka&lt;/p&gt;
</description></item><item><title>Culture Curious to Create</title><link>http://nickwynja.com/2011/09/18/culture-curious-to-create</link><guid isPermaLink="false">/2011/09/18/culture-curious-to-create</guid><pubDate>Sun, 18 Sep 2011 22:30:00 EDT</pubDate><description>&lt;p&gt;&lt;a href="http://makerfaire.com/"&gt;Maker Faire&lt;/a&gt; was hosted at the New York Hall of Science this weekend. The &amp;#8220;Maker Culture&amp;#8221; has been growing both in size and recognition in recent years. Be it hacking &lt;a href="http://arduino.cc"&gt;Arduino&lt;/a&gt; or knitting; geeks, eccentrics, and creatives are making things and sharing them with the world in a more apparent way than ever before. Events like Maker Faire and connected online communities are exposing this &amp;#8216;movement&amp;#8217; that historically has been recognized as people making stuff in their basement. Makers are now able to share a create together.&lt;/p&gt;

&lt;p&gt;Whether it&amp;#8217;s perceived or not, it&amp;#8217;s thought we create less and are forming habits of consumption which alter perspectives on the impacts of manufacturing on our world. Makers are trying to turn this around by showing how acting on creative curiosity can make better people, families, and communities.&lt;/p&gt;

&lt;p&gt;Somewhere along the path of growing up many of us lose the desire to build things. We blame it on our busy schedules usually, but we&amp;#8217;ve lost the &lt;em&gt;curiosity&lt;/em&gt; to be making things. As kids, we&amp;#8217;re curious about how things works so we poke at them, tear them apart, and try to build them ourselves in search of answers.&lt;/p&gt;

&lt;p&gt;Seth Godin, from his &amp;#8220;&lt;a href="http://www.amazon.com/Poke-Box-Seth-Godin/dp/1936719002"&gt;manifesto of starting&lt;/a&gt;&amp;#8221;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Initiative is a little like creativity in that both require curiosity. Not the search for the “right” answer, as much as an insatiable desire to understand how something works and how it might work better.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Making is the beginning but what happens is a rediscovery of childhood curiosity and a desire to create. Let this curiosity run wild and go make something. It doesn&amp;#8217;t matter what you make, but that you are creating.&lt;/p&gt;
</description></item><item><title>Code is Communication</title><link>http://nickwynja.com/2011/09/04/code-is-communication</link><guid isPermaLink="false">/2011/09/04/code-is-communication</guid><pubDate>Sun, 04 Sep 2011 19:17:26 EDT</pubDate><description>&lt;p&gt;MoMA&amp;#8217;s &lt;a href="http://www.moma.org/interactives/exhibitions/2011/talktome/"&gt;Talk To Me&lt;/a&gt; exhibit ended up giving me the &lt;a href="https://twitter.com/nickwynja/status/110016507936907264"&gt;spark I needed.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I&amp;#8217;ve been faced with a struggle where my intrinsic  nature to create has been parked by an inability to choose a path or method in which to produce—I want to make something with impact, but what? My career has taken me into the world of web technologies but I&amp;#8217;ve never been excited or &lt;a href="https://twitter.com/nickwynja/status/109735155056386048"&gt;curious enough&lt;/a&gt; to jump into discovering the language of the web.&lt;/p&gt;

&lt;p&gt;&amp;#8220;Talk To Me&amp;#8221; helped me discover something. Though it&amp;#8217;s were my friends and colleagues focus their creative efforts, there are plenty of other playgrounds for me to build in. Communications have always been an interest for me. Lately, I&amp;#8217;ve thought that without a knowledge of code or the curiosity that&amp;#8217;s required to put in hundreds of hours of learning, I would be relegated to the old-fashioned device of communication through plain English. What I saw on that afternoon in the &amp;#8220;museum&amp;#8221; &lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" rel="footnote"&gt;1&lt;/a&gt;&lt;/sup&gt; wasn&amp;#8217;t surprising from a technical standpoint but helped me discover a key element of what I &lt;em&gt;was&lt;/em&gt; passionate about but hadn&amp;#8217;t acknowledged. Creating ideas was one thing but I needed to be able to communicate those ideas in a way that was captivating and relative to what I was sharing. No one wants to read an essay on the impact of digital communication but visualizing it through applications or converting those digital conversations into an analog (or real life, not on your iPhone) exchange.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Create ideas through words. Proliferate ideas through technology.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It&amp;#8217;s not about code being the building blocks of some &lt;em&gt;thing&lt;/em&gt; but the nouns and verbs of tomorrow&amp;#8217;s language. Code is communication and technology becomes the medium to tell stories. That&amp;#8217;s what media has always been about. As evolution in how we read, listen, and watch these stories occurs, I need to continue to produce the platforms in which we communicate. I can do that in ways other than building responsive web sites or APIs. Maybe it becomes something like &lt;a href="http://www.arduino.cc/"&gt;Arduino&lt;/a&gt; projects or turning statuses into stories and sharing what our generation has to say. That&amp;#8217;s enough to inspire me and instill a level of curiosity to learn tomorrows languages.&lt;/p&gt;

&lt;div class="footnotes"&gt;
&lt;hr /&gt;
&lt;ol&gt;

&lt;li id="fn:1"&gt;
&lt;p&gt;I&amp;#8217;ve always thought museums were for antiquated but not forgotten treasures.&amp;#160;&lt;a href="#fnref:1" rev="footnote"&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;

&lt;/ol&gt;
&lt;/div&gt;
</description></item><item><title>Decision Fatigue</title><link>http://nickwynja.com/2011/08/31/decision-fatigue</link><guid isPermaLink="false">/2011/08/31/decision-fatigue</guid><pubDate>Wed, 31 Aug 2011 00:40:27 EDT</pubDate><description>&lt;p&gt;John Tierney in &lt;a href="http://www.nytimes.com/2011/08/21/magazine/do-you-suffer-from-decision-fatigue.html"&gt;his piece&lt;/a&gt; for the New York Times:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The more choices you make throughout the day, the harder each one becomes for your brain, and eventually it looks for shortcuts, usually in either of two very different ways.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The first shortcut is to act on impulse. The other? Do nothing. Timely after I wrote about how &lt;a href="http://nickwynja.com/post/9269153946"&gt;indecision results in mediocrity&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Humans have a limited capacity to make decisions. The more we face the likelier the easy choice is made, not necessarily the right one. When paralyzed by indecision, any choice is better than postponing but focus—tightening scope—avoids decision fatigue and results in more appropriate choices.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.psy.fsu.edu/faculty/baumeister.dp.html"&gt;Roy F. Baumeister&amp;#8217;s&lt;/a&gt; studies show that people with the best self-control are the ones who structure their lives so as to conserve willpower. […] Instead of counting on willpower to remain robust all day, they conserve it so that it’s available for emergencies and important decisions.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Design your processes to reduce decisions you have to make. Build a team that you can trust to make choices. Conserve your willpower to decide and execute when you&amp;#8217;re needed most.&lt;/p&gt;
</description></item><item><title>“We”re building a business that builds a business.”</title><link>http://nickwynja.com/2011/08/30/business-that-builds-business</link><guid isPermaLink="false">/2011/08/30/business-that-builds-business</guid><pubDate>Tue, 30 Aug 2011 21:33:00 EDT</pubDate><description>&lt;p&gt;&amp;#8220;This sounds like a thing to say when you are building a business that doesn&amp;#8217;t make money. It&amp;#8217;s such an easy thing to say and makes you sound so much greater that it&amp;#8217;s being used by more and more startups that don&amp;#8217;t know how to ask for money.&amp;#8221;
&lt;strong&gt;—Foursquare Team&lt;/strong&gt;&lt;/p&gt;
</description></item><item><title>Jack Layton</title><link>http://nickwynja.com/2011/08/27/jack-layton-dream-quote</link><guid isPermaLink="false">/2011/08/27/jack-layton-dream-quote</guid><pubDate>Sat, 27 Aug 2011 15:05:00 EDT</pubDate><description>&lt;p&gt;&amp;#8220;Always have a dream that is longer than a lifetime.&amp;#8221;&lt;/p&gt;
</description></item><item><title>Focus, Indecision, and Mediocrity</title><link>http://nickwynja.com/2011/08/22/focus-indecision-and-mediocrity</link><guid isPermaLink="false">/2011/08/22/focus-indecision-and-mediocrity</guid><pubDate>Mon, 22 Aug 2011 19:20:00 EDT</pubDate><description>&lt;p&gt;&lt;a href="http://www.asymco.com"&gt;Horace Dediu&amp;#8217;s&lt;/a&gt; lede from the piece titled &lt;a href="http://www.asymco.com/2011/02/09/why-focusing-on-a-few-products-is-hard/"&gt;&amp;#8220;Why Focusing on a Few Products is Hard&amp;#8221; &lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&amp;#8220;Focus is about saying no.&amp;#8221; This quote is perhaps apocryphal but it&amp;#8217;s accredited to Steve Jobs. It&amp;#8217;s not a novel idea.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Dediu continues to discuss the &lt;a href="http://en.wikipedia.org/wiki/Portfolio_theory"&gt;Portfolio theory&lt;/a&gt; and how in concept, spreading across horizontals can be strategically beneficial but in reality (unlike for street vendors in New York City selling hot dogs and umbrellas) it is hurtful to technology companies.&lt;/p&gt;

&lt;p&gt;Technology startups have to make many critical choices early in their development, but none is more important than the scope and vertical they choose to restrain their products and services. Where this scope falls depends on many factors including audience,  distribution medium,  cost of operation and price for product. Feature creep is one reoccurring example of the importance of defining scope and staying within it, but many aspects of business that are far away from feature sets and product roadmaps still need to be defined and managed within restraints.&lt;/p&gt;

&lt;p&gt;Focus creates clarity, and clarity eases decision.&lt;/p&gt;

&lt;p&gt;During cycles of &lt;a href="http://www.startuplessonslearned.com/2008/09/ideas-code-data-implement-measure-learn.html"&gt;idea, code, measure, and learn,&lt;/a&gt; indecision can stretch out the process, create tension in the team, and ultimately end up causing more waste than if you were to just make the &lt;em&gt;wrong&lt;/em&gt; decision right away. The data and learning that could have been collected after your right or wrong decision is valuable. The time you waste and stress incurred when  paralyzed by indecision &lt;em&gt;will&lt;/em&gt; hurt your company and product.&lt;/p&gt;

&lt;p&gt;Many startups are doomed for failure because of non-viable ideas and even worse implementations. Others have products that stagnate on mediocrity not because of product ideation but a team that is debilitated by indecision. Focusing your product — being able to clearly say &amp;#8220;that&amp;#8217;s not what we do&amp;#8221; when pitched a feature — will enable you a clearer vision and path, making decisions easier, liberating your team to build the product you know best.&lt;/p&gt;
</description></item><item><title>Orwellian Truth</title><link>http://nickwynja.com/2011/08/19/in-a-time-of-universal-deceit-telling-the-truth</link><guid isPermaLink="false">/2011/08/19/in-a-time-of-universal-deceit-telling-the-truth</guid><pubDate>Fri, 19 Aug 2011 12:14:00 EDT</pubDate><description>&lt;blockquote&gt;
  &lt;p&gt;In a time of universal deceit, telling the truth is a revolutionary act.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;—George Orwell&lt;/p&gt;
</description></item></channel></rss>

