<?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>Incite Full</title>
	<atom:link href="http://www.mikegangl.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikegangl.com</link>
	<description>And so ends my bid for elected office... Or "Life of Mike"</description>
	<lastBuildDate>Wed, 28 Jul 2010 23:47:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Show me your privates- displaying private pages to logged in users</title>
		<link>http://www.mikegangl.com/2010/07/27/show-me-your-privates-displaying-private-pages-to-logged-in-users/</link>
		<comments>http://www.mikegangl.com/2010/07/27/show-me-your-privates-displaying-private-pages-to-logged-in-users/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 23:48:17 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[wordpress-mods]]></category>
		<category><![CDATA[modification]]></category>
		<category><![CDATA[private pages]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/?p=295</guid>
		<description><![CDATA[I don't like the security risk of "password" protected pages, because that lets the public know that something exists. Something I don't want them to see. So I publish private pages and changed some word press code to display those to logged in users. I should note that I'm the only user that logs into this site, so I can see everything once logged in, there is no need for levels, such as user, contributor, and administrator, but the following code is malleable to that as well.]]></description>
			<content:encoded><![CDATA[<p>WordPress is great. And a lot of people use the free blogging service they supply for writing those cool updates and sarcastic posts bashing the latest Michael Bay film. I, however, run my own version of the blog and use it a little differently than most people.</p>
<p>In fact, a majority of the post I make never make it to the light of day, as most of them are private. The reason I do this is I use WordPress to save a bunch of different things, journal entries, writing prompts, and photos on my site. I have a bunch of pages set up that feedback all the posts matching a certain category (for instance, the &#8220;Writing&#8221; tab in my header is a collection of all my posts with the writing category. All of that is rather straight forward, but what you don&#8217;t know, is that when I log in I see a bunch of extra tabs for private pages up top.</p>
<p>I don&#8217;t like the security risk of &#8220;password&#8221; protected pages, because that lets the public know that something exists. Something I don&#8217;t want them to see. So I publish private pages and changed some word press code to display those to logged in users. I should note that I&#8217;m the only user that logs into this site, so I can see everything once logged in, there is no need for levels, such as user, contributor, and administrator, but the following code is malleable to that as well.</p>
<p>in $WORDPRESS/wp-include/post.php file</p>
<p>There is a line in the &#8220;get_pages&#8221; function that looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;SELECT * FROM <span style="color: #006699; font-weight: bold;">$wpdb-&gt;posts</span> <span style="color: #006699; font-weight: bold;">$join</span> WHERE (post_type = 'page' AND post_status = 'publish' ) <span style="color: #006699; font-weight: bold;">$where</span> &quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Just below that line, add in the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_user_logged_in<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;SELECT * FROM <span style="color: #006699; font-weight: bold;">$wpdb-&gt;posts</span> <span style="color: #006699; font-weight: bold;">$join</span> WHERE (post_type = 'page' AND (post_status = 'publish' OR post_status='private') ) <span style="color: #006699; font-weight: bold;">$where</span> &quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><strong>UPDATED for wordpress 3.0:</strong></p>
<p>There is a line in the &#8220;get_pages&#8221; function that looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$where_post_type</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prepare</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;post_type = '<span style="color: #009933; font-weight: bold;">%s</span>' AND post_status = '<span style="color: #009933; font-weight: bold;">%s</span>'&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$post_type</span><span style="color: #339933;">,</span> <span style="color: #000088;">$post_status</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Just below that line, add in the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_user_logged_in<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$where_post_type</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prepare</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;post_type = '<span style="color: #009933; font-weight: bold;">%s</span>' AND (post_status = '<span style="color: #009933; font-weight: bold;">%s</span>' OR post_status = 'private' )&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$post_type</span><span style="color: #339933;">,</span> <span style="color: #000088;">$post_status</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span></pre></div></div>

<p>This now checks to see if a user is logged in, and if so, will output private pages to the caller of this function (usually wp_list_pages()).</p>
<p>That&#8217;s all there is to it. Be warned, it <del datetime="2010-07-28T23:45:33+00:00">might</del> will get overwritten during WordPress updates, <del datetime="2010-07-28T23:45:33+00:00">as I have not gone to version 3.0 yet, and this seems like a feature they&#8217;ll add at some point</del>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2010/07/27/show-me-your-privates-displaying-private-pages-to-logged-in-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yes man &#8211; why saying no is so hard to do.</title>
		<link>http://www.mikegangl.com/2010/07/26/yes-man-why-saying-no-is-so-hard-to-do/</link>
		<comments>http://www.mikegangl.com/2010/07/26/yes-man-why-saying-no-is-so-hard-to-do/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 05:49:40 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[In All Seriousness]]></category>
		<category><![CDATA[Life of Mike]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[disappointment]]></category>
		<category><![CDATA[just say no]]></category>
		<category><![CDATA[yes-man]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/?p=274</guid>
		<description><![CDATA[Of the many qualities that described me when I first began work, the one that I see most universally amongst my peers is the inability to say no. I'm not talking about saying no to drugs, or to taking candy from a stranger. No, what I'm referring to is the "can you do it" question that is, for all intents and purposes, unanswerable by someone just starting out. No is such a loaded word when you're first starting out- is it rejection? Is it disappointment? Is it unexpected? Is it unimaginative? Is it the last word you'll say at your brand new job?]]></description>
			<content:encoded><![CDATA[<p>Of the many qualities that described me when I first began work, the one that I see most universally amongst my peers is the inability to say no. I&#8217;m not talking about saying no to drugs, or to taking candy from a stranger. No, what I&#8217;m referring to is the &#8220;can you do it&#8221; question that is, for all intents and purposes, unanswerable by someone just starting out. No is such a loaded word when you&#8217;re first starting out- is it rejection? Is it disappointment? Is it unexpected? Is it unimaginative? Is it the last word you&#8217;ll say at your brand new job?</p>
<p>When I started work, I was asked my professional opinion on a lot of things, most of which I could only respond with &#8220;I&#8217;ll get back to you.&#8221; A good question is usually asked by other engineers or other developers: How do you do this? Did you think about this? Why does it do that? These are questions that I like, they rely on things that I know or have dealt with before. They are ones on which I can draw from my immense (ha!) experience. Compare that to, say, a manger&#8217;s question and you can instantly feel the your feet moving- feel that? That&#8217;s the earth shaking. It&#8217;s a question like &#8220;How long will this take you?&#8221; or even worse, it&#8217;s a question that has the dreaded binary, yes/no answer. &#8220;Can you do it&#8221;, is by far the worst question a new hire can be asked, and the reasons are all summed up above with those implications we attach to our response.</p>
<p>Or maybe this whole &#8220;no&#8221; thing comes from confrontation-avoidance. While this is a whole other topic of conversation, my generation has been raised to think they are the most special people in the world, and any dent in this (mentally created)  armor might cause far away universes to die. But I digress.</p>
<p>As a new employee, I was eager to prove myself, as were many of my peers I&#8217;ve since talked to about it all, by becoming dependable and have that &#8220;get-it-done attitude&#8221;. If I said no, I&#8217;d be setting limits on my ability too early and without actually knowing what they were. Of course, we should let the answer be the truth, and not let our  emotions or view of what that means move us otherwise. If the answer is  disappointing, perhaps the question should be rephrased (re-scoped) or  maybe they should ask someone who is more qualified, which is sometimes a  staggering few people, as it turns out. But I felt I&#8217;d be sending a clear message that other people were better suited for certain tasks than I was. I wasn&#8217;t about to let that happen, and as it turned out, I got in over my head pretty quickly.</p>
<p>Now, maybe other people inherently have the ability to say no to certain tasks and people, but I wasn&#8217;t one of them, but part of me feels, in retrospect, that I shouldn&#8217;t have been asked some of these questions. It&#8217;s not that the project failed or I didn&#8217;t meet my deadlines, but I had to kill myself to do a few of them. At some point, people need to know what new employees <strong>don&#8217;t</strong> know, or at the very least, multiply what they think the effort will be by 2.5 (at least).</p>
<p>I&#8217;ve learned my lesson in one respect, I know my time lines a bit better than before. I still think I&#8217;m the right person for every job floated my way (this both a product of my self-perceived talent as well as the nature of the &#8220;find your own work or you&#8217;re out&#8221; job market). But it&#8217;s hard for me to say no when people ask me to do something- i might say that it&#8217;ll take me a while, but I&#8217;ll still say I can do it. I want to do it. I still am young and need to prove myself. And maybe I should let me work speak for itself, but the more that&#8217;s out there I feel the louder my words will be- and when something is particularly exciting to me, I don&#8217;t want to pass it up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2010/07/26/yes-man-why-saying-no-is-so-hard-to-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Past Week</title>
		<link>http://www.mikegangl.com/2010/07/26/the-past-week/</link>
		<comments>http://www.mikegangl.com/2010/07/26/the-past-week/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 18:03:30 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Life of Mike]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[sequioa]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/?p=271</guid>
		<description><![CDATA[I returned from a trip to Sequoia and King&#8217;s Canyon National Parks last week, and while ti was a rough week getting back into the groove of things, I&#8217;m pretty much back on track and getting a lot done day to day now. I took about 4 gigs of photos on the trip, half of [...]]]></description>
			<content:encoded><![CDATA[<p>I returned from a trip to Sequoia and King&#8217;s Canyon National Parks last week, and while ti was a rough week getting back into the groove of things, I&#8217;m pretty much back on track and getting a lot done day to day now. I took about 4 gigs of photos on the trip, half of which are probably &#8220;throw away&#8221; photos, but the other half are keepers, and a select few of them have made it into my personal collection for the trip. You can get a glimpse of my photos in <a title="Sequoia Photo Gallery" href="http://www.mikegangl.com/photography/seqoiua-camping-trip-july-2010/" target="_blank">my gallery</a>.</p>
<p>I added these to facebook and got surprisingly few comments on them. Maybe they aren&#8217;t that good, or people aren&#8217;t interested in them, but either way, I&#8217;m coming to realize that facebook is not a place that fosters creating, only sharing. I am sure a certain level of talent can transcend this barrier, but the majority of facebook users want to write/comment/like things that affect them or things they go through, not appreciate the random, unique, or sublime. I&#8217;m not upset about this, just need to come to terms with it. Maybe one day i&#8217;ll be talented enough to transcend user&#8217;s nominal use of sites and shape how they can use them instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2010/07/26/the-past-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Something&#8217;s Brewing&#8230;</title>
		<link>http://www.mikegangl.com/2010/06/02/somethings-brewing/</link>
		<comments>http://www.mikegangl.com/2010/06/02/somethings-brewing/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 23:38:39 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Tease]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/2010/06/02/somethings-brewing/</guid>
		<description><![CDATA[And I&#8217;m excited&#8230;]]></description>
			<content:encoded><![CDATA[<p>And I&#8217;m excited&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2010/06/02/somethings-brewing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lent began, so give something up you over-indulging biscuits!</title>
		<link>http://www.mikegangl.com/2010/02/19/lent-began-so-give-something-up-you-over-indulging-biscuits/</link>
		<comments>http://www.mikegangl.com/2010/02/19/lent-began-so-give-something-up-you-over-indulging-biscuits/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 15:45:04 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/?p=207</guid>
		<description><![CDATA[It seems like every famous person has some how codified the rules by which they live their life. In the next couple of days i&#8217;m going to start writing again, and i&#8217;ll attempt to do the same for me. I&#8217;ll probably take one post of laying them all out, and then following them up with [...]]]></description>
			<content:encoded><![CDATA[<p>It seems like every famous person has some how codified the rules by which they live their life. In the next couple of days i&#8217;m going to start writing again, and i&#8217;ll attempt to do the same for me. I&#8217;ll probably take one post of laying them all out, and then following them up with more elaborate explanations of each.</p>
<p>And i&#8217;m giving up soda and a crappy diet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2010/02/19/lent-began-so-give-something-up-you-over-indulging-biscuits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The God Dilemma</title>
		<link>http://www.mikegangl.com/2010/01/02/the-god-dilemma/</link>
		<comments>http://www.mikegangl.com/2010/01/02/the-god-dilemma/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 17:39:00 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[In All Seriousness]]></category>
		<category><![CDATA[Life of Mike]]></category>
		<category><![CDATA[agnostic]]></category>
		<category><![CDATA[Atheism]]></category>
		<category><![CDATA[beliefs]]></category>
		<category><![CDATA[religion]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/?p=205</guid>
		<description><![CDATA[I have a lot of friends who are Atheist. That&#8217;s probably the only fact that will be written in the rest of this post, as it all goes considerably downhill from here. A recent book I&#8217;m reading, Plato and a Platypus Walk into a Bar, puts it interestingly regarding arguments between atheists and, well, everyone [...]]]></description>
			<content:encoded><![CDATA[<p>I have a lot of friends who are Atheist.</p>
<p>That&#8217;s probably the only fact that will be written in the rest of this post, as it all goes considerably downhill from here. A recent book I&#8217;m reading, Plato and a Platypus Walk into a Bar, puts it interestingly regarding arguments between atheists and, well, everyone else. You can&#8217;t argue with an atheist if you believe in some god or God (or vice versa) because there is fundamentally no common ground to agree upon with which to argue from. To shore up this point, Atheists rule from the view of reason, logic, and skepticism. It&#8217;s that last one that is probably the cornerstone. Believers rule from logic, reason, and a single (I suppose it could be multiple) leap of faith.</p>
<p>So to hell with the facts, right? Well I guess we&#8217;ll see. But there are two types of atheists that I&#8217;ve met, most of my friends are type one: those who believe it and that&#8217;s who they are. They might not &#8220;get&#8221; why people believe in God, but they don&#8217;t always push their agenda. The second group consists of people who need to voice their opinion as an atheist and use atheism as a badge of honor or &#8220;holier-than-thou&#8221; attitude, which is funny if you think about it.</p>
<p>Logically, though, I don&#8217;t understand why atheists take issue with believers, as I guess I&#8217;ll call them. It kind of skids the agnostic issue, which is a perfectly valid, if non-committal, position.Why do certain atheists roll their eyes at those who pray or thank god publicly? Why do some people get upset when asked to bow their heads in a moment of silence, taking the act not for what it is: a moment of respect, but rather forced prayer? Why do people argue to remove the &#8220;under God&#8221; from the pledge of allegiance? I know of not one person, though I&#8217;m sure they exist (I believe it!) that had a strong opinion on the matter.</p>
<p>The issue that I think atheism boils down to which presents the problem is that of rationality. Not that believers are irrational, but skepticism is king when it comes to atheism. But &#8220;What then?&#8221;, I ask. It can&#8217;t be about conversion, for a person converted to atheism through argument alone is still a believer, but simply a believer in non-belief. Is it education? Is it Anger? Lack of respect? Wanting to feel correct?</p>
<p>A lot of erroneous arguments are made on both sides, two of which I see often are &#8220;This country was founded as a Christian nation&#8221; and &#8220;Religion causes war.&#8221; Both are silly arguments, regardless of their substance (which I don&#8217;t really think should be acknowledged), but illustrate how heated and biased the arguments get. We can discuss these things without trying to convert or pass judgment, or at least it is in our capacity. Why don&#8217;t we?</p>
<p>I really want to know more about the other side of things, but I don&#8217;t want to learn it from a person that will dismiss me because of a belief in God. And here is a hint if you&#8217;re out there, calling Him &#8220;magic&#8221; or &#8220;Superstition&#8221; is not a good way to start off the argument or introduce yourself as an atheist. Much as I&#8217;m sure that telling a person they are going to hell, a place in which he or she doesn&#8217;t believe, is a good way of saying &#8220;Good morning&#8221; to an atheist.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2010/01/02/the-god-dilemma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fortune cookie judges</title>
		<link>http://www.mikegangl.com/2009/12/21/fortune-cookie-judges/</link>
		<comments>http://www.mikegangl.com/2009/12/21/fortune-cookie-judges/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 23:40:37 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Funny thoughts]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/?p=203</guid>
		<description><![CDATA[I believes all verdicts should be delivered to a judge in the form of a fortune cookie, which must be eaten before the verdict can be read aloud.]]></description>
			<content:encoded><![CDATA[<h1 id="profile_name"><span style="font-size: 13px;"><span style="font-weight: normal;">I believes all verdicts should be delivered to a judge in the form of a fortune cookie, which must be eaten before the verdict can be read aloud.</span></span></h1>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2009/12/21/fortune-cookie-judges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Management</title>
		<link>http://www.mikegangl.com/2009/10/29/management/</link>
		<comments>http://www.mikegangl.com/2009/10/29/management/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 18:15:35 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/2009/10/29/management/</guid>
		<description><![CDATA[I guess the person best fit for &#8216;management&#8217; in the utopian sense is technically proficient and altruistic towards the business/customer for which he works.]]></description>
			<content:encoded><![CDATA[<p>I guess the person best fit for &#8216;management&#8217; in the utopian sense is technically proficient and altruistic towards the business/customer for which he works.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2009/10/29/management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some money making ideas</title>
		<link>http://www.mikegangl.com/2009/10/20/some-money-making-ideas/</link>
		<comments>http://www.mikegangl.com/2009/10/20/some-money-making-ideas/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 06:23:55 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[driving school]]></category>
		<category><![CDATA[passivity]]></category>
		<category><![CDATA[phone bank]]></category>
		<category><![CDATA[pizza hut]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/?p=194</guid>
		<description><![CDATA[I have a lot of ideas that people tell me are terrible, but I like them so I&#8217;ve decided to share twohere. 1. Pizza Hut is missing out on an amazing opportunity. Currently they pay drivers to make small, local trips. rarely a high way in use. What other market has people making local drives, [...]]]></description>
			<content:encoded><![CDATA[<p>I have a lot of ideas that people tell me are terrible, but I like them so I&#8217;ve decided to share twohere.</p>
<p>1. Pizza Hut is missing out on an amazing opportunity. Currently they pay drivers to make small, local trips. rarely a high way in use. What other market has people making local drives, and fear of highways? New Drivers. Pizza hut driving school would allow for cheap labor (free) while providing a useful service to the rest of the community. I like the idea of the pizza guy giving my pizza and being so happy he made it here alive he cannot complain about the minuscule tip i am about to give him. Let&#8217;s make this work, people.</p>
<p>2. This one has legs. And more importantly, blatant and vicious honesty. It&#8217;s essentially a phone bank where people can call in and leave a message and a number for the operators to call. We then call that number and give them the message. Sure it could be used as a go-between for drug deals and other scams, but it can also b used to say things that people are afraid to say. With the advent of the internet, people everywhere have become used to passive communication. No longer can one tell a friend he has bad breath or body odor. Or even break up with a person without a text message. This way, people can have an intermediary give the bad news and remain completely anonymous.</p>
<p>Yes this could be  used against certain people, if someone calls in for you and tells the operator to confess to cheating on a wife, for example, that would suck. But i&#8217;m thinking of the money making possibilities. Make these people call in and listen to advertisements before getting the news. Have it tailored to their issue&#8230; can&#8217;t last in bed? How about viagra or some numbing lotion. Bad breath? Listerine would love this target demographic.</p>
<p>Like I said, this idea has legs&#8230; I say we run with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2009/10/20/some-money-making-ideas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cult of done</title>
		<link>http://www.mikegangl.com/2009/07/16/cult-of-done/</link>
		<comments>http://www.mikegangl.com/2009/07/16/cult-of-done/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 20:28:09 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Cult of Done]]></category>
		<category><![CDATA[perfection]]></category>

		<guid isPermaLink="false">http://www.mikegangl.com/2009/07/16/cult-of-done/</guid>
		<description><![CDATA[The Cult of Done Manifesto 1. There are three states of being. Not knowing, action and completion. 2. Accept that everything is a draft. It helps to get it done. 3. There is no editing stage. 4. Pretending you know what you&#8217;re doing is almost the same as knowing what you are doing, so just [...]]]></description>
			<content:encoded><![CDATA[<p>The Cult of Done Manifesto</p>
<p>1. There are three states of being. Not knowing, action and completion.<br />
2. Accept that everything is a draft. It helps to get it done.<br />
3. There is no editing stage.<br />
4. Pretending you know what you&#8217;re doing is almost the same as knowing what you are doing, so just accept that you know what you&#8217;re doing even if you don&#8217;t and do it.<br />
5. Banish procrastination. If you wait more than a week to get an idea done, abandon it.<br />
6. The point of being done is not to finish but to get other things done.<br />
7. Once you&#8217;re done you can throw it away.<br />
8. Laugh at perfection. It&#8217;s boring and keeps you from being done.<br />
9. People without dirty hands are wrong. Doing something makes you right.<br />
10. Failure counts as done. So do mistakes.<br />
11. Destruction is a variant of done.<br />
12. If you have an idea and publish it on the internet, that counts as a ghost of done.<br />
13. Done is the engine of more</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikegangl.com/2009/07/16/cult-of-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
