<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Mario Sanchez Carrion</title>
    <description>Miami based product manager</description>
    <link></link>
    <atom:link href="/feed.xml" rel="self" type="application/rss+xml" />
    
      <item>
        <title>The Evolution Of My Digital Presence</title>
        <description>&lt;p&gt;I&amp;#39;ve always been fascinated by the Internet. The idea of having a publishing platform capable of instantly reaching anybody in the world, with no gatekeepers, for free, is still mind boggling to me. Today, of course, everybody has a digital presence, although for most people that means a profile in one or more of the ubiquitous social networks that have taken the Internet by storm. &lt;/p&gt;

&lt;p&gt;When I talk about a having a digital presence, though, I&amp;#39;m not talking about being a tenant in Zuck&amp;#39;s massive apartment complex, but rather of building and owning our own digital home: a website that we can deploy using our own domain, designed and tweaked to our liking, and where we call the shots. &lt;/p&gt;

&lt;h3&gt;The Early Days&lt;/h3&gt;

&lt;p&gt;I&amp;#39;ve had a digital presence through self-deployed websites (mainly as a hobby) since the early 2000&amp;#39;s. I started off by learning some basic HTML tags and hastily coding a website that I used to publish notes-to-self about search engine optimization, a topic I was deeply interested in back then. Then, Web 2.0 came along.&lt;/p&gt;

&lt;h3&gt;The Wordpress Days&lt;/h3&gt;

&lt;p&gt;Web 2.0 brought us content management systems (CMS) like Wordpress, with their arsenal of plug-ins, customization options and interactive features. I was curious, so around 2008 I created a self-hosted Wordpress blog where I posted short musings about branding.&lt;/p&gt;

&lt;p&gt;It didn&amp;#39;t take me long to figure out that Wordpress was overkill for what I really needed: a simple personal blog with no bells and whistles. That&amp;#39;s when the simplicity of &lt;a href=&quot;http://en.wikipedia.org/wiki/Posterous&quot;&gt;Posterous&lt;/a&gt; won me over. Good things don&amp;#39;t last forever, though, and some time after I switched Posterous sold out to Twitter and closed down. I had to take my posts and reluctantly move back to Wordpress, learning a valuable lesson in the process: never host your website in somebody else&amp;#39;s platform.&lt;/p&gt;

&lt;p&gt;By that time, however, Wordpress had lost its luster. Its notorious security vulnerabilities meant that I was spending less time writing, and more time weeding out blog comment spam and upgrading to newer versions of the software. Not fun. The straw that broke the camel&amp;#39;s back was when someone hacked into my account and started sending mass email spam. I immediately deleted my blog and removed the WP installation from my hosting account.&lt;/p&gt;

&lt;h3&gt;Back To The Future: Static Sites Make a Comeback&lt;/h3&gt;

&lt;p&gt;A few months after I obliterated my Wordpress site, I ran into a web design tutorial written by &lt;a href=&quot;http://www.evbogue.com&quot;&gt;Ev Bogue&lt;/a&gt; that re-acquainted me with the basics of creating web pages, and introduced me to the newer, much simpler iterations of HTML and CSS: HTML5 and CSS3. I got excited and decided to create a website from scratch, like in the early days. I diligently followed the instructions in the tutorial, tweaked a bit the basic style sheet and framework that Ev suggested, and a few days later my new plain vanilla HTML personal site was up.&lt;/p&gt;

&lt;p&gt;While it felt great to finally have a site I could control, the problems were obvious: since it doesn&amp;#39;t use any programming, a hand-coded HTML site needs you to create and update each page individually. If you ever want to change, say, the footer or the navigation menu, you have to do it in every single page. If your site has only three or four pages it&amp;#39;s not that big of a deal, but if you start adding posts and your site grows it can become a real issue. There had to be a better way, and that way is to use a &lt;a href=&quot;http://www.mattweldon.com/static-websites-have-made-a-comeback/&quot;&gt;static site generator&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;Blogging Like A Hacker: Static Site Generators&lt;/h3&gt;

&lt;p&gt;A static site generator is basically a program that takes your content and merges it with predefined templates that determine the layout and the look and feel of your pages, and then spits out your site as a bunch of HTML files. Depending on how you configure it, the program can create a blog post list for you, add new posts to that list, and update all your pages whenever you make a change to a common element of your site (like the navigation menu, footer, or sidebar)-all done automatically. &lt;/p&gt;

&lt;p&gt;While using a static site generator is extremely easy, setting one up can be a royal pain for non-programmers like me. I definitely wanted to go this route, though, so I focused on acquiring the skills and tools to make it happen. The process took some time, some sweat equity, quite a bit of reading and plenty of trial and error, but in the end I succeded. &lt;/p&gt;

&lt;p&gt;The static site generator I&amp;#39;m currently using is &lt;a href=&quot;http://www.jekyllrb.com&quot;&gt;Jekyll&lt;/a&gt;, although there are literally &lt;a href=&quot;https://staticsitegenerators.net/&quot;&gt;hundreds&lt;/a&gt; that you can choose from.&lt;/p&gt;

&lt;h3&gt;The Tools of the Trade&lt;/h3&gt;

&lt;p&gt;In order to deploy a static site generator I had to learn a few things: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://daringfireball.net/projects/markdown/&quot;&gt;Markdown&lt;/a&gt; to write blog posts and content in general (easy); &lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.htmlandcssbook.com/&quot;&gt;HTML and CSS&lt;/a&gt; to tweak the look and feel of the site (HTML, easy; CSS a little harder); &lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://git-scm.com/book/en/v2&quot;&gt;Git&lt;/a&gt; to record changes to the site and communicate with my web hosting server (hard to wrap your head around the concept, but not that difficult once you &amp;quot;get it&amp;quot;); and &lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://cli.learncodethehardway.org/bash_cheat_sheet.pdf&quot;&gt;Linux-style command line essentials&lt;/a&gt; to install the required software and to move quickly around my hard drive folders (easy). &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Aside from that, I had to download the following programs: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://git-scm.com/download/win&quot;&gt;Git for Windows&lt;/a&gt; to version control my site and access a command line emmulator called Git Bash;&lt;/li&gt;
&lt;li&gt;Ruby and Ruby&amp;#39;s Dev Package, necessary to make Jekyll run;&lt;/li&gt;
&lt;li&gt;Python, also needed to run Jekyll; and&lt;/li&gt;
&lt;li&gt;The Jekyll and Github Pages gems: to generate the site and enable hosting in &lt;a href=&quot;https://pages.github.com/&quot;&gt;Github Pages&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&quot;http://jekyll-windows.juthilo.com/&quot;&gt;This site&lt;/a&gt; gives a very good overview of how to install Jekyll if you have a Windows box.&lt;/p&gt;

&lt;p&gt;Finally, I opened an account with &lt;a href=&quot;http://www.github.com&quot;&gt;Github&lt;/a&gt; to create the &lt;a href=&quot;https://github.com/mariobox/mariobox.github.io&quot;&gt;site&amp;#39;s remote repository&lt;/a&gt; (basically a backup copy of my website&amp;#39;s files that Github uses to generate and serve my site to the public web). I also cloned an existing repository called &lt;a href=&quot;https://github.com/barryclark/jekyll-now&quot;&gt;Jekyll Now&lt;/a&gt;, which provides a basic template for a Jekyll blog, so you don&amp;#39;t have to start from scratch (you can later tweak it locally, in your computer, to make it look the way you want).&lt;/p&gt;

&lt;h3&gt;Next Steps&lt;/h3&gt;

&lt;p&gt;So, what&amp;#39;s next? Perhaps tweak the look and feel of the site some more, creating sub-domains, deploying to a virtual private server (VPS), and installing a Linux operating system. Stay tuned.&lt;/p&gt;
</description>
        <pubDate>Thu, 19 Feb 2015 00:00:00 +0000</pubDate>
        <link>/digital-presence/</link>
        <guid isPermaLink="true">/digital-presence/</guid>
      </item>
    
      <item>
        <title>Unsolicited Financial Advice</title>
        <description>&lt;p&gt;In this short post I will try to summarize what I would do to start building wealth if I were just starting out. Your circumstances may be different, so proceed with caution and don&amp;#39;t take this as gospel.&lt;/p&gt;

&lt;p&gt;Here we go: &lt;/p&gt;

&lt;p&gt;First, if your employer offers a 401K plan with a match, I would contribute up to the maximum amount matched.  Some companies match your contribution dollar for dollar. Others match 50%. Either way, that&amp;#39;s an instant 100% or 50% return on your money. You won&amp;#39;t get that kind of return anywhere else (that I know). Plus, your money will grow tax free until you&amp;#39;re allowed to withdraw it.&lt;/p&gt;

