<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="http://feeds.feedburner.com/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>A technology strategist talks about css styles, company email marketing, search engine optimization analysis, web development, and a bunch of other crap</title>
	
	<link>http://www.joshcanhelp.com</link>
	<description>Building, marketing and succeeding as a Technology Strategist</description>
	<pubDate>Fri, 21 Nov 2008 02:03:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/CanJoshHelp" type="application/rss+xml" /><item>
		<title>Beginner Excercises to Learn PHP Programming</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/459907259/</link>
		<comments>http://www.joshcanhelp.com/php/beginner-excercises-to-learn-php-programming/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 19:00:21 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[beginner]]></category>

		<category><![CDATA[exercises]]></category>

		<category><![CDATA[PHP exercises]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[programming exercises]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=386</guid>
		<description><![CDATA[I&#8217;ve been on a quest to try my hand at a real programming language. I get the feeling that I&#8217;m really going to like what I learn. Said another way, I really hope that I like what I learn. My brain kind of works like a computer and if I can just figure out how [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been on a quest to try my hand at a real programming language. I get the feeling that I&#8217;m really going to like what I learn. Said another way, I really hope that I like what I learn. My brain kind of works like a computer and if I can just figure out how a computer operates on the nano level, I&#8217;ll be one step closer to understanding myself.</p>
<p>That was a joke.</p>
<p>After a thoroughly inexhaustive consideration of available languages, I chose PHP to learn a few things. Since I&#8217;ve been doing work in Wordpress (written in PHP) and have had a few people express the need for database functionality in their webpages (PHP and MySQL can handle almost anything you can throw at it) AND I&#8217;m working on a site based on <a href="http://www.pligg.com">Pligg</a> (also written in PHP), it seemed like the right direction to go. It also seems fairly simple to pick up (comparatively) and the support/community/documentation is quite robust (one of the few words I use despite the fact that I hate it).</p>
<p>Despite the many pages dedicated to PHP tutorials, how-tos, and tips/tricks, I have not been very successful finding exercises I can practice with. I&#8217;ve been a student for longer than I care to admit, I need homework to function properly!! So I searched high and low and put together this list of beginner PHP exercises. I&#8217;m also including a link to my results so people can see the results (no guarantee of accuracy).</p>
<p><a href="http://devzone.zend.com/node/view/id/627">Zend&#8217;s Beginner&#8217;s Guide to PHP </a>is a  good place to start if you need a refresher or need some help. <a href="http://devzone.zend.com/node/view/id/627"><br />
</a></p>
<h3><a href="http://forums.digitalpoint.com/showthread.php?t=642480"><strong>From the Digital Point forums</strong></a></h3>
<ol>
<li>Define a variable called &#8216;name&#8217; containing the text &#8216;Mario&#8217; and then write &#8220;I am Mario.&#8221; using the variable to write the &#8216;Mario&#8217; part. You may only use two commands max!</li>
<li>Use the code from the previous example but add a check using an &#8216;if&#8217; condition to check whether the name is &#8216;mario&#8217;. Place the text from the previous example in the &#8216;if&#8217; condition.</li>
<li>Try changing the $name variable to &#8216;awaken&#8217;. You&#8217;ll notice that the previous script writes nothing (If it doesn&#8217;t, go back and redo #2, it&#8217;s not complete!)</li>
<li>Use a while-loop that starts at 0 and keeps running while the number is lower then 5. Write the variable to the screen after each run.</li>
<li>Modify the previous example to use a &#8216;for&#8217; loop instead of a &#8216;while&#8217; loop</li>
</ol>
<h3><a href="http://www.itu.dk/courses/WEB/E2002/PHP-intro/p23.php"><strong>From</strong> <strong>IT-UNIVERSITETET I KØBENHAVN</strong></a></h3>
<p>&#8220;Make a script that takes a number N as   argument and prints out the N&#8217;th line of the file <a href="http://www.itu.dk/courses/WEB/E2002/PHP-intro/brixtofte.txt">brixtofte.txt</a>. If N is negative or larger than the   number of lines in the file, an error message should be printed. Do   not forget the rules about manipulating with files!&#8221;</p>
<h3><a href="http://www.hudzilla.org/phpbook/"><strong>From Huzilla.org&#8217;s PHP book</strong></a></h3>
<p>A quick note about this site. The &#8220;book&#8221; is very useful but on every page you&#8217;ll see a big headline that tells you that that particular version in not the most current. The current version took a minute to load and was in wiki format. I didn&#8217;t immediately see any of the quizzes or exercises so I&#8217;m linking to the old version.</p>
<p>I&#8217;m only listing the first few sections of quizzes (the beginner information). Each section listed in <a href="http://www.hudzilla.org/phpbook/index.php">the table of contents</a> has its own exercise bank.</p>
<ul>
<li><a href="http://www.hudzilla.org/phpbook/read.php/2_10_0">Quiz 1 (Introduction to PHP)<br />
</a></li>
<li><a href="http://www.hudzilla.org/phpbook/read.php/3_14_0">Quiz 2 (Variables and Operators)<br />
</a></li>
<li><a href="http://www.hudzilla.org/phpbook/read.php/4_25_0">Quiz 3 (Functions)</a></li>
<li><a href="http://www.hudzilla.org/phpbook/read.php/5_13_0">Quiz 4 (Arrays)</a></li>
<li><a href="http://www.hudzilla.org/phpbook/read.php/6_21_0">Quiz 5 (Objects)</a></li>
<li><a href="http://www.hudzilla.org/phpbook/read.php/7_10_0">Quiz 6 (Forms)</a></li>
<li><a href="http://www.hudzilla.org/phpbook/read.php/8_18_0">Quiz 7 (Files)</a></li>
<li><a href="http://www.hudzilla.org/phpbook/read.php/9_21_0">Quiz 8 (Databases)</a></li>
<li><a href="http://www.hudzilla.org/phpbook/read.php/24_4_0">Answers to all quizzes</a></li>
</ul>
<h3><a href="http://lab.bcb.iastate.edu/training/webdev/nmsu/"><strong>From Iowa State University</strong></a></h3>
<p>&#8220;Download the <a>yeast.txt</a> file from the website. Write a script that displays the names of all the protein-fragments contained in the file [the block of capital letters only].</p>
<p>&#8220;Adapt [the script above] to construct an array while you read through the file that contains all the titles of fragments. Now encapsulate that functionality in a PHP function GetFragmentTitles($fn) whereby $fn is name of the file and the return result is an array containing all the titles. The pseudocode for this function is as follows:</p>
<p><code>function GetFragmentTitles($fn) {<br />
// open file $fn<br />
// create a new array $titles<br />
// for each $line in file $fn<br />
// if $line represents a title<br />
// add the title to array<br />
// close the file<br />
return $titles;<br />
}</code></p>
<p>&#8220;Construct a form where the end-user can enter (part of) the name of a fragment. A second script subsequently searches the titles to see if (part of) the name occurs in the file. Report on how many fragments are found.</p>
<p>&#8220;Simulate a BLAST-search interface: a user can enter part of a sequence and your script should report if and where the subsequence is found. Use really small fragments to see if they show up multiple times. What do you report if no fragments are found?</p>
<ul>
<li> Extra: What if the user enters an empty string?</li>
<li> Extra: Can you think of a good use of the strtolower() function in this scenario?</li>
<li> Extra: Can you highlight the found sequence?&#8221;</li>
</ul>
<p><a href="http://joshcanhelp.com/portfolio/php/"><strong>My progress so far&#8230;</strong></a></p>
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/459907259" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/php/beginner-excercises-to-learn-php-programming/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/php/beginner-excercises-to-learn-php-programming/</feedburner:origLink></item>
		<item>
		<title>What’s that crazy Amazon thing on the right side of your blog?</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/455742762/</link>
		<comments>http://www.joshcanhelp.com/design-layouts/whats-that-crazy-amazon-thing-on-the-right-side-of-your-blog/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 08:00:02 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[Media]]></category>

		<category><![CDATA[Typography]]></category>

		<category><![CDATA[design layouts]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[web site]]></category>

		<category><![CDATA[writing]]></category>

		<category><![CDATA[amazon]]></category>

		<category><![CDATA[amazon affiliates]]></category>

		<category><![CDATA[books]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[depression]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[positioning]]></category>

		<category><![CDATA[recommend]]></category>

		<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=192</guid>
		<description><![CDATA[why, it&#8217;s my Amazon Affiliates widget!
Introduction
There are two companies online that I like a lot (love?) and will always patronize (as long as they stick to their formula); Amazon.com and Newegg.com. Put simply, the prices are great, I&#8217;ve never had an issue, what I order shows up fast, and, when I need it, the customer [...]]]></description>
			<content:encoded><![CDATA[<p>why, it&#8217;s my Amazon Affiliates widget!</p>
<h2>Introduction</h2>
<p>There are two companies online that I like a lot (love?) and will always patronize (as long as they stick to their formula); Amazon.com and Newegg.com. Put simply, the prices are great, I&#8217;ve never had an issue, what I order shows up fast, and, when I need it, the customer service is great (Newegg&#8217;s service is off-the-charts great). As such, I also give them respect on here and by word-of-mouth.</p>
<p>Someone clued me into the whole Amazon Affiliates program where you advertise books you like from Amazon on your site. Since I wanted SOME kind of monetization and I like to show my support for things I really like, it seemed like the perfect combination. I think, however, it requires a bit of explanation so you don&#8217;t think that those are just random books. I actually picked them out and read them myself and now I think you should do the same.</p>
<h2>I&#8217;m a newbie so what&#8217;s in it for me?</h2>
<p>So, let&#8217;s say you&#8217;re a bit web savvy and let&#8217;s say you&#8217;ve got a lot to say so let&#8217;s say you start yourself a little blog. You start off slowly, write a few posts, get some momentum and now you want to see what you can do about raking in the dough.You get to researching blog advertisements and, BAM, too much information.</p>
<p>I don&#8217;t think you can go wrong with the Amazon widget, to be honest. Pick books that match your content, pick books you support and why wouldn&#8217;t people click on the links? I think it&#8217;s honest, it&#8217;s up-front, you can support something you agree with, and their widgets look great.</p>
<p>I&#8217;ll report back when I&#8217;ve retired off of the revenue and tell you how to do the same.</p>
<h2>So what&#8217;s so great about those books?</h2>
<p>In the spirit of being honest, I thought I might put a little review on here of each to prove that I ACTUALLY own these books and ACTUALLY read them (well, you don&#8217;t so much read a CSS guide or an Illustrator book.. I did read the XHTML one though). Here&#8217;s why I like them (I&#8217;m posting these on Amazon as well)&#8230;</p>
<p style="text-align: center;"><a href="http://www.amazon.com/Elements-Style-Illustrated-William-Strunk/dp/0143112724/ref=pd_bbs_sr_2?ie=UTF8&amp;s=books&amp;qid=1219125897&amp;sr=1-2"><img class="aligncenter" title="The Elements of Style Illustrated" src="http://ecx.images-amazon.com/images/I/41OEzVLbZLL._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="" width="240" height="240" /></a></p>
<p style="text-align: center;"><strong><span style="text-decoration: underline;">The Elements of Style (Illustrated)</span> by Strunk, White, and Kalman<br />
</strong>
</p>
<p style="text-align: left;">I wish I could remember who originally recommended the original Strunk &amp; White Elements of Style to me. If I could remember, I would find them and hug them unabashedly.</p>
<p style="text-align: left;">If you&#8217;re writing ANYTHING and care AT ALL about how it turns out then do yourself a favor and pick this one up. The organization is very strange (there isn&#8217;t any to speak of) and the writing style is very direct. The result is a no-nonsense book that teaches you to cut the crap out of your writing.</p>
<p style="text-align: left;">There are many, many valuable lessons contained in Strunk&#8217;s short and useful guide but the best ones, for me, are the ones regarding comma usage and his favorite command, &#8220;Omit needless words.&#8221; During everything I&#8217;ve ever written since reading this book I&#8217;ve heard a disembodied voice telling me to remove words. I&#8217;ve noticed while editing other people&#8217;s work that the piece can be improved dramatically by deleting all the words that say nothing.</p>
<p style="text-align: left;">It&#8217;s a quick read but a necessary one for anyone doing any kind of writing.</p>
<p style="text-align: center;"><a href="http://www.amazon.com/Bird-Some-Instructions-Writing-Life/dp/0385480016/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1219125979&amp;sr=1-1"><img class="aligncenter" title="Bird by Bird: Some Instructions on Writing and Life" src="http://ecx.images-amazon.com/images/I/418YQ86A2KL._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="" width="240" height="240" /></a></p>
<p style="text-align: center;"><strong><span style="text-decoration: underline;">Bird by Bird</span> by Anne Lamott</strong></p>
<p style="text-align: left;">As with &#8220;Elements&#8230;,&#8221; I&#8217;m not sure how I heard about this book. It was one of those odd series of events that ends with something in your mailbox. I read a few quick things about it online and suddenly decided that I must read the book. I&#8217;m glad I did because this was one of the most enjoyable books I&#8217;ve read in a long time.</p>
<p style="text-align: left;">Anne has a casual but polished writing style that you can&#8217;t help but to get lost in. She writes like a close friend speaks to you, eschewing ego and pretentiousness to deliver her simple, personal message. It started out a  bit slow but the stories she told were very entertaining. By the time I reached the middle of the book, I was totally hooked and found the last half hilarious and very informative.</p>
<p style="text-align: left;">This book is, in the end, a guide on how to be a writer, not a guide on how to write. What I mean by that is you won&#8217;t really develop your style or improve your sentence structure by reading this book. What you will do, however, is come to terms with a lot of the obstacles facing writers at every stage of their careers. Her humor and her honesty makes you feel really good about contributing, failing, hating yourself, and moving on.</p>
<p style="text-align: left;">Though I would definitely recommend this book to anyone writing their own book, I would recommend it even more to anyone living in this world and doing the best that they can. She talks a lot about failing and self-hatred and giving up and charging through. I found myself particularly centered after reading about her embarrassing reactions and consequent success over jealousy and writer&#8217;s block. I learned more about my life and myself than I did about writing. I don&#8217;t necessarily consider myself a writer but I explore my creativity in different ways and this book really speaks to all of them.</p>
<p style="text-align: left;">Pick this book up, read it, and feel better about just being yourself.</p>
<p><a href="http://www.amazon.com/Positioning-Battle-Your-Mind-Anniversary/dp/0071359168/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1219126037&amp;sr=1-1"><img class="aligncenter" title="Positioning: The Battle for Your Mind, 20th Anniversary Edition " src="http://ecx.images-amazon.com/images/I/51XBcULoGXL._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="" width="240" height="240" /></a></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>Positioning: The Battle for Your Mind</strong></span><strong> by Al Ries and Jack Trout.</strong></p>
<p>Finally, a book with a history I can share.</p>
<p>This book was given to me by my dad, the king of business books and the fastest, most prolific reader I know. This guy blows through almost 1,000 pages a month on top of all the magazines, newspapers, and online sources he devours. Though our reading tastes aren&#8217;t completely aligned, when he recommends a book, I typically read it (or at least add it to The List in earnest).</p>
<p>This is the kind of book I don&#8217;t read. Though I find the advertising industry slightly interesting, I mostly hate it and wish it would go away (despite having a hand in it). This book, however, really cuts through the crap and explains positioning and branding in a way I&#8217;ve never heard before. In terms of marketing and branding, I pretty much live by the concepts in this book. Oh, and it&#8217;s about 30 years old. That&#8217;s how good this book is.</p>
<p>The  book shows you what successful companies have done to become that way and what other successful companies have done to screw it all up. With tons of examples and a very straight-forward writing style, this book will explain why certain products win and why others fail.</p>
<p>I read this book quickly and moved onto others by the same authors. They really know their stuff.</p>
<p><a href="http://www.amazon.com/Noonday-Demon-Atlas-Depression/dp/0684854678/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1219126269&amp;sr=1-1"><img class="aligncenter" title="The Noonday Demon: An Atlas of Depression" src="http://ecx.images-amazon.com/images/I/519672JZK5L._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="" width="240" height="240" /></a></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>The Noonday Demon</strong></span> <strong>by Andrew Solomon</strong></p>
<p>This is the best book I&#8217;ve ever read and likely will ever read. Period.</p>
<p>I have suffered off and on from depression throughout my life and this book, the first and only book I&#8217;ve ever read on the subject, did so much for my understanding about the condition. I&#8217;ve really never read a book that explained what I think and feel better than this.</p>
<p>First off, Andrew Solomon is an excellent writer. He gets a bit verbose at times but I found each sentence, regardless of it&#8217;s complexity, an adventure in and of itself. He paints such an incredible picture of the feelings and thoughts that accompany depression. Like anyone able to describe depression, Andrew has been through it and reading what he&#8217;s suffered from made me realize how lucky I have been with my own depression. Andrew has seen hell, been through hell, and came out enlightened.</p>
<p>Strangely, I always find this book difficult to describe adequately. His words were just so well chosen and the research so personal and interesting, I feel like it&#8217;s a book that needs to be experienced to be understood fully.</p>
<p>If you suffer from depression, clinical or occasional or undiagnosed or anything, I completely recommend reading this book from cover to cover. If you know someone who suffers from this condition and are struggling to understand what they&#8217;re going through, this book will go a long way towards helping you see what they see. I&#8217;ve really never had a book that explained something as well as this.</p>
<p><a href="http://www.amazon.com/Non-Designers-Design-Type-Books-Deluxe/dp/0321534050/ref=sr_1_4?ie=UTF8&amp;s=books&amp;qid=1219126393&amp;sr=1-4"><img class="aligncenter" title="The Non-Designers Design and Type Books, Deluxe Edition" src="http://ecx.images-amazon.com/images/I/41DKVqEumZL._SL500_AA240_.jpg" alt="" width="240" height="240" /></a></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>The Non-Designers Design &amp; Type Books</strong></span><strong> by Robin Williams</strong></p>
<p>I wanted to write a quick blurb about this little book that has gone a long way towards teaching me proper design.</p>
<p>I&#8217;ve been dabbling seriously in graphic design for about a year now and find it one of the most frustrating things I&#8217;ve ever done and also one of the most satisfying. It&#8217;s very subjective, hard to describe, very time consuming, very sensitive, and totally maddening. When it works, it really works but when it doesn&#8217;t work, it shows you the highest level of frustration possible.</p>
<p>Robin explains all the basics very well which puts you in a position to begin to experiment. If you just stick yourself in front of Photoshop and try to bang out a business card or a menu or a technical document (which you really wouldn&#8217;t do in Photoshop), it&#8217;s probably not going to work out well unless you&#8217;ve had some experience. If, however, you read this little guide and try it, you&#8217;re going to have a few more ideas and at least understand the contrainst you&#8217;re working with in terms of color, alignment, etc.</p>
<p>This book is great for people without any experience in design who want to improve the way their documents, webpages, application screens, and printed material looks. You&#8217;re not going to win any contests with this knowledge (and neither are her examples) but what you produce will immediately look better. The writing style is a bit goofy but I use what I learned every day in everything I produce from graffiti to webpages to technical documents to resumes.</p>
<p><a href="http://www.amazon.com/CSS-Definitive-Guide-Eric-Meyer/dp/0596527330/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1219126092&amp;sr=1-1"><img class="aligncenter" title="CSS: The Definitive Guide [ILLUSTRATED]" src="http://ecx.images-amazon.com/images/I/5198Jr6s7UL._SL500_AA240_.jpg" alt="" width="240" height="240" /></a></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>CSS: The Definitive Guide</strong></span><strong> by Eric Meyer</strong></p>
<p>A solid plot, well-formed characters, and an intriguing writing style make this&#8230; wait, what?</p>
<p>This is a boring, very useful book. I&#8217;ve read a lot about CSS on the web and nothing came close to the  explanation in this book. Instead of saying things like &#8220;we won&#8217;t bother you with the complex way this is calculated,&#8221; Meyer bothers you with the complexity. Each property I read made me really understand how it works and how it should be used.</p>
<p>I&#8217;ve been reading this bad-boy from cover to cover and I think I&#8217;m doing myself a bit of a disservice. I think I&#8217;m going to skip to the positioning section (everyone could use a better understanding of this mysterious and magical world), read that, maybe read a few other things I&#8217;m interested in mastering and then leave it as a reference. It makes a lot more sense to read the properties you don&#8217;t understand than trying to get through it all.</p>
<p>Learn (x)HTML and CSS online, then buy this book is you&#8217;re serious about getting into web page design.</p>
<p style="text-align: center;"><a href="http://www.amazon.com/XHTML-Sixth-Visual-Quickstart-Guide/dp/0321430840/ref=sr_1_5?ie=UTF8&amp;s=books&amp;qid=1219126002&amp;sr=1-5"><img class="aligncenter" title="HTML, XHTML, and CSS, Sixth Edition " src="http://ecx.images-amazon.com/images/I/51Ilb0dwmBL._SL500_BO2,204,203,200_PIlitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="" width="240" height="240" /></a></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>Visual Quickstart Guide to HTML, XHTML, &amp; CSS</strong></span><strong> by Elizabeth Castro</strong></p>
<p style="text-align: left;">I think I bought this book a bit late in my web design learning process but I still find a lot of use out of it. I use it as my general reference book and I&#8217;m constantly in the appendix and the chapter about forms.</p>
<p style="text-align: left;">Though I would recommend this book to people because I found it useful, I think there might be better books on the subject. I say this because it does not go into the level of detail you really need to master HTML. It does a great job explaining what it does but there are quite a few things left out or breezed over to keep the book and appropriate size. Also, combining HTML and CSS in the same book is probably a bad idea. The CSS book I reviewed above is bigger than this book and, ostensibly, covers 1/3 of the material.</p>
<p style="text-align: left;">If you want to learn enough about HTML to get by creating simple web pages or fixing your own, this is a great book for you. If, however, you want to really understand HTML and get into web development, I would suggest finding a book with a bit more content (probably something from O&#8217;Reilly [publishers of the CSS book above]).</p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://www.amazon.com/Illustrator-CS3-Bible-Ted-Alspach/dp/0470126345/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1219126146&amp;sr=1-1"><br />
</a>
</p>
<p style="text-align: center;">
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/455742762" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/design-layouts/whats-that-crazy-amazon-thing-on-the-right-side-of-your-blog/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/design-layouts/whats-that-crazy-amazon-thing-on-the-right-side-of-your-blog/</feedburner:origLink></item>
		<item>
		<title>The Worst Possible Way to Work (or) How to Find a System That Works for You</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/445610991/</link>
		<comments>http://www.joshcanhelp.com/mobile/the-worst-possible-way-to-work-or-how-to-find-a-system-that-works-for-you/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 16:00:21 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[connectivity devices]]></category>

		<category><![CDATA[make money online blogging]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[web site]]></category>

		<category><![CDATA[email]]></category>

		<category><![CDATA[free software]]></category>

		<category><![CDATA[getting things done]]></category>

		<category><![CDATA[organization]]></category>

		<category><![CDATA[productivity]]></category>

		<category><![CDATA[systems]]></category>

		<category><![CDATA[to-do lists]]></category>

		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=380</guid>
		<description><![CDATA[Introduction
I was listening to a BBC program the other day that was talking about whether grandparents raising their grandkids was a good thing or a bad thing. Some people called in to say, yes, it was good but also bad. Other people called in to say it was bad, but also good. In the end, [...]]]></description>
			<content:encoded><![CDATA[<h2>Introduction</h2>
<p>I was listening to a BBC program the other day that was talking about whether grandparents raising their grandkids was a good thing or a bad thing. Some people called in to say, yes, it was good but also bad. Other people called in to say it was bad, but also good. In the end, it seemed like the show&#8217;s host, whether on directive or personally motivated, was looking for &#8220;the truth,&#8221; in the sense that she wanted an answer - <strong>the </strong>answer. This is the format of most discourse in modern-day media, it seems, because it simplifies the issue down to the proverbial black and white. Instead of looking for some perspective on things, the conversation, apparently, always needs to come to a conclusion.</p>
<div class="wp-caption alignleft" style="width: 170px"><a href="http://flickr.com/photos/hagner_james/2854880466/"><img style="margin: 6px;" title="Self Help by hagner_james on flickr" src="http://farm4.static.flickr.com/3001/2854880466_19c66a3255_m.jpg" alt="Self Help by hagner_james on flickr" width="160" height="240" /></a><p class="wp-caption-text">Self Help by hagner_james on flickr</p></div>
<p>I see this mentality a lot when I read the prolific &#8220;self-help&#8221; &amp; &#8220;personal-growth&#8221; genre of blogs. There are &#8220;keys to success,&#8221; &#8220;paths to financial freedom&#8221; and, my favorite, &#8220;rock-solid ways to improve productivity.&#8221; If you&#8217;re familiar with blogs, then you&#8217;ll know the format of a catchy title, a hooky intro, and subsequent headers that are action-packed and full of information (cough). Knowing this, it&#8217;s hard to be TOO critical of the content because, hey, people are reading it and subscribing to it and linking to it and people are getting paid and everything is great. Still, there is something a bit funny about someone who discovered their path to productivity on their own but then shares it as the gospel of getting things done.</p>
<p>So, I&#8217;m going to share with you how I work. This method would/will drive certain people nuts. This method is not foolproof but none of them are. It also doesn&#8217;t work for absolutely everything, but none of the other ones do either. I read a lot of the productivity posts out there, internalize the message, and typically end up rejecting a lot of it. My system is probably a hybrid of all the things I&#8217;ve read about &#8220;making work happen.&#8221; Still, I modified it to be my own and, while I&#8217;m always changing and improving, it&#8217;s working well for me (ask the friends and family I don&#8217;t talk to enough).</p>
<h2>I&#8217;m new to all of this&#8230; how can this help?</h2>
<p><strong>It&#8217;s so easy to get caught up on the &#8220;self-help&#8221; cycle of reading other people&#8217;s insights constantly and going nowhere in your own life. It&#8217;s also easy to get down on yourself if you just CAN&#8217;T meditate for an hour in the morning with a warm cup of white tea and visualize your day coming together. Some people work one way, some work another, and many don&#8217;t work at all. I want to tell you what I do to manage the chaos, live in the chaos, and use the chaos to my advantage. Maybe you&#8217;ll learn something, maybe you won&#8217;t but hopefully, by the end of this, you&#8217;ll at least feel OK about having your OWN system (or no system).</strong></p>
<h2>1. I work on what I want to work on</h2>
<p>I&#8217;m simply incapable of being motivated and productive when I work on projects that don&#8217;t have my full interest. I&#8217;m still trying to figure out if this is just a human thing or a particular limitation of mine. Regardless if the origin is DNA- or species-related, it is something that affects my professional life profoundly.</p>
<p>Part of having a job of any kind is taking the good with the bad. This is, thankfully, true for rockstars, artists, programmers, teachers, and everyone else. We all have those moments, some more than others. So what to do when you get tired of something?</p>
<p>Move right along. Do the next thing. Stop what you&#8217;re doing before you ruin it.</p>
<p>If I can&#8217;t write, I don&#8217;t write and I try something different like web coding or maybe a bit of design or just run-of-the-mill organization. If I&#8217;m not feeling mentally capable, I do something repetitive. If I&#8217;m feeling competent and smart, I try to tackle something high level. Unless it&#8217;s due, people are waiting, or something&#8217;s on fire, if I don&#8217;t want to contribute, I don&#8217;t.</p>
<h2>2. I jump from project to project, sometimes mid-sentence</h2>
<p>This might be the most destructive of my tendencies but so far so good.</p>
<div class="wp-caption alignleft" style="width: 250px"><a href="http://flickr.com/photos/zach_manchester/2297064924/"><img style="margin: 6px;" title="Unfinished and forgotten by Zach_ManchesterUK on flickr" src="http://farm4.static.flickr.com/3125/2297064924_969c1d40c5_m.jpg" alt="Unfinished and forgotten by Zach_ManchesterUK on flickr" width="240" height="161" /></a><p class="wp-caption-text">Unfinished and forgotten by Zach_ManchesterUK on flickr</p></div>
<p>I&#8217;ve been writing an email to someone, lost the motivation to type and switched to something else immediately. I wasn&#8217;t interrupted, the connection wasn&#8217;t broken, I didn&#8217;t change my mind, I just decided not to continue emailing. I often save drafts with unfinished sentences, let alone paragraphs.</p>
<p>Sometimes your inspiration to complete a certain task only lasts so long. Maybe the first couple paragraphs are gold and the rest are, say, crap. Instead of just pushing through for the sake of doing so, I stop and move on to come back when the motivation re-arises.</p>
<p>Now, there are times when it pays to sit down, drill in, and concentrate on what you&#8217;re doing. There are many things that require a strong train of thought and benefit from moving from idea to idea within a framework. There are more things, however, that simply don&#8217;t need that kind of attention. Emails in any form, documents, web pages&#8230; many things just need you to complete mental modules and then you can move on.</p>
<p>Never underestimate solid concentration with no interruptions for long periods of time. Don&#8217;t be afraid, however, to take microbreaks and split your project into chunks. The drip drip drip can, in many cases, lead to a better output.</p>
<h2>3. I keep close track of (almost) everything</h2>
<p>I&#8217;m on top of my shit, that&#8217;s all there is to it.</p>
<p>I stay in close contact with people and I do what I say I&#8217;m going to do. I&#8217;m frequently used by other people as their system of organization because I keep things moving and can remember where things left off. I&#8217;m not great with uber-minutia and I can&#8217;t possibly admit to always being on time, remembering anything, and making no mistakes. What I don&#8217;t do, however, is drop the ball.</p>
<p>I keep my inbox empty or as close as possible. I don&#8217;t move anything to a long-term to do list unless it&#8217;s a personal project. Anything client-related is up-front and center because I put it there. Things shift in priority, no doubt, but I don&#8217;t stop doing things because I forgot about them/. They either lost everyone&#8217;s interest or died off.</p>
<p>This helps me keep very current with everything I&#8217;m doing and helps me to consciously lose track of things that don&#8217;t matter.</p>
<h2>4. I stay very organized</h2>
<p><a href="http://rememberthemilk.com"><img class="alignleft" style="margin: 6px;" title="I use remember the milk to stay organized" src="http://static.rememberthemilk.com/img/logo.png" alt="" width="188" height="83" /></a>I wouldn&#8217;t say that I&#8217;m anal about everything but everything definitely has it&#8217;s place.</p>
<p>Emails get saved if they&#8217;re important and should stay as emails. Otherwise, their content gets stripped quickly and moved into an appropriate secondary system (like my contacts or my calendar). My USB drive is full and it&#8217;s easy to find everything that I need. My pictures are listed and sorted in a way that makes sense to my brain.</p>
<p>I don&#8217;t spend all day scheming up systems and sorting things around; that would defeat the purpose of having a system like mine. I take care of things immediately lest they fall off my radar. Documents are saved and sorted, bookmarks are sorted and printed to PDF if they&#8217;re THAT good, and personal information gets saved into Outlook (on my phone, synced at work, and exported into Excel to make sure I don&#8217;t lose track.</p>
<p>Again, I&#8217;m not the picture of organizational perfection but it&#8217;s hard for things to slip through the cracks. I make it that way so I can work the way I want to.</p>
<h2>5. I&#8217;m quick to abandon a system that isn&#8217;t working</h2>
<p>If my organization is the glue then this is the engineer to check to make sure my glue is holding.</p>
<p>I don&#8217;t &#8220;swear by&#8221; my system and I certainly would not go out of my way to recommend it (I would recommend SOME kind of system, though). I&#8217;m always on the lookout for better ways to do what I do because I always  like to save time and change is a good thing.</p>
<p>I try out new systems, software, methods, tools, etc but, more often than not, my day-to-day functioning doesn&#8217;t change much. This is because I re-iterate, check, and evaluate what I&#8217;m doing on a constant basis. This isn&#8217;t quite a conscious process, it&#8217;s more like something that&#8217;s in the back of my head. If a certain piece of software is pissing me off or I keep forgetting to do something or something is irritating me, a red flag appears and I&#8217;m ready to replace it.</p>
<p>Case in point, my email situation. I have too many damn email accounts to keep track of for no good. I have a business one that I access with my phone and Gmail. I also have a separate Gmail, separate Hotmail, separate Yahoo, and an office account. In the end, I feel no more connected because I have a million email accounts. I&#8217;m in the process of overhauling this system to make it work for me (expect a post about it).</p>
<h2>That&#8217;s all</h2>
<p>Yeah, just that.</p>
<p>Though the way I work is a bit unorthodox, I&#8217;ve shown many people how to make their lives easier using free/cheap software and a system to use it. I absolutely would not be as successful as I am without the technology that I use every day. If you&#8217;re interested in learning about getting your professional life together in a way that makes sense and isn&#8217;t a burden, get a hold of me.</p>
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/445610991" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/mobile/the-worst-possible-way-to-work-or-how-to-find-a-system-that-works-for-you/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/mobile/the-worst-possible-way-to-work-or-how-to-find-a-system-that-works-for-you/</feedburner:origLink></item>
		<item>
		<title>Haha</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/443456432/</link>
		<comments>http://www.joshcanhelp.com/uncategorized/haha/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 17:00:42 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=378</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.smbc-comics.com/index.php?db=comics&amp;id=807#comic"><img class="aligncenter" src="http://www.smbc-comics.com/comics/20070501.gif" alt="" width="468" height="755" /></a></p>
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/443456432" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/uncategorized/haha/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/uncategorized/haha/</feedburner:origLink></item>
		<item>
		<title>Spam: what is it? what does it do? why am I sending it? who cares?</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/442177855/</link>
		<comments>http://www.joshcanhelp.com/marketing/spam-what-is-it-what-does-it-do-why-am-i-sending-it-who-cares/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 15:00:06 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[marketing]]></category>

		<category><![CDATA[bulk email]]></category>

		<category><![CDATA[company email marketing]]></category>

		<category><![CDATA[HTML email]]></category>

		<category><![CDATA[mass email]]></category>

		<category><![CDATA[newegg]]></category>

		<category><![CDATA[spam]]></category>

		<category><![CDATA[vwvortex]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=370</guid>
		<description><![CDATA[I had an interesting conversation with a colleague recently about what constitutes spam email and how we could go about avoiding it. It&#8217;s safe to say that we had differing opinions about the matter and I think it&#8217;s worth talking about those differences.
Spam is&#8230;

What is spam? My personal definition of email spam is this:
Unrequested crap [...]]]></description>
			<content:encoded><![CDATA[<p>I had an interesting conversation with a colleague recently about what constitutes spam email and how we could go about avoiding it. It&#8217;s safe to say that we had differing opinions about the matter and I think it&#8217;s worth talking about those differences.</p>
<h2>Spam is&#8230;</h2>
<p><a href="http://www.flickr.com/photos/santos/56256773/"><img class="alignleft" style="margin: 6px;" src="http://www.joshcanhelp.com/images/blog/spam.jpg" alt="" width="250" height="268" /></a></p>
<p>What is spam? My personal definition of email spam is this:</p>
<p><strong>Unrequested crap in my inbox that wants my attention and has the intention of taking my money or time. </strong></p>
<p>Spam is unrequested crap. Spam is an email that I receive because I signed up for a different list. Spam is email I can&#8217;t seem to stop that wants me to buy something. Spam is when organizations and charities and movements think they can make me passionate about an issue by constantly reminding me about it (see: Obama campaign and wildlife organizations). Spam is email I get that I don&#8217;t want, even if I&#8217;m aligned with the company or peolpe that are sending it.</p>
<p>That&#8217;s spam in my mind but there&#8217;s a similar definition that fights for mind space and clouds the issue.</p>
<h2>Spam is illegal.</h2>
<p>Because of <a href="http://www.ftc.gov/bcp/conline/pubs/buspubs/canspam.shtm">the well-meaning CAN-SPAM Ac</a><a href="http://www.ftc.gov/bcp/conline/pubs/buspubs/canspam.shtm">t</a>, spam is typically defined as illegal emails. Spam, according to the Act, uses &#8220;false or misleading header information,&#8221; contains &#8220;deceptive subject lines,&#8221; does not &#8221; give recipients an opt-out method,&#8221; is not &#8220;identified as an advertisement,&#8221; and/or does not &#8220;include the sender&#8217;s valid physical postal address.&#8221; This means that companies are free and clear to send me as much email as they want as long as I know it&#8217;s an ad, I can trace it back to them, and I didn&#8217;t tell them explicitly to stop. That&#8217;s a start.</p>
<p>What the CAN-SPAM act does in theory is reduce the number of &#8220;well-meaning&#8221; commercial organizations sending out marketing emails. I&#8217;m sure this act reduced the email in my inbox which is very kind but not exactly what I&#8217;m getting at. What about companies that follow the rules but still irritate me and make me want to avoid what they&#8217;re selling? They won&#8217;t get in trouble but aren&#8217;t they going to lose a customer?</p>
<p>What about everything else that makes spam annoying?</p>
<h2>Spam is unrequested.</h2>
<p><img class="alignright" src="http://www.joshcanhelp.com/images/blog/donotwant.jpg" alt="" width="300" height="202" />The disagreement I had revolved around what constitutes responsible emailing. My colleague is of the mindset that as long as we aren&#8217;t breaking the rules, risking litigation, or getting swear word replies, we&#8217;re doing the right thing. There&#8217;s no &#8220;No Email&#8221; list out there like the Federal &#8220;No Call&#8221; list right?</p>
<p>My point is that if you intend to send emails to people you think might want to buy your product, you should be making sure that you&#8217;re sending them out in the right way lest you get a hold of people like me who really hate getting emails they didn&#8217;t ask for. If there&#8217;s nothing telling you not to do something, is it always ok to still do it? It&#8217;s not illegal for me to give you the finger on the I-5 when you cut me off so does that means it&#8217;s always the right reaction?</p>
<h2>Spamming lists of people does not constitute good marketing.</h2>
<p>I asked a Christian that I respect very much a question about her faith one time. She said that people who do not believe Jesus died for them will, unfortunately go to hell. I asked her, what about people who have never heard of Jesus before they die? What about newborns? What about agnostics in Muslim countries? Or eskimos? She said that you&#8217;re given a free pass if you&#8217;ve never heard of him which I thought was a really nice thing.This, I can imagine, takes a little bit of stress off of people who feel compelled to spread the word. Imagine if you felt the guilt of millions of people going to hell because you never got around to telling them about Jesus? Yikes!</p>
<p>I propose the same thing for <strong>anyone</strong> doing <strong>any</strong> kind of marketing. If someone does not hear about your product, it doesn&#8217;t mean that you failed. Sending out 1,000 emails to people you&#8217;ve cultivated or purchased under the guide of &#8220;spreading the word&#8221; is an old tactic, a poor way of marketing, and just lazy.</p>
<p>To take it a step further, eating away at your brand by bothering people that may or may not fit your demographic is actually the opposite of marketing, you&#8217;re now working for your competitor. I promise you, companies that spam me don&#8217;t get my money and there&#8217;s two reasons for that:</p>
<ol>
<li>I don&#8217;t buy things from emails I receive. It&#8217;s never happened.</li>
<li>The things I buy are, incidentally, from companies who don&#8217;t send spam (to me at least)</li>
</ol>
<p>Let&#8217;s look at that second thing more closely&#8230;</p>
<h2>If I don&#8217;t buy things from emails, how in the world do I hear about them?</h2>
<p>Sounds crazy right?</p>
<ul>
<li><a href="http://www.joshcanhelp.com/all-computer-hardware/not-so-much-taming-as-destroying/">I bought a TV</a> (half bought, half gift) recently. I bought it from Frys.com (who do send me emails but I requested them) but not because I got an email about it. I was researching TVs on a forum (a car one no less), read some honest reviews about a Panasonic, also read a post about how cheap it was, and bought it from that. I used the Electronics community section of VWVortex.com to find it and read reviews at Newegg.com to confirm. Not a spec of marketing influenced me (I never even went to Panasonic&#8217;s site). I bought it from Frys.com because of the price.</li>
</ul>
<p><img class="aligncenter" title="VWVortex web site for car enthuriasts" src="http://www.joshcanhelp.com/images/blog/vwvortex.gif" alt="" width="277" height="74" /></p>
<ul>
<li>I&#8217;m about to buy a netbook (ultra-small laptop) to replace my aged and dying/dead Dell Latitude (I&#8217;d say almost a decade [estimate] of service is a pretty good run). I&#8217;ve read blog reviews, owner opinions, and, of course, opinions on VWVortex.com. I&#8217;m split between the Dell Mini 9 and the Asus EEE 1000HA. I found out about the Dell from a blog I read a lot, I found out about the Asus from random tech news. I&#8217;m making my decision similarly to the TV but also reading a lot of objective reviews. The other piece of the puzzle is where I&#8217;m going to buy it from. If I choose the Asus, I&#8217;ll buy from Newegg, always. They&#8217;ve built a great reputation in my mind and in the mind of others and their price is, 9/10, the best. Even if it&#8217;s $20-30 more, it&#8217;s still better to buy from them. If I choose the Dell I have to buy it from them.</li>
</ul>
<p><a href="www.newegg.com"><img class="aligncenter" title="Newegg electronics" src="http://www.joshcanhelp.com/images/blog/newegg.gif" alt="" width="235" height="68" /></a></p>
<ul>
<li>I bought a new car a while back, a Honda Element. I bought it used from a dealership and, despite all of their pushing and prodding, I didn&#8217;t buy it from them because they bugged me to. Honda made a quirky, great-looking, functional, interesting vehicle and I wanted one for years. I knew I would buy one eventually and, when the opportunity presented itself, I jumped. I didn&#8217;t buy from them because of TV commercials or emails or anything. I was there, they had the car, price was good, trade-in was good, and the guy wasn&#8217;t a COMPLETE asshole. Plus, I wanted a Honda. No ads, no emails, nothing. Like with the other two, I wanted it, read about it, and grabbed it.</li>
</ul>
<p><img class="aligncenter" title="My Honda Element SC in Monterrey California" src="http://www.joshcanhelp.com/images/blog/element01.jpg" alt="" width="400" height="209" /></p>
<h2>I&#8217;m not your average consumer&#8230;</h2>
<p>&#8230;but does that really matter?</p>
<p>Plain and simple, spamming people with emails or coupons in the mail or phone calls or aggressive in-person marketing all does the same think: make a mark AGAINST your company. I might be in the minority that knows how to buy things but, guess what, I&#8217;m also the one that&#8217;s giving free advertisement to websites and companies that I like just because I&#8217;m compelled to do so. I have no problem with recommending someone to Newegg like I would have no problem recommending a friend to another friend to get something done.</p>
<p>You might think you&#8217;re reaching more potential consumers and winning by stuffing my multiple inboxes with crap and you might be able to justify it with phrases like &#8220;brand awareness&#8221; and &#8220;front of mind&#8221; and &#8220;positioning&#8221; (if you&#8217;re using that to justify spam, you&#8217;re unclear on the concept). The problem is, you&#8217;re also alienating the few and the vocal, like me. I&#8217;m going to talk your company down if you&#8217;re ever brought up, I&#8217;m going to convince people not to buy from you because I don&#8217;t like your tactics, and I&#8217;m going to blog about you to anyone who will read.</p>
<h2>There&#8217;s a fine line between being persistent and being annoying.</h2>
<p>Forget the PUSH, create the PULL.</p>
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/442177855" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/marketing/spam-what-is-it-what-does-it-do-why-am-i-sending-it-who-cares/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/marketing/spam-what-is-it-what-does-it-do-why-am-i-sending-it-who-cares/</feedburner:origLink></item>
		<item>
		<title>How to be an old(er) undergraduate or How I learned to accept what I’ve been given</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/439254634/</link>
		<comments>http://www.joshcanhelp.com/uncategorized/how-to-be-an-older-undergraduate-or-how-i-learned-to-accept-what-ive-been-given/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 18:25:21 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=366</guid>
		<description><![CDATA[I&#8217;m giving a short presentation in a minute on how to choose an undergraduate chemistry research lab to a few students ho are considering the research route at San Diego State University. I volunteered for the opportunity because I&#8217;m always looking for reasons to talk in front of people. I was a corporate trainer at [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m giving a short presentation in a minute on how to choose an undergraduate chemistry research lab to a few students ho are considering the research route at San Diego State University. I volunteered for the opportunity because I&#8217;m always looking for reasons to talk in front of people. I was a corporate trainer at one point and really developed a speaking style that I was proud of. Since then, I&#8217;ve done very little talking publicly and have since contracted a serious set of nerves about it. As such, I intend to beat down these nerves and address people more often.</p>
<p>Anyways, writing my notes for this presentation got me thinking about my past as a student and how far I&#8217;ve come as a person. I wanted to share a bit about what I&#8217;ve learned as the oldest dude in my graduating class (except that other guy).</p>
<h2>On being an undergraduate (at 29)</h2>
<p>Sticking on the course that I chose for myself almost 7 years ago and staying motivated to complete it has been on of the hardest things I&#8217;ve ever done in my life. It&#8217;s also been one of the best experiences I could ever hope for and one that&#8217;s absolutely altered everything about me and how I live.</p>
<p>One of the biggest things I&#8217;ve dealt with is the feeling of being &#8220;behind&#8221; in life. I&#8217;m one of the oldest undergraduates in my program (by about ~3-4 years) and, as such, I am constantly reminded that, in May, in terms of education, I&#8217;ll be 7 years behind most of the people I&#8217;m taking classes with. Just typing that knots my stomach up a bit. Having had the ability to choose my path at 17 when I graduated, I <strong>could</strong> be, best case scenario, 3 years post-PhD in whatever discipline I chose. I could celebrate my 30th as Dr. Cunningham making 6 figures and no the path to greatness (well, maybe). Instead, I&#8217;m going to celebrate my 30th completely exhausted with a BS in hand and, hopefully, an open spot waiting for me in a Master&#8217;s program for Computer Science (or Computational Science). Depressing when you put it like that, no?</p>
<h2>Other considerations</h2>
<p>Of course, this kind of comparison would be unfair. At 17, my direction in life was absolutely nil. In fact, I tried community college for one quarter, hated every second of it, and quickly decided to enter the workforce as a barista. This led to a severe (and still present) caffeine addiction combined with a solid pessimism directed towards the human race. There&#8217;s really nothing worse than being an already depressed teenager dealing with crowds of people deperate for their drug of choice. I still have bad dreams about that job. The point I&#8217;m trying to make is that I, at that point in life, was not only incapable of choosing a path for myself, I did not have the tools necessary to apply myself towards anything. I was listless and lazy and proud of it.</p>
<p>Additionally, I don&#8217;t know that I would have ever chosen chemistry as a discipline. I may have gone into computer science directly or biology or medicine (I did want to be a doctor but only for the parking space). I know now that I <strong>should</strong> be in chemistry, that this industry and I get along well, and that I understand it easily. Choosing the path for the rest of my life was a much easier task at 22 than it would have been at 17.</p>
<p>The most important thing, however, was what the 3 year delay in going to school taught me indirectly. I worked for a wireless company for almost 3 years before I decided to start taking classes again. In that 3 years I reached about 270 lbs, was completely inactive, smoked over a pack a day, was at a high point of anger and depression, and hated almost every second of my life. Looking back, I am very grateful for being able to experience what it is like to work for a good company with good pay and good benefits doing something a compuer program could do for 40 hours a week. I felt like a nothing and a nobody for 8 hours a day for several years and it taught me that I would enver again accept that kind of position in life.</p>
<p>Without this working period, I would never have met the important people that I did, learned incredibly important life lessons, and built the confidence and ability that I have today. I would have entered with world with a PhD, some incredible experiences, but, quite possibly, very little respect for what else is out there.</p>
<h2>There is no &#8220;behind&#8221;</h2>
<p>The idea that someone can be behind in life is something that I&#8217;ve wanted to come completely to terms with but have a long way to go. I&#8217;m able to dismiss it slightly by realizing that this is primarily an American construct. Thinking that there is a goal to life or being worried about what you&#8217;ve accumulated or how much education you have or how far along you are (or are not) with your mortgage is something that we&#8217;re indirectly trained to believe in this country. People make job decisions based solely on how much they&#8217;re making with no consideration to what they are doing or who they might be harming&#8230; but I digress.</p>
<p>I don&#8217;t have a mortgage, I don&#8217;t have a degree (yet), I don&#8217;t have a family of my own, I don&#8217;t have a wife, I don&#8217;t have any of that. As such, at 29, I am, in an American scale, behind&#8230; quite behind, actually.</p>
<p>I also don&#8217;t have a divorce, I don&#8217;t have a degree I&#8217;m not using, I don&#8217;t have credit card debt, I didn&#8217;t lost a lot of money when the economy crashed, I&#8217;m not drowning in student loans, I&#8217;m not upside-down on a car.</p>
<p>What do I have now? I have an amazing woman in my life (that, ironically, I met when I went to community college&#8230; had I accepted my position to the UW when it was granted, we might have actually had a class together many years before we actually met), I have a great relationship with everyone in my family, I have close, close friends in several different states, I have a network of professors I can contact and learn from, I have a great GPA, I have 2 jobs, both of which are fairly stable, I am humble and respectful and can appreciate anyone&#8217;s lot in life, and I&#8217;m grateful for all of that.</p>
<p>Am I behind? Yup. Am I ahead? Yup. Is anyone keeping score? Only me if I decide to.</p>
<h2>Thinking about going back to school in your 20s? 30s? 40s?</h2>
<p>The easy answer would be &#8220;yes, do it! Do it for you and me and them! Go back! Always&#8221; but I&#8217;m not going to say that because I&#8217;ve also learned that college just isn&#8217;t for anyone. Here&#8217;s what I think:</p>
<ul>
<li>If you go back, do it for something that excites you. I would have never stuck with this degree if I didn&#8217;t like the subject. As you get older, your time, especailly your time off, becomes increasingly valuable. If you&#8217;re going to classes that aren&#8217;t interesting, skipping time with your family and friends to study, and generally &#8220;losing life&#8221; (that&#8217;s what it feels like sometimes) to your degree, the least you can do is study something that you find interesting.</li>
<li>Don&#8217;t go back without calculating the opportunity cost along with the actual cost. Here&#8217;s how&#8230;
<ul>
<li>Calculate the amount that the schooling will actually cost (tuition, books, supplies).</li>
<li>Calculate how much you&#8217;ll be making while in school (if anything) and multiply it by the time you&#8217;ll be in school (so if you can make $15,000/year in a part-time job and the school takes, say, 4 years, you&#8217;ll make $60,000 total during that time).</li>
<li>Now calculate how much you would be making if you WEREN&#8217;T in school (if you could make $40,000 per year average for those 4 years then you&#8217;re at $160,000 for four years).</li>
<li>Take what you will make during that time away from what you would make and add that to the actual cost to get your absolute cost ($160,000 - $60,000 + $20,000 = $120,000)</li>
<li>Now figure out how much you&#8217;re gaining after you get the degree (<a href="http://www.usnews.com/articles/education/2008/10/30/how-much-is-that-college-degree-really-worth.html">it&#8217;s been found</a> that college graduates make about $20K more per year than those without&#8230; so it will take you 6 years to make that $120K back).</li>
</ul>
</li>
<li>Nothing can make you feel older than hanging out with people 10 years younger than you are. Still, you have the advantage. You want this degree ten times more than most of the people around you. You&#8217;re also more likely to get more sleep, take better care of yourself, try harder, and do better. Attend a few study groups, gab about teenage drama, tell them about your wife or kids or mortgage&#8230; get in there and get the experience. I&#8217;ve learned a lot about myself through the young&#8217;uns I go to class with.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/439254634" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/uncategorized/how-to-be-an-older-undergraduate-or-how-i-learned-to-accept-what-ive-been-given/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/uncategorized/how-to-be-an-older-undergraduate-or-how-i-learned-to-accept-what-ive-been-given/</feedburner:origLink></item>
		<item>
		<title>A beautiful day, a piece of pressboard, some Montana Gold, and an illustration</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/433893801/</link>
		<comments>http://www.joshcanhelp.com/typography/a-beautiful-day-a-piece-of-pressboard-some-montana-gold-and-an-illustration/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 19:06:01 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[Typography]]></category>

		<category><![CDATA[one art]]></category>

		<category><![CDATA[AASD]]></category>

		<category><![CDATA[aerosol art]]></category>

		<category><![CDATA[art academy]]></category>

		<category><![CDATA[graffiti]]></category>

		<category><![CDATA[Montana Gold]]></category>

		<category><![CDATA[pose2]]></category>

		<category><![CDATA[San Diego]]></category>

		<category><![CDATA[spray paint]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=362</guid>
		<description><![CDATA[I finally got around to throwing up some paint with my man Pose2 and his graffiti class. It had been a while (couple months) since I last held a can and, because the last go-around was so disappointing, I was afraid it might happen again.
I&#8217;m never COMPLETELY satisfied with the outcome but I&#8217;m definitely internalizing [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got around to throwing up some paint with my man <a href="http://posetwo.com/igetaround">Pose2</a> and his graffiti class. It had been a while (couple months) since I last held a can and, because the last go-around was so disappointing, I was afraid it might happen again.</p>
<p>I&#8217;m never COMPLETELY satisfied with the outcome but I&#8217;m definitely internalizing the idea of taking my time, moving deliberately, and taking the artwork line by line. It&#8217;s very easy, with spray paint, to rush through things and end up with a sloppy, ugly piece. The timing and movement is critical to (a) avoid drips and (b) ensure line consistency. I find spray paint to be a frustrating but eye-opening medium to work with. You HAVE to allow for a certain level of messiness but you&#8217;re also aware that you can be very neat if you have the skills and patience.</p>
<p>Personally, I find more &#8220;zen&#8221; and enjoyment in the drawing. It&#8217;s interesting to me to have constraints (like letters) but be free to express them however I wish. I do much better with a pencil and pen than I do with a can of spray paint. To be honest, each time I finish a piece, I&#8217;m ready to give up on the aerosol portion of the artwork. Still, I keep coming back and, typically, I&#8217;m glad I did.</p>
<p>These pictures were taken by a professional photographer who showed up to snap a few. You can find her work at <a href="http://www.creativeshake.com/karin" target="_blank">www.creativeshake.com/karin</a>. She showed Pose and I some of her other work on her iPhone (great way to carry around a portfolio) and we were blown away. She&#8217;s got a very broad talent and her composition was just fanstastic. She really knows the angles! Thanks for the copies, Karin.</p>
<p><a href="http://www.flickr.com/photos/joshcanhelp/2979173204/" title="02joshcanhelp by joshcanhelp, on Flickr"><img src="http://farm4.static.flickr.com/3203/2979173204_60226ab16a_o.jpg" width="499" height="334" alt="02joshcanhelp" /></a></p>
<p><a href="http://www.flickr.com/photos/joshcanhelp/2979173150/" title="03joshcanhelp by joshcanhelp, on Flickr"><img src="http://farm4.static.flickr.com/3139/2979173150_2c7ed29448_o.jpg" width="499" height="334" alt="03joshcanhelp" /></a></p>
<p><a href="http://www.flickr.com/photos/joshcanhelp/2978316165/" title="01joshcanhelp by joshcanhelp, on Flickr"><img src="http://farm4.static.flickr.com/3041/2978316165_d0e0def297_o.jpg" width="499" height="334" alt="01joshcanhelp" /></a></p>
<p>The rest are off of my phone so pardon the quality (or complete lack thereof).</p>
<p><a href="http://www.flickr.com/photos/joshcanhelp/2979219234/" title="IMAGE_191 by joshcanhelp, on Flickr"><img src="http://farm4.static.flickr.com/3199/2979219234_937b737ffe.jpg" width="500" height="375" alt="IMAGE_191" /></a></p>
<p><a href="http://www.flickr.com/photos/joshcanhelp/2979219064/" title="IMAGE_189 by joshcanhelp, on Flickr"><img src="http://farm4.static.flickr.com/3168/2979219064_f2cb501ff2.jpg" width="500" height="375" alt="IMAGE_189" /></a></p>
<p><a href="http://www.flickr.com/photos/joshcanhelp/2979218960/" title="IMAGE_188 by joshcanhelp, on Flickr"><img src="http://farm4.static.flickr.com/3228/2979218960_ccb8f68184.jpg" width="500" height="375" alt="IMAGE_188" /></a></p>
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/433893801" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/typography/a-beautiful-day-a-piece-of-pressboard-some-montana-gold-and-an-illustration/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/typography/a-beautiful-day-a-piece-of-pressboard-some-montana-gold-and-an-illustration/</feedburner:origLink></item>
		<item>
		<title>Good advice to a client about building a blog from the ground up</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/429724009/</link>
		<comments>http://www.joshcanhelp.com/uncategorized/good-advice-to-a-client-about-building-a-blog-from-the-ground-up/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 15:00:39 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[make money online blogging]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[web site]]></category>

		<category><![CDATA[authenticity]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[self-promotion]]></category>

		<category><![CDATA[traffic]]></category>

		<category><![CDATA[web presence]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=356</guid>
		<description><![CDATA[I built a blog a couple weeks ago for a very talented teacher and graffiti artist who stays here in San Diego. We were both excited to create something that could easily hold updates and be a central place for fans and potential clients. It has an urban feeling but is still classy, well-laid-out, and [...]]]></description>
			<content:encoded><![CDATA[<p>I built a blog a couple weeks ago for a very talented teacher and graffiti artist who stays here in San Diego. We were both excited to create something that could easily hold updates and be a central place for fans and potential clients. It has an urban feeling but is still classy, well-laid-out, and very functional.</p>
<p>So, now he&#8217;s got this blog&#8230; how does he build this blog up. The actual question:</p>
<p>ok so my blog is hooked up how do i send it and link it to other peoples sites&#8230; get it out there?</p>
<p>This is a key question, especially for someone who wants to use the internet to gani a bit of exposure. His current web presence is very static and not easy to manuever at all. The blog was my idea and, by the time I had explained it to him, he loved it.</p>
<p>So, here&#8217;s what I told him, appended after the fact with a bit more information.</p>
<p><strong>Spread the word, my friend.</strong></p>
<p><strong>First things first, send an email to every email address you&#8217;ve got. Tell them about it, what it&#8217;s there for, and they they should expect to see. Even better, announce your intentions ON the blog itself as well. </strong></p>
<p>Activate that friend and family network, that is step one. The people close to you and your existing fans want to hear more than anyone else how and what you are doing. The great part about running a blog that is tied into your personal life is that the news of your life can be slightly re-purposed and presented publicly. I like to use this site as somewhere I can announce what I&#8217;ve got going on and really analyze them completely. For me, writing about something either gels it in my head or it removes it completely. Sometimes I&#8217;ve got too much to say about something and can&#8217;t stop typing - these topics are ones I explore further and continually write about. Then, sometimes I think I&#8217;ve got something to say and I can&#8217;t write anything - these topics are ones I can forget about.</p>
<p>I&#8217;m digressing a bit (surprise, surprise) but the first thing to do is to send an email to every email address you have in your mail programs (that you can match up with a name). Here are a few resources to export your contacts:</p>
<ul>
<li><a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=24911">Export contacts from GMail</a></li>
<li><a href="http://email.about.com/od/hotmailtips/qt/et_export_addr.htm">Export contacts from Hotmail</a></li>
<li><a href="http://help.yahoo.com/l/us/yahoo/mail/yahoomail/manage/manage-10.html">Export contacts from Yahoo</a></li>
</ul>
<p><strong>When you write, make sure to use the words you expect people to use when they search for what you do. Think of what words people might be using to find people who do what you do, feel me? For example, you teach graffiti techniques so think of the phrases people might be using to find that (&#8221;graffiti class&#8221; &#8220;graffiti classes San Diego&#8221; &#8220;can control&#8221; &#8220;how to write graffiti&#8221;). Be descriptive in your title and in heading text. Let me know if I lost you on that. </strong></p>
<p>This is speaking to keyword research. I&#8217;m planning a few articles on how I do keyword research in the near future so I&#8217;m not going to go into depth but the KEY is this: you want to use words that people will use to search for what you have. This is confusing at first but pay attention and you&#8217;ll get it.</p>
<p>You probably use a specific set of words to describe what you do for people (in terms of your product, your service, your art, your instruction, etc). You use words that make sense to you and that paint an accurate picture of what you do. Now, imagine someone with whom you had coffee and to whom you explained your whole shebang needed to explain your shebang to someone else. Now, what if that next person needed to do the same. If you got two or three (maybe even the first one too) away from the original conversation, the words being used to describe what you do are not the words that YOU used originally. This is the first step towards understanding how to pick keywords.</p>
<p>So, for example, I might describe myself as a technology generalist, a tamer of technology, or a tech strategist, there are very few (read: no) people searching for this on the internet (yet). For my keywords, I need to pick things that people will search for to find me. These might be &#8220;build a web presence&#8221; or &#8220;design a personal web page&#8221; or &#8220;company email marketing.&#8221; I need to find words that people use to find the services that I&#8217;m offering.</p>
<p><strong>Next, you&#8217;re going to want to try and find people who are doing similar or related things on the web and participate in what they&#8217;ve got going on. Go here <a href="http://blogsearch.google.com/" target="_blank">http://blogsearch.google.com</a> and start plugging in words that pertain to what you do. Do the same in regular Google. Start commenting on blogs, posting in forums, and connecting online. Also, sign up for Facebook if you haven&#8217;t already.</strong></p>
<p>I&#8217;m talking about blatant and targeted self-promotion. Ready to virtually network?</p>
<p>I&#8217;ll say this: there are a million ways to go about this but, from personal experience, there is nothing more boring, unsatisfying, and time-wasting then spending several hours a day promoting yourself to people you don&#8217;t know. It&#8217;s boring because it&#8217;s repetitive, it&#8217;s unsatisfying because there&#8217;s a million other schmucks doing the same thing, and it&#8217;s time-wasting because it takes your attention away from the important things in life: relationship and creation.</p>
<p>I use Twitter (now) because I find a lot of great links, get some helpful information, and really enjoy the format and portability (I can add widgets to several other websites). I use Facebook because I have a lot of friends on there, it keeps me in touch with school people, and it makes me feel closer to home. I use LinkedIn because I see a lot of potential and meet some interesting people on there. I also use these tools to gently promote what I&#8217;m doing but that&#8217;s NOT the major reason I&#8217;m on any of those sites.</p>
<p>Read and comment on blogs because you like what someone had to say or this is a person you&#8217;d like to meet locally. I tried the &#8220;blatant self-promotion&#8221; half-heartedly for a month and found myself feeling like a blithering douche. This is why I don&#8217;t do &#8220;networking events&#8221; or anything like that. I like to talk to people that I respect, are interested in, or just like for no good reason. It&#8217;s very difficult for me (thought possible) to socialize with people simply to build the number of connections I have. I know this might be a great way to make sales or climb the ladder but it&#8217;s not interesting.</p>
<p><strong>To be seen and heard online, you don&#8217;t need to trick people, you need to offer information and content that is unique, interesting, and useful. If you feel like it, just start writing about art, making art, what the experience means to you, what you learned the other day. You don&#8217;t need to write a diary but put words down that you would be likely to say to aspiring artists. Your blog will start doing its job if you&#8217;re making it important to you and start thinking &#8220;hmmm, that should go on my blog.&#8221; What starts out as somewhat of a chore eventually becomes an important piece of your day-to-day.</strong></p>
<p>This is the kind of self-promotion that I do.</p>
<p>I&#8217;m not looking to trick someone into clicking on a link and reading my blog just so my Google stats look better. I&#8217;m also not interested in writing for a bigger audience about shit I don&#8217;t care about. I didn&#8217;t feel exactly like this a year ago but it&#8217;s what I&#8217;ve settled into. I&#8217;ll play the SEO game a bit, I&#8217;ll optimise my blog as much as possible, and I&#8217;ll spend time picking out keywords but, in terms of actual content, I&#8217;m going to write what I want to write&#8230; it&#8217;s the only way it gets done.</p>
<p>I used to write a blog about sustainable transportation. I followed the news religiously, went to events, and revelled in my own green lifestyle. It was fun, I got a few clicks, and made a few e-friends. But, after some time, it wasn&#8217;t much fun for me to stay on top of things. I enjoyed reading about it more than I did writing about it. Also, there were other much bigger, much more powerful blogs doing what I did only better. I became a aggregator for some of their content with a bit of commentary on top.</p>
<p>Now, I write about my career, what I&#8217;m learning, what I&#8217;m doing, and how this can help other people. I&#8217;m building this up slowly and still struggling to find my voice. However, like when I started the other blog, the words are just pouring out of me. I don&#8217;t have to sit in front of a monitor and STRUGGLE to find the words to say. I write about the web and science and tech and what I&#8217;m doing and it just feels natural.</p>
<p>Blogging, now, is a release for me rather than a chore. This is the only way to keep a blog going. It might even be a good thing not to monitor your audience (if you&#8217;re not interested in making money from advertisements). It&#8217;s like dieting without a scale: the depression of not losing weight can easily outweigh (har har) the elation of losing a couple pounds.</p>
<p>So, that&#8217;s my honest take on starting a blog from scratch. Do it because you like it and don&#8217;t assume you don&#8217;t like it because you have no idea what you&#8217;re doing. Really put yourself into it, find your voice, and screw what others are doing. Then, make sure the most amount of people know about what you&#8217;re doing in ways that are sustainable for your life.</p>
<p>Good luck! Come find me on Facebook or Twitter if you want to chat some more</p>
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/429724009" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/uncategorized/good-advice-to-a-client-about-building-a-blog-from-the-ground-up/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/uncategorized/good-advice-to-a-client-about-building-a-blog-from-the-ground-up/</feedburner:origLink></item>
		<item>
		<title>Pose2 speaks about graffiti, art, his process, and his future</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/428636482/</link>
		<comments>http://www.joshcanhelp.com/one-art/pose2-speaks-about-graffiti-art-his-process-and-his-future/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 15:00:28 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[dreams]]></category>

		<category><![CDATA[one art]]></category>

		<category><![CDATA[5th door]]></category>

		<category><![CDATA[art]]></category>

		<category><![CDATA[graffiti]]></category>

		<category><![CDATA[pose2]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[vimeo]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=359</guid>
		<description><![CDATA[Pose2 interview - 5th Door from Josh Cunningham on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1872890&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=1872890&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><br /><a href="http://vimeo.com/1872890?pg=embed&amp;sec=1872890">Pose2 interview - 5th Door</a> from <a href="http://vimeo.com/user803970?pg=embed&amp;sec=1872890">Josh Cunningham</a> on <a href="http://vimeo.com?pg=embed&amp;sec=1872890">Vimeo</a>.</p>
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/428636482" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/one-art/pose2-speaks-about-graffiti-art-his-process-and-his-future/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/one-art/pose2-speaks-about-graffiti-art-his-process-and-his-future/</feedburner:origLink></item>
		<item>
		<title>What to do with great ideas (part 1)</title>
		<link>http://feeds.feedburner.com/~r/CanJoshHelp/~3/428354051/</link>
		<comments>http://www.joshcanhelp.com/design-layouts/what-to-do-with-great-ideas-part-1/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 15:00:22 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
		
		<category><![CDATA[business how to start]]></category>

		<category><![CDATA[design layouts]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[web site]]></category>

		<category><![CDATA[collaboration]]></category>

		<category><![CDATA[fruition]]></category>

		<category><![CDATA[Google Docs]]></category>

		<category><![CDATA[great idea]]></category>

		<category><![CDATA[idea]]></category>

		<guid isPermaLink="false">http://www.joshcanhelp.com/?p=351</guid>
		<description><![CDATA[I read somewhere that the worst thing that could happen to someone, especially someone with any kind of entrepreneurial spirit, is a great idea. Great ideas suck the life out of you, turn you into an obsessed lunatic, and can leave you with an empty home and an empty bank account.
After this last 2 weeks, [...]]]></description>
			<content:encoded><![CDATA[<p>I read somewhere that the worst thing that could happen to someone, especially someone with any kind of entrepreneurial spirit, is a great idea. Great ideas suck the life out of you, turn you into an obsessed lunatic, and can leave you with an empty home and an empty bank account.</p>
<p>After this last 2 weeks, I totally understand what that means.</p>
<p>See, I had a great idea at the end of last month. It started out as a cool idea (which is far less dangerous) but after talking with someone else about it, it turned into a really good idea. Now, after several brainstorming sessions, it&#8217;s become a GREAT idea and there&#8217;s no turning back.</p>
<p>I wanted to write about this great idea not to actually introduce the idea (because that would be silly at this point) but to chronicle what&#8217;s going on and what I&#8217;m doing about it. I look forward to more of these great ideas in the future and I hope to learn from my mistakes as well as my good moves. Also, if you have a GREAT idea and don&#8217;t know where to start, maybe this will help.</p>
<h2><img class="alignleft" src="http://www.joshcanhelp.com/images/blog/Public-128x128.png" alt="" width="128" height="128" />First, find someone.</h2>
<p>Find someone and find them quickly, especially if you have sense that your idea is a really good one. Find someone you trust and find someone that knows what they&#8217;re talking about with respect to your idea. If you have a software idea, talking to an English major might not be too helpful, especially as you&#8217;re trying to put the different pieces together.</p>
<p>Also, make sure this is someone you can trust. The chances that your idea would be stolen and implemented without credit to you is pretty low but the closer to zero the better.</p>
<p>So, step one, go talk to someone you trust, someone that knows what they&#8217;re talking about, and someone that might want to help. It might be hard to find the right person but this is a critical step. Here&#8217;s a few hints:</p>
<ul>
<li>How did you figure this idea out? Is there someone you work with that could help you? Be very careful about the fine line between proprietary information from the company and your own idea. The closer tied to the company you work for, the easier it might be to get sued.</li>
<li>Are you in school? Professors are great resources for things like this. They like to help students (most of them) and it&#8217;s unlikely they would be motivated to steal your stuff.</li>
<li>In my opinion, finding someone you trust is the most important thing. If you don&#8217;t have anyone that really knows what you&#8217;re doing, at least find someone with half-a-brain that you can trust.</li>
</ul>
<p>Talk to this person you find, blab the whole idea, and then get their honest feedback.</p>
<h2><img class="alignleft" title="Quick scribble of website layout" src="http://www.joshcanhelp.com/images/blog/drawing.jpg" alt="" width="281" height="273" />Second, get it down on PAPER.</h2>
<p>Literally on paper. Paper and pen is underrated these days (ever thought that would be said). Write furiously, draw sketches of what it looks like, take notes, just get it all down. Get the idea as it is and get the idea of what it could be. Write down everything you want it to do/be and everything it could do/be. Get everything down, the bad, the good, the ridiculous, the impossible, put it all down. Do this with the person from above if they want to be involved or by yourself if not. Keep taking notes for a few days, mull it over, let it sink in.</p>
<p>The other thing to say about this step is that you might find yourself with an incomplete plan and a sudden urge not to chase after this idea. You also might get so caught up in planning this thing out that you never end up doing it. Be very &#8220;present-minded&#8221; as you&#8217;re planning out your idea so you don&#8217;t miss any internal red flags and yuo&#8217;re sure you want to commit a piece of your life to this project.</p>
<p>There&#8217;s no substitute for a good plan that outlines everything you could expect in the beginning but don&#8217;t wear yourself out planning absolutely every single move you are going to make.</p>
<h2><img class="alignleft" src="http://www.joshcanhelp.com/images/blog/goog_doc_logo.jpg" alt="" width="158" height="59" />Third, get it down on computer.</h2>
<p>Now it&#8217;s time to boil that plan down a bit. Type your notes up and start mocking things up that need pictures. Here&#8217;s a few tips:</p>
<ul>
<li>When you transfer into a computer, write it in the most functional way you can. If your idea is a new business, format it like a business plan. This won&#8217;t be your final copy but the closer to the final copy you can be thinking, the less work later.</li>
<li>If you&#8217;re working with 2 or more people on this, use something like Zoho or Google Docs so everyone can share. There&#8217;s no reason to be emailing master documents between people and risk losing changes. Just put it on line and relieve some stress.</li>
<li>Remember to always be painting a picture. If you can use Photoshop, make realistic models of the interface you want to design or the web page you want to build. Make a video, draw something on paper and scan it into your computer, take a screenshot of a similar site and change it around in a Paint program. You&#8217;re going to need to explain things to people eventually (or right away) and if you can show them a little piece of the reality you&#8217;re creating, you&#8217;ll go a long way towards selling them on the concept.</li>
</ul>
<h2><img class="alignleft" title="Money sign with a question mark superimposed" src="http://www.joshcanhelp.com/images/blog/what_money.jpg" alt="" width="133" height="215" />Fourth, think long and hard about the money, the time, and the marketing.</h2>
<p>Listen, I haven&#8217;t been neck deep in business forever but if there&#8217;s one thing that I know it&#8217;s that this is where things quickly break down. If you&#8217;re taking out loans for this great idea, you better have a solid plan on how you&#8217;re going to pay them back. If you&#8217;re using your down payment money for your house, make sure you have things in place to pay yourself back.</p>
<p>Also, consider how much time you really have to put towards this project. If you off-the-cuff assume that you&#8217;ll do all the HTML or writing or layout work but you have a full-time job and a family, think again. Time doesn&#8217;t just come from nowhere and you may have to resort to paying people to accelerate the process. Figure in extra money for staff, for incidentals, and for yourself.</p>
<p>Finally, and this might be the hardest, come up with a plan for how you&#8217;re going to get the word out there. Great products, great websites, and great blogs don&#8217;t just appear and suddenly become popular. Even if you&#8217;re offering the most amazing thing in the world, you&#8217;re still going to need to get the word out there.</p>
<p>Come up with an idea of how many people you need to reach and then figure out how you&#8217;re going to talk to those people. You can&#8217;t just say &#8220;email marketing&#8221; if you don&#8217;t have already have a list of people that want to hear from you (unless you&#8217;re a spammer). Your marketing plan won&#8217;t go anywhere if the only thing written down is &#8220;website.&#8221; How will people find your website?</p>
<h3>Good luck with your great ideas!</h3>
<img src="http://feeds.feedburner.com/~r/CanJoshHelp/~4/428354051" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.joshcanhelp.com/design-layouts/what-to-do-with-great-ideas-part-1/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.joshcanhelp.com/design-layouts/what-to-do-with-great-ideas-part-1/</feedburner:origLink></item>
	</channel>
</rss>
