<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Really Smart Guy</title>
	<atom:link href="http://fuery.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fuery.com</link>
	<description>Simplifying Technology and Entrepreneurship since 2003</description>
	<pubDate>Fri, 22 Aug 2008 21:30:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>A Security Checklist for Newbies.</title>
		<link>http://fuery.com/2008/08/22/a-security-checklist-for-newbies/</link>
		<comments>http://fuery.com/2008/08/22/a-security-checklist-for-newbies/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 21:30:48 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[GeekSpeak]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[web sites]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=564</guid>
		<description><![CDATA[One of my clients had their web site compromised this morning. Apparently some hacker in Russia figured out their web server’s SSH password, logged in, and replaced their root index page. (No, my firm had never performed a security audit for them – the site structure was set up by a predecessor.)
Bummer.  Here’s a [...]]]></description>
			<content:encoded><![CDATA[<p>One of my clients had their web site compromised this morning. Apparently some hacker in Russia figured out their web server’s SSH password, logged in, and replaced their root index page. (No, my firm had never performed a security audit for them – the site structure was set up by a predecessor.)</p>
<p>Bummer.  Here’s a quick refresher on some things to make sure you audit on your own site.</p>
<ul>
<li>Use a unique account for your web-originating database access. This means a unique account with its own password and credentials as limited as possible. Making your DB access credentials the same as anything SSH-capable is asking for trouble. You don&#8217;t use your ATM access code to login to your email account, do you? (You&#8217;d better not!)</li>
<li>Lockout all but the necessary functions (usually just insert, select, and update) at the database level for your new database access account. If you need to give this user &#8220;delete&#8221; access, too, maybe you need to re-think your application&#8217;s logic. (Deleted should be handled via a flag in most applications, not by actual removal of the data.)</li>
<li>Place all of your common core server-side includes outside of your root web context. So if your web server’s root is “public_html”, put all of your shared libraries, especially your core database connection library, above public_html in your directory structure. If you can’t do this on your web host and you give two craps about the security of your site, get a new host. In English, this means that no one on the web should be able to surf to any of your core libraries. Requiring authentication to get to these files might feel just as good, but it isn’t.
</li>
<li>Chmod 777 is a Very Bad Idea. </li>
</ul>
<p>This is by no means definitive, nor should it take the place of a professional audit by a skilled professional. However, if your development staff consists of your left brain, your pooch, and white board, this is a decent place to start.</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/08/22/a-security-checklist-for-newbies/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Type &#8220;sleep with me&#8221; at your next command prompt</title>
		<link>http://fuery.com/2008/08/12/type-sleep-with-me-at-your-next-command-prompt/</link>
		<comments>http://fuery.com/2008/08/12/type-sleep-with-me-at-your-next-command-prompt/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 02:07:16 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<category><![CDATA[GeekSpeak]]></category>

		<category><![CDATA[geek]]></category>

		<category><![CDATA[humor]]></category>

		<category><![CDATA[nerd]]></category>

		<category><![CDATA[nerd humor]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=563</guid>
		<description><![CDATA[On some UNIX systems, the command &#8220;sleep with me&#8221; returns the error &#8220;bad character&#8221;.
]]></description>
			<content:encoded><![CDATA[<p>On some UNIX systems, the command &#8220;sleep with me&#8221; returns the error &#8220;bad character&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/08/12/type-sleep-with-me-at-your-next-command-prompt/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Largest Computing Applications</title>
		<link>http://fuery.com/2008/08/12/largest-computing-applications/</link>
		<comments>http://fuery.com/2008/08/12/largest-computing-applications/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 22:36:14 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[GeekSpeak]]></category>

		<category><![CDATA[computing power]]></category>

		<category><![CDATA[lists]]></category>

		<category><![CDATA[scalability]]></category>

		<category><![CDATA[server farms]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=562</guid>
		<description><![CDATA[While writing a SQL-based search function (the simple kind with basic string matching against ordered data) today, a question regarding the size of the google cache ensued in my lab.
After about 20 seconds of discussion, someone said, &#8220;so they have a whole lot of servers then, huh?&#8221;
I retorted that it&#8217;s probably the single biggest application [...]]]></description>
			<content:encoded><![CDATA[<p>While writing a SQL-based search function (the simple kind with basic string matching against ordered data) today, a question regarding the size of the google cache ensued in my lab.</p>
<p>After about 20 seconds of discussion, someone said, &#8220;so they have a whole lot of servers then, huh?&#8221;</p>
<p>I retorted that it&#8217;s probably the single biggest application on the planet in terms of computing power. Of course, I followed this up by silently asking said google cache about this question. Interestingly, after a half dozen tries (&#8221;largest server farms&#8221;, &#8220;largest application&#8221;, &#8220;largest global applications&#8221;, etc), I couldn&#8217;t find a definitive list. Heck, I really couldn&#8217;t find <em>any</em> list.</p>
<p>So I thought I&#8217;d put one out there for public consumption. Please debate and correct me. It&#8217;s all guesswork.</p>
<p>(This is based on total flops devoted to a single application infrastructure, not based on other trivialities, like number of CPUs, number of racks, or raw storage capacity. There&#8217;s also probably a distinction between different branches of government, but I&#8217;m way out of my league there.)</p>
<ol>
<li>Google. The www cache, youtube, picasa, and all the rest.</li>
<li>The DoD. You know, those guys that invented the internet?
<li>Amazon. S3, alexa, the wayback machine, and of course their tiny product database.</li>
<li>Microsoft. Hotmail, Live, windowsupdate, msdn.</li>
<li>Yahoo. Their tombstone aside, they&#8217;ve got a web cache and tons of services. All of that info has to be stored somewhere.</li>
<li>China&#8217;s IT Infrastructure. Suppressing all of that free speech has to take some computing power, right?</li>
</ol>
<p>Let the debate ensue&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/08/12/largest-computing-applications/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What&#8217;s Wrong with Feedburner?</title>
		<link>http://fuery.com/2008/07/31/whats-wrong-with-feedburner/</link>
		<comments>http://fuery.com/2008/07/31/whats-wrong-with-feedburner/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 23:13:09 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Off Topic]]></category>

		<category><![CDATA[feedburner down]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=560</guid>
		<description><![CDATA[A few of my subscribers have been bugging me for a couple of weeks about my feeds. As in, where did they go?
I wasn&#8217;t sweating it a whole heck of a lot since, well, if there&#8217;s no new content, there isn&#8217;t much point, now is there?
Well, I went ahead and tried to login to my [...]]]></description>
			<content:encoded><![CDATA[<p>A few of my subscribers have been bugging me for a couple of weeks about my feeds. As in, where did they go?</p>
<p>I wasn&#8217;t sweating it a whole heck of a lot since, well, if there&#8217;s no new content, there isn&#8217;t much point, now is there?</p>
<p>Well, I went ahead and tried to login to my feedburner account today, and I was rudely informed that my feeds are screwed. Check out the screenshot:</p>
<p><img src='/wp-content/uploads/2008/07/broken_feedburner.jpg' alt='Feedburner Is Broken Screenshot' width='99%'  /></p>
<p>To fix it, I went ahead and disabled my feedburner extension for now. http://fuery.com/feed lives again!</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/07/31/whats-wrong-with-feedburner/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Guess I was Wrong about IndyMac. Bummer :-(</title>
		<link>http://fuery.com/2008/07/31/guess-i-was-wrong-about-indymac-bummer/</link>
		<comments>http://fuery.com/2008/07/31/guess-i-was-wrong-about-indymac-bummer/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 22:47:45 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=559</guid>
		<description><![CDATA[Seems like the credit crunch will never go away&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Seems like the credit crunch will never go away&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/07/31/guess-i-was-wrong-about-indymac-bummer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Would you rather see mediocre content or no content?</title>
		<link>http://fuery.com/2008/07/28/would-you-rather-see-mediocre-content-or-no-content/</link>
		<comments>http://fuery.com/2008/07/28/would-you-rather-see-mediocre-content-or-no-content/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 01:52:03 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Off Topic]]></category>

		<category><![CDATA[content alligator]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=558</guid>
		<description><![CDATA[I&#8217;ve been dealing with a juggling act this year and finding it harder and harder to write. 
With that in mind, would you rather see one good article a month, or articles of moderate quality 2-3 times a week?
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been dealing with a juggling act this year and finding it harder and harder to write. </p>
<p>With that in mind, would you rather see one good article a month, or articles of moderate quality 2-3 times a week?</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/07/28/would-you-rather-see-mediocre-content-or-no-content/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IndyMac closed at 38 cents today</title>
		<link>http://fuery.com/2008/07/10/indymac-closed-at-38-cents-today/</link>
		<comments>http://fuery.com/2008/07/10/indymac-closed-at-38-cents-today/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 10:00:13 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=556</guid>
		<description><![CDATA[With a market cap of $38M IndyMac (IMB) should be a value play. Right?
]]></description>
			<content:encoded><![CDATA[<p>With a market cap of $38M IndyMac (IMB) should be a value play. Right?</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/07/10/indymac-closed-at-38-cents-today/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Help Wanted: Engineer Advertisment</title>
		<link>http://fuery.com/2008/07/09/help-wanted-engineer-advertisment/</link>
		<comments>http://fuery.com/2008/07/09/help-wanted-engineer-advertisment/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 00:38:15 +0000</pubDate>
		<dc:creator>Fuery Inc. Recruiting</dc:creator>
		
		<category><![CDATA[Corporate News]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=553</guid>
		<description><![CDATA[We are a small software engineering company located in downtown Oakland, in need of two dynamic individuals to complement our already solid team.  By joining our team, you will be working in an intelligent, flexible, and friendly environment with opportunities for growth within our startup company.  We&#8217;re part professional services firm, part technology [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="normal;"><span>We are a small software engineering company located in downtown Oakland, in need of two dynamic individuals to complement our already solid team.  By joining our team, you will be working in an intelligent, flexible, and friendly environment with opportunities for growth within our startup company.  We&#8217;re part professional services firm, part technology incubator, and all ambition.</span></p>
<p class="MsoNormal" style="normal;"><span> </span></p>
<p class="MsoNormal" style="normal;"><span>This means wearing a lot of hats and getting your hands dirty on product design, user interface design, software architecture, development, project management, quality assurance, and support. This doesn&#8217;t mean you&#8217;re expected to know all of these, but it does mean you should be excited (instead of intimidated) by new challenges every day. </span></p>
<p class="MsoNormal" style="normal;"><span>Professional Qualifications:</span></p>
<ul type="disc">
<li class="MsoNormal"><span>A BA/BS or equivalent      experience. A CS degree is advantageous, but not a prerequisite. You will      be tested during the interview process.</span></li>
<li class="MsoNormal"><span>IT support experience in      networks, troubleshooting, and repair. </span></li>
<li class="MsoNormal"><span>LAMP + JavaScript.       (Translation for the search engines: Linux, Apache, MySQL,       PHP,  JavaScript)</span></li>
<li class="MsoNormal"><span>Familiar with typical web      application architectures.</span></li>
<li class="MsoNormal"><span>Pre-development technical      research and documentation (ie. Wireframes, specs, and workflow. Wiki +      Visio + lots of dry erase markers) </span></li>
<li class="MsoNormal"><span>Strong system integration      skills. (bring it all together, even if using only chewing gum and      shoelaces)</span></li>
<li class="MsoNormal"><span>Ability to role play as various      actors (client, consumer, end user, engineer, etc) to improve/critique      software interfaces.</span></li>
</ul>
<p class="MsoNormal" style="normal;"><span>Personal Qualifications:</span></p>
<ul type="disc">
<li class="MsoNormal"><span>Ability to work and solve      problems independently with the ability to adapt and take on new tasks</span></li>
<li class="MsoNormal"><span>Flexible with the ability to      take on several projects at one time if necessary</span></li>
<li class="MsoNormal"><span>Prepared to take on increasing      responsibilities over time</span></li>
<li class="MsoNormal"><span>Excellent writing skills</span></li>
<li class="MsoNormal"><span>Good communication skills</span></li>
<li class="MsoNormal"><span>Creativity</span></li>
<li class="MsoNormal"><span>Logical reasoning skills</span></li>
<li class="MsoNormal"><span>Must be organized and able to      commit and deliver to project plans and timelines </span></li>
<li class="MsoNormal"><span>High levels of drive,      determination and enthusiasm</span></li>
<li class="MsoNormal"><span>Ability to work in a team      environment, meet tight deadlines and work on several projects      simultaneously</span></li>
</ul>
<p class="MsoNormal" style="normal;"><span><br />
Knowledge and experience in everything listed above is not necessary, however, we would like someone with as little training needed.  We will coach you on new tasks that we assign to you and we are always open to answer questions, however, someone who will take the initiative and try to work independently first is highly valued.  If you fit the description listed above, please email your resume to kaitlynne (at) fuery (dot) com.</span></p>
<p class="MsoNormal">
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/07/09/help-wanted-engineer-advertisment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Help Wanted: Office Manager/Administration Advertisment</title>
		<link>http://fuery.com/2008/07/09/help-wanted-office-manageradministration-advertisment/</link>
		<comments>http://fuery.com/2008/07/09/help-wanted-office-manageradministration-advertisment/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 00:35:50 +0000</pubDate>
		<dc:creator>Fuery Inc. Recruiting</dc:creator>
		
		<category><![CDATA[Corporate News]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=552</guid>
		<description><![CDATA[About the Company:
We&#8217;re a small up-and-coming Technology Consulting firm that does software, support, and documentation. Our small team is young, hardworking, and brilliant. We&#8217;re looking for some fresh talent to round out our service offerings, provide administrative support, and help us make sure we get everything done. Ideally, you&#8217;ll grow with us, actively learning new [...]]]></description>
			<content:encoded><![CDATA[<p>About the Company:</p>
<p>We&#8217;re a small up-and-coming Technology Consulting firm that does software, support, and documentation. Our small team is young, hardworking, and brilliant. We&#8217;re looking for some fresh talent to round out our service offerings, provide administrative support, and help us make sure we get everything done. Ideally, you&#8217;ll grow with us, actively learning new skills as we expand the business.</p>
<p>The position requires &#8220;wearing all the hats&#8221;. If you function best in an environment with a lot of structure and you do the same sort of work consistently, then this probably isn&#8217;t a good fit. If, however, you thrive on task juggling, get excited about figuring out solutions to interesting problems, learning how to use new tools, and occasionally find yourself reading Wikipedia for fun, then you&#8217;ll love working with us.</p>
<p>In other words, we&#8217;ll ask a lot of you, but you&#8217;ll learn more, faster, than anywhere else. If you like filing TPS Reports, then this is not the place for you!</p>
<p>Here&#8217;s what we need right now (if you&#8217;re comfortable with any three of these, we&#8217;d like to talk to you):</p>
<ul>
<li><span style="Symbol;"><span></span></span>Project coordination. We juggle 8-10 active projects (and growing) at any one time, and with dozens of tasks each, it&#8217;s a serious amount of pressure to make sure nothing gets lost. Your job is to take the hassle of task management on and allow our geeks to focus on what they do best. We don&#8217;t care how you do it – handwritten lists, a case of post-it notes, your email inbox, specialized software, or your amazing photographic memory. There will literally be 100 things on the collective task list at any one time, and we&#8217;ll throw more at you using every means possible (shoulder tap, paper note, email, voice mail, text message). If you can also work backwards from client-facing deadlines to intelligently organize tasks, we&#8217;ll buy you a pony. This is probably 60-90 minutes of upkeep every day.</li>
<li><span style="Symbol;"><span></span></span>The paper-pushing of small business management. Bookkeeping, payroll, expenses, invoicing, collections, etc. The owner has been doing this for quite some time, but it&#8217;d be much better for the business if he was out schmoozing with clients rather than trying to decipher tax forms. If you can take this off of his plate and actually get our payroll checks cut on time (ahem), the entire office will cater to your every whim. This is probably 4-8 hours a week; more at first while you reconcile the boss&#8217; mess, then down to half a day weekly for upkeep.</li>
<li><span style="Symbol;"><span></span></span>Document creation. Half our business is synthesizing technical concepts into readable form for non-techies. You will be expected to help out with this. Yes, even office staff has a billable target. This means your grammar has to be top-notch and you&#8217;ll be resizing images in Photoshop, drawing simple diagrams in Visio, and creating tables using Wiki markup. We&#8217;ll show you plenty of tips and tricks, but if you&#8217;re afraid to get your hands dirty, you&#8217;ll end up feeling more like a gopher and less like a contributor. And that just sucks for everyone.</li>
<li><span style="Symbol;"><span></span></span>Vendor Liaison. Collection companies. Web Hosting companies. Dell. AT&amp;T. The parking lot across the street. Office Depot. Costco. Handle the relationships, make sure we&#8217;re getting the best price, make sure they get paid on time, and make sure all of us as employees (including the boss) aren&#8217;t using resources foolishly.</li>
<li><span style="Symbol;"><span></span></span>Recruiting. Could you write an ad like this?</li>
<li><span style="Symbol;"><span></span></span>You&#8217;ll have your choice on which area you&#8217;d like to focus as we grow and add more staff. So if you imagine yourself making a career in the fields of accounting, management, or project planning, this is a good sandbox to work in, because you&#8217;ll get the chance to experiment in a coached environment while learning peripheral aspects of running a business. On the other hand, if you simply enjoy supporting smart people, that&#8217;s fine too.</li>
<li><span style="Symbol;"><span></span></span>Leadership &amp; Analytical Skills: Establishing policies &amp; procedures. You will be challenged on them by our engineers, so you need to have the analysis handled and be quick on the draw.</li>
<li><span style="Symbol;"><span></span></span>Documentation Skills: Geeks are smart. They&#8217;ll notice errors when you dictate policies and procedures. And if you don&#8217;t make rational sense, they won&#8217;t respect you.</li>
<li><span style="Symbol;"><span></span></span>Technical Skills: Understand the language of the business. This includes jargon related to software development, project management, and various science fiction references. If you can talk geek, we&#8217;ll forgive you for the occasional run-on. Our clients will notice, too, and it will incur trust. <span style="Wingdings;"></span></li>
<li><span style="Symbol;"><span></span></span>Bookkeeping Skills: Depreciation on buildings? Net 15? Adjustable rates? Quickbooks? 1040s? 1099s? W-2s? You don&#8217;t have to be a CPA, but you should have a general impression on what this all means and have the ability to fill in the blanks where needed through research and/or reference materials.</li>
<li><span style="Symbol;"><span></span></span>Research Skills: See subtleties in the bookkeeping requirements.</li>
<li><span style="Symbol;"><span></span></span>Attention to detail: We can forgive our geeks for occasionally forgetting to get back to a customer. It&#8217;s your job to hound them until they do. Oh, and if you screw up the books, none of us get to eat, so there&#8217;s that, too.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/07/09/help-wanted-office-manageradministration-advertisment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Out of Touch and Out of My Skin</title>
		<link>http://fuery.com/2008/07/09/out-of-touch-and-out-of-my-skin/</link>
		<comments>http://fuery.com/2008/07/09/out-of-touch-and-out-of-my-skin/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 00:19:51 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Off Topic]]></category>

		<guid isPermaLink="false">http://fuery.com/?p=549</guid>
		<description><![CDATA[Where&#8217;s my blog skin?
I just migrated to a new web host. It&#8217;ll be this way for a few days. Hey, at least I got around to writing about it!  
As for where I&#8217;ve been, well, no one&#8217;s heard from me in a long time&#8230; just busy. I&#8217;m hiring, though. Got LAMP and PHP skills? [...]]]></description>
			<content:encoded><![CDATA[<p>Where&#8217;s my blog skin?</p>
<p>I just migrated to a new web host. It&#8217;ll be this way for a few days. Hey, at least I got around to writing about it! <img src='http://fuery.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>As for where I&#8217;ve been, well, no one&#8217;s heard from me in a long time&#8230; just busy. I&#8217;m hiring, though. Got LAMP and PHP skills? Or small business management? Product Marketing?</p>
<p>Hit me up&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/07/09/out-of-touch-and-out-of-my-skin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Giving Back</title>
		<link>http://fuery.com/2008/04/26/giving-back/</link>
		<comments>http://fuery.com/2008/04/26/giving-back/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 06:53:02 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Entrepreneurship]]></category>

		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://fuery.com/2008/04/26/giving-back/</guid>
		<description><![CDATA[A friend and business partner of mine mentioned his commitment to a charity the other day. As a technologist, he donates four hours per week to the cause, assisting them in developing technical solutions for their operation.
I probed a little further on this, and he proposed the idea that giving back is part of success, [...]]]></description>
			<content:encoded><![CDATA[<p>A friend and business partner of mine mentioned his commitment to a charity the other day. As a technologist, he donates four hours per week to the cause, assisting them in developing technical solutions for their operation.</p>
<p>I probed a little further on this, and he proposed the idea that giving back is part of success, that the incoming opportunities will be reduced or otherwise tend to stagnate if one hordes their resources. He quoted the metric of 10%, citing that his four hours was based on the assumption that he should be working a 40 hour work week. (Like all entrepreneurs I know, including myself, he&#8217;s a workaholic, and works day and night.) Donating money or the resources of your business are both alternate paths to reach this state of cosmic balance.</p>
<p>While I tend to agree, I found myself thinking about how I lead my life, run my business, treat my employees, and serve my customers. I proposed that I give back every day by pushing employees to grow, going beyond the call of duty for customers, and coaching strangers in bettering themselves.</p>
<p>My friend proposed that the act of demarcating the 10% was important. &#8220;The act of &#8216;being cool&#8217; is something you should do anyway. That&#8217;s just a function of life. It isn&#8217;t charity.&#8221;</p>
<p>I&#8217;m not sure about that. I think that, actually, my business would do better and that I&#8217;d have significantly less stress if I was, well, more of an a$$4ole. Just yesterday (on a Friday night when I was supposed to be sipping a cocktail), I took on the duty of considering a biweekly payment plan for a tenant. I give up late fees all the time. I&#8217;ve loaned money interest-free more times than I can count. The people around me who I have led by example, inspired by my confidence, and pushed by my faith (in them) have earned literally millions of dollars just by having known me.</p>
<p>Furthermore, I&#8217;ve turned my charity inward, employing friends and family in jobs for which they are not qualified (in hope, sometimes not misplaced, that they would step up to the plate). I spend time with folks from my youth who lack the ability to move themselves forward in achievement or socioeconomics, even though that means, often, that the extent of our conversation is limited to the nuances of Star Wars. I often hold my tongue in those situations, in fact, refusing the urge to correct the misconceptions about everything from basic economics to race relations. You can&#8217;t help someone if you&#8217;re just contrary. You have to teach them how to think critically and push them to embrace objectivity.</p>
<p>But I digress. On this point, you see, I&#8217;m torn. I want to give back, but I believe it would come at the cost of these other charitable practices I engage in every day. Most entrepreneurs insulate themselves in gated communities, elite clubs, and stay (or make) friends only with peers within their socioeconomic and education strata. They trade in the YMCA for the Country Club and embrace the close-mindedness that comes with it.</p>
<p>I don&#8217;t. Every tenant I have lives in a bigger and better house than I do. Every client I have works less. And every friend I have likes me in spite of whatever financial success I happen to enjoy, not because of it.</p>
<p>Most of all, I feel torn because I feel that in order to participate in charity more traditionally/officially, I&#8217;d have to be that much more harsh in my daily life.</p>
<p>(pause)</p>
<p>In writing this, I&#8217;ve come to a conclusion. However, before I share it, what do you think? Is it either/or? If it is not, and doing official charity work requires giving up my daily give-back routine, is it worth it?</p>
<p>Do you give back? How?</p>
<p>And finally, what would you do?</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/04/26/giving-back/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reasons #8 and #9 why Google Contacts (Address Book) SUCKS</title>
		<link>http://fuery.com/2008/04/19/reasons-8-and-9-why-google-contacts-address-book-sucks/</link>
		<comments>http://fuery.com/2008/04/19/reasons-8-and-9-why-google-contacts-address-book-sucks/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 20:17:31 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<guid isPermaLink="false">http://fuery.com/2008/04/19/reasons-8-and-9-why-google-contacts-address-book-sucks/</guid>
		<description><![CDATA[Where have my contacts gone? The API says they are still there.
Screenshots from my two accounts, both personal gmail and google apps (click through for the full size version):


]]></description>
			<content:encoded><![CDATA[<p>Where have my contacts gone? The API says they are still there.</p>
<p>Screenshots from my two accounts, both personal gmail and google apps (click through for the full size version):</p>
<p><a href="http://fuery.com/wp-content/uploads/2008/04/where-are-my-contacts1.jpg"><img src="http://fuery.com/wp-content/uploads/2008/04/where-are-my-contacts1.jpg" title="Where are my contacts (account #1)" alt="Where are my contacts (account #1)" width="500" /></a></p>
<p><a href="http://fuery.com/wp-content/uploads/2008/04/where-are-my-contacts1.jpg"><img src="http://fuery.com/wp-content/uploads/2008/04/where-are-my-contacts2.jpg" title="Where are my contacts (account #2)" alt="Where are my contacts (account #2)" width="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/04/19/reasons-8-and-9-why-google-contacts-address-book-sucks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using Thunderbird as your Groupware Client without Exchange</title>
		<link>http://fuery.com/2008/04/18/using-thunderbird-as-your-groupware-client-without-exchange/</link>
		<comments>http://fuery.com/2008/04/18/using-thunderbird-as-your-groupware-client-without-exchange/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 00:22:13 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Entrepreneurship]]></category>

		<category><![CDATA[GeekSpeak]]></category>

		<guid isPermaLink="false">http://fuery.com/2008/04/18/using-thunderbird-as-your-groupware-client-without-exchange/</guid>
		<description><![CDATA[Last week I lamented about the lack of hosted Exchange alternatives. Unfortunately, I still haven&#8217;t found a solid solution. The inherent problem is the desire to use Thunderbird as the client and sync OTA with Blackberry devices.
Using Google for shared calendar, address book, and email is the avenue I&#8217;ve been exploring. I also considered installing [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I lamented about the <a href="http://fuery.com/2008/04/03/shared-calendar-and-address-book-without-exchange/" target="_blank">lack of hosted Exchange alternatives</a>. Unfortunately, I still haven&#8217;t found a solid solution. The inherent problem is the desire to use Thunderbird as the client and sync OTA with Blackberry devices.</p>
<p>Using Google for shared calendar, address book, and email is the avenue I&#8217;ve been exploring. I also considered installing Kolab, an open source groupware solution, but that seemed to me analogous to installing my own Exchange server on a hosted Windows box. The only benefit there would be the presumption that an open source solution like this would have support for a wide variety of products, including my Thunderbird and Blackberry requirements.</p>
<p>Here&#8217;s what I&#8217;ve found works in favor of the big G.</p>
<h2>Pros of Using Google as a Groupware Platform</h2>
<ul>
<li>Calendar Sync to Blackberry is solid. I can only sync on calendar at a time, so I still have the problem of merging my personal gmail account with my newer google apps account (hereafter referred to as &#8220;corporate&#8221;), but that strikes me as a relatively small problem since my schedule planning is typically only a few weeks out at the most. I can also display my own personal calendar by &#8220;sharing&#8221; it with my corporate self and then sync it down that way. I now have both calendars on my Blackberry happily syncing both ways. I do wonder if there&#8217;s a limit to the number of calendars I can share&#8230;</li>
<li>Mail is a no-brainer. Imap support means that, aside from the 5-10 minute lag, thunderbird and blackberry work just fine with both the personal and the corporate account. On the merging side of the equation, I&#8217;m still waiting for the corporate account to finish fetching my 50K messages from the personal account via POP (it&#8217;s google fetching from google, so it&#8217;s obviously throttled heavily), but I can continue to work from both accounts for the next few days.</li>
</ul>
<h2>Cons of Using Google as a GroupWare Platform</h2>
<ul>
<li>They claim ownership to you data. Sure, &#8220;do no evil&#8221; is a great edict, and sure, they&#8217;ve done nothing major (although I suppose the &#8220;caving&#8221; to China&#8217;s censorship demands is arguable) to violate the public trust, but the details in the Terms of Use are pretty alarming if you&#8217;re developing any sort of intellectual property, which I happen to do every day.</li>
<li>Contacts are a mess. Aside from my <a href="http://fuery.com/2008/04/03/shared-calendar-and-address-book-without-exchange/">earlier complaints</a>, I&#8217;ve been trying out <a href="http://zindus.com" target="_blank">Zindus</a> for Thunderbird-to-Google sync, and while I&#8217;m very impressed on their development speed (the Google Contacts API was only published 45 days ago or so), the plugin still needs some work. I attempted to move my contacts from plaxo over to my corporate gmail account, since the plaxo data set should contain all the data from my legacy personal mail account <em>plus</em> data from plaxo itself, linkedin, and my mobile phone contact list (via blackberry &#8211;&gt; outlook &#8211;&gt; plaxo manually). However, I ran into a number of issues with the Zindus merge:
<ul>
<li>The Plaxo export to Thunderbird felt a little off. I did it at about 4am last night, so I can&#8217;t recall what was wrong with it, but I ended up tossing the Thunderbird LDIF from plaxo and merging with Outlook 2007 instead. Then I imported from there from within Thunderbird. That&#8217;s fine, but it&#8217;s worth mentioning.</li>
<li>The Thunderbird-Google sync halts when google denies a contact. So my plaxo data, which contains duplicates all over the place (a single contact might be represented as a  record from the old gmail account, linkedin, <em>and </em>plaxo, and all contain the identical primary email, which google denies and Zindus pushes back on the user. So, basically, I&#8217;ll need to manually clean up my contact list in thunderbird before pushing it upstream. Good thing I have administrative help now.</li>
<li> Zindus does not &#8220;match up&#8221; contacts from my mobile phone. These contacts are generally an abbreviated name (i.e., a nickname, like &#8220;johnnyf&#8221; instead of &#8220;Johnny Fuery&#8221;) and a single number. The location of the number varies with regard to specific field (mobile, business, home, etc.), largely because I&#8217;ve migrated phone contacts several times over the years. Only 1% contain an email address at all. It would seem that Zindus relies on that email address for keying, becaues after attempting a dozen or so syncs, which all halted at various points in the process because of Google denying the contact add based on a duplicate primary email, the contacts that originated in my Blackberry are now duplicated a dozen times over.</li>
<li>Google won&#8217;t let me delete more than 20 contacts at a time. So starting over is going to be a major pain in the you-know-where. I now have 3500 contacts in my corporate gmail account when I started with 1900 or so in plaxo.</li>
</ul>
</li>
<li>The Google Apps &#8220;shared address book&#8221; is actually only intra-domain, so I can&#8217;t share my &#8220;personal&#8221; contacts. In other words, it ain&#8217;t a shared address book. I know the 8 people with accounts on my domain already and they&#8217;re IN my personal address book.</li>
<li>The workaround would be to sync multiple Thunderbird installations via Zindus against the same &#8220;personal&#8221; address book. One could conceivably setup a Google account solely for contacts, configure Thunderbird + Zindus to sync against this single account, and voila &#8212; group contacts. The scalability of this model is cause for concern, however. I&#8217;ve yet to try it on more than two desks with my personal account. Zindus does authenticate against both my personal and corporate accounts, by the way.</li>
</ul>
<p>At this point, I need quite a few utilities to make this work.</p>
<h2>Market Opportunities</h2>
<p>Please let me know (via the now-working <a href="http://fuery.com/contact">Contact Form</a> or a comment below) if you&#8217;re interested in these. Most of these I foresee being donationware and/or ad supported, but I&#8217;d also be interested in the economic value to you.</p>
<ul>
<li>Google &#8220;Delete all contacts&#8221; script. Go to a web page, enter you gmail login data, click a button, and flush your account. Google probably has some throttling on it, so it would probably be a &#8220;we&#8217;ll email you a confirmation in a few minutes&#8221; type of experience.</li>
<li>Google contact migrator. Move contacts from an old account into a new one. See previous item for proposed interface.</li>
<li>Improvements on the Zindus tool. I&#8217;d rather not write my own, but minimally, it should key against more than just the email address (the FAQ says it does, but my experience indicates otherwise) and provide a preference for skipping past problematic records. Problematic records should be outputted in a summary or log of some kind so they can be handled manually. A re-sync should not create still more duplicates (keying against more than just an email address would satisfy this).</li>
<li>Thunderbird (Lightning)-Google Sync remains unanswered. GCalDaemon can do it, but it&#8217;s an awful lot of code sitting on clients for that one feature, and I&#8217;ve yet to be able to get it to work with a non-personal (Google Apps based) calendar.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/04/18/using-thunderbird-as-your-groupware-client-without-exchange/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Lose 90 RSS Subscribers in 48 Hours</title>
		<link>http://fuery.com/2008/04/16/how-to-lose-90-rss-subscribers-in-48-hours/</link>
		<comments>http://fuery.com/2008/04/16/how-to-lose-90-rss-subscribers-in-48-hours/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 01:23:27 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Blogging Tips]]></category>

		<guid isPermaLink="false">http://fuery.com/2008/04/16/how-to-lose-90-rss-subscribers-in-48-hours/</guid>
		<description><![CDATA[Activate Google Apps and switch your mail server mx settings over to the big G.
Absentmindedly change the email system that has been working for you for half a decade, realize the contact management and history migration are going to be painful, then come up with the temporary solution of mail forwarding.
Inadvertently create a circular reference [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Activate Google Apps and switch your mail server mx settings over to the big G.</li>
<li>Absentmindedly change the email system that has been working for you for half a decade, realize the contact management and history migration are going to be painful, then come up with the temporary solution of mail forwarding.</li>
<li>Inadvertently create a circular reference (an infinite loop for those of you that happen to be programmers or just know Apple&#8217;s corporate address off the top of your head) by forwarding messages to yourself. To yourself. To yourself. To yourself. To&#8230; oh, you get the picture.</li>
<li>Be busy enough so that you don&#8217;t notice PHP errors or Bandwidth Exceeded messages appearing on your web site/blog.</li>
<li>Have the alert email on your web host configured to forward to an address you don&#8217;t use any more.</li>
<li>Realize you have a problem, call your web host, have them give you a solution that seems inherently risky and prone to data loss.</li>
<li>Do it anyway.</li>
<li>Repeat step 4.</li>
<li>Get a message from one of your contractors (1099 employees) that your site is down. Get another message from a client. Realize you&#8217;re an idiot and should never have listened some douchebag answering the phone at 10pm telling you not to worry about the crazy hack he&#8217;s about to perform on your income-generating site when you know he really hasn&#8217;t considered the impact of what he&#8217;s suggesting.</li>
<li>Logon to wordpress, realize that your site has been down for at least two days, and sigh heavily. (So that&#8217;s why I suddenly got so much comment spam&#8230; from 8 comments a day to 300 over the last 48. Dammit! Repeat step 4.)</li>
<li>Fix issues, realizing that the problem is due to the fact that the 20 plugins you have installed have all been deactivated. Feedburner, Akismet, Threaded Comments, you name it. Sigh more heavily.</li>
<li>Do a 3 minute round of QA on your site. Note dead links.</li>
<li>Log back into wordpress and realize you&#8217;ve lost all your static pages.</li>
<li>Log into MySQL and search for said content.</li>
<li>Realize you&#8217;ve lost those pages, probably forever.</li>
<li>Post said experience to blog, deferring the broken link fixes for the time being, noting to self that a site redesign is long overdue anyway. Hey, the 96 readers left will have a good laugh at your misfortune. Right? RIGHT?</li>
</ol>
<p>Everyone clear on that? btw, I could use a full time LAMP developer if anyone is interested&#8230; must not think Ajax is a cleanser. Email me at&#8230; aw crap. The contact page is down.</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/04/16/how-to-lose-90-rss-subscribers-in-48-hours/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blue Chip Expert: Elite version of LinkedIn or scammy Wannabe?</title>
		<link>http://fuery.com/2008/04/13/blue-chip-expert-elite-version-of-linkedin-or-scammy-wannabe/</link>
		<comments>http://fuery.com/2008/04/13/blue-chip-expert-elite-version-of-linkedin-or-scammy-wannabe/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 20:07:36 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<guid isPermaLink="false">http://fuery.com/2008/04/13/blue-chip-expert-elite-version-of-linkedin-or-scammy-wannabe/</guid>
		<description><![CDATA[I got an invite a week or two ago to a site called Blue Chip Expert. The source was a fellow I&#8217;ve traded emails with, but never done actual business with. A blog-friend, if you will. Still, the fellow has a good rapport, so I clicked. Networking is always a good thing, and I&#8217;m interested [...]]]></description>
			<content:encoded><![CDATA[<p>I got an invite a week or two ago to a site called Blue Chip Expert. The source was a fellow I&#8217;ve traded emails with, but never done actual business with. A blog-friend, if you will. Still, the fellow has a good rapport, so I clicked. Networking is always a good thing, and I&#8217;m interested in social networking from a business model standpoint, so I went ahead and signed up. Curiosity &#8216;n all.</p>
<p>Turns out you get a bounty for referrals. Not that it&#8217;s a new model &#8212; recruiters have been giving out kick backs for as long as I can remember. But the network/multi-level marketing (think Amway) aspect of this company was noteworthy. Here&#8217;s a screen cap of the page diagramming their model. You get it <em>after</em> you register:</p>
<p><a href="http://fuery.com/wp-content/uploads/2008/04/bluechipexpert.jpg" title="bluechipexpert.jpg"><img src="http://fuery.com/wp-content/uploads/2008/04/bluechipexpert.jpg" title="bluechipexpert.jpg" alt="bluechipexpert.jpg" width="512" /></a></p>
<p>Interested in spamming all your friends in hopes of earning a bounty? Here, use my <a href="http://www.bluechipexpert.com/invite?code=jf731" target="_blank">referral code</a>.Â  <img src='http://fuery.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>(And no, I didn&#8217;t spam <em>any </em>of my friends. I want to keep the brilliant folks in my network to myself, dammit!)</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/04/13/blue-chip-expert-elite-version-of-linkedin-or-scammy-wannabe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Shared Calendar and Address Book without Exchange?</title>
		<link>http://fuery.com/2008/04/03/shared-calendar-and-address-book-without-exchange/</link>
		<comments>http://fuery.com/2008/04/03/shared-calendar-and-address-book-without-exchange/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 07:08:59 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<guid isPermaLink="false">http://fuery.com/2008/04/03/shared-calendar-and-address-book-without-exchange/</guid>
		<description><![CDATA[I have an interesting problem.  I need to solve this for both my own business and for a client (the new one, actually, whose network apparently destroys NetGear Products).
What I Want

Shared &#8220;global&#8221; address book  across 1-20 users. Some sort of consolidation tools would be a nice value-add.
The address book needs to have some [...]]]></description>
			<content:encoded><![CDATA[<p>I have an interesting problem.  I need to solve this for both my own business and for a client (the new one, actually, whose network apparently destroys <a href="http://fuery.com/2008/04/03/rest-in-peace-netgear/" target="_blank">NetGear Products</a>).</p>
<h2>What I Want</h2>
<ul>
<li>Shared &#8220;global&#8221; address book  across 1-20 users. Some sort of consolidation tools would be a nice value-add.</li>
<li>The address book needs to have some sort of categorization capability. In my case, for instance, I&#8217;d probably start with &#8220;Tenants&#8221;, &#8220;Clients&#8221;, &#8220;Vendors&#8221;, &#8220;Friends &amp; Family&#8221;, &#8220;Everyone Else&#8221; and possibly &#8220;Women&#8221;. Maybe a &#8220;People I Keep in My Contact List so I Recognize the Caller ID and Don&#8217;t Pick Up the Phone&#8221; category, too.</li>
<li>Shared&#8221;global&#8221;calendaring. I want to see my calendar, my vendors/contractor&#8217;s calendars, and my assistant&#8217;s calendar. Yes, all at once. Yes, on my Blackberry in real time.</li>
<li>Versatility in supported clients. Supported clients list should minimally include Thunderbird with the Lightening plugin, my Blackberry via over the air (OTA) automatic synchronization, the web via a desktop browser, and Outlook. Blackberry via the Handheld Web Browser, as cool as it has become (hey, whatever happened to AvantGo?) is not acceptable. I want integration with the Blackberry calendar, or no-go. You can alternatively have me install a custom client, but it has to be worth it. The GMail client, for instance, is <em>almost</em> &#8220;worth it&#8221;. I still use the native Blackberry mail application more often. Integrated Mailbox + Hardware Integration (yes, that often-annoying blinking red light) readily trumps the Gmail email threading excellence (think of Gmail&#8217;s conversation-centric view, which was the original Outlook killer for me).</li>
<li>Support of the <a href="http://tools.ietf.org/html/rfc2445" target="_blank">iCalendar</a> standard so that the rest of the world can interact with event invitations.</li>
<li>Hosted so I don&#8217;t have to worry about data integrity or location. I move a lot, the management of a server just for this limited set of features isn&#8217;t worth the cost, and&#8230; it&#8217;s just the way of the future. If I had enough clients who needed it, I might host the server <em>myself</em>, but that&#8217;s productization and entrepreneurship, not a solution to my needs. That is, that&#8217;s me building this because I can&#8217;t find a viable alternative.</li>
<li>Cheap. For somewhere around $100 a month, I can throw up an Exchange server on a dedicated Windows box with all the fixin&#8217;s. I&#8217;m not going to do that, but it&#8217;s a worthwhile metric for deciding what to pay.</li>
<li>Nice to have bonus: Integration of a specific group of contacts (Clients and Vendors, in this case) with QuickBooks. I don&#8217;t think QuickBooks has the hook for this, however, so I realize this is a pipe dream.</li>
</ul>
<h2>Possible Solutions for Consideration</h2>
<p><strong>Google.</strong>Â  (google.com/apps)</p>
<p>If you sign-on for the full-fledged, take-over-your-domain version of Google Apps (this isn&#8217;t just a shared spreadsheet, they want you to use gmail as your corporate email client), you can share an address book and your calendar. In fact, I already share my calendar, and as long as my vendors and contractors use (or sync with) Google Calendar <em>and</em> give me permission to see their schedules, I&#8217;m all set. Blackberry support is there, and despite having to reinstall the Google Sync application every time I reset my gmail password, I&#8217;m overall impressed with the features and dependability of the software.</p>
<p>The only problem is the address book. Contact management is miserable in Gmail. I&#8217;ve gotten stuck clicking randomly every time I&#8217;ve desired to add detail to a contact. It&#8217;s not intuitive, it adds everyone who I ever email to my contact list (hmm, unsubscribe-me-for-godsakes@viagra-for-you-cheap.com is a contact of mine? who knew?), it lacks the categorization features, and it doesn&#8217;t OTA sync with my Blackberry. Four strikes and your out.</p>
<p><strong>Highrise</strong>. (highrisehq.com)</p>
<p>Task management, contact management, and calendaring in a nice new Web 2.0 interface? <em>Cool.</em></p>
<p>Shared all around with lots of permissions preferences? <em>Groovy.</em></p>
<p>Send an email to add a task? <em>Nice.</em></p>
<p>Integration with&#8230;? Uh oh. Sure, you can import and export using all kinds of midway techniques, but you can&#8217;t even install a Thunderbird plugin for synchronizing, let alone do OTA Blackberry access.</p>
<p>Those two are showstoppers. Sorry, backbase. I <em>might</em> still use your email-to-task system for some fringe case uses (my assistant seems to like it, for instance), but you aren&#8217;t getting my dollars <em>or </em>my contact list. Highrise charges a sliding-scale monthly fee once you surpass a relatively minimal number of contacts.</p>
<p>Heck, if all I needed was the Thunderbird Plugin, I might write it myself. But the lack of any synchronization tools whatsoever is pretty disappointing. C&#8217;mon, guys.</p>
<p><strong>Plaxo. </strong>(plaxo.com)<strong><br />
</strong></p>
<p>Plaxo has done an <em>amazing</em> job of integrating with everyone and everything. This blog entry will probably get posted on &#8220;Plaxo Pulse&#8221; to some significant subset of the 1800 contacts in my address book. Take that, blog spammers!</p>
<p>Seriously, now, Plaxo has sync&#8217;d with Facebook, Google, Yahoo, LinkedIn, Outlook, and a million other sites and services I&#8217;ll never use. The integration is pretty solid, although I had to use Outlook as a go-between to get my contacts on my Blackberry. And the beauty of Plaxo is that the social networking aspects of it mean that I&#8217;ll never have to update someone&#8217;s contact info again. As long as they&#8217;re a member, of course. And yes, it&#8217;s free.</p>
<p>There is trouble in paradise, however. First of all, Plaxo has no tools for removing duplicates. So it sync&#8217;d against a half dozen different services (including my mobile phone handset, which doesn&#8217;t have any meta data at all) and except where there was an exact email address match, I have multiple entries galore. And while I really do have 15 Laura/Laurens in my phone, I definitely don&#8217;t know 14 Kevins. So those 1800 contacts are probably more like 600. Dammit. I thought I was popular.</p>
<p>I also cannot share contacts with anyone else.</p>
<p>That&#8217;s enough of a drag to cross it off the list. I haven&#8217;t even looked at the more recently released Calendar features, because the inability to share my address book is a deal-breaker. Next.</p>
<p>&#8211;</p>
<p>Does the product I&#8217;m looking for really not exist? Am I left to consider building it myself or living without?</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/04/03/shared-calendar-and-address-book-without-exchange/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rest in Peace, NetGear.</title>
		<link>http://fuery.com/2008/04/03/rest-in-peace-netgear/</link>
		<comments>http://fuery.com/2008/04/03/rest-in-peace-netgear/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 05:48:09 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[GeekSpeak]]></category>

		<guid isPermaLink="false">http://fuery.com/2008/04/03/rest-in-peace-netgear/</guid>
		<description><![CDATA[No, there was no announcement you missed today.
I&#8217;ve used their FVS318 Router/Firewall product for years, more or less standardizing on it as the platform of choice for all of my client&#8217;s offices. That backfired for me this week.
On Monday, I got a call from a brand new client from an office I&#8217;d never visited before. [...]]]></description>
			<content:encoded><![CDATA[<p>No, there was no announcement you missed today.</p>
<p>I&#8217;ve used their <a href="http://www.amazon.com/gp/redirect.html%3FASIN=B00011P9HW%26tag=johnnyworld-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/B00011P9HW%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_blank">FVS318 Router/Firewall</a> product for years, more or less standardizing on it as the platform of choice for all of my client&#8217;s offices. That backfired for me this week.</p>
<p>On Monday, I got a call from a brand new client from an office I&#8217;d never visited before. It was an emergency. Their internet was offline. Great, an opportunity to be a hero, right?</p>
<p>Well, I diagnosed pretty quickly that their existing gateway was dead. No worries; that&#8217;s what Best Buy is for &#8212; overpriced networking gear in a hurry. After getting a little lost first, of course.</p>
<p>Everything worked fine for two days. Then, today, the Firewall would intermittently drop it&#8217;s connection to the internet. A reboot fixed it every time&#8230; for 5 minutes. I troubleshooted my happy little arse off for 90 minutes on it, then decided to take it back and exchange it. What the heck?</p>
<p>In the meantime, naturally, I grab a spare <a href="http://www.amazon.com/gp/redirect.html%3FASIN=B00007KDVI%26tag=johnnyworld-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/B00007KDVI%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_blank">Linksys Wireless Router WRT54G</a> device and get it working in&#8230; oh, six minutes.</p>
<p>I get the second Netgear Firewall unit in, configure it identically, it works for about fifteen minutes, then ceases to route. Heck, it doesn&#8217;t even respond to a ping from the internal network any longer, let alone show me it&#8217;s own built-in web utility. Or, you know, <em>work</em>.</p>
<p>Screw it. My $35 old school Linksys device wins. I am never buying a Netgear device again.</p>
<p>I&#8217;ve been scratching my head trying to think of what went wrong with the device, and the only difference I can think of in terms of configuration is the fact that it&#8217;s using a static IP instead of PPPoE like the other dozen I&#8217;ve installed in the past few years.</p>
<p>So, sell your NetGear stock. Ditto on whomever manufactures D-Link products for the same reason. Buy Cisco.</p>
<p>P.S., Yes I&#8217;m still alive. Just been busy.</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/04/03/rest-in-peace-netgear/feed/</wfw:commentRss>
		</item>
		<item>
		<title>More Thoughts on the Microsoft/Yahoo merger</title>
		<link>http://fuery.com/2008/03/13/more-thoughts-on-the-microsoftyahoo-merger/</link>
		<comments>http://fuery.com/2008/03/13/more-thoughts-on-the-microsoftyahoo-merger/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 22:41:46 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[GeekSpeak]]></category>

		<guid isPermaLink="false">http://fuery.com/2008/03/13/more-thoughts-on-the-microsoftyahoo-merger/</guid>
		<description><![CDATA[(Courtesy of ValleyWag and my friend Sam.)

]]></description>
			<content:encoded><![CDATA[<p>(Courtesy of ValleyWag and my friend Sam.)</p>
<p><a href="http://fuery.com/wp-content/uploads/2008/03/msn_yahoo.jpg" title="MSN and Yahoo Interoperability (bitch, please!)"><img src="http://fuery.com/wp-content/uploads/2008/03/msn_yahoo.jpg" alt="MSN and Yahoo Interoperability (bitch, please!)" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/03/13/more-thoughts-on-the-microsoftyahoo-merger/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Food For Thought (quick)</title>
		<link>http://fuery.com/2008/03/04/food-for-thought-quick/</link>
		<comments>http://fuery.com/2008/03/04/food-for-thought-quick/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 21:52:09 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Real Estate]]></category>

		<guid isPermaLink="false">http://fuery.com/2008/03/04/food-for-thought-quick/</guid>
		<description><![CDATA[Apparently amidst the subprime mortgage juggling, some banks have lost a couple of trillion bucks worth of paper.Â  Not hte write-down on the balance sheet, mind you, but actually lost the loan documentation.Â  Makes you feel a little better for being late on your taxes, eh? Anyone know of a method for determining if your [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently amidst the subprime mortgage juggling, some banks have lost a couple of trillion bucks worth of paper.Â  Not hte write-down on the balance sheet, mind you, but actually <a href="http://www.boingboing.net/2008/02/26/derivates-shellgame.html" target="_blank">lost the loan documentation</a>.Â  Makes you feel a little better for being late on your taxes, eh? Anyone know of a method for determining if your particular mortgage paperwork happens to be lost? Aside from &#8220;stop paying and see if I lose my house&#8221; method, of course.</p>
<p>Why is it that the quantity and frequency of &#8220;No U-Turn&#8221; signs is always the highest right around highway on-ramps? You know, where one wrong turn can send you in the wrong direction for miles and a legal U-Turn would be the most helpful?</p>
<p>In the future, will education and intellect be judged based on how much information one can recall, or how good one is at formulating Google search queries?</p>
<p>Why does it take 5 days for my local Baby Bell to install internet services when no technician visit is required and I already have my equipment?</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/03/04/food-for-thought-quick/feed/</wfw:commentRss>
		</item>
		<item>
		<title>So I Have This Business Idea I&#8217;d Like to Talk to You About</title>
		<link>http://fuery.com/2008/02/25/so-i-have-this-business-idea-id-like-to-talk-to-you-about/</link>
		<comments>http://fuery.com/2008/02/25/so-i-have-this-business-idea-id-like-to-talk-to-you-about/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 22:14:49 +0000</pubDate>
		<dc:creator>Johnny Fuery</dc:creator>
		
		<category><![CDATA[Entrepreneurship]]></category>

		<guid isPermaLink="false">http://fuery.com/2008/02/25/so-i-have-this-business-idea-id-like-to-talk-to-you-about/</guid>
		<description><![CDATA[I get pitched at least once a week on some new idea. These are, almost invariably, half-baked pipe dreams. There are a lot of people out there with good ideas &#8212; the keys to success, I believe, are based on connections (who you know), experience both in the specific business sector and as an entrepreneur, [...]]]></description>
			<content:encoded><![CDATA[<p>I get pitched at least once a week on some new idea. These are, almost invariably, half-baked pipe dreams. There are a lot of people out there with good ideas &#8212; the keys to success, I believe, are based on connections (who you know), experience both in the specific business sector and as an entrepreneur, luck, and drive.</p>
<p>Usually, alas, the pitches I hear are from folks without a great deal of any of these. My typical response is &#8220;write a business plan and get back to me&#8221;.</p>
<p>Well, someone did. Here&#8217;s my review (with sensitive items removed, of course) of it. You don&#8217;t need to read the business plan to understand my criticisms. For what it&#8217;s worth, I&#8217;m looking forward to seeing the revision of this one.</p>
<p>&#8211;</p>
<p>Seeing this for the first time, I have the following questions:</p>
<p>How do you make your money? I get the basic premise &#8212; <em>(proprietary items removed) &#8211;</em> but where is the value?</p>
<p>The only place I can guess on value is&#8230; <em>(proprietary items removed)</em></p>
<p><em> </em>But you never say that.</p>
<p>The &#8220;how does your company make money&#8221; question needs to be answered right up front, before any graphs, projections, etc. I&#8217;m also skeptical that the value of [your customer's purchase is what you imply]. I&#8217;m not saying it isn&#8217;t &#8212; I don&#8217;t know what I&#8217;m talking about &#8212; but if I&#8217;m wondering, so will another investor.</p>
<p>This is business. Ultimately, despite the fact that you&#8217;re currently selling to investors, you&#8217;ll need to sell to the people that will pay for your service. The investor needs to understand not only who these people are (you say that), but why they care. &#8220;Care&#8221; meaning want your service, that is. This is a new product, something you say many times, so you&#8217;re going to need to educate your consumers on the product &#8212; how are you going to do that? A good start to answering that question is communicating the new product and why its compelling very concisely and quickly to an investor.</p>
<p>Basically, you need an <a href="http://en.wikipedia.org/wiki/Elevator_pitch"rel="nofollow"  target="_blank">elevator pitch</a>, which then is presented at the beginning of your business plan as an &#8220;at a glance&#8221; i.e., &#8220;Executive Summary&#8221; It&#8217;s not so very different from hitting on a hot chick: it takes practice, it takes confidence, and it damn well takes you having a clear vision of what exactly is going to appeal to her. For an investor, that means your business model. (She already knows what you want, and even if she&#8217;s wrong, you can&#8217;t change those assumptions in 30 seconds.)</p>
<p>Everything else is secondary, but while I&#8217;m thinking about it:</p>
<ul>
<li>I wouldn&#8217;t go into such detail on sales projections and such unless you have individual investors asking for it. Venture Capitalists don&#8217;t care, because it&#8217;s all smoke anyway. The time-to-profitability graph is what matters here, not the results of the dart throw you took at 3am the night before your pitch. If they even get to that part, they&#8217;ve been sold on the model &#8212; now they just want to know the execution details.</li>
<li>Everyone knows you need to spend some money on office space, computers and a fax machine, so I wouldn&#8217;t bother. Include a figure for &#8220;office expenses&#8221;, yes, but use a nice round number and call it a day. The technology infrastructure required to run a digital sales system that can handle XX million transactions a day? Yeah, include that. Your phone lines, not so much.</li>
<li>Don&#8217;t include specific salary figures. Your rich uncle doesn&#8217;t want to pay you that much (&#8221;greedy bastard!&#8221;) and a VC will wonder why you&#8217;re so cheap (&#8221;first time entrepreneur with no experience&#8221;). Either way, it doesn&#8217;t add a whole lot of value and it might detract a lot.</li>
</ul>
<p>From a tech perspective, as a software architect, I&#8217;ll need to be able to draw some basic conclusions about what the Information Technology application is supposed to do from your business plan. Software development starts with Business Requirements, which in turn correspond to Functional Requirements that dictate Technical Requirements and finally a Technical Specification. You can skip certain aspects of this process (you kinda have to in a startup), but the basic logic flow is the same. If we skip the BRD (biz req doc), it&#8217;s gonna be because the Business Plan and related collateral is so friggin&#8217; good that your software architect can extrapolate what is needed from it. The other shortcuts in the process are going to be because I rock and hire IT staff that rocks &#8212; stuff that also costs additional money, because rock stars are more expensive.</p>
<p>Lastly, without a prototype, you need mock-ups. That should be included as a cost in your initial angel pitch. It costs some of that angel investment to build and support the sales process for the next step &#8212; getting a VC round. On this point, don&#8217;t kid yourself &#8211;100% of your time for the next 3-5 years is going to be wrapped up in trying to get your next round of funding. The other 100% of your time is going to be actually getting your business moving. And yes, you&#8217;re minimum workweek is going to be 80+ hours for the foreseeable future.</p>
<p>One last peripheral question&#8230; do you know who your competitors are? I don&#8217;t think that a detailed answer belongs in your business plan, but you should be prepared to answer those questions, especially regarding how you&#8217;re different and why you&#8217;re going to make more money.</p>
]]></content:encoded>
			<wfw:commentRss>http://fuery.com/2008/02/25/so-i-have-this-business-idea-id-like-to-talk-to-you-about/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