&lt;p&gt;Once you&amp;#39;ve maximized your 401K match, the next step is to eliminate all credit card debt. Credit card interest is a rip off (20% or more per year in most cases). I don&amp;#39;t know of any safe investment that pays that much.  Paying off your credit card debt is like getting a double digit return on your money. Once your balance is paid off, make it a habit to pay your credit card bill in full every month.&lt;/p&gt;

&lt;p&gt;After your credit card debt has been obliterated, it&amp;#39;s time to build an emergency fund. An emergency fund is designed to protect you against unexpected events like the loss of a job, car and home repairs, medical bills, etc. You should budget at least a full year of living expenses, plus a couple thousand dollars for car repairs and another couple thousand for home repairs. Also, add any other expense you anticipate in the next 12 to 24 months: a trip, a wedding, a course, etc.  Once you take everything into account, your emergency fund may need to be several tens of thousands of dollars strong. Granted, it&amp;#39;s not easy to save that much, but doing so will give you piece of mind to engage in other types of investment. &lt;/p&gt;

&lt;p&gt;Once your emergency stash has been funded, it&amp;#39;s time to look at your 401K plan again. Go ahead and invest up to the maximum allowed beyond your company match. Even though you&amp;#39;re not getting a match your money will still grow tax free. The only drawback is that it will be tied up for a long time, but since you&amp;#39;ve already built an emergency fund you shouldn&amp;#39;t be concerned.&lt;/p&gt;

&lt;p&gt;If you still have money left, open a Roth IRA, which works like a 401K that you can open yourself, without going through your employer. Since a Roth IRA is funded with after tax dollars, not only will your contributions grow tax free, but you will also be able to withdraw your money tax free once you reach the required age.&lt;/p&gt;

&lt;p&gt;If you&amp;#39;ve done everything so far and still have money left, you can now open a brokerage account. Your brokerage account is a place to park your money until you decide to invest it. By opening a brokerage account with any of the reputable discount brokerage firms, you will be able to buy and sell stocks and mutual funds online or by phone. &lt;/p&gt;

&lt;p&gt;My personal preference is to start with index funds (funds that mimic the performance of a market index like the S&amp;amp;P500), since they have the lowest fees and usually better returns than funds managed by so called experts. Then, I would purchase stocks of good, solid companies during market dips or when the stock is cheap. I prefer to hold my investments for the long run, instead of trying to time the market by constantly buying and selling.&lt;/p&gt;

&lt;p&gt;With this set up, plus good money habits, you should be well on your way to a comfortable financial position. &lt;/p&gt;

&lt;p&gt;Remember that these are just a few tips, and that there are plenty of good books in the personal finance space that you can read. Two that I highly recommend are: &lt;a href=&quot;http://amzn.to/1EzmBcC&quot;&gt;The Millionaire Next Door&lt;/a&gt;, by William D. Danko, to start developing good money habits, and &lt;a href=&quot;http://amzn.to/0761147489&quot;&gt;I Will Teach You To Be Rich&lt;/a&gt;, by Ramit Sethi, for actionable tips on setting up your financial accounts and designing the right systems to manage your money.&lt;/p&gt;
</description>
        <pubDate>Tue, 03 Feb 2015 00:00:00 +0000</pubDate>
        <link>/moneytips/</link>
        <guid isPermaLink="true">/moneytips/</guid>
      </item>
    
      <item>
        <title>Practical Minimalism</title>
        <description>&lt;p&gt;There&amp;#39;s a lot of talk about minimalism these days, and much confusion about what it means. While I&amp;#39;m far from being an authority on the subject (I consider myself a minimalist-in-training) I&amp;#39;m going to throw in my two cents and explain what minimalism means to me.&lt;/p&gt;

&lt;p&gt;Minimalism doesn&amp;#39;t mean that we have to turn into some sort of Buddhist monk going through life with six or seven worldly possessions.  Getting rid of stuff is not the goal here, but rather the consequence of choosing to live in a more deliberate way. &lt;/p&gt;

&lt;p&gt;Minimalism starts by understanding that everything we surround ourselves with either adds value to our life or is just taking space. Things add value by being useful or by bringing us joy. Everything we let into our lives has to earn it&amp;#39;s place. &lt;/p&gt;

&lt;p&gt;A good way to make minimalism a daily practice is to get into the habit of constantly asking ourselves this question: &amp;quot;What is this doing here?&amp;quot; If it&amp;#39;s not adding value or bringing us joy, get rid of it. Throw it away or give it to someone who may need it/like it/want it. Here&amp;#39;s the key, though: whatever we decide to do we must decide quickly, or the resistance (laziness, procrastination, the just-in-case syndrome) will take over.&lt;/p&gt;

&lt;p&gt;Keep it up until this daily practice becomes a habit, and you&amp;#39;ll be surprised by how eliminating physical clutter contributes to getting rid of mental clutter too. I&amp;#39;ve noticed that since I&amp;#39;m doing this I&amp;#39;m able to think more clearly, and have an easier time getting organized and getting things done. &lt;/p&gt;

&lt;p&gt;Here you go, my two cents.&lt;/p&gt;
</description>
        <pubDate>Fri, 30 Jan 2015 00:00:00 +0000</pubDate>
        <link>/mini/</link>
        <guid isPermaLink="true">/mini/</guid>
      </item>
    
      <item>
        <title>Work the System - Book Review</title>
        <description>&lt;p&gt;&lt;img src=&quot;../images/wts.jpg&quot; class=&quot;book&quot;&gt;I decided to read &lt;a href=&quot;http://amzn.to/1zpyqRi&quot;&gt;Work The System&lt;/a&gt; when it was highly recommended by two respected business thinkers that I follow online: &lt;a href=&quot;http://www.joshkaufman.net&quot;&gt;Josh Kaufman&lt;/a&gt; and &lt;a href=&quot;http://www.sebastianmarshall.com&quot;&gt;Sebastian Marshall&lt;/a&gt;.  Also, because I&amp;#39;ve been very busy lately and a deep understanding of systems, standardization and automation will bring more control, less stress, and more time for value-adding activities like thinking, strategizing, and keeping healthy.&lt;/p&gt;

&lt;p&gt;The book didn&amp;#39;t disappoint, and left me with plenty of actionable steps.&lt;/p&gt;

&lt;p&gt;I hereby summarize the main tenets of the book:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;The systems of the world work perfectly 99.9% of the time:&lt;/strong&gt; Everyday systems like air travel or electricity delivery almost never fail. We’ve become so used to it that we have come to expect it.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Businesses are machines:&lt;/strong&gt; Like their mechanical counterparts, businesses have moving parts that operate in a linear 1-2-3 fashion. If a business sub-system is not working properly, we can isolate it, fix it and put everything back together, just like we would with a physical machine.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Large corporations operate with systems.  Small businesses improvise:&lt;/strong&gt; The reason multi-billion dollar companies grow and expand is the relentless implementation of systems. For small business owners, though, systems implementation is low in the scale of priorities. Those who are able to take the leap and embrace systems thinking will be orders of magnitude more successful than those who don’t.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;We are all project engineers. Our job is to create, fix and maintain systems:&lt;/strong&gt; This may come as a paradigm shift for most of us. By rethinking the way we work and redefining our role to project engineer (designing and repairing systems for a living) our productivity (and our sanity, I may add) will improve exponentially.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;98% perfection:&lt;/strong&gt;  Borrowed from Pareto&amp;#39;s 80-20 rule, the author convincingly argues that 98% good is as well as perfect, since the remaining 2% would take too much time and effort for the benefit it would bring.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Errors of omission:&lt;/strong&gt; Failures are not usually the consequence of overt mistakes but simply that somebody neglected or forgot something.  This is perhaps one of the most powerful arguments in favor of systems: if a process is thoroughly documented and followed, the chances of things going wrong will decrease.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Quiet Courage:&lt;/strong&gt; Taking a cue from &lt;a href=&quot;http://www.stevenpressfield.com/&quot;&gt;Steven Pressfield&lt;/a&gt;&amp;#39;s books, the author urges us to beat the resistance by sticking to the plan no matter what, even when we don&amp;#39;t feel like it.  He calls this quality &amp;quot;quiet courage&amp;quot;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Point of Sale Thinking:&lt;/strong&gt; An analogy to describe the  habit of doing things at once, by either doing them ourselves or delegating them. As in POS systems, where different business sub-systems are updated instantly the moment a sale is recorded, our habit of doing things at once will make a positive difference on our business in the long run.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Singles and Doubles. Not Home Runs:&lt;/strong&gt; Superb results are not the consequence of genius or bursts of inspiration, but of small, deliberate and consistent incremental improvements.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All these concepts lead us to the most important part of the book: the introduction of the three essential documents. They are: the &lt;strong&gt;Strategic Objective&lt;/strong&gt;, the &lt;strong&gt;Operating Principles&lt;/strong&gt; and the &lt;strong&gt;Operating Procedures&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The last of these three life changing tools, the Operating Procedures, are what make the day to day of a business go flawlessly. They&amp;#39;re the detailed written instructions on how the different tasks and activities are to be performed.&lt;/p&gt;

