<?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>Troy Fawkes</title>
	<atom:link href="http://www.troyfawkes.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.troyfawkes.com</link>
	<description>Networking, Dating and Social Skills</description>
	<lastBuildDate>Tue, 04 Feb 2014 00:49:41 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.1</generator>
	<item>
		<title>The Basics of Python Multithreading and Queues</title>
		<link>http://www.troyfawkes.com/learn-python-multithreading-queues-basics/</link>
		<comments>http://www.troyfawkes.com/learn-python-multithreading-queues-basics/#comments</comments>
		<pubDate>Fri, 24 Jan 2014 03:13:23 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=1055</guid>
		<description><![CDATA[<p>I&#8217;m getting really annoyed at reading through programmer speak. Hey guys, this stuff really isn&#8217;t that hard. You just suck at explaining things. Multithreading in Python, for example. Or how to use Queues. So here&#8217;s something for myself next time I need a refresher. It&#8217;s the bare-bones concepts of Queuing and Threading in Python. Let&#8217;s [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/learn-python-multithreading-queues-basics/">The Basics of Python Multithreading and Queues</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m getting really annoyed at reading through programmer speak. Hey guys, this stuff really isn&#8217;t that hard. You just suck at explaining things.</p>
<p>Multithreading in Python, for example. Or how to use Queues.</p>
<p>So here&#8217;s something for myself next time I need a refresher. It&#8217;s the bare-bones concepts of Queuing and Threading in Python.</p>
<h2>Let&#8217;s start with Queuing in Python.</h2>
<p>Before you do anything else, import Queue.</p>
<pre><code class="language-python">from Queue import Queue</code></pre>
<p>A queue is kind of like a list:</p>
<pre><code class="language-python">my_list = []
my_list.append(1)
my_list.append(2)
my_list.append(3)
print my_list.pop(0)
# Outputs: 1</code></pre>
<p>The above code creates a list, assigns it three values, then removes the first value in so the list now has only 2 values (which are 2 and 3).</p>
<pre><code class="language-python">my_queue = Queue(maxsize=0)
my_queue.put(1)
my_queue.put(2)
my_queue.put(3)
print my_queue.get()
my_queue.task_done()
# Outputs: 1</code></pre>
<p>There are only a couple differences in how queues work visually. First we set a maximum size to the queue, where 0 means infinite. It&#8217;s pretty dumb but I&#8217;m sure it&#8217;s useful somehow.</p>
<p>The second visual difference is the <strong>task_done()</strong> bit at the end. That tells the queue that not only have I retrieved the information from the list, but I&#8217;ve finished with it. If I don&#8217;t call task_done() then I run into trouble in threading. So let&#8217;s just say in Queues, you have to call this.</p>
<p>The big important point about Queues is that they work really well with threading. In fact, you just can&#8217;t use lists the way you can use queues in threading. That&#8217;s why I&#8217;m even bothering to bring them up here.</p>
<p>Here&#8217;s an example of a simple program that uses Queues:</p>
<pre><code class="language-python">from Queue import Queue

def do_stuff(q):
  while not q.empty():
    print q.get()
    q.task_done()

q = Queue(maxsize=0)

for x in range(20):
  q.put(x)

do_stuff(q)</code></pre>
<p>It outputs 0-19. In like the most complicated way possible to output 0-19.</p>
<p>Notice how do_stuff() is just whipping through the whole queue. That&#8217;s nice. But what if it was trying to do a big task, or a task that required a lot of waiting (like pulling data from APIs)? Assume for example that do_stuff() takes 30 second to run each time and it&#8217;s just waiting on stupid APIs to return something. The function would take 30 seconds every time it ran, and it would run 20 times so it would take 10 minutes to get through just 20 items. That&#8217;s really shitty.</p>
<h2>Enter Python Threading.</h2>
<p>Start with importing the right stuff:</p>
<pre><code class="language-python">from Queue import Queue
from threading import Thread</code></pre>
<p>Threads are probably really complex. Or so I&#8217;m lead to believe. All you need to know for now, though, is that they use a worker function to get stuff done, they run at the same time, and you can pull them all together when they&#8217;re done. So first you need to set up a worker function:</p>
<pre><code class="language-python">def do_stuff(q):
  while True:
    print q.get()
    q.task_done()</code></pre>
<p>We&#8217;re more or less just stealing the function from the last bit except we&#8217;re setting it up for an infinite loop (while True). It just means that I want my threads always ready to accept new tasks.</p>
<p>Now I want to create the actual threads and set them running. <strong>Before I do that, though</strong>, I need to give them a Queue to work with. The Queue doesn&#8217;t have to have anything on it, it just needs to be defined so that my threads know what they&#8217;ll be working on. Here&#8217;s how I set my (10) threads running:</p>
<pre><code class="language-python">q = Queue(maxsize=0)
num_threads = 10

for i in range(num_threads):
  worker = Thread(target=do_stuff, args=(q,))
  worker.setDaemon(True)
  worker.start()</code></pre>
<p>So you see the Queue set up (as &#8220;q&#8221;), then I define a loop to run the thread creation bits 10 times. The first line in the loop sets up a thread and points it first at the do_stuff function, and then passes it &#8220;q&#8221; which is the Queue we just defined. Then something about a daemon, and we start the bugger. That&#8217;s 10 threads running (remember the infinite loop in do_stuff()?) and waiting for me to put something in the Queue.</p>
<p>The rest of the code is the same as the Queue example so I&#8217;m just going to put it all together and let you figure it out:</p>
<pre><code class="language-python">from Queue import Queue
from threading import Thread

def do_stuff(q):
  while True:
    print q.get()
    q.task_done()

q = Queue(maxsize=0)
num_threads = 10

for i in range(num_threads):
  worker = Thread(target=do_stuff, args=(q,))
  worker.setDaemon(True)
  worker.start()

for x in range(100):
  q.put(x)

q.join()</code></pre>
<p>The only bit that should be new is the <strong>q.join()</strong> bit right at the end. This basically just waits until the queue is empty and all of the threads are done working (which it knows because <strong>task_done()</strong> will have been called on every element of the queue). If you were running a program in batches, you might use q.join() to wait for the batch to finish and then write the results to a file, and then just throw more tasks into the queue.</p>
<p>Consider revising the last 3 lines into a loop:</p>
<pre><code class="language-python">for y in range (10):
  for x in range(100):
    q.put(x + y * 100)
  q.join()
  print "Batch " + str(y) + " Done"</code></pre>
<p>It&#8217;s cool that Queues can get added to willy nilly and these Threads will just pick them up, and whenever I want to I can stop and join all of them together for a second so I can check in, maybe write to a file or database or just let the user know that I&#8217;m still working away.</p>
<p>Remember the example I gave before about each run of do_stuff() taking 30 seconds? And since I had to run it 20 times it&#8217;d take 10 minutes? Now I can just run 20 different threads and the whole program will be done in about 30 seconds rather than 10 minutes. Obviously your results may vary, but it&#8217;s definitely faster.</p>
<p>In any case, hope this helped. If you want the nitty gritty details, go read the documentation. This should get you started though.</p>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/learn-python-multithreading-queues-basics/">The Basics of Python Multithreading and Queues</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/learn-python-multithreading-queues-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Speak Clearly and Confidently</title>
		<link>http://www.troyfawkes.com/how-to-speak-clearly/</link>
		<comments>http://www.troyfawkes.com/how-to-speak-clearly/#comments</comments>
		<pubDate>Thu, 24 Oct 2013 02:24:05 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Social Skills]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=1013</guid>
		<description><![CDATA[<p>As I&#8217;m writing this I&#8217;m remembering being a lame high school student, standing at the edge of a circle of friends-by-inheritance and chiming in once every two days. Guess how I felt when the pretty girls would walk by and their eyes wouldn&#8217;t slide over me&#8211;they didn&#8217;t even look in my direction. I&#8217;m also looking [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/how-to-speak-clearly/">How to Speak Clearly and Confidently</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>As I&#8217;m writing this I&#8217;m remembering being a lame high school student, standing at the edge of a circle of friends-by-inheritance and chiming in once every two days. Guess how I felt when the pretty girls would walk by and their eyes wouldn&#8217;t slide over me&#8211;they didn&#8217;t even look in my direction.</p>
<p>I&#8217;m also looking at a picture of a beautiful girl who chased me down at a party months ago and made me stay up late and tell her stories until the sun popped up over the windowsill.</p>
<p>That wouldn&#8217;t have happened if I hadn&#8217;t changed something. Something big. Clarity isn&#8217;t the whole picture&#8211;you can get a bit more on <a title="How To Improve Speaking Skills in 7 Simple Steps" href="http://www.troyfawkes.com/how-to-improve-speaking-skills-in-7-simple-steps/">speaking skills in general here</a> and even more by subscribing to my newsletter&#8211;but this is a start.</p>
<p><span id="more-1013"></span></p>
<p>I realize that you might expect advice on speaking clearly to be about whether or not you&#8217;re spending more time chewing on your tongue than sending coherent words out into the world. That one problem has a very simple solution: speak slower and choose every word. This also makes you appear more confident (confident people have slower dialogues). But it&#8217;s not what I think will give you the most bang for your buck.</p>
<p>Here&#8217;s what I&#8217;d like to cover:</p>
<ul>
<li><span style="line-height: 13px;"><a href=" http://www.troyfawkes.com/how-to-speak-clearly/#direct-responsible-meaning">Be Direct and Responsible with your Meaning</a></span></li>
<li><a href=" http://www.troyfawkes.com/how-to-speak-clearly/#speak-loudly">Speak Loudly. Call Attention To Yourself.</a></li>
<li><a href=" http://www.troyfawkes.com/how-to-speak-clearly/#avoid-slang">Avoid Slang, Jargon and Pop-Culture References</a></li>
<li><a href=" http://www.troyfawkes.com/how-to-speak-clearly/#clarity-speech-exercises">Some Exercises to Improve Clarity</a></li>
</ul>
<p>William Zinsser is the author of the writer&#8217;s bible, <em>On Writing Well</em>. The biggest flaw that most writers have, he writes, is a lack of clarity. This is also true of speakers.</p>
<p>You might lisp or mumble or speak too quietly. But you might also be confusing your audience with slang, jargon or vague pop-culture references.</p>
<p>Besides the obvious benefits, people who speak clearly also come across as more confident and significantly more persuasive. When everyone is talking around an issue, the clearest, most blunt speaker will gain the most attention. That attention is your super power: now you give your solution, just as clearly and persuasively, and who&#8217;s going to argue with you? Someone who has vague answers? Everyone is listening <strong>to you</strong>.</p>
<p>All of those details follow as well as some exercises that you can use to improve the clarity of your speech.</p>
<p>If you&#8217;d like to keep up to date with these articles and get more information on how to speak clearly, sign up to my email newsletter. I don&#8217;t always send email, but when I do I save my best stuff for it!</p>
<p><i>
<!-- Form by MailChimp for WordPress plugin v1.5.1 - http://dannyvankooten.com/mailchimp-for-wordpress/ -->
<form method="post" action="http://www.troyfawkes.com/feed/" id="mc4wp-form-1" class="mc4wp-form form "><p>
	<label for="mc4wp_f1_email">Get all New Posts in a Monthly Newsletter: </label>
	<input type="email" id="mc4wp_f1_email" name="email" required placeholder="Your email address" />
</p>

<p>
	<input type="submit" value="Sign up" />
</p><textarea name="_mc4wp_required_but_not_really" style="display: none;"></textarea><input type="hidden" name="_mc4wp_form_submit" value="1" /><input type="hidden" name="_mc4wp_form_instance" value="1" /><input type="hidden" name="_mc4wp_form_nonce" value="99a6de203d" /></form>
<!-- / MailChimp for WP Plugin -->
</i></p>
<p>Enjoy irresponsibly.</p>
<p style="text-align: center;"><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/speak_clearly.jpg"><img class="size-full wp-image-732 aligncenter" alt="How to Speak Clearly and Confidently   speak clearly" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/speak_clearly.jpg" width="626" height="100" title="How to Speak Clearly and Confidently" /></a></p>
<p><a name="direct-responsible-meaning"></a></p>
<h2>Be Direct and Responsible with your Meaning</h2>
<p>I want to start by sharing an email I got from a former landlady. Reading it, I&#8217;d like you to try to understand what she&#8217;s talking about. I removed some information above and below that doesn&#8217;t clarify the message.</p>
<blockquote><p>I did however want to run by you whether you are comfortable here or not. I do not want to infringe on your privacy, but as you know this is a family home and there are certain things that need to be respected. I am not sure if you can or are willing to do so for the next 6 months. If you are, then all is well and we can continue with our arrangement. However, if you cannot deal/are not comfortable with the limits in place &#8211; then now would be a good time to let me know, so that we don&#8217;t move forward with another 6 months.</p>
<p>You have been a great tenant and everything has been fine thus far &#8211; we must simply make sure that we are on the same page before moving forward.</p></blockquote>
<p>She meant, &#8220;You have to stop having loud sex or I&#8217;m kicking you out.&#8221; Did you understand that from the email? I did, because she had banged on the floor the night before I got it and I got two text messages from her, each about volume.</p>
<p>We both knew what she was talking about, and yet she didn&#8217;t outright say it.</p>
<p>This is a great example of someone <strong>being afraid of speaking clearly</strong>. Her argument for being unclear is simple: she&#8217;s worried that her meaning will offend me. She doesn&#8217;t want to take responsibility for it, so she purposefully makes it vague. But, at the end of the day, we&#8217;re talking about sex and eviction.</p>
<p>She uses two different tactics to deal with her fear of clearly communicating her message:</p>
<ol>
<li>She makes me responsible rather than herself</li>
<li>She addresses the issue indirectly</li>
</ol>
<p>Instead of taking ownership of her discomfort, she writes, &#8220;You need to come to me and tell me that you&#8217;re uncomfortable with the new rules.&#8221; Notice that now <strong>I&#8217;m</strong> responsible. I have to go to her.</p>
<p>I don&#8217;t often see people writing or speaking like that. Most writers duck responsibility by using the passive voice.</p>
<blockquote><p>With the passive voice, the writer usually expresses fear of not being taken seriously; it’s the voice of little boys wearing shoe polish mustaches and little girls clumping around in Mommy’s high heels.&#8221;</p>
<p>Stephen King, <em>On Writing: A Memoir of the Craft</em></p></blockquote>
<p>The active voice is when <strong>someone does something</strong>. An example is, &#8220;I ate the hotdog.&#8221; The passive voice is when <strong>something was done</strong>. So, &#8220;The hotdog was eaten.&#8221;</p>
<p>Notice how, even though I&#8217;ve still eaten the hotdog, I&#8217;m not in the story anymore? If I wanted to tell someone that I had eaten their hotdog but I didn&#8217;t want to take responsibility for it, I might use the passive voice. &#8220;Sorry buddy, your hotdog was eaten.&#8221;</p>
<p>There&#8217;s a museum in Germany with a plaque that reads, &#8220;Russia was invaded.&#8221; My ex-girlfriend use to say, &#8220;It wasn&#8217;t appreciated.&#8221;</p>
<p>You&#8217;re just afraid of the responsibility. Guess how confident you look peeing your pants over word choice.</p>
<p><strong>Clear speech is direct and takes responsibility of its meaning.</strong></p>
<p>Understand this: your meaning is going to be the same whether you obscure it or not. The only thing obscuring your speech does is make you harder to understand and make you look scared. Be direct.</p>
<p>And more importantly, be responsible. Don&#8217;t say, &#8220;It wasn&#8217;t appreciated.&#8221; Say, &#8220;I don&#8217;t appreciate that.&#8221; Even better, don&#8217;t say, &#8220;we&#8217;re not sure what to do.&#8221; Say, &#8220;I&#8217;m not sure what to do.&#8221;</p>
<blockquote><p>Clutter is the disease of American writing. We are a society strangling in unnecessary words, circular constructions, pompous frills and meaningless jargon.</p>
<p>Who can understand the clotted language of everyday American commerce: the memo, the corporation report, the business letter, the notice from the bank explaining its latest &#8220;simplified&#8221; statement? &#8230; <strong>Our national tendency is to inflate and thereby sound important.</strong></p>
<p>William Zinsser, <em>On Writing Well</em></p></blockquote>
<p>The best way to master this form of clarity is to practice writing. I practiced in my text messages, rewriting each message 4-5 times for directness and responsibility. It&#8217;s just as useful to practice writing and rewriting emails. If you&#8217;re feeling creative, try dialogue.</p>
<p>If I was writing my landlady&#8217;s email to me to be direct and to take responsibility for what she intends to say, I would write this:</p>
<blockquote><p>Hey Troy,</p>
<p>I get that you&#8217;re a bachelor, and that sex and relationships are going to be part of your life. But I&#8217;m not comfortable with rocking and banging and girls screaming in the basement. I don&#8217;t want my daughter hearing it either. If you&#8217;re not OK giving up sex here, I&#8217;ll give you some notice to move out.</p>
<p>I think you&#8217;re a great tenant and I don&#8217;t blame you for wanting to have sex, the problem is on my end and I&#8217;m sure you understand why.</p></blockquote>
<p><a name="speak-loudly"></a></p>
<h2>Speak Loudly. Call Attention To Yourself.</h2>
<p>My dad used to tell me that I mumbled. I&#8217;d deny it and sit, fuming, in the car. But he was right, and I continued to be quiet up until I realized how little being quiet served me.</p>
<p>It took a long time, but after I found out that speaking loudly, among other verbal cues, was a sign of confidence, I started to pursue it.</p>
<div id="attachment_1020" style="width: 584px" class="wp-caption aligncenter"><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/10/vocal-confidence.png"><img class="size-full wp-image-1020 " alt="How to Speak Clearly and Confidently   vocal confidence" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/10/vocal-confidence.png" width="574" height="365" title="How to Speak Clearly and Confidently" /></a><p class="wp-caption-text"><em>Vocal Signs of Confidence</em>, Kimble and Seidel</p></div>
<p>Being loud encroaches on other people&#8217;s mental space. It&#8217;s the equivalent of standing in someone&#8217;s way and forcing them to walk around you. Suddenly it makes sense that the volume at which you talk is related to your confidence.</p>
<p>Watch the video below and tell me what role volume plays in your impression of Eric, the speaker.</p>
<p><iframe src="//www.youtube.com/embed/5fsm-QbN9r8?rel=0" height="480" width="640" allowfullscreen="" frameborder="0"></iframe></p>
<p>Here&#8217;s what I learned from listening to Eric&#8217;s volume. It gives him:</p>
<ol>
<li><span style="line-height: 13px;"><strong>Presence: </strong>When he&#8217;s loud, it&#8217;s HIS turn to speak. Everyone pays attention. Even if someone disagreed they&#8217;d be too nervous to speak over him.</span></li>
<li><strong>Trust: </strong>If he had been speaking quietly I wouldn&#8217;t have believed his story, and I wouldn&#8217;t have felt motivated. Why? Because if he wasn&#8217;t confident in his words he wouldn&#8217;t speak them so loudly.</li>
<li><strong>Passion</strong>: He&#8217;s given this presentation a thousand times, and yet he seems to passionate about it. You can show passion with faster and louder speech&#8211;don&#8217;t try this at home, it&#8217;s a side-effect of learning to speak loudly rather than something you should try to fake.</li>
</ol>
<p>A good trick to figure out how loud you should be is to pretend that whoever you&#8217;re talking to is standing half again as far away. Talk to an imaginary person behind them.<br />
<a name="avoid-slang"></a></p>
<h2>Avoid Slang, Jargon and Pop-Culture References</h2>
<p><i><strong>Note: </strong>These aren&#8217;t always bad. The problem is that they&#8217;re usually over-used.</i></p>
<p>I learned French growing up but seldom speak it. To keep it up I read French novels, and my favourites are classics like <i>Les Trois Mousquetaires</i>. Alexandre Dumas, the author, was writing in the 1800s and has a very romantic and descriptive language. Think Shakespeare but with much cooler plots as he wasn&#8217;t limited by what you could do on a stage.</p>
<p>The unfortunate side-effect of my education coming from Dumas is that now my French is flowery.</p>
<p>Leaving a French friend behind as I moved from one city to another, she texted me, &#8220;Tu vas me manquer&#8221; [I'll miss you, or you'll be missed by me]. I responded, &#8220;Il n&#8217;y a que les montagnes qui ne se rencontrent pas&#8221; [Only mountains never meet].</p>
<p>That sounded completely normal to me, but to her it was like I had quoted the bible&#8211;over-emphatic and unclear.</p>
<p>My romantic expression, which may strike you as romantic, actually confused her a little bit and therefore didn&#8217;t accomplish what I had wanted it to. A clearer way to express that sentiment might have been, &#8220;I&#8217;ll miss you too, beautiful girl, but I WILL see you when I come back.&#8221;</p>
<p>Now, here&#8217;s the thing. I know a half dozen girls who&#8217;d have both understood and loved that. I dated a girl for a year after she saw that I quoted a poet in describing her: &#8220;Comparing other girls to her is like holding a candle to the sun.&#8221; Pop Culture references, like, when someone makes a social mistake, denying them soup, can be funny. Slang and jargon can be very expressive.</p>
<p>But a lot of people mistake flowery words with strong meaning, romantic words with romance, slang and jargon with coolness, and formal words as becoming of a business person. They don&#8217;t cater it to their audience, they just use it and expect it to work.</p>
<p>Take note of any time people give you vague looks, don&#8217;t laugh when you expect them to, or even end a conversation after you&#8217;ve been unclear. I doubt it never happens to you.</p>
<p>You&#8217;ll get the same result from making any of these mistakes&#8211;lack of understanding. You&#8217;ll get a ton of different reactions though:</p>
<ol>
<li>Feigned understanding and a fake-sounding laugh or fake-looking nod</li>
<li>A confused look and a verbal pause</li>
<li>An affirmative (nod, &#8220;Yeah,&#8221; etc.) and then they&#8217;ll continue speaking while ignoring your comment</li>
<li>&#8220;What?&#8221; &#8220;Not sure what you mean&#8230;&#8221;</li>
</ol>
<p>These are kind of hard to detect since most people won&#8217;t call you out on it.</p>
<p>If you want to see this reaction, just insert this line into any conversation you&#8217;re having:</p>
<p>&#8220;Death from a thousand cuts.&#8221;</p>
<p>And then pause.</p>
<p>Looking for these confused reactions will teach you when you&#8217;re going overboard with your jargon, slang or obscure references. If you feel this is a big problem for you, catch yourself every time you make one and express the idea differently.</p>
<p>A note on this horse before we leave off kicking it: there&#8217;s a word, <em>cliché</em>, that means &#8220;a phrase or opinion that is overused and betrays a lack of original thought.&#8221; Tired metaphors and similes make you sound as if you lack original thought. If you can&#8217;t come up with your own or add some creativity into the old ones then don&#8217;t use them.<br />
<a name="clarity-speech-exercises"></a></p>
<h2>Some Exercises to Improve Clarity</h2>
<p>Here are three exercises that you can use to improve your clarity of speech.</p>
<h3>Third Time&#8217;s the Charm</h3>
<p>I&#8217;ll give you a topic and the moment you see it you&#8217;re going to speak for about 20 seconds. I don&#8217;t care what you say. Once you&#8217;ve finished, you&#8217;re going to think about what you just said, and express it more clearly. Then, you&#8217;re going to do it one more time with the same subject. The third time&#8217;s the charm.</p>
<p>Your goal is to go from being incoherent to having a focused path.</p>
<p>Every time you repeat this exercise, focus on a different part of speaking clearly:</p>
<ol>
<li><span style="line-height: 13px;">Directness and Responsibility</span></li>
<li>Volume</li>
<li>Jargon, Slang and Pop-Culture References</li>
</ol>
<p>Remember to start this challenge right away.</p>
<p>Your topic is: Dogs</p>
<h3>The Motivational Battle Speech</h3>
<p>A general giving a speech to his troops before battle, at least in the movies, is usually very evocative. He&#8217;s pissed off, or deadly serious. Or both.</p>
<p>Try to emulate some of these speeches.</p>
<p><a href="http://www.youtube.com/watch?v=qubItQjdSHA&amp;t=130">Try this one from 300</a>. It&#8217;s short and sweet, so you shouldn&#8217;t have much trouble. There&#8217;s a lot of good stuff in Pulp Fiction and Inglorious Bastards too!</p>
<h3>Rapping</h3>
<p>This one&#8217;s probably the toughest exercise for speaking clearly. Choose a rap and get every bit of it down.</p>
<p>Start with the first verse (usually 6-8 lines).</p>
<p>Make sure you&#8217;re not whispering it to yourself&#8211;rap it louder than you&#8217;re used to speaking. If you&#8217;re not used to singing, this is one of the most embarrassing things you&#8217;ll do until you&#8217;re good at it, and you&#8217;re more likely to be quiet when you&#8217;re embarrassed. Fight that urge.</p>
<p>Also make sure that you&#8217;re enunciating every syllable. Every word should be clear.</p>
<p>If you&#8217;re having trouble with one song, it might be too fast. Try something else. When you get one, try to memorize it and rap it from memory. Impress your friends!</p>
<blockquote><p><strong>Remember to check out the full article on <a href="http://www.troyfawkes.com/how-to-improve-speaking-skills-in-7-simple-steps/">how to improve speaking skills</a> and sign up to the email list below to get updates.</strong></p></blockquote>
<p><i>
<!-- Form by MailChimp for WordPress plugin v1.5.1 - http://dannyvankooten.com/mailchimp-for-wordpress/ -->
<form method="post" action="http://www.troyfawkes.com/feed/" id="mc4wp-form-2" class="mc4wp-form form "><p>
	<label for="mc4wp_f2_email">Get all New Posts in a Monthly Newsletter: </label>
	<input type="email" id="mc4wp_f2_email" name="email" required placeholder="Your email address" />
</p>

<p>
	<input type="submit" value="Sign up" />
</p><textarea name="_mc4wp_required_but_not_really" style="display: none;"></textarea><input type="hidden" name="_mc4wp_form_submit" value="1" /><input type="hidden" name="_mc4wp_form_instance" value="2" /><input type="hidden" name="_mc4wp_form_nonce" value="99a6de203d" /></form>
<!-- / MailChimp for WP Plugin -->
</i></p>
<blockquote><p><strong>See you next week!</strong></p></blockquote>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/how-to-speak-clearly/">How to Speak Clearly and Confidently</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/how-to-speak-clearly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Some People Win More Than Others</title>
		<link>http://www.troyfawkes.com/rituals-habits-success/</link>
		<comments>http://www.troyfawkes.com/rituals-habits-success/#comments</comments>
		<pubDate>Thu, 01 Aug 2013 15:40:25 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Social Skills]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=965</guid>
		<description><![CDATA[<p>The people who I see succeeding generally, as in with everything they touch, all have a similar characteristic. They build rituals and habits. I have a mindmap that I keep open on my right monitor with all of my daily rituals: I&#8217;m not saying that these are rituals you should pick up, or that mine are [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/rituals-habits-success/">Why Some People Win More Than Others</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>The people who I see succeeding generally, as in with everything they touch, all have a similar characteristic. They build <strong>rituals</strong> and <strong>habits</strong>.</p>
<p>I have a mindmap that I keep open on my right monitor with all of my daily rituals:</p>
<p><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/08/daily-rituals.png"><img class="alignnone size-full wp-image-966" alt="Why Some People Win More Than Others   daily rituals" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/08/daily-rituals.png" title="Why Some People Win More Than Others" /></a></p>
<p>I&#8217;m not saying that these are rituals you should pick up, or that mine are the best rituals. I just wanted to explore the concept of rituals and habits in relation to success and, well, you write what you know.</p>
<p>Why do I have this list of things that I start my day with, and how does it help?</p>
<ul>
<li>It&#8217;s the kind of thing that has worked for me in the past.</li>
<li>It&#8217;s a set of best practices.</li>
<li>It keeps me organized and motivated.</li>
<li>It&#8217;s a building block for something bigger.</li>
<li>It&#8217;s a WHY.</li>
</ul>
<h2>Worked in the Past</h2>
<p>This is probably the easiest thing for me to cling to: my rituals (or habits) are what worked for me in the past to feel in control of my health, wealth and relationships.</p>
<p>They say it takes three weeks to build a habit. When I went rock climbing I had to force myself for the first three weeks, but after that it was easy to just go on that specific day of the week. It was unfathomable for me to not go.</p>
<p>I&#8217;ve used this for everything from building a social circle, meeting dozens of women whom I could date and possibly fall in love with, to getting a big-ticket ($1,500+ per close) commission job and within weeks becoming the highest performing employee.</p>
<p>If it works, I might as well use it!</p>
<h2>Best Practices</h2>
<p>Rituals, in my mind, are day-to-day habits. They&#8217;re like incantations. So when I get into the office I sit down, open up Sublime Text in distraction-free mode and start writing. I write anything; it doesn&#8217;t matter.</p>
<p><i>
<!-- Form by MailChimp for WordPress plugin v1.5.1 - http://dannyvankooten.com/mailchimp-for-wordpress/ -->
<form method="post" action="http://www.troyfawkes.com/feed/" id="mc4wp-form-3" class="mc4wp-form form "><p>
	<label for="mc4wp_f3_email">Get all New Posts in a Monthly Newsletter: </label>
	<input type="email" id="mc4wp_f3_email" name="email" required placeholder="Your email address" />
</p>

<p>
	<input type="submit" value="Sign up" />
</p><textarea name="_mc4wp_required_but_not_really" style="display: none;"></textarea><input type="hidden" name="_mc4wp_form_submit" value="1" /><input type="hidden" name="_mc4wp_form_instance" value="3" /><input type="hidden" name="_mc4wp_form_nonce" value="99a6de203d" /></form>
<!-- / MailChimp for WP Plugin -->
</i></p>
<p>The reason I do this is because my job is a creative, thoughtful one. I can&#8217;t innitiate something unless it&#8217;s been invented, a complicated process has been put in place, I&#8217;ve budgeted the time and money and hired the right vendors for the job. William Zinsser says that writing is thinking clearly, and I agree, so I write every day to improve my thoughts.</p>
<blockquote><p>Writing is thinking clearly.</p></blockquote>
<p>That sounds very thought-through, and so are my rules on focusing on just one client at a time and ignoring email until almost lunch time.</p>
<p>That&#8217;s kind of the point.</p>
<p>Compare a thought-through, ritualized morning versus a normal one in which you&#8217;re constantly putting out fires and struggling to decide which mission-critical task to work on first.</p>
<p>By four o&#8217;clock you&#8217;ve decided, and by seven you&#8217;ve left the office distraught.</p>
<h2>Organization and Motivation</h2>
<p>I&#8217;m motivated when I know that what I&#8217;m doing is effective.</p>
<p>If I told you that if you invested $100 today, I&#8217;d give you $120 tomorrow at no risk, you&#8217;d invest right away.</p>
<p>My job is taking someone&#8217;s money and making its use be more valuable than the number written on the paper. I&#8217;m required to do exactly this every day, and it&#8217;s easy when I&#8217;m running plays that are guaranteed to work.</p>
<p>But on days when I&#8217;m not sure, I spend more time frustrated than motivated. So I organize myself such that even if I don&#8217;t know what&#8217;s going to work, I&#8217;m at least preparing tomorrow or the next day to make me that $120 back.</p>
<h2>Building Blocks</h2>
<p>Imagine if you went to the gym every day. That&#8217;s a lot. But now you&#8217;re the kind of person who goes to the gym every day.</p>
<p>You&#8217;ve just entirely changed yourself.</p>
<p>People will look at you differently, talk to you differently, and feel all of the non-tangible bits of your behaviour differently.</p>
<p>Now you&#8217;re ritualized.</p>
<p>And the thing with rituals is that when you start building them, they stack up. Someone who goes to the gym every day finds it easier to eat healthy with very few exceptions. That person then finds it easy to start writing every day. They find it easy to ask one stranger CEO on LinkedIn for career advice every week. They build rituals around their job and their family.</p>
<p>That person can, one block at a time, change the world.</p>
<h2>It&#8217;s a WHY</h2>
<p>WHY you do something changes HOW you do it. Say I woke up this morning and I said, I need to eat. That&#8217;s fine, I&#8217;ll put together a little bit of food.</p>
<p>But if my WHY is that I need to fuel myself for a productive day and Muay Thai right after work, because I need to be healthy enough to push my way up the ladder at work, because I want to change the world&#8230;</p>
<p>That&#8217;s going to be an ideal breakfast.</p>
<p>Rituals help you find a more powerful WHY for all of the little things.</p>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/rituals-habits-success/">Why Some People Win More Than Others</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/rituals-habits-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small Chunking Problems</title>
		<link>http://www.troyfawkes.com/small-chunking-problems/</link>
		<comments>http://www.troyfawkes.com/small-chunking-problems/#comments</comments>
		<pubDate>Sat, 13 Apr 2013 20:46:02 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=936</guid>
		<description><![CDATA[<p>A mentor once told me that I create an impossible to scale mental wall around an objective because I quickly grasp its scope and, once I look at it as a whole, I become intimidated. For example, at work I started marketing for multiple large clients. My objective is to increase their revenue steadily month-over-month. [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/small-chunking-problems/">Small Chunking Problems</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>A mentor once told me that I create an impossible to scale mental wall around an objective because I quickly grasp its scope and, once I look at it as a whole, I become intimidated.</p>
<p>For example, at work I started marketing for multiple large clients. My objective is to increase their revenue steadily month-over-month. I&#8217;ve never done this before and results often lag by at least 30 days. I&#8217;m freaking out about this, because, previously, I&#8217;ve only ever worked on one client at a time.</p>
<p>This is often the cause of my gloominess on busy weeks.</p>
<p>The remedy is to &#8220;small-chunk.&#8221;</p>
<p>So in the case of working on my clients, I have to identify what needs to be (and can reasonably be) done in a month. Then I spend some time on my thinking couch, pondering process. These are both acts of idealism, and I used to stop at either one or the other and FREAK OUT.</p>
<p>Now I chunk them into weekly tasks. What comes before the other? What can I outsource? Is this really worth so much of my time or is there a better way? It&#8217;s a bit more manageable here, but weekly segments are still daunting.</p>
<p>My week next week, for example, involves designing 3 campaigns, doing outreach to 120 people, creating communications and publishing them for clients, refining a process for a major tool our company is going to start using, managing a weekly video project, and designing a training schedule for 4 employees who fit into two different roles.</p>
<p>So I chunk it down to days.</p>
<p>Monday, for example, I&#8217;ll start by vaguely outlining the training schedule, then I&#8217;ll design a campaign, do some outreach (taking notes on the process) and publish our weekly video.</p>
<p>That still sounds like a lot. I have a sticky note on my monitor that says, &#8220;Right now I am&#8230;&#8221; So, right now I am writing out my thoughts on small chunking. And, to the exception of all else including &#8220;emergencies,&#8221; I&#8217;m working on that one thing.</p>
<p>As a note on emergencies: instead of stopping and switching gears for other people&#8217;s moment-to-moment problems, I&#8217;ve been asking people to send me an email unless I decide that it actually is urgent. I should be doing this more.</p>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/small-chunking-problems/">Small Chunking Problems</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/small-chunking-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Improve Speaking Skills in 7 Simple Steps</title>
		<link>http://www.troyfawkes.com/how-to-improve-speaking-skills-in-7-simple-steps/</link>
		<comments>http://www.troyfawkes.com/how-to-improve-speaking-skills-in-7-simple-steps/#comments</comments>
		<pubDate>Thu, 07 Feb 2013 15:17:25 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Social Skills]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=726</guid>
		<description><![CDATA[<p>I&#8217;m never going to perfect the art of speaking. And hey, neither are you. None of us hairless monkeys are. Granted, Tony Robbins, Eckhart Tolle, Jim Rohn and other well-known speakers are masters, but even they make mistakes. Just because I can&#8217;t perfect it doesn&#8217;t mean I&#8217;m not going to try. There&#8217;s nothing like being able [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/how-to-improve-speaking-skills-in-7-simple-steps/">How To Improve Speaking Skills in 7 Simple Steps</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m never going to perfect the art of speaking. And hey, neither are you. None of us hairless monkeys are. Granted, Tony Robbins, Eckhart Tolle, Jim Rohn and other well-known speakers are masters, but even they make mistakes.</p>
<p>Just because I can&#8217;t perfect it doesn&#8217;t mean I&#8217;m not going to try.</p>
<p><span id="more-726"></span></p>
<p>There&#8217;s nothing like being able to make my sister smile with some stupid joke. My friends deserve the living, engaging stories I tell them now rather than the dry monotone that I remember having. It&#8217;s exciting that I can make new friends just by chatting them up in the minute it takes the elevator to get to my floor.</p>
<p>There are two major buckets you need to think about when you&#8217;re learning about speech:</p>
<ol>
<li><span style="line-height: 13px;">Fixing Mistakes</span></li>
<li>Adding and Improving Skills</li>
</ol>
<p>Start by fixing mistakes you&#8217;re making. For me, fixing <em><strong>just two</strong></em> of these mistakes accounted for an 80% improvement in my conversational skills. I realize how silly that sounds&#8211;how do I know it was 80%? Why not 81%?&#8211;but when you go through the exercises a couple of times and focus on fixing these mistakes, you leave me a comment or send me an email and tell me what improvements you saw.</p>
<p>I&#8217;m not hiding the most important mistakes; they&#8217;re the first two steps.</p>
<p>On top of working on those mistakes, I built specific speaking skills. These are humour, story telling, volume, gestures, pace, mastery topics and more. These skills aren&#8217;t the whole of speaking&#8211;a great gesture doesn&#8217;t a great speaker make, but a tap on the nose makes a story cuter, and wide arms a statement grander.</p>
<p>This is where great conversationalists differentiate themselves: some love deep, highly emotional conversations controlled by pace, mastery topics and story telling; some play subtle games of humour, making their friends feel like everything is an inside joke they&#8217;re included in; some make their friends feel like great conversationalists by leading conversations to the most interesting bits, punctuating points properly with volume, gestures and physicality and then backing off.</p>
<p>Dabble now, focus later.</p>
<p>TODAY I&#8217;d like to go over <strong>how to improve speaking skills</strong> with exercises, behaviours and the daily grind.</p>
<p>Below are 7 simple steps that I hope will benefit you greatly. I was messing around with photoshop and came out with the JPEG below (How To Improve Speaking Skills in 7 Simple Steps) because why not.  There are also useful videos and I vow to answer all questions in the comments. If you&#8217;d like to get this kind of information in the future, sign up via email here:</p>
<p><i>
<!-- Form by MailChimp for WordPress plugin v1.5.1 - http://dannyvankooten.com/mailchimp-for-wordpress/ -->
<form method="post" action="http://www.troyfawkes.com/feed/" id="mc4wp-form-4" class="mc4wp-form form "><p>
	<label for="mc4wp_f4_email">Get all New Posts in a Monthly Newsletter: </label>
	<input type="email" id="mc4wp_f4_email" name="email" required placeholder="Your email address" />
</p>

<p>
	<input type="submit" value="Sign up" />
</p><textarea name="_mc4wp_required_but_not_really" style="display: none;"></textarea><input type="hidden" name="_mc4wp_form_submit" value="1" /><input type="hidden" name="_mc4wp_form_instance" value="4" /><input type="hidden" name="_mc4wp_form_nonce" value="99a6de203d" /></form>
<!-- / MailChimp for WP Plugin -->
</i></p>
<p>Enjoy Irresponsibly.</p>
<ol>
<li><a href="#speak_clearly">Speak Clearly</a></li>
<li><a href="#develop_flow">Develop Flow</a></li>
<li><a href="#choose_mastery_topics">Choose Your Mastery Topics</a></li>
<li><a href="#become_topic_master">Become a Topic Master</a></li>
<li><a href="#develop_style">Develop Style</a></li>
<li><a href="#practice_daily">Practice Daily</a></li>
<li><a href="#practice_events">Practice at Events</a></li>
</ol>
<p style="text-align: center;"><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/how_to_improve_speaking_skills.jpg"><img class="aligncenter size-full wp-image-733" alt="How To Improve Speaking Skills in 7 Simple Steps   how to improve speaking skills" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/how_to_improve_speaking_skills.jpg" title="How To Improve Speaking Skills in 7 Simple Steps" /></a></p>
<p><a name="speak_clearly"></a></p>
<hr />
<h2>Speak Clearly</h2>
<p style="text-align: center;"><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/speak_clearly.jpg"><img class="aligncenter  wp-image-732" title="speak clearly" alt="How To Improve Speaking Skills in 7 Simple Steps   speak clearly" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/speak_clearly.jpg" width="626" height="100" /></a></p>
<p>I&#8217;ve updated this section with an article, <a title="How to Speak Clearly and Confidently" href="http://www.troyfawkes.com/how-to-speak-clearly/">How to Speak Clearly and Confidently</a>, dedicated entirely to it with its own exercises. It covers:</p>
<ul>
<li><a href=" http://www.troyfawkes.com/how-to-speak-clearly/#direct-responsible-meaning">Being Direct and Responsible with your Meaning</a></li>
<li><a href=" http://www.troyfawkes.com/how-to-speak-clearly/#speak-loudly">Speaking Loudly and Calling Attention To Yourself.</a></li>
<li><a href=" http://www.troyfawkes.com/how-to-speak-clearly/#avoid-slang">Avoiding Slang, Jargon and Pop-Culture References</a></li>
<li><a href=" http://www.troyfawkes.com/how-to-speak-clearly/#clarity-speech-exercises">Some Exercises to Improve Clarity</a></li>
</ul>
<p>Here&#8217;s a short excerpt:</p>
<blockquote><p>As I&#8217;m writing this I&#8217;m remembering being a lame high school student. Standing at the edge of a circle of friends-by-inheritance and chiming in once every two days. Guess how I felt when the pretty girls would walk by and their eyes wouldn&#8217;t slide over me&#8211;they didn&#8217;t even look in my direction.</p>
<p>I&#8217;m also looking at a picture of a beautiful girl who chased me down at a party months ago and made me stay up late and tell her stories until the sun popped up over the windowsill.</p>
<p>That wouldn&#8217;t have happened if I hadn&#8217;t changed something. Something big. Clarity isn&#8217;t the whole picture but this is a start.</p>
<p><a title="How to Speak Clearly and Confidently" href="http://www.troyfawkes.com/how-to-speak-clearly/">Read More&#8230;</a></p></blockquote>
<p>In summary, speak clearly. Enunciate and choose a volume as if it were on purpose. Select the easiest words to get your point across. Only once you&#8217;ve mastered clarity should you begin to braid some silvery strands into your language.</p>
<h3>Challenge: Third Time&#8217;s the Charm</h3>
<p>I&#8217;ll give you a topic and the moment you see it you&#8217;re going to speak for about 20 seconds. I don&#8217;t care what you say. Once you&#8217;ve finished, you&#8217;re going to think about what you just said, and express it more clearly. Then, you&#8217;re going to do it one more time. The third time&#8217;s the charm.</p>
<p>Remember to start this challenge right away.</p>
<p>Your topic is: Pasta.</p>
<p><a name="develop_flow"></a></p>
<hr />
<h2>Develop Flow</h2>
<p style="text-align: center;"><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/develop_flow.jpg"><img class="aligncenter  wp-image-734" title="develop flow" alt="How To Improve Speaking Skills in 7 Simple Steps   develop flow" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/develop_flow.jpg" width="626" height="100" /></a></p>
<p>Imagine a river. The water is moving; it runs around rocks and over the ground beneath it. It&#8217;s disturbed by the legs of a bridge. To you, though, it looks smooth.</p>
<p>I doubt that the river learned how to flow, but that doesn&#8217;t mean that you can&#8217;t.</p>
<p>With flow we&#8217;re aiming at a level of comfort with speaking that lets you approach all topics with equal grace.</p>
<p>There are two aspects of flow that I&#8217;d like you to improve:</p>
<ol>
<li>Pace</li>
<li>Pausing</li>
</ol>
<p>Unless you&#8217;re James Malinchak or Les Brown, you speak too quickly. A mentor told me that I spoke too quickly because I was worried that someone else might speak over me&#8211;maybe that&#8217;s accurate for you as well. In any case, it is a truism that we.. should slow.. our pace.. down.</p>
<p>We also need to be comfortable pausing. If I had only thirty seconds of your time to help you improve your speaking skills, I would tell you to replace all of your filler words with a two second pause.</p>
<p>A filler word is &#8220;uh&#8221; or &#8220;um,&#8221; or anything you say that is equivalent. For example I like the word &#8220;like&#8221; but I shouldn&#8217;t. Notice whenever you use a filler word, pause for two seconds, and then continue.</p>
<h3>Challenge: The Topic Game</h3>
<p>For this challenge you&#8217;ll need a timer and a source for topics. Try using these <a href="http://www.realconversationtopics.com/conversation-questions/best-conversation_topics-1">conversation topics (sorted by quality)</a>, but also try to pick out individual words or use a <a href="http://watchout4snakes.com/creativitytools/randomword/randomwordplus.aspx">random word generator</a>.</p>
<p>Your challenge is to look at a word and speak about it for at least 60 seconds, focusing on your pace and pausing while you speak. You can tell relevant stories, relate it to your summer vacation, whatever works for you.</p>
<p>If 60 seconds is too easy, try two minutes or more. If you can&#8217;t stop using filler words, restart every time you use one.</p>
<p><a name="choose_mastery_topic"></a></p>
<hr />
<h2>Choose Your Mastery Topics</h2>
<p style="text-align: center;"><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/choose_mastery_topics.jpg"><img class="aligncenter  wp-image-735" title="choose mastery topics" alt="How To Improve Speaking Skills in 7 Simple Steps   choose mastery topics" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/choose_mastery_topics.jpg" width="626" height="100" /></a></p>
<p>We&#8217;ve gone over how to improve speaking skills via Clarity and Flow. The focus was to fix some of the errors we were making and help us build a bit more confidence. The next steps let us build a stronger speaking strategies.</p>
<p>Let&#8217;s start by choosing Mastery Topics.</p>
<p>Mastery Topics are subjects that you&#8217;re interested in and passionate about. When you discuss these topics you naturally exude more confidence and excitement, and you&#8217;re more likely to draw listeners into your world. And, since you&#8217;ll be talking about your mastery topics so much, you&#8217;ll have all of the speaking nuances of the topics covered as well.</p>
<p>I&#8217;m passionate about living abroad, running a social skills business, general success, learning and food. And if I can I&#8217;ll pull our conversation over intto one of those topics and blow you away.</p>
<h3>Challenge: A Master Of&#8230;</h3>
<p>Let&#8217;s figure out what topics you&#8217;re passionate about. Give me a simple answer to each of these 5 questions:</p>
<ol>
<li>What do you think about most?</li>
<li>What do you most often spend your money on?</li>
<li>What do you spend most of your free time on?</li>
<li>If you could do anything without a chance of failure, what would it be?</li>
<li>Without worrying about money, time or skill, what is your dream-vacation?</li>
</ol>
<p>My answers were: Success, Food, Learning, Running a Social Skills Business, Living Abroad.</p>
<p>First we&#8217;ll sort them. Ask yourself, what is more generally interesting, Topic 1 or Topic 2? If Topic 1 is more interesting, ask yourself if Topic 1 is more generally interesting than Topic 3. Once you&#8217;re at the bottom of the list, add the most interesting topic to the new list.</p>
<p>My ordered list is: Living Abroad, Running a Business, Success, Learning, and Food. You should think that you can make the first topic on the list the most generally interesting. If so, let&#8217;s work on that Mastery Topic first.</p>
<p><a name="become_topic_master"></a></p>
<hr />
<h2>Become a Topic Master</h2>
<p style="text-align: center;"><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/become_topic_master.jpg"><img class="aligncenter  wp-image-736" title="become topic master" alt="How To Improve Speaking Skills in 7 Simple Steps   become topic master" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/become_topic_master.jpg" width="626" height="100" /></a></p>
<p>So you want to be a topic master? No? Well, make it your temporary day-dream.</p>
<p>Take a second to think about your everyday conversations.</p>
<p>Generally you fall into a topic that you&#8217;re comfortable with and your conversations follow similar paths. The why is fairly simple: we&#8217;re programmed to pursue pleasure&#8211;the same positive reactions to the same topics and jokes&#8211;and avoid pain&#8211;the potential shame of expressing an opinion that makes everyone around you uncomfortable.</p>
<p>There&#8217;s nothing wrong with this, but if we naturally do it all of the time we might as well do it on purpose. To add some flair to our speaking skills we&#8217;ll need to add some sub-topics to our Mastery Topic.</p>
<p>With these sub-topics we can practice our clarity, flow and style.</p>
<h3>Challenge: What&#8217;s Interesting About&#8230;</h3>
<p>You&#8217;ve selected a Mastery Topic and now you&#8217;re going to flesh it out. Ask yourself, &#8220;What&#8217;s interesting about THIS,&#8221; where THIS is your Mastery Topic. Keep going until you can&#8217;t think of any more, and then add one or two anyway.</p>
<p>Here are some examples for my Mastery Topic &#8220;Living Abroad&#8221;:</p>
<ul>
<li>Dream Life
<ul>
<li>I really want to live in Los Angeles</li>
<li>I thought of moving to Belize</li>
</ul>
</li>
<li>Why Live Abroad?</li>
<li>Living in Toronto</li>
<li>Living in China
<ul>
<li>I want to go back and study Mandarin</li>
</ul>
</li>
<li>Living in London</li>
<li>Living in Sweden</li>
<li>Living in Oxford</li>
</ul>
<p><a name="develop_style"></a></p>
<hr />
<h2>Develop Style</h2>
<p style="text-align: center;"><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/stealing_style.jpg"><img class="aligncenter  wp-image-728" title="develop style" alt="How To Improve Speaking Skills in 7 Simple Steps   stealing style" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/stealing_style.jpg" width="626" height="100" /></a></p>
<p>Droning on in a monotone will never be interesting, no matter the quality of the content coming out of your mouth. The trick is to express those same words in a more appealing manner.</p>
<p>To do this, I suggest you emulate somewhere better than yourself.</p>
<blockquote><p>&#8220;Men nearly always follow the tracks made by others and proceed in their affairs by imitation, even though they cannot entirely keep to the tracks of others or emulate the prowess of their models. So a prudent man should always follow in the footsteps of great men and imitate those who have been outstanding. If his own prowess fails to compare with theirs, at least it has an air of greatness about it.&#8221; &#8211; Niccolo Machiavelli</p></blockquote>
<p>Consider these five skills and your ability to use them to create interest in conversation:</p>
<ol>
<li>Volume</li>
<li>Pace</li>
<li>Gestures</li>
<li>Humour</li>
<li>Story-telling</li>
</ol>
<p>With all of those skills, you use them to emphasize the words that you&#8217;re speaking. Sometimes they replace words. Instead of going on about these skills, let&#8217;s go over the challenge.</p>
<h3>Challenge: Stealing a Style</h3>
<p>Choose one of these skills: volume, pace, gestures, humour and story-telling. Now choose a professional speaker, someone you&#8217;d like to emulate and watch a video of them speaking.</p>
<p>Ask yourself, how do they use this skill? What one aspect of the skill could I steal for myself? Write it down and keep the video.</p>
<p>Here are some suggestions for speakers to emulate:</p>
<h4>Jim Rohn</h4>
<p><iframe src="//www.youtube.com/embed/5DJfCwNOwOs?rel=0" height="360" width="640" allowfullscreen="" frameborder="0"></iframe></p>
<h4>Eric Thomas</h4>
<p><iframe src="//www.youtube.com/embed/5fsm-QbN9r8?rel=0" height="480" width="640" allowfullscreen="" frameborder="0"></iframe></p>
<h4>Tony Robbins</h4>
<p><iframe src="//www.youtube.com/embed/Cpc-t-Uwv1I?rel=0" height="480" width="640" allowfullscreen="" frameborder="0"></iframe><br />
<a name="practice_daily"></a></p>
<hr />
<h2>Practice Daily</h2>
<p><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/practice_daily.jpg"><img class="aligncenter size-full wp-image-729" alt="How To Improve Speaking Skills in 7 Simple Steps   practice daily" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/practice_daily.jpg" width="626" height="100" title="How To Improve Speaking Skills in 7 Simple Steps" /></a><br />
Be honest with yourself when you answer this question: do you think that you&#8217;re going to have improved speaking skills when you finish reading this post?</p>
<p>I don&#8217;t write that well.</p>
<p>But while reading won&#8217;t improve your speaking skills, behaviour will.</p>
<p>There are two behaviours that you should build:</p>
<ol>
<li>Practice Daily</li>
<li>Practice at Events</li>
</ol>
<p>The next section will cover events.</p>
<p>Practicing daily is fairly simple. Every day, put aside some time to go over one of the exercises from this post. If that sounds too hard&#8211;and I understand that committing to anything is often challenging&#8211;ask yourself whether 5 minutes a day for 15 days is too much. If it is, then something else is on your mind and you need to handle that.</p>
<p>If not, I put together the option of receiving a challenge a day for fifteen days. The challenges are short enough that you can complete them in 5 minutes or less.</p>
<h3>Challenge: The Daily Grind</h3>
<p>Build your own program of daily speaking practice</p>
<p><a name="practice_events"></a></p>
<hr />
<h2>Practice at Events</h2>
<p><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/practice_at_events.jpg"><img class="aligncenter size-full wp-image-730" alt="How To Improve Speaking Skills in 7 Simple Steps   practice at events" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/02/practice_at_events.jpg" width="626" height="100" title="How To Improve Speaking Skills in 7 Simple Steps" /></a><br />
Weight Watchers has been using the buddy system technique for years. The act of losing weight is motivational, but losing weight and being celebrated for it is far more exciting. Not to mention having people to hold you accountable when you have a bad week.</p>
<p>Where were you? Watching the game? Canada&#8217;s Next Top Lumberjack? Come on, this is important.</p>
<p>Attend an event that will let you focus on your conversational skills on a weekly basis. There are many events that you could attend, though my favourites are <a href="http://www.toastmasters.org/">Toastmasters</a> and professional networking events that you can easily find on <a href="http://www.meetup.com/">Meetup.com</a>.</p>
<p>I found this great clip of Jason McGarva, who attended Toastmasters to improve his speaking ability, giving an amazing speech:</p>
<p><iframe width="980" height="735" src="http://www.youtube.com/embed/XPKe6e0xbvE?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Personally I attend meetup groups on a fairly regular basis and I have other social events that I use for the same purpose. The trick is to keep a short list of specific skills that you&#8217;d like to practice while you&#8217;re there.</p>
<ol>
<li>I will use a broad gesture to create interest.</li>
<li>I will try speaking much slower than I&#8217;m used to.</li>
<li>I will will talk about my best Mastery Topic.</li>
</ol>
<h3>Challenge: Creature of Habit</h3>
<p>Find at least one speaking or networking event that you can attend for the next four weeks and put it in your schedule. You can worry later about whether or not you&#8217;ll go.</p>
<hr />
<h2>Conclusion</h2>
<p>I&#8217;ve told you to speak clearly and develop flow. I&#8217;ve introduced you to Mastery Topics and what they can do for you. I&#8217;ve asked you to emulate some pretty awesome public speakers. I&#8217;ve suggested that you practice, practice, practice and I&#8217;ve given you some great resources to do just that.</p>
<p>Now it&#8217;s all you!</p>
<p>If you&#8217;ve had some other insights on <em>how to improve speaking skills</em> I&#8217;d love to see them in the comments below. Please share what worked for you and what you&#8217;re currently trying out!</p>
<p>Grab this in PDF Format: <a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/HowtoImproveSpeakingSkills.pdf">How to Improve Speaking Skills PDF</a></p>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/how-to-improve-speaking-skills-in-7-simple-steps/">How To Improve Speaking Skills in 7 Simple Steps</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/how-to-improve-speaking-skills-in-7-simple-steps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to REALLY Get a Job After University</title>
		<link>http://www.troyfawkes.com/how-to-really-get-a-job-after-university/</link>
		<comments>http://www.troyfawkes.com/how-to-really-get-a-job-after-university/#comments</comments>
		<pubDate>Mon, 07 Jan 2013 17:15:30 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Archives]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=715</guid>
		<description><![CDATA[<p>Have you just graduated from University or College, or maybe you&#8217;ve been out of school a while and you&#8217;re still working at Happy Fun Land and wearing a uniform? Want a good job in your field? I&#8217;ve got a magic pill for you. Well, assuming you&#8217;re reasonably intelligent. First off, I&#8217;d like you to trust [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/how-to-really-get-a-job-after-university/">How to REALLY Get a Job After University</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Have you just graduated from University or College, or maybe you&#8217;ve been out of school a while and you&#8217;re still working at Happy Fun Land and wearing a uniform? Want a good job in your field? I&#8217;ve got a magic pill for you.</p>
<p><span id="more-715"></span></p>
<p>Well, assuming you&#8217;re reasonably intelligent.</p>
<div id="attachment_717" style="width: 294px" class="wp-caption aligncenter"><a href="http://www.troyfawkes.com/how-to-really-get-a-job-after-university/reasonably-intelligent/" rel="attachment wp-att-717"><img class="size-full wp-image-717" alt="How to REALLY Get a Job After University   reasonably intelligent" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2013/01/reasonably-intelligent.jpg" width="284" height="288" title="How to REALLY Get a Job After University" /></a><p class="wp-caption-text">Hurr&#8230;.</p></div>
<p>First off, I&#8217;d like you to trust the messenger: me. I&#8217;m Troy. I&#8217;m 24. Up until a couple hours ago, I was the senior technical recruiter and team leader of a small staffing and recruiting start-up in Ottawa. Now I&#8217;m an SEO Specialist for a slightly larger and more successful digital marketing start-up in Toronto. Last year I was a professor of oral English in Changsha, China. I think the job immediately before that was serving tables, the rest is fairly exciting but not relevant.</p>
<p>While it might appear that I&#8217;m a gypsy and journey off to wherever the hell I can find work, fixing pans and stealing babies as I go, the reality is that for each employment I&#8217;ve set a very specific goal before choosing a job and place to settle.</p>
<p>The same kind of goal that you probably have: get a job that you like, in your field, that&#8217;ll advance your career and teach you amazing things. Preferably in an office with a foosball table and a liquor cabinet.</p>
<p>Obviously I&#8217;ve managed some pretty neat tricks with regards to what I&#8217;m qualified for and what goals I&#8217;ve set myself and somehow managed to achieve. Let that be a hint that a lot more than you think is possible. Either that or a reason to hate me for my apparently endless supply of luck.</p>
<p>In any case, the goal is the first step. The plan is the second&#8211;it&#8217;s also the magic pill.<br />
Find or beg for an internship. Ask for $0 unless they offer more. Yes, up to three months making nothing. Four-hundred-and-eighty hours of your services for free is not a hard sell on most employers, believe me. So much so that many have internship programs in place regardless of your begging&#8211;Google &#8220;intern YOUR_FIELD YOUR_CITY&#8221; right now if you don&#8217;t believe me.</p>
<p>Going from your original phone call or email to actually having the job might be a hassle, but in my experience it&#8217;s much easier than those ridiculous group interviews at retail stores where they grill you on your passion for retail&#8211;hint, no one has a passion for retail, they&#8217;re just wondering how well you can drink the Kool-Aid.</p>
<p>But once you&#8217;re in, your position on LinkedIn suddenly changes from &#8220;Cashier &#8211; Tons of Totally Useful Skills Acquired, at The Corner Store&#8221; to &#8220;Digital Marketing Specialist, at a Company That Sounds Like It Has a Nice Office&#8221; or &#8220;Communications Officer, at a Three Letter Acronym (TLA) Company.&#8221; Granted you&#8217;re not getting paid for it, but now you&#8217;re working in your field.</p>
<p>Assuming they don&#8217;t hire you on permanently after three months, you now have coveted work experience in your field and can apply for junior positions elsewhere with great references.</p>
<p>It&#8217;s up to you to blow them away with your work, but then again, all you&#8217;ve ever asked for was a chance to prove yourself, right?</p>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/how-to-really-get-a-job-after-university/">How to REALLY Get a Job After University</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/how-to-really-get-a-job-after-university/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modern PHP Web Development Set-up, Happy Boxing Day!</title>
		<link>http://www.troyfawkes.com/modern-web-developmet-setup/</link>
		<comments>http://www.troyfawkes.com/modern-web-developmet-setup/#comments</comments>
		<pubDate>Wed, 26 Dec 2012 23:32:04 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Archives]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=707</guid>
		<description><![CDATA[<p>Hey folks, I&#8217;m working on some web development stuff right now and I realized that my starting project setup is a pretty useful compilation of tools. It keeps being updated, but this is what I&#8217;ve been using for a while now. In summary, this is an assortment of front-end and back-end tools that make building [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/modern-web-developmet-setup/">Modern PHP Web Development Set-up, Happy Boxing Day!</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Hey folks, I&#8217;m working on some web development stuff right now and I realized that my starting project setup is a pretty useful compilation of tools. It keeps being updated, but this is what I&#8217;ve been using for a while now.</p>
<p><span id="more-707"></span></p>
<p>In summary, this is an assortment of front-end and back-end tools that make building a new application very quick and easy. I didn&#8217;t make most of it. I just made sure all of the little pieces connect well.</p>
<p>The one part I&#8217;m responsible for is the front controller, which isn&#8217;t the most beautiful contraption but it gets the job done and is very flexible for a 150 line class.</p>
<p>Included:</p>
<ul>
<li><strong>Sass</strong>, a <a href="http://sass-lang.com/">css preprocessor</a>: Makes writing CSS much quicker with zero performance hit</li>
<li><strong>Compass</strong>, a <a href="http://compass-style.org/">Sass extension</a>: Extremely useful plugins and added functionality for Sass</li>
<li><strong>Twitter Bootstrap</strong>, a <a href="http://twitter.github.com/bootstrap/">front-end framework</a>: Makes wireframing a new project beautifully simple</li>
<li><strong>Savant3</strong>, a <a href="http://phpsavant.com/">PHP Template System</a>: A great way to separate view logic from controller logic</li>
<li>My <strong>custom front controller</strong>: Nice URLs and the final touch for basic MVC functionality</li>
</ul>
<p><strong>NOTE:</strong> You&#8217;ll have to install SASS and Compass separately as they&#8217;re Ruby gems, but once they&#8217;re installed they&#8217;re already integrated into this new site setup.</p>
<p>Download here: <a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2012/12/sass_compass_bootstrap_savant3_customFrontController.zip">sass_compass_bootstrap_savant3_customFrontController</a></p>
<p>These aren&#8217;t the same tools as I used for realcompliments, but it will be once I get around to restructuring that application into a stricter OO and MVC (roughly at the same time as I&#8217;ll be redoing the design). In the meantime, people have been adding tons of <a title="sweet things to say to your girlfriend" href="http://www.realcompliments.com/sweet-things-to-say-to-your-girlfriend">sweet things to say to your girlfriend</a> over the holidays if you&#8217;re interested :)</p>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/modern-web-developmet-setup/">Modern PHP Web Development Set-up, Happy Boxing Day!</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/modern-web-developmet-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When I Was a Writer</title>
		<link>http://www.troyfawkes.com/when-i-was-a-writer/</link>
		<comments>http://www.troyfawkes.com/when-i-was-a-writer/#comments</comments>
		<pubDate>Mon, 03 Sep 2012 18:38:12 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Archives]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=703</guid>
		<description><![CDATA[<p>I recently told a friend that I used to be a writer, but that now I&#8217;m just an old grandmother with lots of stories. And grandmothers don&#8217;t often come up with new and exciting adventures to relate to their onlookers; even the best rehash and dig into their repositories. I have so many stories. Not [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/when-i-was-a-writer/">When I Was a Writer</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I recently told a friend that I used to be a writer, but that now I&#8217;m just an old grandmother with lots of stories. And grandmothers don&#8217;t often come up with new and exciting adventures to relate to their onlookers; even the best rehash and dig into their repositories.</p>
<p><span id="more-703"></span></p>
<p>I have so many stories. Not all of them are, to be honest, stories. Most of them are snippets, opinions, wisdom perhaps. I can remember warmly sharing the same ideas in the same words in a coffee shop in Ottawa to a friend I&#8217;d known for years; in a ritzy mansion-come-night club in Stockholm to a blond-haired, blue-eyed Victoria Secret model; and in a little garage restaurant on the outskirts of a Chinese city over my favourite three-legged dog to one of my students.</p>
<p>I&#8217;ve found that maybe they don&#8217;t have a plot, these little throw-away conversation pieces. But often they fall into the theme of living a beautiful life.</p>
<blockquote><p>Eunoia is my favourite word. Not only is it the shortest word in the English language that includes all of the vowels, but it has the most incredible meaning. &#8220;Beautiful thinking.&#8221; &#8230;</p></blockquote>
<blockquote><p>Sky Lee once wrote, &#8220;Would you rather write a great novel, or live one?&#8221; That&#8217;s a heck of a question to ask yourself&#8211;would someone read this book that I&#8217;m living right now? &#8230;</p>
<p>Did you know that there are only 28,000 days in the average person&#8217;s life? 7,000 of which are when we&#8217;re too young to make decisions of our own. 7,000 of which are when we&#8217;re too old to act on our decisions. And we spend the other 7,000 sleeping, eating, and waiting in line. If you&#8217;re 18, you really only have 7,000 days left to live &#8230; and I don&#8217;t know about you, but I&#8217;m not 18 anymore. &#8230;</p></blockquote>
<p>I&#8217;m not currently a writer, because, in Sky Lee&#8217;s eyes, I&#8217;m neither writing or living. I&#8217;m taking a break. Days and hours are going by that no one wants to read about. A book wouldn&#8217;t be beautiful if the author was negligent with his words, so despite the wonderful abstraction of hiding a mind beneath skin and skull, we can still assume that a brain is as average as the photograph it takes at the back of the home town coffee shop on the last day of a long weekend before going back to the drudgery of another week without stories.</p>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/when-i-was-a-writer/">When I Was a Writer</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/when-i-was-a-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Friend Zone</title>
		<link>http://www.troyfawkes.com/the-friend-zone/</link>
		<comments>http://www.troyfawkes.com/the-friend-zone/#comments</comments>
		<pubDate>Sun, 06 May 2012 07:55:33 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Dating Skills]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=670</guid>
		<description><![CDATA[<p>The Friend Zone occurs when a woman has categorized you as a friend and not a potential lover. For women, these categories are mutually exclusive. A guy is either a friend, or a potential boyfriend/husband, rarely both. There are exceptions, but they are very rare. from Mark Manson&#8217;s, Models I think Manson&#8217;s definition is the [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/the-friend-zone/">The Friend Zone</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<blockquote><p>The Friend Zone occurs when a woman has categorized you as a friend and not a potential lover. For women, these categories are mutually exclusive. A guy is either a friend, or a potential boyfriend/husband, rarely both. There are exceptions, but they are very rare.</p>
<p>from Mark Manson&#8217;s, <em>Models</em></p></blockquote>
<p>I think Manson&#8217;s definition is the most common definition of <strong>The Friend Zone</strong>. The idea is that a guy is a friend <em>or</em> a potential lover, never or rarely both.</p>
<p><span id="more-670"></span></p>
<p>I vehemently disagree. Not that there is no friend zone&#8211;there definitely is&#8211;but the friend zone isn&#8217;t some arbitrary, nonsensical feminine rule.</p>
<p>The friend zone is simply the space in a relationship when you are <em>friends</em>.</p>
<p><a href="http://www.troyfawkes.com/wordpress/wp-content/uploads/2012/05/the-friend-zone.jpg"><img class="aligncenter size-full wp-image-689" title="the-friend-zone" alt="The Friend Zone   the friend zone" src="http://www.troyfawkes.com/wordpress/wp-content/uploads/2012/05/the-friend-zone.jpg" width="468" height="54" /></a></p>
<p>So let&#8217;s examine this space and see <em>why so many lonely singles are in the friend zone</em>.</p>
<p>I believe that two people are friends because they <em>value</em> each other. If they&#8217;re good friends, or more than friends, they <em>value each other a lot</em>. <strong>Mutual value</strong> moves relationships forward.</p>
<p>I&#8217;ll write a big post about value later, but for now:</p>
<blockquote><p>Value is all of the good things about you, minus all of the bad things.</p></blockquote>
<p>All other things equal, beauty is better than ugliness, kindness is better than meanness, wealth is better than poverty, interesting is better than dull, etc. <strong>Mutual value</strong> is when you see value in each other; value is very subjective because it&#8217;s not concrete, it&#8217;s perceived.</p>
<p>There&#8217;s a fairly obvious addition to mutual value: <strong>intent</strong>. Intent is like the steering wheel of value. Someone in the relationship has to take action to direct where it is going.</p>
<p>While <strong>mutual value and intent</strong> push you forward, <strong>boundaries</strong> hold you back. A boundary is a rule that we use to protect ourselves; it lets us hold back on making a decision until we&#8217;ve made sure it&#8217;s safe.</p>
<p>When you use your <strong>mutual value and intent</strong> push against a boundary, it creates <strong>pressure</strong>. You might know this as <strong>sexual tension</strong>.</p>
<p>A girl who has a &#8220;three date rule&#8221; has a boundary against sleeping with a guy within three days. This will stop mutual value and intent from pushing the relationship into another phase.</p>
<p>This boundary is small since nothing horrible will happen if she breaks it. For the most part, small boundaries can be broken without hurting anyone. You break through this kind of boundary with pressure, which I&#8217;ve said is created by <strong>mutual value and intent</strong> pushing against a <strong>boundary</strong>.</p>
<p>It&#8217;s like squeezing a balloon until it pops&#8211;the balloon is the barrier, the air is the mutual value, and squeezing it is the intent. Without any of those, nothing happens.</p>
<p>As a guy with a girlfriend I would have a boundary against going on a romantic date with a girl friend of mine&#8211;the boundary isn&#8217;t against the date, it&#8217;s against the escalation of the friendship to something more, because if it went passed friendship then suddenly my steady relationship&#8211;among other things&#8211;is in danger.</p>
<p>If you push against this kind of boundary, the friendship can die. Either the huge amount of tension will make the person with the boundary uncomfortable or crossing the boundaries will cause the expected side-effects and lots of people get hurt. It&#8217;s where ethics come in&#8211;personally I&#8217;d be fine pushing through a 3 date rule boundary, but if a girl has a boyfriend sleeping with her is not an option.</p>
<p>How does this all relate to the friend zone? Isn&#8217;t a boundary what keeps you as a friend?</p>
<p>Boundaries keep you from going past the friend zone, but they are generic, not person-specific. No girl says, &#8220;Even if Joe Loser became super rich, incredibly sociable and respected, I found out that he was amazing in bed, and I was single, I&#8217;d never date him.&#8221;</p>
<p>No girl ever says, &#8220;I don&#8217;t want to date an awesome, compatible guy.&#8221;</p>
<p>If someone says to you, &#8220;<strong>let&#8217;s just be friends,</strong>&#8220; they&#8217;re saying one of two things:</p>
<ol>
<li><em>Our mutual value is too low</em>. Of course, since I&#8217;m saying it to you, it&#8217;s really, &#8220;your value is too low.&#8221;</li>
<li><em>You have hit one of my boundaries and there&#8217;s too much pressure</em>. In my mind, there are obvious reasons why we can&#8217;t or shouldn&#8217;t move forward.</li>
</ol>
<p>For some reason I highly doubt all of the guys and girls complaining about being in the &#8220;friend zone&#8221; have built up so much sexual tension that it&#8217;s driving a girl crazy.</p>
<p>How often do you hear a guy say, &#8220;We hit it off amazingly, had wonderful sex, she&#8217;s single, I&#8217;m single, we&#8217;re both well off and compatible, and we both want to be in a long term monogamous relationship. But she doesn&#8217;t want to date me. She just wants to be friends.&#8221;</p>
<p>Never? Shocking!</p>
<p>So if they&#8217;re not hitting a barrier, then the problem isn&#8217;t some insane categorization. <strong>It&#8217;s a lack of value</strong>.</p>
<p>We all have standards of value that people need to meet before our relationship moves forward. Maybe those standards are time spent together, adventures had, conversational value or flirty teasing, or signs that a person is going to be fun in the future as well as this moment.</p>
<p>But would it surprise you if I said that people spending more time working on improving themselves&#8211;being more social, keeping healthy, learning about how to deal with their emotions, becoming less needy, exploring new skills and ideas&#8211;<em>would never be complaining about <strong>the friend zone</strong></em>.</p>
<p>People who genuinely have all of that going for them will be complaining about specific boundaries instead.</p>
<p>The next time someone asks you how to get out of the friendzone, just let them know that there are no tricks. First, try&#8211;this is <strong>intent</strong>. If that doesn&#8217;t work, look for <strong>boundaries</strong>. If there are no valid ones&#8211;and they should be obvious&#8211;then, be really, truly happy to say this:</p>
<p>It&#8217;s you.</p>
<p>And now you have yet another reason to go about making yourself a better person, which is the most wonderful thing you could do for yourself anyway.</p>
<p>I promise to have a post about value, building value, etc. in the future since I know it&#8217;s on a lot of people&#8217;s minds now.</p>
<p>Enjoy Irresponsibly.</p>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/the-friend-zone/">The Friend Zone</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/the-friend-zone/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Negativity, Perception and Your World</title>
		<link>http://www.troyfawkes.com/negativity-perception-and-your-world/</link>
		<comments>http://www.troyfawkes.com/negativity-perception-and-your-world/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 05:59:08 +0000</pubDate>
		<dc:creator><![CDATA[Troy Fawkes]]></dc:creator>
				<category><![CDATA[Archives]]></category>
		<category><![CDATA[Dating Skills]]></category>

		<guid isPermaLink="false">http://www.troyfawkes.com/?p=656</guid>
		<description><![CDATA[<p>As part of my current project, I&#8217;m reading a book called The Book of Pook. It&#8217;s a collection of posts on a dating advice forum by Pook&#8211;that&#8217;s his alias. The book moves from 2000 to 2008. Over the course, I noticed that Pook became more and more negative. I realize &#8220;negative&#8221; is vague, but let [&#8230;]</p><p>The post <a rel="nofollow" href="http://www.troyfawkes.com/negativity-perception-and-your-world/">Negativity, Perception and Your World</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>As part of my <a href="http://www.datingmadeeasier.com/viewtopic.php?f=4&amp;t=84">current project</a>, I&#8217;m reading a book called <em>The Book of Pook</em>. It&#8217;s a collection of posts on a dating advice forum by Pook&#8211;that&#8217;s his alias.</p>
<p>The book moves from 2000 to 2008. Over the course, I noticed that Pook became more and more negative.</p>
<p>I realize &#8220;negative&#8221; is vague, but let me paint the world to you in frightening colours:</p>
<p>You control your reality.</p>
<p><span id="more-656"></span></p>
<p>The world feeds you about 2 million bits of information every second, and your subconscious can only acknowledge around 134 bits. Consciously, we can only acknowledge 7 bits. How fast are you breathing? How fast is your heart beating? These things happen all of the time, but you don&#8217;t notice them.</p>
<p>How do we get from 2 million bits down to 134? How do we get down to 7? Through filters. You, your genes and your environment train your brain to filter information in a way that is deemed important. We call these filters &#8220;perception.&#8221;</p>
<p>Knowing this, you can use it to pump up your life. Take this whole week to start looking for positive people around you. You&#8217;ll see them everywhere for the whole week, as if you magically made them appear. Read this one sentence a hundred times: a person&#8217;s name is their favourite word in the English language, learn it and they&#8217;ll love you. Practice for this week&#8211;you&#8217;ll find that you remember (and try to remember) people&#8217;s names as if it was in your nature.</p>
<p>Sometimes you train your perception like this. Sometimes it&#8217;s trained for you&#8211;by television, friends, and family. Sometimes it&#8217;s an accident.</p>
<p>Pook trained himself to filter &#8220;people&#8221; into horrible little subcategories. Idiots. Sluts. Androgens. Failures.</p>
<p>Remember how you&#8217;re going to look for positive people this week? How they will all suddenly appear? Pook has trained himself to look for negative people. And he&#8217;s right&#8211;they&#8217;re everywhere. They&#8217;ll appear to him just as much as positive people will appear to you. Out of 2 million people, he will find the 134 worst to focus on.</p>
<p>And he built that world.</p>
<p>I realize that the concepts of filters, perception, and your world are alien to you. I appreciate that you have stuff to do with your time. But in five years, I don&#8217;t want you to wake up to negative people every day. If you won&#8217;t take this week to notice positive people and appreciate the importance of their names, at least take the couple seconds after you finish reading this post to think about how you might be building a potentially frightening world for yourself.</p>
<p>&lt;3</p>
<p>The post <a rel="nofollow" href="http://www.troyfawkes.com/negativity-perception-and-your-world/">Negativity, Perception and Your World</a> appeared first on <a rel="nofollow" href="http://www.troyfawkes.com">Troy Fawkes</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.troyfawkes.com/negativity-perception-and-your-world/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.561 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2014-03-02 06:43:14 -->
