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

<channel>
	<title>Juixe Techknow</title>
	<atom:link href="http://juixe.com/techknow/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://juixe.com/techknow</link>
	<description>Break Coders Block!</description>
	<lastBuildDate>Tue, 09 Mar 2010 06:26:07 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Top Worst Java Errors</title>
		<link>http://juixe.com/techknow/index.php/2010/03/08/top-worst-java-errors/</link>
		<comments>http://juixe.com/techknow/index.php/2010/03/08/top-worst-java-errors/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 06:26:07 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[code smell]]></category>
		<category><![CDATA[common errors]]></category>
		<category><![CDATA[hashmap]]></category>
		<category><![CDATA[mkdir]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1012</guid>
		<description><![CDATA[I&#8217;ve had my fair share of Java bugs.  There is a stage in a programmer&#8217;s career that he or she either knows that they rather manage a convenience store or that they can debug common Java errors just by the way the code smells.  Here are my list of worst common Java bugs [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had my fair share of Java bugs.  There is a stage in a programmer&#8217;s career that he or she either knows that they rather manage a convenience store or that they can debug common Java errors just by the way the <a href="http://en.wikipedia.org/wiki/Code_smell">code smells</a>.  Here are my list of worst common Java bugs I have been frustrated to solve.  These issues have come up more than once, most often in code that I inherited, and had to fix under a time crunch or tight deadline.</p>
<p><b>mkdir</b><br />
I&#8217;ve had to fix a few bugs related to the mkdir() method in the File class.  The mkdir() method creates or makes a new directory.  The mkdir() method only creates one directory.  But in many situations, especially if the end user is supplying the path of the directory to be created, you will need to crate a whole new directory hierarchy.  Often times you will create a directory and subdirectories at one time.  In these situations, you want to use the mkdirs() method instead.  </p>
<p><b>Index Of</b><br />
Most software bugs are caused by assumptions made by the programmer.  One common assumption I see developers making is that file names have only one period to separate the file name from the file extension.  It is common to see code that finds the first period and everything after that period is assumed to be the extension.  Other assumptions regarding file names include that extensions are three characters long or that the file name does not have special characters.  The following code snippet is a dramatization of code I have seen in the field, which incorrectly tries parse the file extension.</p>
<pre class="brush: java;">
String filename = &quot;a.file.path.ext&quot;;
int index = filename.indexOf(&quot;.&quot;);
String extension = filename.substring(index);
</pre>
<p>A different approach, which would have the desired result is to use the lastIndexOf() instead.</p>
<p><b>Null Equals</b><br />
I&#8217;ve seen a whole slew of null pointer exceptions due to this sort of Java bug where a possibly null object reference will be used to check the equality of a hard coded constant.  Here is the code snippet of what I mean.</p>
<pre class="brush: java;">
boolean equals = maybeNullObjectReference.equals(&quot;CONSTANT&quot;);
</pre>
<p>The object reference may be null, so you need to check for null values.  I found that if you switch your thinking, you can write less code and still achieve a better solution that having to constantly check if the object is null.  A safe approach is to use a object that you know is not null, the constant value.</p>
<pre class="brush: java;">
boolean equals = &quot;CONSTANT&quot;.equals(maybeNullObjectReference);
</pre>
<p><b>Equals</b><br />
Yet another Java bug that can be easy to miss is the use of the Java equals operator instead of the equals() method.  The equals operator returns true if the two object references you are testing point to the same object instance.  The equals operator compares the equality of the object references, not the object values but since it reads the same it is easy to overlook.</p>
<p><b>Map Key</b><br />
The worst Java bug that I had to ever deal with involved the use of mutable objects as keys in hash maps.  The implementation of the Java HashMap is really simple, the hash code of the key is used to locate the bucket in which to store the map entry, which consists of the key/value pair.  Once you put a key/value pair in a hash map you should not change the value of the key, ever, in any way that changes the hash code.  If the key is changed where it generates a new hash code, you will not be able to locate the correct bucket in the HashMap that contains the key/value pair.  I had a scenario where key/value pairs were stored in a HashMap, then the keys where updated generating a new hash code, and there after the value was not able to located.</p>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2010/03/08/top-worst-java-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook, Zuckerberg, and Plain Text Passwords</title>
		<link>http://juixe.com/techknow/index.php/2010/03/08/facebook-zuckerberg-and-plain-text-passwords/</link>
		<comments>http://juixe.com/techknow/index.php/2010/03/08/facebook-zuckerberg-and-plain-text-passwords/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 22:02:54 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Rant]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[diggnation]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[godaddy]]></category>
		<category><![CDATA[kevin rose]]></category>
		<category><![CDATA[krose]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tom]]></category>
		<category><![CDATA[twit]]></category>
		<category><![CDATA[zuckerberg]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1010</guid>
		<description><![CDATA[Speaking about the public allegations that Mark Zuckerberg, alleged founder of Facebook, hacked into Harvard school email accounts of rivals and school journalists Kevin Rose said that the allegations don&#8217;t even sound technically possible.  The way the allegations are described, Mark Zuckerberg used the passwords of Facebook users he wanted to track on other [...]]]></description>
			<content:encoded><![CDATA[<p>Speaking about the public allegations that <a href="http://www.dailymail.co.uk/news/worldnews/article-1255888/Facebook-founder-Mark-Zuckerberg-hacked-emails-rivals-journalists.html">Mark Zuckerberg</a>, alleged founder of Facebook, hacked into Harvard school email accounts of rivals and school journalists Kevin Rose said that the allegations don&#8217;t even sound technically possible.  The way the allegations are described, Mark Zuckerberg used the passwords of Facebook users he wanted to track on other systems.  Since many online users tend to have one or two different username and/or passwords, if you have the password for on online service you might guess a the login password to another service for that same user.  Clear text passwords are a real security concern.  On This Week in Tech # 238, Kevin said, &#8220;I doesn&#8217;t make sense, I don&#8217;t see it happening.  &#8230; Nobody really stores passwords in plain text anymore, I can&#8217;t imagine Facebook would have done that.&#8221;  I&#8217;m a fan of Kevin&#8217;s Diggnation podcast but I have to call him on this social media bullshit on technical grounds.  It might be that his social graph is clouding his judgment.  The sad truth is that even today, some large companies have be called out for storing passwords in clear text.  In fact, a long time sponsor of Diggnation, <a href="http://news.ycombinator.com/item?id=1148092">Go Daddy</a> was recently accused of storing passwords in plain, clear, simple to read text.  Surely, he must have known or heard of the Go Daddy privacy mishap.  His explanation that no one really uses clear text passwords anymore is very naive, it sounds like the advice given in the many tech conferences that Kevin is known to attend.  I very much doubt that some &#8220;copy and paste&#8221; programmer in some college dorm room in 2004 would develop a website with 2010 best practices and user experience.  </p>
<p>I would hope that Facebook does not employ practices such as these now, but I sure don&#8217;t trust them with my account and do the bare minimum on Facebook that is required to keep up with friends.  An anonymous <a href="http://therumpus.net/2010/01/conversations-about-the-internet-5-anonymous-facebook-employee/">Facebook developer</a> in an interview stated that any Facebook developer can impersonate any user and all data is unencrypted so any developer can possible run SQL queries to look up your data.</p>
<p>You have to think about it, for a social networking site, why can&#8217;t you befriend it&#8217;s founder, Mark Zuckerberg, like in other sites.  I mean, Tom is in my top eight on MySpace.  Don&#8217;t trust the 800 pound gorilla as far as you can trow it especially if it is riding the elephant in the room.</p>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2010/03/08/facebook-zuckerberg-and-plain-text-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retweet February 2010</title>
		<link>http://juixe.com/techknow/index.php/2010/03/06/retweet-february-2010/</link>
		<comments>http://juixe.com/techknow/index.php/2010/03/06/retweet-february-2010/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 22:48:21 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[TechKnow]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1007</guid>
		<description><![CDATA[From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of recent tweets and rants.  If you want to follow the conversation follow me at techknow and/or juixe and I&#8217;ll be sure to follow back.
Software Development

Androids dream of [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of recent tweets and rants.  If you want to follow the conversation follow me at <a href="http://twitter.com/techknow">techknow</a> and/or <a href="http://twitter.com/juixe">juixe</a> and I&#8217;ll be sure to follow back.</p>
<p><b>Software Development</b></p>
<ul>
<li>Androids dream of electric sheep and I of bytecodes.</li>
<li>A large number of performance issues can be tracked to overuse of for loop, sequential search.</li>
<li>I hate it when a fatal critical defect gets assigned to me after 5:30PM.  I think QA does this on purpose, some sort of revenge.</li>
<li>Carpenters&#8217; rule: measure twice, cut once.  Programmers&#8217; rule: design twice, code once, refactor as many times as necessary.</li>
<li>You can&#8217;t do real-time software engineering where you fix bugs as they are discovered.</li>
<li>Compilation cycle costs productivity.</li>
<li>It is unbelievable the amount of work, time, and meetings are dedicated to features that are useless in the field and limit usage.</li>
<li>SEO Secret Sauce: Always be writing good content.</li>
<li>I consider an interview good where the interviewee talks more than the interviewer, and where the answers are more profound than the questions.</li>
</ul>
<p><b>Team Leadership</b></p>
<ul>
<li>To be a leader be easy to follow.</li>
<li>Inspiration has no expiration.</li>
<li>The recipe to success is that when you are missing one ingredient in that recipe, you don&#8217;t quit.  Improvise and make the dish your own.</li>
<li>Waiting until the last possible moment is not a plan.</li>
<li>Strategy, execution, luck.  Pick any two.</li>
<li>Profits, Passion, Purpose. Pick any two.</li>
<li>Imagination is a renewable resource.</li>
<li>New Motto: Heads Down, Focus Up!</li>
<li>Doing a thing does not preclude you know what you are doing.</li>
<li>When things get tough, get smarter then tougher.</li>
<li>The worst thing you can be on a team is being inconsistent.</li>
<li>Right understanding, with right effort, on the right direction, at the right time makes for the maximum results with the least effort.</li>
<li>Build up your immunity to failure, just like you build up your immunity to the cold flu.</li>
<li>If you can find joy in a dilapidated studio you will find joy in a palace.</li>
<li>If you are still trying you haven&#8217;t failed yet.</li>
<li>The only response to fear is no fear.</li>
<li>If you love what you are doing, you are successful.</li>
<li>If you believe you can&#8217;t, most likely you won&#8217;t.  If you believe you can, you might.</li>
</ul>
<p><b>Product Placement</b></p>
<ul>
<li>Is Google working on a GPad based on Android?</li>
<li>Google, if you are not evil why you have to make that your motto?  Who are you trying to convince?</li>
<li>A more appropriate name for Chipotle Mexican Grill is Burrito Factory, since is not Mexican or a Grill or have chipotle salsa.</li>
<li>Will the iPad make a better kindle reader than the Kindle?</li>
<li>The iPad will be the Gitmo of gadgets.</li>
<li>Why is Tumblr so slow?  Is Tumblr the Goecities of our generation?</li>
<li>The should have American Idol for bad comedy and acting…  Oh they already have it, it&#8217;s called Saturday Night Live.</li>
<li>It used to be that people stop and smell the flowers, now if at all, people stop, take a picture, and post it on Facebook.</li>
</ul>
<p><b>Question</b></p>
<ul>
<li>Was the crotch bomber a false flag?</li>
<li>Is the US a mute-cultural smorgasbord or a assimilating melting pot?</li>
<li>Is life an individual sport or a team sport?</li>
<li>Why would a fully charged cell phone that was turned off for a week have it&#8217;s battery drained?</li>
<li>What does SEO stand for?  Spam Engine Optimization?</li>
<li>If love is supposed to be patient why do people rush into love?</li>
<li>Is life a journey, adventure, game or scoreboard?</li>
<li>Are you a samurai or rice farmer?</li>
<li>Is God from outer space or from inner space?</li>
<li>What is the secret sauce to your success?</li>
<li>which is your favorite bear: yogi bear or pooh bear?</li>
<li>If everyone cheats is it still cheating?</li>
<li>If everyone cheats are you cheating yourself if you don&#8217;t?</li>
<li>Does God have Buddha nature?</li>
<li>How much Buddha nature does the Buddha have?</li>
<li>Which is more satisfying, physical joy or spiritual joy?</li>
<li>Is there duct tape for the heart or super glue for the soul?</li>
<li>Do you think dogs suffer from autism?</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2010/03/06/retweet-february-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>US Patent: Linked List</title>
		<link>http://juixe.com/techknow/index.php/2010/03/04/us-patent-linked-list/</link>
		<comments>http://juixe.com/techknow/index.php/2010/03/04/us-patent-linked-list/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 17:59:11 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[TechKnow]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=999</guid>
		<description><![CDATA[The Linked List was recently patented&#8230; no, not by Donald Knuth or some one working with Godfather of Computer Science.  No, the Linked List was patented by a Ming-Jen Wang of LSI Logic Corporation in 2006.
The patent abstract says,&#8221;A computerized list is provided with auxiliary pointers for traversing the list in different sequences.  [...]]]></description>
			<content:encoded><![CDATA[<p>The Linked List was recently <a href="http://www.google.com/patents?id=Szh4AAAAEBAJ&#038;printsec=abstract&#038;zoom=4#v=onepage&#038;q=&#038;f=false">patented</a>&#8230; no, not by <a href="http://en.wikipedia.org/wiki/Donald_Knuth">Donald Knuth</a> or some one working with Godfather of Computer Science.  No, the Linked List was patented by a Ming-Jen Wang of LSI Logic Corporation in 2006.</p>
<p>The patent abstract says,&#8221;A computerized list is provided with auxiliary pointers for traversing the list in different sequences.  One or more auxiliary pointers enable a fast, sequential traversal of the list with a minimum of computational time.  Such lists may be used in any application where lists may be reordered for various purposes.&#8221;  </p>
<p>That is the same exact description of a pointer given in my college textbook, before this patent was filed.  It is clear that there is a patent land rush.  For would be inventors, the patent system is the best thing since sliced bread, and I&#8217;m sure this Ming-Jen Wang has that patent pending for sliced bread.</p>
<p>I&#8217;m going to patent the Linked Hash Map, because this guy patent&#8217;s that too.  Someone should patent the pointer, if that is not already patented.  If there is an ambulance chasing lawyer that would like to work pro bono, I think we should patent something critical to civilization, like calculus or pottery.  </p>
<p>It is clear that omitting prior art is an art in itself that some have perfected to a science.</p>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2010/03/04/us-patent-linked-list/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Buzz Overkill: One Day with Google Buzz</title>
		<link>http://juixe.com/techknow/index.php/2010/02/13/buzz-overkill-one-day-with-google-buzz/</link>
		<comments>http://juixe.com/techknow/index.php/2010/02/13/buzz-overkill-one-day-with-google-buzz/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 03:35:53 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[buzz]]></category>
		<category><![CDATA[buzzfail]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[gbuzz]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=989</guid>
		<description><![CDATA[Aside from my initial shock of Google&#8217;s blatant privacy oversight, I immediately jumped on the bandwagon.  I learned that if you can&#8217;t beat them, join them, and if you going to join them might as well try to get some new followers in the process.  Using a Google Mail account that I do [...]]]></description>
			<content:encoded><![CDATA[<p>Aside from my initial shock of Google&#8217;s blatant privacy oversight, I immediately jumped on the bandwagon.  I learned that if you can&#8217;t beat them, join them, and if you going to join them might as well try to get some new followers in the process.  Using a Google Mail account that I do not user as my primary private emails, I updated my <a href="http://www.google.com/profiles/knowknode">public profile</a> and began following as many technology influencers as possible.  During the course of a full day of using Google Buzz, I buzzed mostly about Google Buzz.  Here is what I was buzzing about the first day of using Google Buzz.</p>
<ul>
<li>With any new service there is always a land rush for the vanity url, profile name, and followers?</li>
<li>The short for Google Mail is GMail. The abbreviation for Google Voice is GVoice. Will Google Buzz be shorten down to GBuzz? What about Guzz?</li>
<li>Google Buzz is a new opportunity for the race to reach 1,000,000 followers. I hope @aplusk hasn&#8217;t heard of Google Buzz yet as it would give me a head start.</li>
<li>I expected Microsoft to blatantly copy Twitter, Facebook, and Foursquare before Google.</li>
<li>When Twitter first came out Leo Laporte and Kevin Rose had the most followers for the longest time because the early adopters where mostly technologists. But once celebrities and mass media discovered Twitter, and after the stop laughing at the concept, they quickly gained the most followers and brought on new users.  Leo Laporte currently has over 6K++ followers.  Just wait until Britney Spears gets her buzz on.</li>
<li>I am not sure how Google will combat the additional spam I expect because of Google Buzz and Google Profiles. But I imagine, spammers and marketers are already hard at work developing spam bots that will follow everyone possible and then it is very easy to figure out peoples email address by adding at gmail.com at the end of you profile user name which is public, visible, and searchable.</li>
<li>That is the plural of buzz? Buzzes?</li>
<li>What is the verb of using Google Buzz? Buzzing? Like, &#8220;I can&#8217;t talk cause I am buzzing right now.&#8221;</li>
<li>What I like about Buzz is that it has not been taken over by marketing and SEO bot accounts, just like the early days of Twitter.</li>
<li>Does anyone else notice that when you are commenting on a Buzz post the page jumps up and down, kinda like flickering, due to all the updates happening around where you are commenting? There are soo many updates below and above other posts that my comment text box jumps to fit in storm of other comments around it.</li>
<li>If you don&#8217;t like the flickering, I get&#8217;s me dizzy after a while, click on the post&#8217;s time stamp in the upper right corner. The link is to the page for this one post and it does have the jumpy flickering visible when commenting in the middle of your stream.</li>
<li>I think that Google and Facebook are in a battle for your friends. But it feels more like a Belfast brawl cage fight&#8230; Google and Apple are battling it out in in the mobile space with tit for tat guerrilla warfare&#8230; i.e. you can use the word &#8216;Android&#8217; to describe you app on the Apple App Store. Now Google will suck a lot of the hot air valuation from Facebook. I think Jason Calacanis stated that Facebook lost half it&#8217;s value because of Google Buzz&#8230; and Microsoft is trying to pick a fight with Google in the search space with Bing but it is not getting much traction.</li>
<li>I still have not connected my other services into Buzz. I see some people have but they get multiple buzzes (buzz posts) for the same content. It seems like some sort of feed recursion, where the Facebook comment get&#8217;s read in by FriendFeed, then read in by Twitter, then feed into Buzz two or three times for each original post, sometimes one buzz post has the same content duplicated.   I feel like I need a network architect to help me sort it all out&#8230; LOL.</li>
<li>Following along and contributing to a conversation is so much easier on Buzz than Twitter, Facebook, MySpace, etc.</li>
<li>Not missing Farmville updates on Facebook. This is the longest time I have gone without finding random alien cow on my wall.</li>
<li>Now that I filter out Buzz messages in my inbox, I can&#8217;t find the buzz threads I commented on.</li>
<li>I&#8217;m going to buzz my facebook to tweet my tumblr post on myspace and blog about it.</li>
<li>Remember when following someone meant stalking&#8230; Now it means, friending.</li>
<li>Having a buzz attack.</li>
<li>My tweets are still no popping up on my buzz.</li>
<li>Not liking how tweets show up on my buzz stream, a bunch at a time, in the middle of the night, hours after they were first tweeted. I thought Google had &#8216;realtime&#8217; access to tweets. I thought Google has access to Twitter&#8217;s firehouse.</li>
<li>There are a few reasons why I like Buzz over Twitter. The ability to edit buzzes after they have been posted and commented on, and the ability to post more than 140 characters at a time. What I don&#8217;t like is that, unlike Facebook, you can&#8217;t delete comments left on you posts from trolls or stalkers or folks buzzing on their own supply. Even after you block spammers their comments are still visible in your posts.</li>
<li>There is a lot of negative reaction regarding the privacy failures with Google Buzz. I think that the problem with Google Buzz is not that it is integrated in GMail. The problem is the defaults of Google Buzz, including auto-follow, and public profiles, and the inability to use a public profile name other than your private GMail user name, the blocking functionality does not seem to work, etc.</li>
<li>Google pulled a Facebook move in terms of privacy&#8230; Their motto of &#8216;do no evil&#8217; did not stop them from doing something so stupid.</li>
<li>How does one get verified on Google Buzz/Profile? I certify myself. Does my mom need to call Google to verify my identity? What else will Google verify? What I really need is an alibi and some receipts from a convenience store in Albuquerque, New Mexico for last night.</li>
<li>Ansel Adams would not have had used Flickr, Shakespeare would not had has used Twitter, Ghandi would not have had used Facebook, and Columbus would not have had used Foursquare.. But I am sure they would all have had used Google Buzz.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2010/02/13/buzz-overkill-one-day-with-google-buzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retweet January 2010</title>
		<link>http://juixe.com/techknow/index.php/2010/02/07/retweet-january-2010/</link>
		<comments>http://juixe.com/techknow/index.php/2010/02/07/retweet-january-2010/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 17:17:19 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[dash]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[farmville]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[godin]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[juixe]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[retweet]]></category>
		<category><![CDATA[softdev]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[zynga]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=984</guid>
		<description><![CDATA[From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of recent tweets and rants.  If you want to follow the conversation follow me at techknow and/or juixe and I&#8217;ll be sure to follow back.
Software Development

If your code [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of recent tweets and rants.  If you want to follow the conversation follow me at <a href="http://twitter.com/techknow">techknow</a> and/or <a href="http://twitter.com/juixe">juixe</a> and I&#8217;ll be sure to follow back.</p>
<p><b>Software Development</b></p>
<ul>
<li>If your code works not because of your programming intentions but because of bug side effects and your client doesn&#8217;t care, it is not done.</li>
<li>I need a software development bug repellent.</li>
<li>Design fail if you fix a log message and you break some functionality.</li>
<li>If a carpenter&#8217;s rule of thumb is to &#8220;measure twice, cut once&#8221; then a programmer&#8217;s rule of thumb should be &#8220;design twice, code once, refactor a few times, and optimize only if you have to.&#8221;</li>
<li>Saying you know programming is like saying you know how to read, a first grader knows how to read!!</li>
<li>Requirements gathering is not creative writing.</li>
<li>I love requirements: The initial instruction should completely initialize the initial value.</li>
</ul>
<p><b>Team Leadership</b></p>
<ul>
<li>The only two requirements for a manager is that he is breathing and that he can communicate with his team in their language.</li>
<li>What happens to you is not other people&#8217;s fault, it is your opportunity.</li>
<li>There is nothing worse than a perfectionist that doesn&#8217;t know what he wants.</li>
<li>The worst thing you can so when you make a mistake is lie about it.</li>
<li>Every once in a while you have to recalculate, reshuffle, and/or remix your priorities.</li>
<li>Embrace the edge.</li>
</ul>
<p><b>Product Placement</b></p>
<ul>
<li>In Google We Trust.</li>
<li>Google claims their motto is to &#8216;do no evil&#8217;, put I suggest they change it to &#8216;do no customer support.&#8217;</li>
<li>If you use Google search to find Google Mail customer support and still can&#8217;t find it, is that a fail in their customer support or search?</li>
<li>There should be Freedom of Information Act for corporations.  I want to know everything that Google knows about me and how that info is used</li>
<li>Can&#8217;t believe the AT&amp;T website is not iPhone/mobile friendly.</li>
<li>Apple should develop a dual screen iPhone, iPhone GS3 DS.</li>
<li>I imagine a time when Zynga will have in-game ads for Monsanto genetic modified seeds on FarmVille or Foster Farm turkeys for Cafe World.</li>
<li>Facebook saves everything you create/post/save/click/delete, it can reverse engineer what you where thinking.</li>
<li>Doing four square drive-by check-ins.</li>
<li>Does Craigslist have an iPhone app?</li>
<li>Do you have multiple twitter personality disorder?</li>
</ul>
<p><b>Quote</b></p>
<ul>
<li>If we let things terrify us, life will not be worth living. &#8211; Seneca</li>
<li>If I could make the same amount of money but wake up until when I can&#8217;t hold in my pee any longer, I will be a success. &#8211; Phil Kaplan</li>
<li>The answer to the question &#8220;where do good ideas come from&#8221; is always the same, the come from bad ideas. &#8211; Seth Godin</li>
<li>Only the mediocre are always at their best. &#8211; Jean Giraudoux</li>
<li>From pitch perspective, the more you wear your idea, the more it fits you&#8230; &#8211; Brad Feld</li>
<li>Nothing fails like success. &#8211; Arnold Toynbee</li>
<li>I totally question the conventional wisdom of the American dream. &#8211; Anil Dash</li>
<li>If we wait for the moment when everything, absolutely everything, is ready, we shall never begin. &#8211; Iva Turgenev</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2010/02/07/retweet-january-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retweet December 2009</title>
		<link>http://juixe.com/techknow/index.php/2010/02/06/retweet-december-2009/</link>
		<comments>http://juixe.com/techknow/index.php/2010/02/06/retweet-december-2009/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 05:20:25 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[farmville]]></category>
		<category><![CDATA[noagenda]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[retweet]]></category>
		<category><![CDATA[softdev]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[zuckerborg]]></category>
		<category><![CDATA[zynga]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=980</guid>
		<description><![CDATA[From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of recent tweets and rants.  If you want to follow the conversation follow me at techknow and/or juixe and I&#8217;ll be sure to follow back.
Software Development

Are we that [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of recent tweets and rants.  If you want to follow the conversation follow me at <a href="http://twitter.com/techknow">techknow</a> and/or <a href="http://twitter.com/juixe">juixe</a> and I&#8217;ll be sure to follow back.</p>
<p><b>Software Development</b></p>
<ul>
<li>Are we that good that some features work because of an unintentional side effect of a bug?</li>
<li>I&#8217;ve heard of cloud computing, even ground computing, but I can&#8217;t wait until I can do intergalactic-interdimensional computing.</li>
<li>Maintenance is a real full time job and it should be planned, scheduled, and budgeted accordingly.</li>
<li>Maintainability is a feature.</li>
<li>Team meetings should not feel like AA meetings.</li>
<li>The debugger don&#8217;t lie, but the test might.</li>
<li>Old legacy systems don&#8217;t die, they just complicate your architecture.</li>
<li>Mashup data with dreams, feeds, and feelings&#8230;</li>
</ul>
<p><b>Team Leadership</b></p>
<ul>
<li>Guilt is not the optimal way to inspire people to do what is right.</li>
<li>Knowledge is like an fractal iceberg, and what you know is the tip of a snowflake in the tip of an iceberg in an ice planet.</li>
<li>Usually there is only one way to win at a given time, but many ways to lose most of the time.</li>
<li>When people don&#8217;t listen to the truth they are lying to themselves.</li>
<li>Not all great ideas make for a good business.</li>
<li>Thinking Asymmetrically!</li>
</ul>
<p><b>Product Placement</b></p>
<ul>
<li>Should I get a Droid or wait for the new Google phone?</li>
<li>Does Zuckerborg eat his own dog food when it comes to privacy, his real profile is not public, just his fan page in which he doesn&#8217;t post much.</li>
<li>The only way Zuckerborg would appreciate privacy is if TMZ deployed their paparazzi on him.</li>
<li>@zynga I would love to give points/credits as a gift in non-spammy and non-recurring way without signing up to services I don&#8217;t need.</li>
<li>@zynga can I buy Cafe World gift card?</li>
<li>I just got a subscription of Mobile Me.  I like how I can track, lock down, and erase the data of my iPhone from the web.</li>
<li>Got crack?  There&#8217;s an app for that!</li>
<li>Twitter should increase to 256 characters&#8230;</li>
<li>Money don&#8217;t grow on trees, but with these prices for xmas trees you would think it does.</li>
</ul>
<p><b>Quote</b></p>
<ul>
<li>What came first, chicken nuggets or the egg mcmuffin? &#8211; Little Jackie</li>
<li>If I ask no questions I hear no lies. &#8211; Little Jackie.</li>
<li>The Three Es of Good Work: Excellent, Engaging, and Ethical. &#8211; Howard Gardner</li>
<li>The United States has been dominated by the three Ms: Money, Markets, and Me. &#8211; Howard Gardner</li>
<li>If you can&#8217;t cover it up, turn it up. &#8211; Adam Curry/NA-152 #noagenda</li>
<li>We have privatized our foreign policy &#8211; Philip Brenner</li>
<li>The more complex an economy is, the more fragile it is, and the more cataclysmic its disintegration can be. &#8211; Bryan Ward-Perkins</li>
<p></u></p>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2010/02/06/retweet-december-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TechKnow Year In Review 2009</title>
		<link>http://juixe.com/techknow/index.php/2009/12/31/techknow-year-in-review-2009/</link>
		<comments>http://juixe.com/techknow/index.php/2009/12/31/techknow-year-in-review-2009/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 00:48:55 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML/XML]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[calacanis]]></category>
		<category><![CDATA[dhh]]></category>
		<category><![CDATA[griffon]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=962</guid>
		<description><![CDATA[It is that time of year where we reflect on the accomplishments of the passing year and look forward to the one to come. Here is a window into the past year in technology through this year’s popular posts on TechKnow Juixe.
Top Favorites

Laws of Source Code and Software Development
Repetative Recursion
Technology and Politics
Being a Better Rails [...]]]></description>
			<content:encoded><![CDATA[<p>It is that time of year where we reflect on the accomplishments of the passing year and look forward to the one to come. Here is a window into the past year in technology through this year’s popular posts on <a href="http://juixe.com/techknow">TechKnow Juixe</a>.</p>
<p><b>Top Favorites</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2009/05/07/laws-of-source-code-and-software-development/">Laws of Source Code and Software Development</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/05/09/repetative-recursion/">Repetative Recursion</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/08/19/technology-and-politics/">Technology and Politics</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/05/29/being-a-better-rails-developer/">Being a Better Rails Developer</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/05/28/programming-memes/">Programming Memes</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/05/28/developers-perpetual-todo-list/">Developer&#8217;s Perpetual Todo List</a></li>
</ul>
<p><b>Fav Tutorial</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2009/05/11/the-anatomy-of-a-javascript-bookmarklet/">Anatomy of a JavaScript Bookmarklet</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/05/11/dynamically-create-html-elements-with-javascript/">Dynamically Create HTML Elements with JavaScript</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/06/09/grinding-griffon-the-setup/">Grinding Griffon</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/08/17/the-1kb-css-grid/">The 1KB CSS Grid</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/10/27/download-twitter-profile-images-using-ruby/">Download Twitter Profile Images Using Ruby</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/10/08/jamming-with-ruby-yaml/">Jamming with Ruby YAML</a></li>
</ul>
<p><b>Memorable Quotes</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2009/12/31/quotable-calacanis-2009/">Quotable Calacanis</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/11/25/quotable-dhh-2009/">Quotable DHH</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/11/18/favorite-programming-quotes-2009/">Favorite Programming Quotes 2009</a></li>
</ul>
<p><b>Twitter</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2009/01/12/twitter-ruby-gem/">Twitter Ruby Gem</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/02/11/twitter-business-model/">Twitter Business Model</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/04/26/the-three-laws-of-twitters/">The Three Laws of Twitters</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/05/26/twitcode/">Twitcode</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/08/22/songs-in-code/">Songs in Code</a></li>
</ul>
<p><b>Twitter Conversations</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2009/07/20/remote-debug-your-thinking-process/">Remote Debug Your Thinking Process</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/05/18/all-code-is-inherently-evil/">All Code is Inherently Evil</a></li>
<li><a href="http://juixe.com/techknow/index.php/2009/11/25/the-mayor-of-dead-space/">The Mayor of Dead Space</a></li>
</ul>
<p><b>Year in Review</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2008/12/30/techknow-year-in-review-2008/">2008</a></li>
<li><a href="http://juixe.com/techknow/index.php/2007/12/11/techknow-year-in-review-2007/">2007</a></li>
<li><a href="http://juixe.com/techknow/index.php/2006/12/31/techknow-year-in-review-2006/">2006</a></li>
<li><a href="http://juixe.com/techknow/index.php/2005/12/27/techknow-year-in-review-2005/">2005</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2009/12/31/techknow-year-in-review-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retweet 2009</title>
		<link>http://juixe.com/techknow/index.php/2009/12/31/retweet-2009/</link>
		<comments>http://juixe.com/techknow/index.php/2009/12/31/retweet-2009/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 23:56:29 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[juixe]]></category>
		<category><![CDATA[softdev]]></category>
		<category><![CDATA[tweet]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=959</guid>
		<description><![CDATA[From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of tweets and rants from 2009.  I started collecting and organizing programming related tweets into blogs posts early in the year.  If you want to follow the [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of tweets and rants from 2009.  I started collecting and organizing programming related tweets into blogs posts early in the year.  If you want to follow the conversation follow me at <a href="http://twitter.com/techknow">techknow</a> and/or <a href="http://twitter.com/juixe">juixe</a> and I&#8217;ll be sure to follow back.</p>
<ul>
	<a href="http://juixe.com/techknow/index.php/2009/12/13/retweet-november-2009/">Retweet November 2009</a><br />
	<a href="http://juixe.com/techknow/index.php/2009/11/07/retweet-october-2009/">Retweet October 2009</a><br />
	<a href="http://juixe.com/techknow/index.php/2009/10/05/retweet-september-2009/">Retweet September 2009</a><br />
	<a href="http://juixe.com/techknow/index.php/2009/09/08/retweet-august-2009/">Retweet August 2009</a><br />
	<a href="http://juixe.com/techknow/index.php/2009/08/16/retweet-july-2009/">Retweet July 2009</a><br />
	<a href="http://juixe.com/techknow/index.php/2009/07/07/retweet-june-2009/">Retweet June 2009</a><br />
	<a href="http://juixe.com/techknow/index.php/2009/05/31/retweet-may-2009/">Retweet May 2009</a><br />
	<a href="http://juixe.com/techknow/index.php/2009/05/01/retweet-april-2009/">Retweet April 2009</a><br />
	<a href="http://juixe.com/techknow/index.php/2009/04/03/retweets-march-2009/">Retweet March 2009</a><br />
	<a href="http://juixe.com/techknow/index.php/2009/03/02/retweets-february-2009/">Retweet February 2009</a>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2009/12/31/retweet-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quotable Calacanis 2009</title>
		<link>http://juixe.com/techknow/index.php/2009/12/31/quotable-calacanis-2009/</link>
		<comments>http://juixe.com/techknow/index.php/2009/12/31/quotable-calacanis-2009/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 19:49:15 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[calacanis]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[entreprenuer]]></category>
		<category><![CDATA[mahalo]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[startups]]></category>
		<category><![CDATA[twist]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=895</guid>
		<description><![CDATA[Jason Calacanis is an outspoken and unfiltered entrepreneur.  Calacanis founded Mahalo, co-founded Weblogs, Inc. which later sold to AOL, co-founded TechCrunch 50, host of This Week in Startups, founder of Open Angel Forum.  Calacanis is famous for his industry rants on Jason&#8217;s List mailing list, most recently ranting about Facebook privacy mishap. Over [...]]]></description>
			<content:encoded><![CDATA[<p>Jason Calacanis is an outspoken and unfiltered entrepreneur.  Calacanis founded <a href="http://www.mahalo.com">Mahalo</a>, co-founded Weblogs, Inc. which later sold to AOL, co-founded <a href="http://www.techcrunch50.com/">TechCrunch 50</a>, host of <a href="http://thisweekinstartups.com/">This Week in Startups</a>, founder of <a href="http://openangelforum.com/">Open Angel Forum</a>.  Calacanis is famous for his industry rants on <a href="http://www.bit.ly/jasonslist">Jason&#8217;s List</a> mailing list, most recently ranting about Facebook privacy mishap. Over the last year I have collected a few choice quotes from Jason Calacanis blog posts, mailing list, and podcast.</p>
<blockquote><p>
If you are not fired up with enthusiasm you will be fired with enthusiasm.<br />
<a href="http://thisweekinstartups.com/2009/12/twist-33-with-shawn-gold/">This Week in Startups #33</a>
</p></blockquote>
<blockquote><p>
If you built something based on the Twitter API, it is a hobby it is not a business.<br />
<a href="http://thisweekinstartups.com/2009/12/twist-33-with-shawn-gold/">This Week in Startups #33</a>
</p></blockquote>
<blockquote><p>
As Eric Schmidt, Stalin, Hitler, George Bush, and Kim Jong Il have all said, &#8220;If you have something that you don&#8217;t want anyone to know, maybe you shouldn&#8217;t be doing it in the first place.&#8221;<br />
<a href="http://thisweekinstartups.com/2009/12/twist-33-with-shawn-gold/">This Week in Startups #33</a>
</p></blockquote>
<blockquote><p>
I&#8217;ve seen slot of dumb guys with a lot of passion become vey successful.  I see that guy every morning when I wake up and i shave.<br />
<a href="http://thisweekinstartups.com/2009/12/twist-32-with-george-naspo/">This Week in Startups #32</a>
</p></blockquote>
<blockquote><p>
If poor people pirate stuff  it&#8217;s okay, because all you are doing is training them for when they do have money.<br />
<a href="http://thisweekinstartups.com/2009/12/twist-31-with-jack-andrys/">This Week in Startups #31</a>
</p></blockquote>
<blockquote><p>
Facebook proved again this week that they are either the most unethical or clueless internet company in the world. An amazing accomplishment since Facebook is also one of the most promising, and certainly fastest growing, internet companies of all time.<br />
<a href="http://calacanis.com/2009/12/13/is-facebook-unethical-clueless-or-unlucky/">Is Facebook unethical, clueless or unlucky?</a>
</p></blockquote>
<blockquote><p>
It is so depressing when one of our leading companies bases their ethics on &#8220;will we get caught?&#8221; and perhaps more precisely: &#8220;if we do get caught will it cost us anything in relation to the money we&#8217;ll make when we go public?&#8221;<br />
<a href="http://calacanis.com/2009/12/13/is-facebook-unethical-clueless-or-unlucky/">Is Facebook unethical, clueless or unlucky?</a>
</p></blockquote>
<blockquote><p>
They should have a term limit for [television] series, seven years.  If you can&#8217;t tell a story in seven years, that is it.  Seven years and you can have two spin offs.<br />
<a href="http://thisweekinstartups.com/2009/11/twist-28-with-kamran-pourzanjani/">This Week in Startups #28</a>
</p></blockquote>
<blockquote><p>
A guy with an idea means nothing unless you have a lot of money, connections, or domain expertise.<br />
<a href="http://thisweekinstartups.com/2009/11/twist-28-with-kamran-pourzanjani/">This Week in Startups #28</a>
</p></blockquote>
<blockquote><p>
You have to pick hour partner like you pick your spouse, you really have to enjoy spending a lot of time with them.<br />
<a href="http://thisweekinstartups.com/2009/11/twist-26-with-matt-mullenweg/">This Week in Startups #26</a>
</p></blockquote>
<blockquote><p>
Wait a second, &#8230; you&#8217;ll waiting for me to take a risk, and then you&#8217;ll take a risk, that is not risk at all.<br />
<a href="http://thisweekinstartups.com/2009/11/twist-25-with-mark-suster/">This Week in Startups #25</a>
</p></blockquote>
<blockquote><p>
I think people overestimate the value of their ideas.  They actually think their idea is what you are going to invest in.<br />
<a href="http://thisweekinstartups.com/2009/11/twist-25-with-mark-suster/">This Week in Startups #25</a>
</p></blockquote>
<blockquote><p>
Anybody that is a great entrepreneur has a little supper villain in them.  There is a little Lex Luther in every CEO.<br />
<a href="http://thisweekinstartups.com/2009/11/twist-25-with-mark-suster/">This Week in Startups #25</a>
</p></blockquote>
<blockquote><p>
If there is any doubt, there is no doubt.<br />
<a href="http://thisweekinstartups.com/2009/09/twist-episode-18-with-mike-jones-and-peter-hirschberg/">This Week in Startups #18</a>
</p></blockquote>
<blockquote><p>
You are your people.<br />
<a href="http://thisweekinstartups.com/2009/09/twist-episode-18-with-mike-jones-and-peter-hirschberg/">This Week in Startups #18</a>
</p></blockquote>
<blockquote><p>
Starting is easy, finishing is hard.<br />
<a href="http://thisweekinstartups.com/2009/09/twist-episode-18-with-mike-jones-and-peter-hirschberg/">This Week in Startups #18</a>
</p></blockquote>
<blockquote><p>
Failure is the precursor to success.<br />
<a href="http://thisweekinstartups.com/2009/09/twist-episode-18-with-mike-jones-and-peter-hirschberg/">This Week in Startups #18</a>
</p></blockquote>
<blockquote><p>
Great entrepreneur gets a dollar out of a nickel, a donkey entrepreneur get a nickel out of a dollar.<br />
<a href="http://thisweekinstartups.com/2009/09/twist-episode-18-with-mike-jones-and-peter-hirschberg/">This Week in Startups #18</a>
</p></blockquote>
<blockquote><p>
The opposite of entrepreneurship is academia.<br />
<a href="http://thisweekinstartups.com/2009/08/twist-episode-12-with-brad-and-john/">This Week in Startups #12</a>
</p></blockquote>
<blockquote><p>
Failure is the common denominator amongst successful people.<br />
<a href="http://thisweekinstartups.com/2009/08/twist-episode-10-with-chris-tolles/">This Week in Startups #10</a>
</p></blockquote>
<blockquote><p>
Longevity is a big part of credibility.<br />
<a href="http://blog.ramamia.com/2009/02/startup-fail-stop-believing-jason-calacanis-post/">Don&#8217;t Stop Believing</a>
</p></blockquote>
<blockquote><p>
People’s reputations are made in the bad times more than the good times.<br />
<a href="http://blog.ramamia.com/2009/02/startup-fail-stop-believing-jason-calacanis-post/">Don&#8217;t Stop Believing</a>
</p></blockquote>
<blockquote><p>
If you can’t sell your product, it’s not a product–it’s a hobby.<br />
<a href="http://blog.ramamia.com/2009/02/startup-fail-stop-believing-jason-calacanis-post/">Don&#8217;t Stop Believing</a>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2009/12/31/quotable-calacanis-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