&lt;p&gt;The Strategic Objective states what you aim for (your vision and long term goals), while the Operating Principles serve as a guideline for decision making.&lt;/p&gt;

&lt;p&gt;To help us internalize the concept, the author draws an interesting parallel between the three documents and the Declaration of Independence (the Strategic Objective), the Constitution (the Operating Principles) and the laws (the Operating Procedures).&lt;/p&gt;

&lt;p&gt;What makes this book remarkable, aside from the usefulness of its content, is the deep personal connection between the author and the concepts he lays out. Sam Carpenter credits the systems mindset for rescuing him from near burnout and 80-hour workweeks, and leading him to a more relaxed, productive life.&lt;/p&gt;

&lt;p&gt;The book is also very well structured, half textbook/half biography, turning what would otherwise be a dry, tedious subject into an engaging read.&lt;/p&gt;

&lt;p&gt;Highly recommended.&lt;/p&gt;
</description>
        <pubDate>Mon, 26 Jan 2015 00:00:00 +0000</pubDate>
        <link>/workthesystem/</link>
        <guid isPermaLink="true">/workthesystem/</guid>
      </item>
    
      <item>
        <title>Should I Buy or Lease a Car?</title>
        <description>&lt;p&gt;One of the questions I hear more often from co-workers who have just relocated
to Miami from other countries is this: &lt;strong&gt;should I buy or lease&lt;/strong&gt; a car?&lt;/p&gt;

&lt;p&gt;There is no easy answer, and every pundit seems to have his own opinion. My
intention with this post is to try to get an answer &lt;strong&gt;purely from a cashflow
standpoint&lt;/strong&gt;. The better option will be the one that requires the &lt;strong&gt;lowest&lt;/strong&gt;
cash outlay.&lt;/p&gt;

