<?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>Brennan McEachran . com &#187; Tutorial</title>
	<atom:link href="http://www.brennanmceachran.com/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brennanmceachran.com</link>
	<description>A site for the one and only brennan</description>
	<lastBuildDate>Sun, 06 Jun 2010 20:36:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>How I change the BG Color?</title>
		<link>http://www.brennanmceachran.com/2010/02/how-i-change-the-bg-color/</link>
		<comments>http://www.brennanmceachran.com/2010/02/how-i-change-the-bg-color/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 22:40:44 +0000</pubDate>
		<dc:creator>brennan</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[colour]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[to]]></category>

		<guid isPermaLink="false">http://www.brennanmceachran.com/?p=769</guid>
		<description><![CDATA[Some people have asked how I change the background colour on my websites&#8230; Well there are two ways. I uses Dynamic linking to separate style-sheets here, on brennanmceachran.com, and on every other site I just use javascript. Below are the codes In PHP: $d=date(&#8220;D&#8221;); if ($d==&#8221;Mon&#8221;){ ?&#62; &#60;link href=&#8221;UrlToStyleSheet&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; /&#62; &#60;?php } ?&#62; Pretty self explainatory&#8230; Set [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Some people have asked how I change the background colour on my websites&#8230; Well there are two ways. I uses Dynamic linking to separate style-sheets here, on brennanmceachran.com, and on every other site I just use javascript. Below are the codes<br />
<span id="more-769"></span></p>
<h2>In PHP:</h2>
<div id="_mcePaste" style="padding-left: 30px;">$d=date(&#8220;D&#8221;);</div>
<div style="padding-left: 30px;">if ($d==&#8221;Mon&#8221;){ ?&gt;</div>
<div style="padding-left: 60px;">&lt;link href=&#8221;UrlToStyleSheet&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; /&gt;</div>
<div style="padding-left: 30px;">&lt;?php } ?&gt;</div>
<div>Pretty self explainatory&#8230; Set variable $d to the day of the week. and if that&#8217;s a Monday it links the Monday style sheet up. You can do this for all dates if you want. Read<a href="http://php.net/manual/en/function.date.php"> here</a> if you want to explore more options of the PHP Date Function</div>
<h2>In Javascript:</h2>
<div style="padding-left: 30px;">var random = Math.random();<br />
var colors = 8;<br />
var  randomcolor= Math.round(random * (colors-1)) + 1;bgs = new Array<br />
bgs[1] = &#8220;3333cc&#8221; //blue<br />
bgs[2] = &#8220;9933cc&#8221; //purple<br />
bgs[3] = &#8220;cc3333&#8243; //red<br />
bgs[4] = &#8220;33cc33&#8243; //green<br />
bgs[5] = &#8220;99cc33&#8243; //lime green<br />
bgs[6] = &#8220;cccc33&#8243; //yellow<br />
bgs[7] = &#8220;cc9933&#8243; //orange<br />
bgs[8] = &#8220;cc6633&#8243; //orange-red<br />
var bg = bgs[randomcolor];<br />
document.write(&#8216;&lt;body bgcolor=&#8221;#&#8217; + bg + &#8216;&#8221;&gt;&#8217;)</div>
<p>Here&#8217;s how I do it with javascript. There are more ways of doing something like this&#8230; but I like to change up the colors all the time and this way allows me to quickly do so.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.brennanmceachran.com/2010/02/how-i-change-the-bg-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android with no Soft Keyboard?</title>
		<link>http://www.brennanmceachran.com/2009/06/android-with-no-softkeyboard/</link>
		<comments>http://www.brennanmceachran.com/2009/06/android-with-no-softkeyboard/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 04:10:25 +0000</pubDate>
		<dc:creator>brennan</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[HTC Dream]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[Rogers]]></category>
		<category><![CDATA[soft]]></category>
		<category><![CDATA[virtual]]></category>

		<guid isPermaLink="false">http://brennanmceachran.com/?p=411</guid>
		<description><![CDATA[Then you're probably on Rogers. For some strange reason the HTC Dream doesn't have the soft keyboard... even though it's a 1.5 release of Android.

Strange right? <strong>Yup.</strong>

Problem? <strong>No.</strong>
No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.brennanmceachran.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/411.jpg&amp;w=150&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<h2>Here is how to get the Virtual Keyboard on your Rogers HTC Dream:</h2>
<blockquote><p><strong>UPDATE:</strong> Many people have commented around the web that it&#8217;s easier to just come here on your phone and download it directly. Doing it this way allows you to skip a few steps.</p>
<p>Make sure you allow untrusted sources for app installations (Settings &gt; Applications) then point your phone here: http://tinyurl.com/htc-ime</p>
<p>Download and Install!</p></blockquote>
<ol>
<li>Download &#8220;<strong>Apps Installer</strong>&#8221; from the Marketplace. A simple search will do. (it may have a stange looking name. that&#8217;s the right one)</li>
<li>Next download the <strong>apk </strong>file from <a href="http://brennanmceachran.com/wp-content/uploads/2009/06/htc_ime.apk">here.</a></li>
<li>Put the <strong>apk</strong> package on your phone via the USB cable.</li>
<li>Install the <strong>apk</strong> with <strong>Apps Installer</strong>
<ol>
<li>Unmount your SD card.</li>
<li>Load up <strong>Apps Installer</strong></li>
<li>After finding HTC_IME.apk , long press and choose install.</li>
</ol>
</li>
<li>After installing reboot your Android phone. This step is mostly for safty purposes.</li>
<li>Go to Settings &gt; Locale &amp; Text and you should see Touch Input. Check it.</li>
<li>You may now change the setting and use the virtual keyboard.</li>
<li>Enjoy.</li>
</ol>
<h2>If you want to uninstall the app follow these steps:</h2>
<ol>
<li>Go to: Settings &gt; Applications &gt; Manage Applications</li>
<li>Find Touch Input, click it.</li>
<li>Un install it.</li>
<li>Remove the apk file from the SD drive.</li>
</ol>
<blockquote><p>Incase anyone is wondering&#8230;. This is the apk file I am using for my rogers phone. And it works wonderfully.</p></blockquote>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.brennanmceachran.com/2009/06/android-with-no-softkeyboard/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Public Speaking</title>
		<link>http://www.brennanmceachran.com/2009/05/public-speaking/</link>
		<comments>http://www.brennanmceachran.com/2009/05/public-speaking/#comments</comments>
		<pubDate>Wed, 20 May 2009 02:35:07 +0000</pubDate>
		<dc:creator>brennan</dc:creator>
				<category><![CDATA[Something Original]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[fear]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[nerves]]></category>
		<category><![CDATA[nervous]]></category>
		<category><![CDATA[public]]></category>
		<category><![CDATA[speak]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[speech]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[to]]></category>

		<guid isPermaLink="false">http://brennanmceachran.com/?p=185</guid>
		<description><![CDATA[I&#8217;ve done a fair share of public speaking. I mean, I&#8217;m no expert&#8230; but something tells me the public speaking experts aren&#8217;t really experts at all. Seeing as Public speaking in one of the most feared things in the world, I figured I&#8217;d attempt to help some people with it. First off, If you&#8217;re scared [...]
Related posts:<ol>
<li><a href='http://www.brennanmceachran.com/2009/06/speech-writing/' rel='bookmark' title='Speech Writing'>Speech Writing</a></li>
<li><a href='http://www.brennanmceachran.com/2009/05/public-transit/' rel='bookmark' title='Public Transit'>Public Transit</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-213" title="public-speaking" src="http://brennanmceachran.com/wp-content/uploads/2009/05/public-speaking.png" alt="public-speaking" width="640" height="309" /></p>
<p>I&#8217;ve done a fair share of public speaking. I mean, I&#8217;m no expert&#8230; but something tells me the public speaking experts aren&#8217;t really experts at all. Seeing as Public speaking in one of the most feared things in the world, I figured I&#8217;d attempt to help some people with it.</p>
<p>First off, If you&#8217;re scared of standing in front of a large crowd of people and speaking, you&#8217;re normal. If you aren&#8217;t, you&#8217;re not normal. It&#8217;s that simple. The fear or stress you get <strong>WILL NOT</strong> go away. Some people will say that with time, you&#8217;ll become less nervous, or less anxious. That&#8217;s not really true. I mean, remember when you liked some girl(or guy) and you wanted to ask her out. You were pretty nervous&#8230; the more people you ask out isn&#8217;t going to make you less nervous when asking this particular girl out. What it may do is better prepare you for the unknown.</p>
<p>What is the unknown in public speaking? Your performance and the audience reaction. Let&#8217;s go over the one you have the most control over first.<span id="more-185"></span></p>
<h1>Your Performance</h1>
<p>What if I screw up? What if I miss a part? What if I say something wrong? The only thing here that&#8217;s going to hurt you is yourself. Let&#8217;s tackle nerves.</p>
<h2><span style="text-decoration: underline;"><span style="text-decoration: none;">Nerves:</span></span></h2>
<ol type="1">
<li><strong><span style="text-decoration: underline;">Prepare. </span></strong>Simply put, the more prepared you are      for a particular speech, the less nervous you&#8217;ll be. Winging a speech may      involve less work, than weeks of preparation&#8230; but i guarantee it&#8217;ll make      you more nervous. However, keep in mind this chart:<img class="alignnone size-full wp-image-214" title="nerves-v-prep" src="http://brennanmceachran.com/wp-content/uploads/2009/05/nerves-v-prep.png" alt="nerves-v-prep" width="640" height="309" /></li>
<li><span style="text-decoration: underline;"><strong>Everyone      has them</strong></span>, and generally feels the same way when they hit the stage. You      have it no harder than the last fellow. You&#8217;re no more special than that      dude.</li>
<li><strong><span style="text-decoration: underline;">Everyone      has their own way of calming themselves</span></strong>. They&#8217;re called <a href="http://www.kevinhogan.com/body-language-people-signs.htm">pacifiers</a>, and      right away you can probably think of how a baby calms down. Adult examples      includes biting nails, biting lips, rubbing your neck, rubbing      your chest, cracking knuckles, etc. How to best handle nerves?
<ol type="a">
<li><span style="text-decoration: underline;"><em>Notice them.</em></span> Find your pacifier. When I am nervous and       stressed I tend to bite my inner lip.</li>
<li><span style="text-decoration: underline;"><em>Assess them.</em></span><span style="text-decoration: underline;"><em> </em></span>Take a step back from your situation and       look at why you are nervous. Find specifics. Are you nervous about       computer technology? Are you nervous about the area you&#8217;ll be talking       from.</li>
<li><span style="text-decoration: underline;"><em>Take initiative, take action.</em></span><span style="text-decoration: underline;"><em> </em></span>You are priority number one! Do not ever feel       like you are being a pain, when you are trying to make things go       painlessly. If you are nervous about the computer tech, go through it       once or twice, get confirmation that it works. Double check. If you don&#8217;t       like the area you&#8217;re talking from, change it. Offer suggestions, be the       squeaky wheel that gets the oil. If the expert disagrees, have them       explain it in detail.</li>
<li><span style="text-decoration: underline;"><em>You should feel calmer.</em></span> But realize that you&#8217;ll still be nervous for       no real reason now. Welcome to humanity&#8230; This you&#8217;ll just have to deal       with.</li>
</ol>
</li>
<li><img class="size-full wp-image-215 alignright" title="super-tip" src="http://brennanmceachran.com/wp-content/uploads/2009/05/super-tip.gif" alt="super-tip" width="135" height="95" /><span style="text-decoration: underline;"><strong>No one      is confident.</strong></span> Remember this always, some people are just better at hiding      nerves. Practice hiding yours and you&#8217;ll have people people say you&#8217;re a      confident person! What suckers right? Wrong. They just don&#8217;t know the      secret to confidence. Don&#8217;t confuse confidence with stupidity though&#8230;      and remember to not ignore your nerves. They are there to tell you      something. Use them as fuel to help you prepare.</li>
<li><strong><span style="text-decoration: underline;">Accept      your fate.</span></strong> It&#8217;s a motto that fails miserably in emergency situations, but      a general hopeless feeling in high stress situations is known to give      people a rush of natural chemicals that can help you cope with the evident      future. Instead of churning over your notes, sit back and clear your head.      Spa style. You&#8217;re prepared as you&#8217;re going to be, 10 minutes of high      intensity reviewing will most likely make you more upset.</li>
</ol>
<h2><span style="text-decoration: underline;"><span style="text-decoration: none;">Your Performance:</span></span></h2>
<p style="padding-left: 30px;">1.    <span style="text-decoration: underline;"><strong>First and most importantly, know your stuff.</strong></span> If you&#8217;re making a technical speech, know what you&#8217;re talking about. If it&#8217;s a heartfelt speech, know your own emotions. I&#8217;ll write another post about speech writing soon&#8230;</p>
<p style="padding-left: 30px;">2.    <span style="text-decoration: underline;"><strong>Sound like you know your stuff.</strong></span> If I presented a speech to a bunch of people about Quantum Physics I would sound quite different than if I talked about how I made this site. There are several things that I notice between an expert speaker and a speaker. (notice an expert speaker and not just an expert&#8230; this is how con-men work)</p>
<p style="padding-left: 60px;">a.    <img class="alignright size-full wp-image-215" title="super-tip" src="http://brennanmceachran.com/wp-content/uploads/2009/05/super-tip.gif" alt="super-tip" width="135" height="95" /><span style="text-decoration: underline;"><em>Uhms and Ahhs.</em></span><strong> </strong>Possibly the biggest giveaway of a poor speaker. People spend hundreds of dollars in training to get rid of this simple flaw. When people are having a conversation, there is a queue that is created. The person speaking has the floor, while the others wait their turn. Once the speaker shuts up, the next person is able to voice their opinion. In the informal rules of conversation no one is there to designate when someone has stopped talking. So people tend to go when they get the chance. I think this is where we&#8217;ve developed our uhm and ahh tendency. It&#8217;s our way of holding our spot as speaker while we gather our thoughts. Since you are the only speaker there is no need for any uhms and ahhs. That being said, it is almost guaranteed you&#8217;ll say them. <strong>DON&#8217;T!</strong> They make you sound unsure, and unconfident. <strong>The best thing to do is to replace them with silence</strong>. Believe me this will be the hardest thing to do. It will sound really awkward to you, but to everyone else it will sound like a pause, or a period of time to let your points sink into the audience. Meanwhile you can catch up with yourself and move on to your next point. Please erase them. And the best way to do that is to be conscious of them every time you say it. <strong>Make them become a pet peeve.</strong></p>
<p><strong></strong></p>
<p style="padding-left: 60px;">b.    <em><span style="text-decoration: underline;">Speaking Speed.</span></em><strong> </strong>There is a golden pace of speech when it comes to speaking. To slow and you sound like a big dumb construction worker, too fast and you sound like a bumbling nerd. Slightly slower than conversational speed is best. Remember that some people may have a hard time hearing you. Remember you can change the speed of your words. For parts that are important, slow it down. For parts more common knowledge, speed it up. Keep this in mind. Generally the faster people talk about a particular topic, the more they know it. To make it seem like you know something better than you do, talk slightly faster. However watch out&#8230; if you know your speech like the back of your hand, you may blaze through it. <strong>Slower is generally better</strong><strong></strong></p>
<p style="padding-left: 30px;">3.    <strong><span style="text-decoration: underline;">Look like you know your stuff.</span></strong> Dress appropriately. Stand with good posture, and eliminate unneeded movement. That last part may be taken wrong&#8230; you can move, but do so purposely. You can pace from one side to the other to address the audience, but pacing in general isn&#8217;t a great thing. Repeated unneeded movement makes you look awkward and nervous. Constantly shifting your weight or brushing your hair out of your face is distracting. Please don&#8217;t do it. There are some thing we do out of habit, like the uhms and ahs. Everyone is slightly different&#8230; so find what you do when speaking and don&#8217;t do it. You may think it&#8217;s no big deal, and you&#8217;re right, it may not be, but imagine the president or first lady doing the same thing. You should find it hard to imagine, and if you can&#8230; you might find it funny to see. That&#8217;s because it looks far better NOT to. As a side note to this part&#8230; by all means talk with your hands.</p>
<p style="padding-left: 30px;">4.    <span style="text-decoration: underline;"><strong>Address the audience.</strong></span> Look up and out <strong>AT THE PEOPLE</strong>. I&#8217;ve seen people who just gaze out while the talk and perform a sweeping motion like a gun turret on auto. Find some sections of people and talk to those people. Respond to their responses. You&#8217;re in a conversation with them&#8230; so if they nod, or smile or react in some way, you&#8217;re good, now move to the next section. Please don&#8217;t look at your speech/feet.</p>
<h1>Audience Reaction<a href="http://www.gov.bc.ca/premier/media_gallery/downloads/2002/sep/premier_crowd_ubcm_f.jpg"><img class="alignright" style="margin: 5px;" title="Premier Campbell receives a standing ovation from delegates at the annual conference of the Unions of B.C. Municipalities in Whistler." src="http://www.gov.bc.ca/premier/media_gallery/downloads/2002/sep/premier_crowd_ubcm_f.jpg" alt="" width="210" height="151" /></a></h1>
<p>This is something you really can&#8217;t control. But you can tailor the speech for them.</p>
<p style="padding-left: 30px;">1.   <strong><span style="text-decoration: underline;"> First know your audience. </span></strong>I wouldn&#8217;t rant about the harmonization of provincial and federal taxes to grade eights, because they won&#8217;t care. And even if they&#8217;re listening&#8230; they&#8217;re just being polite. I could however, talk to them about Miley Cyrus and all the ears would be pointed my way. The easiest thing to do is to tell them what they want to hear. Look at politicians as an example. They constantly get caught in a web of their own lies because it&#8217;s easier to tell people what they want to hear.</p>
<p style="padding-left: 30px;">2.    <strong><span style="text-decoration: underline;">Break what the audience wants</span></strong><strong><span style="text-decoration: underline;">/what you want to tell the audience into two or three things.</span></strong> If I was writing a graduation speech I would break it down into the fun they&#8217;ve had, the fun they&#8217;re going to have, and potential of their future. There will be people that want it to be funny, there will be people that will want it to be serious, and there are people who want it to be reflective and sad. Who do you please? That&#8217;s up to you, but remember audience reaction will depend on it. Can you please everyone? Maybe! You can try. It&#8217;s best to please the majorities and you should be fine.</p>
<p style="padding-left: 30px;">3.    <strong><span style="text-decoration: underline;">Get the reaction you want. </span></strong>I&#8217;ve used the word &#8220;please&#8221; because most people are scared someone won&#8217;t like their speech. But I want you to use that as a place holder for the emotion you want to place on the audience. If you want to provoke thought, or encourage change, you probably won&#8217;t be pleasing anyone. But if that&#8217;s the goal of your speech then you&#8217;re doing the right thing.</p>
<h1>Conclusion</h1>
<p>It&#8217;s like asking that girl on a date. The best thing for you to do is focus on the things you can control. Like are you groomed? or Do you smell nice? Then close your eyes and hope for the best. You&#8217;ve done all that you can do so there&#8217;s no point in worrying now. Can you help yourself out further? Sure! If the girl likes a particular movie, then you can ask her on a date to that movie, or tickets to her favourite band. It depends if you want to get that yes reaction or not.</p>
<p><img class="alignright size-full wp-image-216" title="done" src="http://brennanmceachran.com/wp-content/uploads/2009/05/done.gif" alt="done" width="111" height="133" />Lastly, remember Public Speaking isn&#8217;t an exact science, and if it was I wouldn&#8217;t be that particular scientist. If something works for you use it, if it doesn&#8217;t don&#8217;t use it. If you have a tip or disagree with something here, send me an email or post in the comments and I&#8217;ll add to it.</p>
<p>If you need help with your speech writing, stay tuned for my article on writing speeches.</p>
<p>Related posts:<ol>
<li><a href='http://www.brennanmceachran.com/2009/06/speech-writing/' rel='bookmark' title='Speech Writing'>Speech Writing</a></li>
<li><a href='http://www.brennanmceachran.com/2009/05/public-transit/' rel='bookmark' title='Public Transit'>Public Transit</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.brennanmceachran.com/2009/05/public-speaking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running TweetDeck @ startup!</title>
		<link>http://www.brennanmceachran.com/2009/05/running-tweetdeck-startup/</link>
		<comments>http://www.brennanmceachran.com/2009/05/running-tweetdeck-startup/#comments</comments>
		<pubDate>Tue, 12 May 2009 22:03:30 +0000</pubDate>
		<dc:creator>brennan</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[turtorial]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[TweetDeck]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[up]]></category>

		<guid isPermaLink="false">http://brennanmceachran.com/?p=65</guid>
		<description><![CDATA[I use TweetDeck. I think it&#8217;s a great app and it&#8217;s lots of fun. It runs on Adobe&#8217;s AIR platform, and easily let&#8217;s you do all your twittering from yout desktop. TweetDeck is your personal browser for staying in touch with what’s happening now, connecting you with your contacts across Twitter, Facebook and more. TweetDeck [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://www.tweetdeck.com/beta/">TweetDeck</a>. I think it&#8217;s a great app and it&#8217;s lots of fun. It runs on Adobe&#8217;s AIR platform, and easily let&#8217;s you do all your twittering from yout desktop.</p>
<blockquote><p><a href="http://www.tweetdeck.com/beta/"><img class="alignleft" style="margin-right: 5px; margin-left: 5px;" src="http://www.tweetdeck.com/beta/assets/logo.png" alt="TweetDeck logo" width="265" height="62" /></a>TweetDeck is your personal browser for staying in touch with what’s happening now, connecting you with your contacts across Twitter, Facebook and more.</p>
<p>TweetDeck shows you everything you want to see at once, so you can stay organised and up to date.</p></blockquote>
<p>It however seems to lack a load at startup option. Which really stinks for most twitter-heads. No problem. Here is how you add TweetDeck (or any program really) to startup on vista.</p>
<ol>
<li>Find your TweetDeck icon and Copy it. (right click &gt; copy)</li>
<li>Click the Start button, then All Programs, and scroll down until you find &#8220;Startup&#8221;.</li>
<li>Right click on the &#8220;Startup&#8221; folder and choose &#8220;Open&#8221;.</li>
<li>Then Paste the copied icon into that folder and you&#8217;re done!</li>
</ol>
<p> </p>

<a href='http://www.brennanmceachran.com/2009/05/running-tweetdeck-startup/icon/' title='icon'><img width="77" height="57" src="http://www.brennanmceachran.com/wp-content/uploads/2009/05/icon.jpg" class="attachment-thumbnail" alt="icon" title="icon" /></a>
<a href='http://www.brennanmceachran.com/2009/05/running-tweetdeck-startup/copy/' title='copy'><img width="150" height="20" src="http://www.brennanmceachran.com/wp-content/uploads/2009/05/copy-150x20.jpg" class="attachment-thumbnail" alt="copy" title="copy" /></a>
<a href='http://www.brennanmceachran.com/2009/05/running-tweetdeck-startup/start/' title='start'><img width="107" height="150" src="http://www.brennanmceachran.com/wp-content/uploads/2009/05/start-107x150.jpg" class="attachment-thumbnail" alt="start" title="start" /></a>
<a href='http://www.brennanmceachran.com/2009/05/running-tweetdeck-startup/paste/' title='paste'><img width="150" height="114" src="http://www.brennanmceachran.com/wp-content/uploads/2009/05/paste-150x114.jpg" class="attachment-thumbnail" alt="paste" title="paste" /></a>

<p>You can restart your computer now to see it pop open by itself, or just wait until you actually need to turn it off. Next time you&#8217;re at your computer you&#8217;ll be all caught up with you&#8217;re tweets.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.brennanmceachran.com/2009/05/running-tweetdeck-startup/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