&lt;p&gt;Let&amp;#39;s assume that we want to get a new car that costs around $25,000, and that
we&amp;#39;re trying to decide if we should buy it or lease it. The numbers for the
lease (based on an actual deal I saw in the paper today) are these:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Lease Term&lt;/strong&gt;: 36 months&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Down Payment&lt;/strong&gt;: $2,588 due at signing&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Monthly Payment&lt;/strong&gt;: $189&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The numbers for a purchase, considering a loan term of 72 months (twice the
duration of the lease) and a down payment equal to that of the lease would be:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Car Price&lt;/strong&gt;: $25,000&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Down Payment&lt;/strong&gt;: $2,588&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Interest Rate&lt;/strong&gt;: 3.9%/year&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Monthly Payment&lt;/strong&gt;: $349.62 (calculated using the PMT function in Excel)&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Resale value of car after 72 months&lt;/strong&gt;: $10,000 (according to a popular used car site for the car we&amp;#39;re considering).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now we will compare both options by &lt;strong&gt;bringing both cash flows to net present
value&lt;/strong&gt;, using a rate of return of &lt;strong&gt;3%&lt;/strong&gt; (in reality, we can use any rate
since we will be using the same rate for both options). Bear in mind, that to
match the loan period, we will assume that we will sign two identical 36 month
leases, one after the other.&lt;/p&gt;

&lt;p&gt;To calculate our values we will use the Present Value formula in Excel.&lt;/p&gt;

&lt;p&gt;OK, here we go:&lt;/p&gt;

&lt;h2&gt;Lease&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Present value of down payment, first lease period&lt;/strong&gt;: -$2,588&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Present value of down payment, second lease period&lt;/strong&gt;: -$2,588/(1 + 0.03)^3 = $2,368.87&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Present value of first set of monthly payments&lt;/strong&gt;: -PV(0.03/12, 36, 189) = -$6,499.04&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Present value of second set of monthly payments&lt;/strong&gt;: -$6,499.04/(1 + 0.03)^3 = $5,947.54&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;TOTAL PRESENT VALUE OF CASH FLOWS FOR LEASE&lt;/strong&gt;: -$17,403.45&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;Purchase&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Present value of down payment&lt;/strong&gt;: -$2,588&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Present value of monthly payments&lt;/strong&gt;: -PV(0.03/12, 72, 349.62) = -$23,010.89&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Present value of resale value of car at end of loan&lt;/strong&gt;: +10,000/(1 + 0.03)^6 = +$8,374.84&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;TOTAL PRESENT VALUE OF CASH FLOWS FOR PURCHASE&lt;/strong&gt;: -$17,224.05&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So, for this particular example (6 year horizon), buying and leasing are
essentially a wash (buying would be a couple hundred dollars cheaper).&lt;/p&gt;

&lt;h2&gt;Other Considerations&lt;/h2&gt;

&lt;p&gt;One number that can break the balance in favor of either leasing or buying is
the &lt;strong&gt;resale value of the car&lt;/strong&gt;: if you buy a car with a low resale value you
may be better off leasing. If the car retains its value and you can get a good
price at resale, you may come ahead if you purchase it.&lt;/p&gt;

&lt;p&gt;You also need to consider that, with a lease, you may be subject to penalties if you drive the car more than a certain number of miles, or if the car has any scratches or blemishes when you return it. You can also incur a hefty early termination fee if for any reason you need to turn your car in before the lease period expires.&lt;/p&gt;

&lt;p&gt;Sometimes, a better option than either buying or leasing a new car is to &lt;strong&gt;buy a
decent used car cheap, and drive it until the wheels fall off&lt;/strong&gt;. That, of
course, provided that it doesn&amp;#39;t need too many costly repairs.&lt;/p&gt;

&lt;p&gt;Another exercise you can try is to &lt;strong&gt;compare two different cars&lt;/strong&gt;: one more
expensive than the other.&lt;/p&gt;

&lt;p&gt;For example, a new $37,000 BMW 328 will likely lose 35% of its value after 3
years. A new, $19,000 base Honda Civic will also lose 35% of its value during
the same period of time. However, in dollars, it would have cost you $12,950
to drive the BMW, whereas driving the Civic would have only cost you $6,650
(roughly half). If you rather see the $6,000 difference &lt;strong&gt;parked in your bank
account instead of your garage&lt;/strong&gt;, then buy the cheaper car.&lt;/p&gt;
</description>
        <pubDate>Wed, 22 Oct 2014 00:00:00 +0000</pubDate>
        <link>/buyorlease/</link>
        <guid isPermaLink="true">/buyorlease/</guid>
      </item>
    
      <item>
        <title>How To Build Your Brand</title>
        <description>&lt;p&gt;In the paragraphs below I am outlining a basic roadmap you can follow to build your small business brand. You will still have to put out a lot of work, but it will help you clarify the process and ask better questions along the way.&lt;/p&gt;

&lt;h2&gt;What Does a Brand Do?&lt;/h2&gt;

&lt;p&gt;There are as many definitions of brand as there are branding experts. However, there is probably just one thing you need to remember: a brand helps us say something about ourselves. &lt;/p&gt;

&lt;p&gt;Take, for example, people who drive Toyota Prius. What do you think they&amp;#39;re trying to communicate? Would it be, perhaps, that they care about the environment? The role of the brand (Prius) is to help them tell that story.&lt;/p&gt;

&lt;p&gt;We crave association with brands that help us tell the story we want to tell. &lt;/p&gt;

&lt;h2&gt;Your Product&lt;/h2&gt;

&lt;p&gt;Ideally, your product needs to be something you need or use. This will give you the ability to see things from your customers&amp;rsquo; perspective. It is no coincidence that so many entrepreneurs find success after creating a product they themselves need.&lt;/p&gt;

&lt;p&gt;If you don&amp;rsquo;t actively use or need the product you sell, then make sure that at least you&amp;rsquo;re deeply interested in it, so that you won&amp;rsquo;t mind researching, learning and doing what it takes to become an expert as you go along. &lt;/p&gt;

&lt;h2&gt;Your Target Market&lt;/h2&gt;

&lt;p&gt;You need to find customers who need the product you&amp;rsquo;re offering. You do this by segmenting the market. In the end, you should be able to pinpoint a market niche that you can serve and dominate.&lt;/p&gt;

&lt;p&gt;There are many ways to segment the market: by geography, by demographics, by psychographics, by behavior, etc. Without getting too technical, we will just list as many ways to segment the market as we can think of, so you can select the combination that best works for you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Place of residence (country, state, region, city, neighbourhood, postal code)&lt;/li&gt;
&lt;li&gt;  Gender&lt;/li&gt;
&lt;li&gt;  Age&lt;/li&gt;
&lt;li&gt;  Income&lt;/li&gt;
&lt;li&gt;  Occupation&lt;/li&gt;
&lt;li&gt;  Ethnicity&lt;/li&gt;
&lt;li&gt;  Nationality&lt;/li&gt;
&lt;li&gt;  Social class&lt;/li&gt;
&lt;li&gt;  Education&lt;/li&gt;
&lt;li&gt;  Marital status&lt;/li&gt;
&lt;li&gt;  Household size&lt;/li&gt;
&lt;li&gt;  Life cycle stage&lt;/li&gt;
&lt;li&gt;  Political Affiliation&lt;/li&gt;
&lt;li&gt;  Values&lt;/li&gt;
&lt;li&gt;  Religious preference&lt;/li&gt;
&lt;li&gt;  Activities&lt;/li&gt;
&lt;li&gt;  Entertainment preferences&lt;/li&gt;
&lt;li&gt;  Interests/hobbies&lt;/li&gt;
&lt;li&gt;  Opinions&lt;/li&gt;
&lt;li&gt;  Attitudes&lt;/li&gt;
&lt;li&gt;  Travel patterns&lt;/li&gt;
&lt;li&gt;  Purchasing habits&lt;/li&gt;
&lt;li&gt;  Price sensitivity&lt;/li&gt;
&lt;li&gt;  Purchase likelihood&lt;/li&gt;
&lt;li&gt;  Usage frequency&lt;/li&gt;
&lt;li&gt;  Purchase process&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example, you may decide to target young dads, between 30 and 40 years old, making between $80K and $150K a year, who have a graduate degree, live in South Florida, play tennis over the weekend, don&amp;rsquo;t have much discretionary time and want to take their game to the next level.&lt;/p&gt;

&lt;p&gt;As an exercise, can you break down the categories above even further?&lt;/p&gt;

&lt;h2&gt;Your Competition&lt;/h2&gt;

&lt;p&gt;So far you have a product and a target customer. Things are definitely moving in the right direction, but there&amp;rsquo;s one more thing you need to consider:&lt;/p&gt;

&lt;p&gt;What if somebody is already in that space?&lt;/p&gt;

&lt;p&gt;Competition is not necessarily a bad thing: it means there is a market for what you want to sell. At the same time it means that you need to find a way to differentiate yourself. &lt;/p&gt;

&lt;p&gt;What can you bring to the table that your competitors can&amp;rsquo;t?&lt;/p&gt;

&lt;p&gt;There are three ways you can differentiate yourself: offer more than your competition, offer less, and have a point of view. &lt;/p&gt;

&lt;p&gt;Let&amp;rsquo;s look at these three options.&lt;/p&gt;

&lt;h2&gt;Differentiator #1: Offering More&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;  Quality&lt;/li&gt;
&lt;li&gt;  Price&lt;/li&gt;
&lt;li&gt;  Availability&lt;/li&gt;
&lt;li&gt;  Variety&lt;/li&gt;
&lt;li&gt;  Fun Factor&lt;/li&gt;
&lt;li&gt;  Financing&lt;/li&gt;
&lt;li&gt;  Delivery&lt;/li&gt;
&lt;li&gt;  Convenience&lt;/li&gt;
&lt;li&gt;  After Sale Service&lt;/li&gt;
&lt;li&gt;  Personality&lt;/li&gt;
&lt;li&gt;  Design&lt;/li&gt;
&lt;li&gt;  Distribution.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are just some of the areas you can analyze. Can you think of others?&lt;/p&gt;

&lt;h2&gt;Differentiator #2: Offering Less&lt;/h2&gt;

&lt;p&gt;The default approach to differentiation is usually to pile up more features to outdo the competition. However, more features don&amp;rsquo;t necessarily mean a better product. Introducing features to one-up the competition can lead to feature creep. Products become confusing and brands lose their identity in the long run. &lt;/p&gt;

&lt;p&gt;Customers like clarity. Just focus on a few important features and don&amp;#39;t be afraid to eliminate the rest. Simplicity can be the most powerful competitive advantage.&lt;/p&gt;

&lt;p&gt;Keep iterating until you&amp;rsquo;ve found your unique point of differentiation.&lt;/p&gt;

&lt;h2&gt;Differentiator #3: Your POV (Point of View)&lt;/h2&gt;

&lt;p&gt;Features and benefits don&amp;rsquo;t create powerful USPs (unique selling propositions) any more. &lt;/p&gt;

&lt;p&gt;What differentiates a brand in today&amp;rsquo;s competitive environment is its &lt;strong&gt;Point of View&lt;/strong&gt;. This is clearly explained in &lt;a href=&quot;http://www.ted.com/talks/simon_sinek_how_great_leaders_inspire_action.html&quot;&gt;Simon Sinek&amp;#39;s Golden Circles theory&lt;/a&gt;, which he introduced in one of the most viewed TED talks of all time. The gist of his presentation is this: &lt;strong&gt;People don&amp;#39;t buy what you do: they buy WHY you do it&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The WHY is your Point of View.&lt;/p&gt;

&lt;h2&gt;Is it Profitable?&lt;/h2&gt;

&lt;p&gt;By now you should already have a clearly differentiated position, but since to get there you may have had to further narrow your target market, you need to determine if that market is still big enough to make a profit. To know for sure you may need to run some market tests and pilot runs. If they show promise then you have found your brand. &lt;/p&gt;

&lt;p&gt;Fortunately, testing a market is now easier than ever thanks to Internet platforms like eBay, Amazon, Craigslist, Etsy, eLance, to name some of the most well known ones.&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;As you may have noticed reading so far, building a brand is not easy. It is not a linear process. There is no exact sequence of steps: most of the time you will need to work on different variables (your product, your competition, your customers) at the same time, and make frequent reassessments.&lt;/p&gt;

&lt;p&gt;That&amp;rsquo;s why the process requires more than just sitting in front of a computer. You may need to lay down charts, note cards or props on a large table, stick color Post-It notes on a wall or make heavy use of a whiteboard. &lt;/p&gt;

&lt;p&gt;You may also want to involve other people: business associates, suppliers, potential customers, consultants and mentors (people who can give you feedback).&lt;/p&gt;

&lt;p&gt;When building your brand remember the words of Abraham Lincoln: &amp;#39;Give me six hours to chop down a tree and I will spend the first four sharpening the axe.&amp;#39; It is better to spend more time getting your brand right before you launch than attempt to change course when your brand is already out there.&lt;/p&gt;

&lt;hr&gt;

&lt;h2&gt;Communicating Your Brand&lt;/h2&gt;

&lt;p&gt;You have already defined your brand. Now you need to communicate what your brand is all about. To do so, you need to develop and articulate a few important concepts that we&amp;#39;ll explain in the next few paragraphs.&lt;/p&gt;

&lt;h2&gt;Vision&lt;/h2&gt;

&lt;p&gt;Vision is where you want to take your brand. It is your chief aim. It is an ideal place in the future where you would like your brand to be. It is the way you ultimately want your brand to be perceived. &lt;/p&gt;

&lt;h2&gt;Mission&lt;/h2&gt;

&lt;p&gt;Mission is what you do every day. It is your brand&amp;rsquo;s purpose besides making money. &lt;/p&gt;

&lt;p&gt;An effective mission statement has to be customer-centric. Words like &amp;#39;maximize shareholder value&amp;#39; or &amp;#39;constant profitable growth&amp;#39; don&amp;rsquo;t belong on a mission statement. They are financial objectives. They are important, certainly, but they should come as a &lt;em&gt;consequence&lt;/em&gt; of having (and executing on) a customer-centered mission .&lt;/p&gt;

&lt;p&gt;Your mission needs to be articulated as simply and as clearly as possible, so that &lt;em&gt;everybody&lt;/em&gt; can understand it. Paraphrasing Albert Einstein, if you can&amp;rsquo;t explain it to a six year old it is not clear enough.&lt;/p&gt;

&lt;p&gt;A good example of a clear mission statement is Walmart&amp;rsquo;s: &amp;#39;To save you money so you can live better.&amp;#39;&lt;/p&gt;

&lt;h2&gt;Slogan&lt;/h2&gt;

&lt;p&gt;A slogan is a short sentence that distills either your mission or you brand&amp;rsquo;s most important differentiation point. Since your slogan will be used in your marketing and promotional campaigns it has to be worded in terms that your target customer will understand.&lt;/p&gt;

&lt;h2&gt;Name&lt;/h2&gt;

&lt;p&gt;Your brand name is your most important brand signal. Choose a name that communicates something about your brand and shows some personality (and by all means, stay away from acronyms).&lt;/p&gt;

&lt;p&gt;For example, the HVLP Fan Company, a Kentucky-based fan manufacturer, saw sales and brand awareness soar after they changed their name to &lt;a href=&quot;http://www.bigassfans.com&quot;&gt;Big Ass Fans&lt;/a&gt;, a nod to customers who kept referring to the company&amp;#39;s large industrial units as &amp;#39;big ass&amp;#39; fans.&lt;/p&gt;

&lt;p&gt;Perhaps you don&amp;rsquo;t have to get that quirky, but being original certainly helps.&lt;/p&gt;

&lt;h2&gt;Logo&lt;/h2&gt;

&lt;p&gt;A logo does not &amp;#39;make&amp;#39; your brand. A logo is a symbol that represents your brand. A good logo takes something that customers associate with your brand and distills it in the simplest graphic form possible.&lt;/p&gt;

&lt;p&gt;An example of a good logo is National Geograhic&amp;rsquo;s. It is just a simple yellow rectangle that evoques the yellow frame around the printed magazine&amp;rsquo;s impactful cover images (one of the most remembered and loved features of the National Geographic brand.)&lt;/p&gt;

&lt;p&gt;When you design your logo aim for that same degree of simplicity. Think about how can your logo make a meaningful connection to your brand, and how you can make it as simple as possible. &lt;/p&gt;

&lt;p&gt;Another important consideration, too: the simpler the logo, the better it will render in different surfaces and materials. This is especially important in marketing and promotional vehicles.&lt;/p&gt;

&lt;h2&gt;Packaging&lt;/h2&gt;

&lt;p&gt;When you have a limited marketing budget, you may want to leverage your packaging to double up as marketing material. If you have a physical product, invest in the best, most professional package you can afford. A good package can make all the difference at the point of sale, where customers ultimately make their buying decision.&lt;/p&gt;

&lt;h2&gt;Price&lt;/h2&gt;

&lt;p&gt;Price is a proxy for value. Bear in mind that not everybody has time for lengthy features and benefits comparisons, so price will be used as good indicator. &lt;/p&gt;

&lt;p&gt;When setting your price it is better to aim higher, while at the same time making sure that your brand delivers much more value than the premium you&amp;#39;re charging. &lt;/p&gt;

&lt;p&gt;Pricing is a complex subject so you may want to read up more about it (I find &lt;a href=&quot;http://www.seobook.com/getting-your-pricing-right&quot;&gt;this guide&lt;/a&gt; to be an excellent introduction to the subject of pricing, in case you want to dig deeper).&lt;/p&gt;

&lt;h2&gt;Domain Name&lt;/h2&gt;

&lt;p&gt;Your domain name (also referred to as your web address or URL) needs to be chosen at the same time as your brand name. This is important because most good domains are taken and your brand name &lt;em&gt;must&lt;/em&gt; be part of your domain name.&lt;/p&gt;

&lt;p&gt;If possible, register a domain with a .com extension. If your company is a non-profit you can use a .org extension. If you don&amp;#39;t find a good domain with those extensions there are other ones that have become popular like .co and .io (however, they might be more expensive).&lt;/p&gt;

&lt;p&gt;To help you with search engines you may also want to include in your domain name the kind of product or service you offer (for example: CollinsPlumbing.com instead of just Collins.com). A word of caution, though: you need to think long term because if you plan to introduce other products or services in the future you don&amp;#39;t want to limit yourself.&lt;/p&gt;

&lt;p&gt;Your aim should be to find a domain name that includes your brand name, is descriptive enough, and not too long.&lt;/p&gt;

&lt;h2&gt;Website&lt;/h2&gt;

&lt;p&gt;If you needed to choose one, and only one marketing vehicle for your small business brand it would be a website. &lt;/p&gt;

&lt;p&gt;A good website can accomplish many things for you: it can be an information hub, a customer service vehicle, a marketing tool, a way to engage in conversations with your customers, a starting point to building a mailing list, and even a distribution channel. &lt;/p&gt;

&lt;p&gt;Make sure that your site renders correctly in different browsers and resolutions (especially in tablets and mobile phones, since every day more people use them).&lt;/p&gt;

&lt;p&gt;To make your site display correctly in any device it needs to be built using a technique called &lt;em&gt;responsive web design&lt;/em&gt;. &lt;/p&gt;

&lt;p&gt;Basically, sites that are built with responsive web design automatically recognize what kind of device is being used to access them, and display the site version that best fits the resolution of that particular device. &lt;/p&gt;

&lt;p&gt;Make sure that the person who designs your website knows about responsive web design.&lt;/p&gt;

&lt;h2&gt;Blog&lt;/h2&gt;

&lt;p&gt;Adding a blog to your site is a good way to show your expertise and build trust. &lt;/p&gt;

&lt;p&gt;You need to host your blog in your own domain or sub-domain. Otherwise, you will be at the mercy of whoever owns the platform.&lt;/p&gt;

&lt;p&gt;Rather than setting your blog at the root of your domain &lt;em&gt;yoursite.com&lt;/em&gt; it is good practice to deploy it in a sub-domain, like &lt;em&gt;blog.yourdomain.com&lt;/em&gt; or a folder, like &lt;em&gt;yourdomain.com/blog&lt;/em&gt;. The reason why a blog shouldn&amp;rsquo;t be deployed at the root is because the root must be reserved for the main page of your site, which should give a comprehensive view of your brand, your company, your products and services.&lt;/p&gt;

&lt;p&gt;A good blogging platform option is &lt;a href=&quot;http://www.wordpress.org&quot;&gt;Wordpress.org&lt;/a&gt;, since it lets you use your own domain AND host the software with the web host of your choice (you can find a good tutorial on how to install a Wordpress blog &lt;a href=&quot;http://www.theminimalists.com/how-to-set-up-a-wordpress-blog/&quot;&gt;here&lt;/a&gt; ).&lt;/p&gt;

&lt;p&gt;Other popular platforms, like Tumblr for example, will let you use your own domain, but your blog will be hosted at Tumblr&amp;rsquo;s web servers, not your web host, which is not an ideal set-up for a serious business blog. &lt;/p&gt;

&lt;p&gt;A word of caution, though. Don&amp;rsquo;t expect your blog to be a sales tool. Although it will help you sell more, a blog is primarily a trust-building mechanism.&lt;/p&gt;

&lt;h2&gt;Email Newsletter&lt;/h2&gt;

&lt;p&gt;A regular email newsletter, sent to readers who have opted in and want to receive it, is one of the most powerful marketing tools you can use. After all, most people read their email every day.&lt;/p&gt;

&lt;p&gt;Unlike social media, email is still very personal. When somebody opts into your mailing list and gives you their email address it&amp;#39;s like you&amp;#39;re being invited to that person&amp;rsquo;s home. You must correspond to that trust by delivering extremely high quality content and making your readers feel like they&amp;rsquo;re part of an exclusive club.&lt;/p&gt;

&lt;p&gt;You can create and manage a newsletter through services like &lt;a href=&quot;http://mailchimp.com&quot;&gt;Mailchimp&lt;/a&gt;, or if you prefer a more simple, minimalistic option you can use &lt;a href=&quot;http://www.tinyletter.com&quot;&gt;Tinyletter&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;Leveraging Your Brand&lt;/h2&gt;

&lt;p&gt;Your brand must mean something extremely clear to a very targeted group of people before you can consider taking it to the next level.&lt;/p&gt;

&lt;p&gt;This means you need to resist the temptation of doing too many things with your brand too soon, like defining your target market too broadly under the misled assumption that not doing so may cause you to &amp;#39;lose business&amp;#39;. More often than not, the opposite is true: if you aim at everything and everybody you won&amp;#39;t mean anything to anybody, and you will dilute or even destroy your brand.&lt;/p&gt;

&lt;p&gt;Start with something very targeted and then, once you have consolidated your position, think about what else you can offer.&lt;/p&gt;

&lt;h2&gt;Creating Products for Your Customers&lt;/h2&gt;

&lt;p&gt;Your best customers for your new offerings will be your existing customers. Once you become successful with your brand you will have the privilege of finding products for your customers instead of having to find customers for your products. &lt;/p&gt;

&lt;h2&gt;Line Extensions&lt;/h2&gt;

&lt;p&gt;It is a good idea to create different products at different price levels, since not everybody will be able to afford your best, most expensive products. You may want to start new customers off with a relatively low cost option so that they can get familiar with your brand, and then move them up to more sophisticated products.&lt;/p&gt;

&lt;p&gt;I recommend focusing on three different price levels: Good, Better, and Best. By limiting choice to a few, well differentiated options, you eliminate confusion and make the purchasing decision easier. Think of how Spanish wine makers market their wine: they adhere to just three standard denominations based on the quality of the grapes and the timeframe of the aging process: Crianza (Good), Reserva (Better) and Gran Reserva (Best). Simple, and it works.&lt;/p&gt;

&lt;h2&gt;Brand Partnerships&lt;/h2&gt;

&lt;p&gt;Partnerships are a great brand building technique especially when your brand is new. By associating your brand to another one in a non-competitive sector you will essentially leverage that brand&amp;#39;s attributes in your favor.&lt;/p&gt;

&lt;p&gt;Think how car manufacturers partner with luxury brands to create premium versions of their models. Recently, for example, Fiat partnered with Italian luxury goods brand Gucci to offer a version of its successful Fiat 500 in Gucci trim, making it easier to tie their car to the concept of Italian style.&lt;/p&gt;

&lt;h2&gt;Brand Extensions&lt;/h2&gt;

&lt;p&gt;Brand extensions happen when you take your brand into new product categories. For brand extensions to be successful there must be some kind of synergy between the core category and the new one.&lt;/p&gt;

&lt;p&gt;For example, it&amp;rsquo;s not much of a stretch for a brand like BMW to go from cars to motorcycles. That brand extension feels natural and credible. Another good brand extension could be a brand of pasta that branches out into pasta sauces.&lt;/p&gt;

&lt;h2&gt;Licensing&lt;/h2&gt;

&lt;p&gt;Licensing is probably the most powerful way to leverage your brand. It occurs when you aim your brand at entirely new businesses and distribution channels. &lt;/p&gt;

&lt;p&gt;For example, a clothing manufacturer with good penetration in department stores may license a brand like Jeep to develop a line of rugged outdoor clothes. Jeep, in exchange, will receive a royalty and access to a completely different distribution channel, without essentially doing anything and with very low risk.&lt;/p&gt;

&lt;p&gt;Licensing will only work, though, when your brand is already well established in the marketplace, and when what it stands for is already widely and easily understood.&lt;/p&gt;
</description>
        <pubDate>Tue, 24 Jun 2014 00:00:00 +0000</pubDate>
        <link>/brand/</link>
        <guid isPermaLink="true">/brand/</guid>
      </item>
    
      <item>
        <title>Sam&#39;s Rules for Building a Business</title>
        <description>&lt;p&gt;A few years ago, during a trip to Bentonville, Arkansas, I had the chance to visit Walmart&amp;#8217;s first store (originally called Walton&amp;#8217;s 5-10), and picked up a leaflet containing Sam Walton&amp;#8217;s 10 rules for building a successful business. Pearls of wisdom, straight from the man who built the world&amp;#8217;s most successful retailer out of nothing. Since I haven&amp;#39;t been able to find a link to it on the Internet, I am transcribing them below (all of them are great, but I especially like #7, #9 and #10):&lt;/p&gt;

&lt;h2&gt;Rule 1: Commit to your business&lt;/h2&gt;

&lt;p&gt;Believe in it more than anybody else. I think I overcame every single one of my personal shortcomings by the sheer passion I brought to my work. I don&amp;#8217;t know if you&amp;#8217;re born with this kind of passion, or if you can learn it. But I do know you need it. If you love your work, you&amp;#8217;ll be out there every day trying to do it the best you possibly can, and pretty soon everybody around will catch the passion from you &amp;mdash; like a fever. &lt;/p&gt;

&lt;h2&gt;Rule 2: Share your profits with all your associates, and treat them as partners&lt;/h2&gt;

&lt;p&gt;In turn, they will treat you as a partner, and together you will all perform beyond your wildest expectations. Remain a corporation and retain control if you like, but behave as a servant leader in your partnership. Encourage your associates to hold a stake in the company. Offer discounted stock, and grant them stock for their retirement. It&amp;#8217;s the single best thing we ever did.&lt;/p&gt;

&lt;h2&gt;Rule 3: Motivate your partners&lt;/h2&gt;

&lt;p&gt;Money and ownership alone aren&amp;#8217;t enough. Constantly, day by day, think of new and more interesting ways to motivate and challenge your partners. Set high goals, encourage competition, and then keep score. Make bets with outrageous payoffs. If things get stale, cross-pollinate; have managers switch jobs with one another to stay challenged. Keep everybody guessing as to what your next trick is going to be. Don&amp;#8217;t become too predictable.&lt;/p&gt;

&lt;h2&gt;Rule 4: Communicate everything you possibly can to your partners&lt;/h2&gt;

&lt;p&gt;The more they know, the more they&amp;#8217;ll understand. The more they understand, the more they&amp;#8217;ll care. Once they care, there&amp;#8217;s no stopping them. If you don&amp;#8217;t trust your associates to know what&amp;#8217;s going on, they&amp;#8217;ll know you really don&amp;#8217;t consider them partners. Information is power, and the gain you get from empowering your associates more than offsets the risk of informing your competitors.&lt;/p&gt;

&lt;h2&gt;Rule 5: Appreciate everything your associates do for the business&lt;/h2&gt;

&lt;p&gt;A paycheck and a stock option will buy one kind of loyalty. But all of us like to be told how much somebody appreciates what we do for them. We like to hear it often, and especially when we have done something we&amp;#8217;re really proud of. Nothing else can quite substitute for a few well-chosen, well-timed, sincere words of praise. They&amp;#8217;re absolutely free &amp;mdash; and worth a fortune.&lt;/p&gt;

&lt;h2&gt;Rule 6: Celebrate your success&lt;/h2&gt;

&lt;p&gt;Find some humor in your failures. Don&amp;#8217;t take yourself so seriously. Loosen up, and everybody around you will loosen up. Have fun. Show enthusiasm &amp;mdash; always. When all else fails, put on a costume and sing a silly song. Then make everybody else sing with you. Don&amp;#8217;t do a hula on Wall Street. It&amp;#8217;s been done. Think up your own stunt. All of this is more important, and more fun, than you think, and it really fools competition. &amp;#8220;Why should we take those cornballs at Wal-Mart seriously?&amp;#8221;&lt;/p&gt;

&lt;h2&gt;Rule 7: Listen to everyone in your company and figure out ways to get them talking&lt;/h2&gt;

&lt;p&gt;The folks on the front lines &amp;mdash; the ones who actually talk to the customer &amp;mdash; are the only ones who really know what&amp;#8217;s going on out there. You&amp;#8217;d better find out what they know. This really is what total quality is all about. To push responsibility down in your organization, and to force good ideas to bubble up within it, you must listen to what your associates are trying to tell you.&lt;/p&gt;

&lt;h2&gt;Rule 8: Exceed your customer&amp;#8217;s expectations&lt;/h2&gt;

&lt;p&gt;If you do, they&amp;#8217;ll come back over and over. Give them what they want &amp;mdash; and a little more. Let them know you appreciate them. Make good on all your mistakes, and don&amp;#8217;t make excuses &amp;mdash; apologize. Stand behind everything you do. The two most important words I ever wrote were on that first Wal-Mart sign: &amp;#8220;Satisfaction Guaranteed.&amp;#8221; They&amp;#8217;re still up there, and they have made all the difference.&lt;/p&gt;

&lt;h2&gt;Rule 9: Control your expenses better than your competition&lt;/h2&gt;

&lt;p&gt;This is where you can always find the competitive advantage. For twenty-five years running &amp;mdash; long before Wal-Mart was known as the nation&amp;#8217;s largest retailer &amp;mdash; we&amp;#8217;ve ranked No. 1 in our industry for the lowest ratio of expenses to sales. You can make a lot of different mistakes and still recover if you run an efficient operation. Or you can be brilliant and still go out of business if you&amp;#8217;re too inefficient.&lt;/p&gt;

&lt;h2&gt;Rule 10: Swim upstream&lt;/h2&gt;

&lt;p&gt;Go the other way. Ignore the conventional wisdom. If everybody else is doing it one way, there&amp;#8217;s a good chance you can find your niche by going in exactly the opposite direction. But be prepared for a lot of folks to wave you down and tell you you&amp;#8217;re headed the wrong way. I guess in all my years, what I heard more often than anything was: a town of less than 50,000 population cannot support a discount store for very long.&lt;/p&gt;
</description>
        <pubDate>Tue, 03 Dec 2013 00:00:00 +0000</pubDate>
        <link>/samsrules/</link>
        <guid isPermaLink="true">/samsrules/</guid>
      </item>
    
      <item>
        <title>How To Use Gmail With Your Own Domain</title>
        <description>&lt;p&gt;Many people, including me, use Gmail as their default email client. With Gmail, you can send email from (and receive email at) your own branded domain. For example, instead of using &lt;em&gt;yourname@gmail.com&lt;/em&gt; you can use &lt;em&gt;you@yourname.com&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;It is not hard to set this up. It just takes a few steps that I will describe below:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Go to any domain registrar (like Godaddy or Namecheap) and register the domain name you want to use.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Then, in your control panel you should be able to find the &lt;strong&gt;Email Forwarding&lt;/strong&gt; feature.  This is where you will create your new &lt;em&gt;you@yourname.com&lt;/em&gt; email address and forward it to &lt;em&gt;yourname@gmail.com&lt;/em&gt;. Note: if you&amp;#39;re using Godaddy, &lt;a href=&quot;http://help.godaddy.com/article/1725&quot;&gt;this page&lt;/a&gt; will give you more details on how to do this.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;After you&amp;#39;ve done that, log on to Gmail, click on &lt;strong&gt;Settings&lt;/strong&gt; &amp;gt; &lt;strong&gt;Accounts&lt;/strong&gt; &amp;gt; &lt;strong&gt;Add Another Email Address&lt;/strong&gt;, and add &lt;em&gt;you@yourname.com&lt;/em&gt; to the list.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Click NEXT, and Google will now send you a message to &lt;em&gt;you@yourname.com&lt;/em&gt; so you can verify it&amp;#39;s yours. Here&amp;#39;s the trick: since you already set up email forwarding in step 2 you will receive this email at &lt;em&gt;yourname@gmail.com&lt;/em&gt; ;)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Click on the verification link and then go back to Gmail&amp;#39;s &lt;strong&gt;Accounts&lt;/strong&gt; tab in the &lt;strong&gt;Settings&lt;/strong&gt; menu. Your new, branded email address should already be listed there. Click on the link that says &amp;quot;make default&amp;quot; next to it, and check the radio button next to &amp;quot;always reply from my default address&amp;quot;.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That&amp;#39;s it. You should now be ready to use Gmail with your own branded email address. If you want more details, you can visit Gmail&amp;#39;s custom domain &lt;a href=&quot;http://mail.google.com/support/bin/answer.py?hl=en&amp;amp;amp;ctx=mail&amp;amp;amp;answer=22370&quot;&gt;help page&lt;/a&gt;.&lt;/p&gt;
</description>
        <pubDate>Wed, 24 Jul 2013 00:00:00 +0000</pubDate>
        <link>/gmail/</link>
        <guid isPermaLink="true">/gmail/</guid>
      </item>
    
      <item>
        <title>The Smoking Room</title>
        <description>&lt;p&gt;I&amp;#39;m finally back in Shanghai and about to enter my hotel room. I swipe my key card over the sensor, open the door, and immediately sense a strange smell. I walk in a few steps, take a deep breath and think: &amp;quot;somebody has been smoking in this room&amp;quot;.&lt;/p&gt;

&lt;p&gt;&amp;quot;Perhaps it&amp;#39;s just me&amp;quot;, I question myself, as I drop my suitcase and walk toward the opposite side of the room: &amp;quot;No... still cigarette smell&amp;quot;, I think. Then I glance at the nightstand and, aha! the proof: an ashtray, and, neatly resting on its edges, a matchbox. They have given me a freaking smoking room.&lt;/p&gt;

&lt;p&gt;I take the elevator downstairs. I spot the guy who checked me in (a tall and slim kid in his twenties, perhaps from South East Asia, but definitely not Chinese), walk toward him and throw my key card on the counter: &amp;quot;You gave me a smoking room!&amp;quot; I yell. &amp;quot;I&amp;#39;m sorry sir&amp;quot;, he replies, typing furiously as he tries to find me another room, &amp;quot;I thought you asked for a smoking room&amp;quot;. &amp;quot;No, I didn&amp;#39;t&amp;quot;, I  answer back. &amp;quot;Sorry about that, sir&amp;quot; he politely apologizes, as he hands me my new key card.&lt;/p&gt;

&lt;p&gt;I take the elevator, find my new room and open the door. I walk in, take a deep breath and: perfect! no cigarette smell. I close the door behind me and throw open the curtains to reveal a spectacular view of the nearby park and skyline. Seconds later, as I stand by the window taking in the view, I suddenly ask myself:&lt;/p&gt;

&lt;p&gt;&amp;quot;When did I turn into such an asshole?&amp;quot;&lt;/p&gt;

&lt;p&gt;Perhaps the guy downstairs really did understand that I wanted a smoking room. After all, this is a hotel and employees have to deal with many different types of confusing accents. Or perhaps it was me who didn&amp;#39;t understand correctly. But, most importantly, this kid could have been me 25 years ago, new in a foreign country, trying my best to get ahead, having to deal with customers all day from behind a counter.&lt;/p&gt;

&lt;p&gt;That&amp;#39;s when I decided to go back and apologize.&lt;/p&gt;

&lt;p&gt;I take the elevator back down and stand in line, since the lobby is now packed with people waiting to check in. After a couple of minutes I hear a voice next to me: &amp;quot;is your new room OK, sir?&amp;quot;. The kid had spotted me standing in line and had come out to check on me. &amp;quot;The room? oh, yes, the room, the room is just great&amp;quot;, I tell him, still surprised to see him there. &amp;quot;Listen&amp;quot;, I keep telling him, &amp;quot;sorry that I yelled at you before, and thank you for being so diligent in taking care of the problem&amp;quot;. Then I shake his hand as he replies: &amp;quot;no problem, no problem, I&amp;#39;m glad everything turned out OK, sir&amp;quot;, before going back to his station.&lt;/p&gt;

&lt;p&gt;It is said that as years go by we get more impatient. I wonder, though, if impatient is the right word, or if what we really become is more selfish and entitled. Could it be possible that years of accumulating possessions and fancy titles can make us forget where we come from, and turn us into insufferable jerks ready to go off when our wine is not at the right temperature, the food we just picked up for dinner messes up our new car smell or a young couple with active young children sits too close to us on a plane?&lt;/p&gt;

&lt;p&gt;I hope not, but even in those cases when it seems it has, we can&amp;#39;t change the past just by wishing we had acted differently. What we can do, though, is to remember all those times when those we mistreated reacted with more grace and elegance than us and pay it forward.&lt;/p&gt;
</description>
        <pubDate>Tue, 23 Jul 2013 00:00:00 +0000</pubDate>
        <link>/smoking-room/</link>
        <guid isPermaLink="true">/smoking-room/</guid>
      </item>
    
      <item>
        <title>Tu Marca Personal</title>
        <description>&lt;p&gt;Mucho se ha escrito sobre el concepto de marca personal. A juzgar por gran parte del material que se puede encontrar en Internet, podría pensarse que se trata de un concepto superficial y frívolo. Por ello, en los párrafos que siguen intentare plasmar mi opinión sobre el tema y explicar por que es importante.&lt;/p&gt;

&lt;h2&gt;Un Poco de Historia&lt;/h2&gt;

&lt;p&gt;El concepto de &lt;strong&gt;branding personal&lt;/strong&gt; no es nuevo. Existió siempre, aunque muchas veces confundido entre conceptos parecidos, como reputación, experiencia y personalidad.&lt;/p&gt;

&lt;p&gt;Fue el autor norteamericano Tom Peters en su ya clásico artículo &lt;a href=&quot;http://www.fastcompany.com%2Fmagazine%2F10%2Fbrandyou.html&quot;&gt;The Brand Called You&lt;/a&gt; (aparecido en la revista Fast Company en Agosto de 1997) el primero en definirlo formalmente.&lt;/p&gt;

&lt;p&gt;En su artículo, Peters afirma que la única manera de lograr diferenciarnos como profesionales en un mundo cada vez más competitivo es manejando nuestra carrera como las grandes empresas manejan las marcas de sus productos.&lt;/p&gt;

&lt;h2&gt;¿Qué es el Branding Personal?&lt;/h2&gt;

&lt;p&gt;Branding personal es el &lt;strong&gt;proceso de definir con precisión qué nos hace diferentes, de especificar como esa diferencia se traduce en un beneficio relevante para nuestra clientela o audiencia, y de comunicar ese beneficio de manera clara, concisa y efectiva.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;El branding personal nos permite romper el paradigma tradicional de tener que adaptarnos a las diferentes oportunidades que se nos presentan (llámese un empleo o un proyecto), y nos da la pauta para saber si esas oportunidades son realmente compatibles con nosotros.&lt;/p&gt;

&lt;p&gt;Un proceso de branding personal bien ejecutado hará que las oportunidades correctas &lt;strong&gt;vengan a nosotros&lt;/strong&gt; en lugar de nosotros tener que perseguirlas.&lt;/p&gt;

&lt;p&gt;El branding personal implica también actuar con una visión a largo plazo. No podemos reinventarnos todos los días. Cada una de nuestras acciones contribuye a que acumulemos (o perdamos) brand equity, y sus consecuencias se dejarán sentir por mucho tiempo.&lt;/p&gt;

&lt;h2&gt;En Favor del Branding Personal&lt;/h2&gt;

&lt;p&gt;Hay quienes dicen que el branding personal es un enfoque simplista que ignora la complejidad de nuestra condición humana y nos reduce a la categoría de objetos.&lt;/p&gt;

&lt;p&gt;Nada podría estar más lejos de la realidad.&lt;/p&gt;

&lt;p&gt;Esa complejidad, mezcla única de nuestros &lt;strong&gt;talentos, valores, relaciones, experiencias y preferencias personales&lt;/strong&gt; es precisamente lo que nos hace diferentes. No se trata entonces de ignorar nuestra complejidad, sino de definirla de tal manera que nos ayude a comunicar el valor que solamente nosotros podemos ofrecer.&lt;/p&gt;

&lt;p&gt;No asumir la responsabilidad de construir nuestra marca personal es dejar que se nos defina a través de descripciones de trabajo genéricas e impersonales, y que nos convirtamos en &lt;em&gt;commodities&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;Comunicando Tu Marca Personal&lt;/h2&gt;

&lt;p&gt;Las mejores marcas personales son capaces de comunicar lo que representan en muy pocas palabras. Un ejemplo es el candidato (y hoy presidente de los Estados Unidos) Barack Obama quien logró definirse con una sola palabra: Cambio (Change).&lt;/p&gt;

&lt;p&gt;Una manera efectiva de comunicar tu marca personal es a través de una &lt;strong&gt;declaración de misión&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Contrariamente a lo que ocurre en el mundo corporativo, donde la declaración de misión es por lo general una insulsa colección de clichés acuñados por algún gurú de moda, la declaración de misión puede ser una herramienta muy útil si se redacta con pocas palabras simples.&lt;/p&gt;

&lt;p&gt;Por ejemplo “lograr que de cada dos alumnos uno vaya a la universidad” es una declaración de misión mucho más poderosa que “sinergizar esfuerzos para que mediante el uso de tecnología de punta maximicemos el potencial intrínseco del educando”.&lt;/p&gt;

&lt;p&gt;Otra herramienta muy útil es la llamada &lt;strong&gt;frase de elevador&lt;/strong&gt;, una especie de comercial para tu marca personal que debes poder exponer en alrededor de 15 segundos. Con esta corta frase debes poder presentarte (dar tu nombre); explicar a que te dedicas; cual es el valor de lo que ofreces o que te hace especial y diferente; y sugerir un próximo paso (que podría ser simplemente la manera de comunicarse contigo).&lt;/p&gt;

&lt;p&gt;Es útil también confeccionar una lista de tres a cinco adjetivos que te definan. ¿Qué palabras quisieras que vengan automáticamente a la mente de todos aquellos que escuchan tu nombre? Piensa en adjetivos con connotaciones positivas y que establezcan una diferencia importante.&lt;/p&gt;

&lt;h2&gt;Más Allá del Curriculum Vitae&lt;/h2&gt;

&lt;p&gt;Si bien todavía es necesario, el curriculum vitae ya no es suficiente. En estas épocas, una estrategia de branding personal que no aproveche las poderosas herramientas que nos brinda la Internet está condenada al fracaso.&lt;/p&gt;

&lt;p&gt;Hoy, si no estás en Google no existes.&lt;/p&gt;

&lt;p&gt;65% de los usuarios de Internet confían en un &lt;strong&gt;motor de búsqueda&lt;/strong&gt; para conseguir la información deseada: ¿Qué encontrarán cuando escriban tu nombre? ¿Qué encontrarán cuando escriban tu especialidad y tu ciudad? ¿Te encontrarán, o encontrarán a tus competidores?&lt;/p&gt;

&lt;p&gt;Si bien hay muchas maneras de influenciar éticamente los resultados de un motor de búsqueda, una de las más comunes es registrar tu dominio y crear una crear una página web sencilla. También es muy efectivo llenar perfiles en las principales redes sociales, y llenar un perfil en Google. Estos perfiles tienden a ser muy bien catalogados por los motores de búsqueda.&lt;/p&gt;

&lt;h2&gt;El Poder de los Blogs y las Redes Sociales&lt;/h2&gt;

&lt;p&gt;Los blogs y las redes sociales (los llamados social media) han roto las barreras de entrada que nos separaban de nuestro mercado objetivo. Estas herramientas (muchas de ellas gratuitas o de bajo costo) han permitido que quienes éramos antes simples espectadores ahora podamos tomar control del escenario.&lt;/p&gt;

&lt;p&gt;Los medios tradicionales como los diarios, la televisión y la radio ya no son la única manera en que podemos consumir y diseminar información.&lt;/p&gt;

&lt;p&gt;La publicidad tradicional atraviesa por una grave crisis de credibilidad, y con justa razón. Nada más cabe plantearse la pregunta: ¿Qué tiene más peso: lo que tú digas de tí mismo, o lo que otros digan de ti?&lt;/p&gt;

&lt;p&gt;La respuesta es obvia, y explica por que cada vez menos gente depende de la publicidad para tomar una decisión de compra y cada vez más en recomendaciones de amigos, potenciadas de exponencialmente por las redes sociales.&lt;/p&gt;

&lt;p&gt;Gracias a los &lt;strong&gt;blogs&lt;/strong&gt; ahora contamos con una plataforma de alcance global e instantáneo para expresar y difundir nuestras ideas, así como también interactuar con quienes nos visitan. Un blog es quizás la mejor herramienta disponible para comunicar nuestra marca personal.&lt;/p&gt;

&lt;p&gt;Redes como LinkedIn permiten relacionarnos con otros profesionales y construir nuestra red de contactos de una manera fácil y rápida. Por medio de LinkedIn podemos acceder a oportunidades que de otra manera no se nos hubiesen presentado.&lt;/p&gt;

&lt;p&gt;A través de YouTube podemos tener un canal propio para difundir nuestras ideas, presentaciones, entrevistas y comentarios.  Slideshare nos permite compartir nuestras presentaciones con nuestra audiencia.&lt;/p&gt;

&lt;p&gt;Otras herramientas importantes para comunicar tu marca personal son Twitter, para compartir enlaces y opiniones breves, y Facebook, para compartir comentarios, fotografías, videos y aplicaciones, o para construir una página para nuestra empresa, producto o servicio.&lt;/p&gt;

&lt;p&gt;Las posibilidades que nos brinda la Internet para construir y comunicar nuestra marca personal están limitadas sólo por nuestra imaginación y por el tiempo y esfuerzo que deseemos invertirle.&lt;/p&gt;

&lt;h2&gt;Tu Personalidad: La Cereza de la Torta&lt;/h2&gt;

&lt;p&gt;Una de las primeras preguntas que surge cuando uno resalta la importancia de crear nuestra marca personal y participar activamente en las redes sociales es: ¿Para qué? ¿A quién le importa mi opinión, lo que me gusta, o lo que estoy haciendo?&lt;/p&gt;

&lt;p&gt;Pues, a todos…&lt;/p&gt;

&lt;p&gt;Vivimos en una época en que &lt;strong&gt;los atributos técnicos, si bien siguen siendo importantes, ya no son suficientes para diferenciarnos&lt;/strong&gt;. Probablemente hayan, sólo en tu ciudad, miles de profesionales (dentistas, abogados, contadores, etc.) técnicamente capacitados para hacer su trabajo bien.&lt;/p&gt;

&lt;p&gt;Esta abundancia de opciones nos da la prerrogativa de trabajar sólo con personas que compartan nuestros valores, nuestras aficiones, nuestras prioridades y nuestra manera de ver las cosas (personas que, como se dice comúnmente, “nos caigan bien”).&lt;/p&gt;

&lt;p&gt;Nuestra personalidad y nuestras experiencias personales son la sazón que le da al plato de nuestra marca personal su sabor único y característico.&lt;/p&gt;

&lt;p&gt;El exceso de formalidad, y la separación de la vida profesional de la personal son cosa del pasado. Lo que la gente quiere saber para trabajar contigo es quien eres realmente, y cuales son tus historias.&lt;/p&gt;
</description>
        <pubDate>Tue, 25 Sep 2012 00:00:00 +0000</pubDate>
        <link>/personalbranding/</link>
        <guid isPermaLink="true">/personalbranding/</guid>
      </item>
    
  </channel>
</rss>