 
    
<?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>Writing Archives - Complete, Concrete, Concise</title>
	<atom:link href="https://complete-concrete-concise.com/category/writing/feed/" rel="self" type="application/rss+xml" />
	<link>https://complete-concrete-concise.com/category/writing/</link>
	<description>Practical Information Without The Bloat</description>
	<lastBuildDate>Sun, 12 Mar 2023 12:10:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>5 Minute Vim Tutorial</title>
		<link>https://complete-concrete-concise.com/blog/5-minute-vim-tutorial/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Wed, 26 Oct 2016 18:11:54 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Vim]]></category>
		<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[understanding]]></category>
		<category><![CDATA[vim]]></category>
		<guid isPermaLink="false">http://www.complete-concrete-concise.com/?p=3186</guid>

					<description><![CDATA[<p>This tutorial won't turn you into a Vim wizard, but at least you will be able to open, navigate, edit, and save files using Vim.</p>
<p>The post <a href="https://complete-concrete-concise.com/blog/5-minute-vim-tutorial/">5 Minute Vim Tutorial</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="preamble">
Vim works differently from other editors you are used to, but it only takes about 5 minutes to learn the basics you need to edit with Vim. You won’t be a Vim wizard, but you will be able to:</p>
<ul>
<li>Open a file</li>
<li>Move around in a file</li>
<li>Edit text in a file</li>
<li>Save a File</li>
</ul>
<p>The slightly longer <a href="#Extended">Extended 5 Minute Tutorial</a> you will show you how to <strong>search</strong> in a file, get <strong>help</strong>, and <strong>access</strong> Vim’s own built-in tutorial.
</div>
<h2 id="contents">Contents</h2>
<ol type="1">
<li><a href="#Vim-in-5">Vim in 5 Minutes (or less)</a></li>
<li><a href="#Extended">The Extended 5+ Minute Tutorial</a>
<ol type="1">
<li><a href="#Normal">Normal Mode</a></li>
<li><a href="#Opening">Opening a File</a></li>
<li><a href="#Saving">Saving a File</a></li>
<li><a href="#Exiting">Exiting Vim</a></li>
<li><a href="#Navigating">Navigating a File</a></li>
<li><a href="#Inserting">Inserting and Deleting Text</a></li>
<li><a href="#Searching">Searching</a></li>
<li><a href="#Help">Getting Help</a></li>
</ol>
</li>
<li><a href="#Final">Final Words</a></li>
</ol>
<h2 id="Vim-in-5">Vim in 5 Minutes (or less)</h2>
<ul>
<li>Vim operates in <span class="mark">Modes</span>. Vim always starts in <span class="mark">Normal Mode</span>.</li>
<li><span class="mark">Normal Mode</span> is your base mode and you should always return to it.</li>
<li>All command / control keys are <strong>case sensitive</strong>.</li>
<li>If you are not in <span class="mark">Normal Mode</span>, you (usually) get back to <span class="mark">Normal Mode</span> by pressing the <span class="kbd">Escape</span> key twice.</li>
<li>If you see <span class="mark">recording</span> in the lower left corner of the screen, press the <span class="kbd">q</span> key to return to <span class="mark">Normal Mode</span>.</li>
<li>If you’ve messed stuff up, return to <span class="mark">Normal Mode</span> and type <span class="kbd">:q!</span> followed by the <span class="kbd">Enter</span> key to exit Vim <strong>without</strong> saving the file.</li>
<li>In <span class="mark">Normal Mode</span> you can navigate the file using the <span class="kbd">h</span>, <span class="kbd">j</span>, <span class="kbd">k</span>, <span class="kbd">l</span> keys (left, down, up, right). You might also be able to use the arrow keys on the keyboard<a id="fnref1" class="footnote-ref" href="#fn1"><sup>1</sup></a>.</li>
<li>When you have navigated to where you want to edit the file (inserting or deleting text), press the <span class="kbd">i</span> key to enter <span class="mark">Insert Mode</span>.</li>
<li>In <span class="mark">Insert Mode</span> you can <strong>only</strong> enter or delete text from the current cursor position &#8211; you <strong>cannot</strong> navigate. To navigate, press the <span class="kbd">Escape</span> key to return to <span class="mark">Normal Mode</span>.</li>
<li>To save (write) the file, return to <span class="mark">Normal Mode</span> and type <span class="kbd">:w</span> followed by the <span class="kbd">Enter</span> key.</li>
<li>To exit (quit) Vim, return to <span class="mark">Normal Mode</span> and type <span class="kbd">:q</span> followed by the <span class="kbd">Enter</span> key.</li>
</ul>
<h2 id="Extended">The Extended 5 Minute Tutorial</h2>
<p>This adds <span class="mark">searching</span> and <span class="mark">help</span> to the 5 Minute Tutorial, but, otherwise, keeps the information to the bare minimum so you can quickly be functional in Vim instead of frustrated.<br />
All command / control keys are <strong>case sensitive</strong>: <span class="kbd">h</span> is not the same as <span class="kbd">H</span>!</p>
<h3 id="Normal">Normal Mode</h3>
<p><span class="mark">Normal Mode</span> is the default mode and it should be the mode you always go back to.<br />
Most times, you press the <span class="kbd">Escape</span> key once or twice<a id="fnref2" class="footnote-ref" href="#fn2"><sup>2</sup></a> to return to <span class="mark">Normal Mode</span>.<br />
If you see <span class="mark">recording</span> in the lower left corner of the screen, press the lowercase <span class="kbd">q</span> key to return to <span class="mark">Normal Mode</span>.</p>
<h3 id="Opening">Opening a File</h3>
<p>The simplest way to open a file is to type <span class="kbd">vim</span> at the command line followed by the name of the file:</p>
<div id="cb1" class="sourceCode">
<pre class="sourceCode bash"><code><a id="cb1-1" class="sourceLine" data-line-number="1"></a><span class="ex">user@COMPUTER</span>:~$ vim file.txt</code></pre>
</div>
<p>If it is a <strong>new</strong> file you should see something like this:</p>
<pre class="vim"><code>
~
~
~
~
~
"file.txt" [New File]                       0,0-1          All</code></pre>
<p>If it is an <strong>existing</strong> file, you should see something like <span class="note" data-note="The actual contents will depend on the file you opened.">this</span>:</p>
<pre class="vim"><code>&lt;!doctype html&gt;
&lt;html lang="en"&gt;
  &lt;head&gt;
    &lt;meta charset="utf-8"&gt;
    &lt;title&gt;Basic HTML5 Template&lt;/title&gt;
    &lt;link rel="stylesheet" href="style.css"&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;!-- page content goes here --&gt;
    &lt;p&gt;This is some dummy content that is not lorem ipsum.&lt;/p&gt;
  &lt;/body&gt;
&lt;/html&gt;
~
~
~
"basic.html" 12L, 290C                      1,1           All</code></pre>
<p>The status line<a id="fnref3" class="footnote-ref" href="#fn3"><sup>3</sup></a> (at the bottom of the screen) displays the following information:</p>
<ul>
<li>file name</li>
<li>total number of lines in the file</li>
<li>total number of characters in the file</li>
<li>current line the cursor is on</li>
<li>current column the cursor is in</li>
<li>percentage showing the position in the file (if <span class="mark">All</span> : the entire file is visible, <span class="mark">Bot</span> : at the bottom (end) of the file, <span class="mark">Top</span> : at the top of the file)</li>
</ul>
<p>In <span class="mark">Normal Mode</span> load a file by typing <span class="kbd">:edit</span> followed by the filename and then pressing the <span class="kbd">Enter</span> key.:</p>
<pre class="vim"><code>:edit basic.html</code></pre>
<p>This discards the current file (if any) and loads the specified file.<br />
If the file to be discarded has been modified, but not saved, you will see the following warning in the status line:</p>
<pre class="vim"><code>E37: No write since last change (add ! to override)</code></pre>
<p>If you don’t care about saving the file, simply append <span class="kbd">!</span> to the <span class="kbd">:edit</span> command:</p>
<pre class="vim"><code>:edit! basic.html</code></pre>
<p>The <span class="kbd">!</span> tells Vim to “just do it!” and ignore any warnings.</p>
<h3 id="Saving">Saving a File</h3>
<p>You need to be in <span class="mark">Normal Mode</span> to save a file.<br />
Save a file by typing <span class="kbd">:w</span> followed by the <span class="kbd">Enter</span> key.<br />
If you want to save the file with a different name, type <span class="kbd">:w</span> followed by the new file name and then press the <span class="kbd">Enter</span> key:</p>
<pre class="vim"><code>:w new-filename.txt</code></pre>
<h3 id="Exiting">Exiting Vim</h3>
<p>You need to be in <span class="mark">Normal Mode</span> to exit Vim.<br />
Type <span class="kbd">:q</span> followed by the <span class="kbd">Enter</span> key to exit Vim.<br />
If Vim warns you that the file has been modified, you can choose to <a href="#Saving">save it</a> or you can force Vim to exit without saving the file by typing <span class="kbd">:q!</span> followed by the <span class="kbd">Enter</span> key. The <span class="kbd">!</span> tells Vim to “just do it” and exit without saving the file.</p>
<h3 id="navigating-a-file-navigating">Navigating a File {Navigating}</h3>
<p>You need to be in <span class="mark">Normal Mode</span> to navigate a file.<br />
The letters <span class="kbd">h</span>, <span class="kbd">j</span>, <span class="kbd">k</span>, <span class="kbd">l</span> navigate the cursor through the file. (You may also be able to use the arrow keys present on most keyboards.)<br />
They act like arrow keys and are conceptually laid out like this:</p>
<table style="font-size: 2em; text-align: centered; font-family: inconsolata,monospace; border-collapse: collapse;">
<tbody>
<tr>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">h<br />
←</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">j<br />
↓</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">k<br />
↑</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">l<br />
→</td>
</tr>
</tbody>
</table>
<p>When you navigate left (<span class="kbd">h</span>) to the beginning of a line, the cursor will stop. It will <strong>not</strong> wrap around and up to the previous line.<br />
When you navigate right (<span class="kbd">l</span>) to the end of a line, the cursor will stop. It will <strong>not</strong> wrap around and down to the next line.<br />
If you type a <strong>positive</strong> integer (which will not be displayed), followed by one of the navigation keys, the cursor will move that many characters / lines.<br />
For example, in <span class="mark">Normal Mode</span>, if you type <span class="kbd">10j</span>, the cursor will move down 10 lines.</p>
<h3 id="Inserting">Inserting and Deleting Text</h3>
<p>In <span class="mark">Insert Mode</span> the only thing you can do is insert or delete text. (You <strong>may</strong> be able to use the arrow keys on your keyboard to navigate the text while in this mode, but there is no guarantee, navigating is supposed to be done in <span class="mark">Normal Mode</span>)<br />
Enter <span class="mark">Insert Mode</span> by pressing the <span class="kbd">i</span>, <span class="kbd">a</span>, <span class="kbd">I</span>, or <span class="kbd">A</span> key.</p>
<ul>
<li><span class="kbd">i</span> insert / delete before the cursor (what you would intuitively expect when entering or deleting text).</li>
<li><span class="kbd">a</span> append / delete after the current cursor position.</li>
<li><span class="kbd">I</span> insert / delete at the beginning of the line.</li>
<li><span class="kbd">A</span> append / delete at the end of the line.</li>
</ul>
<p>You will (probably) be using <span class="kbd">i</span> most frequently.<br />
When you enter <span class="mark">Insert Mode</span> you will see <span class="mark">– INSERT –</span> displayed in the lower left corner:</p>
<pre class="vim"><code>The navigation keys are h, j, k, l.
h moves the̲ cursor one character left
l moves the cursor one character right
j moves the cursor one line down
k moves the cursor one line up
~
~
~
~
-- INSERT --                       3,11      All</code></pre>
<p>Press the <span class="kbd">Escape</span> key to return to <span class="mark">Normal Mode</span>.</p>
<h3 id="Searching">Searching</h3>
<p>You must be in <span class="mark">Normal Mode</span> to search.<br />
In a large file, it is useful to locate items of interest by searching for them.<br />
To search, type <span class="kbd">/</span> followed by the text you want to find, followed by the <span class="kbd">Enter</span> key.<br />
Vim treats the search string as a regular expression &#8211; which means some characters have a special meaning. If you need to search for the following characters, you will need to type them as follows:</p>
<table style="border-collapse: collapse;">
<tbody>
<tr style="font-weight: bold;">
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">Name</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">Character</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">Need to Type</td>
</tr>
<tr>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">Period</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">.</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">.</td>
</tr>
<tr>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">Asterisk</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">*</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">\*</td>
</tr>
<tr>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">Backslash</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">&lt;/td&gt;</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">\</td>
</tr>
<tr>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">Dollar Sign</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">$</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">$</td>
</tr>
<tr>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black;">Forward Slash</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">/</td>
<td style="padding: 0.2em 1em 0 1em; border: 1px solid black; text-align: center;">/</td>
</tr>
</tbody>
</table>
<p>Searches are case sensitive.<br />
You can navigate between search results by pressing <span class="kbd">n</span> (next) or <span class="kbd">N</span> (previous).</p>
<h3 id="Help">Getting Help</h3>
<p>You need to be in <span class="mark">Normal Mode</span> to use help.<br />
To get help on something in Vim, simply type <span class="kbd">:help</span> followed by the thing you want help on.<br />
For example, to get help on the navigation key <span class="kbd">h</span>, type <span class="kbd">:help h</span> followed by the <span class="kbd">Enter</span> key.<br />
You should see something similar to the following:</p>
<pre class="vim"><code>h         or          *h*
&lt;Left&gt;    or          *&lt;Left&gt;*
CTRL-H    or          *CTRL-H* *&lt;BS&gt;*
&lt;BS&gt;      [count] characters to the left.  |exclusive| motion.
          Note: If you prefer &lt;BS&gt; to delete a character, use
          the mapping:
             :map CTRL-V&lt;BS&gt;    X
          (to enter "CTRL-V&lt;BS&gt;" type the CTRL-V key, followed
          by the &lt;BS&gt; key)
          See |:fixdel| if the &lt;BS&gt; key does not do what you
          want.
m̲o̲t̲i̲o̲n̲.̲t̲x̲t̲ ̲[̲H̲e̲l̲p̲]̲[̲R̲O̲]̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲1̲7̲2̲,̲1̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲1̲2̲%̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲
Vim will split the display into two panes. In the upper pane
you will see the help text. In the lower pane you will see your
current editing buffer.
Now you know that Vim supports multiple editing buffers - but
that is not the point of this tutorial.
~
~
~
~
a-file.txt                     4,5              All
</code></pre>
<p>The help can be pretty dense and not user friendly, but it <em>may</em> be helpful.<br />
To close the help window, type <span class="kbd">:q</span> followed by the <span class="kbd">Enter</span> key.<br />
If you type <span class="kbd">:help</span>, it will bring up the general help file. You can navigate through it for topics of interest.<br />
You might also try <span class="kbd">:help tutor</span> for instructions on accessing the Vim tutor which is included with every Vim installation.</p>
<h3 id="Final">Final Words</h3>
<p>Vim may not be the easiest or most intuitive editor you will come across. However, it (or its ancestor Vi) is quite ubiquitous and this tutorial gives you the basics you need so you are minimally functional with it.<br />
The basics are simple:</p>
<ol type="1">
<li>Vim operates in <span class="mark">Modes</span>.</li>
<li>All command / control keys are <strong>case sensitive</strong> : <span class="kbd">k</span> is not the same as <span class="kbd">K</span>.</li>
<li>The base mode is <span class="mark">Normal Mode</span>. You (usually) get back to it by pressing the <span class="kbd">Escape</span> key once or twice.</li>
<li>Navigating a file is done in <span class="mark">Normal Mode</span> using the <span class="kbd">h</span>, <span class="kbd">j</span>, <span class="kbd">k</span>, <span class="kbd">l</span> keys.</li>
<li>When the cursor is where you want to insert or delete text, you press the <span class="kbd">i</span> key to enter <span class="mark">Insert Mode</span>.</li>
<li>Search in <span class="mark">Normal Mode</span> by typing <span class="kbd">/</span> followed by the string you want to find and then the <span class="kbd">Enter</span> key. Navigate the search results using the <span class="kbd">n</span> and <span class="kbd">N</span> keys.</li>
<li>Save a file by typing <span class="kbd">:w</span> in <span class="mark">Normal Mode</span>.</li>
<li>Exit Vim by typing <span class="kbd">:q</span> in <span class="mark">Normal Mode</span>.</li>
<li>In <span class="mark">Normal Mode</span> you can get help by typing <span class="kbd">:help</span></li>
</ol>
<section class="footnotes">
<hr />
<ol>
<li id="fn1">Vi (the precursor to Vim) was developed in 1976. Arrow keys were not commonly found on keyboards, so <span class="kbd">h</span>, <span class="kbd">j</span>, <span class="kbd">k</span>, <span class="kbd">l</span> were used.<a class="footnote-back" href="#fnref1">↩</a></li>
<li id="fn2">Some modes require one key press, others require two. If you press it too many times, the computer will just beep at you. Vim newbies often repeatedly press the <span class="kbd">Escape</span> key in the hopes of returning to <span class="mark">Normal Mode</span><a class="footnote-back" href="#fnref2">↩</a></li>
<li id="fn3">This is true for the default Status Line. It is always possible that someone has modified the Status Line to display different information, or in a different arrangement.<a class="footnote-back" href="#fnref3">↩</a></li>
</ol>
</section>
<p>The post <a href="https://complete-concrete-concise.com/blog/5-minute-vim-tutorial/">5 Minute Vim Tutorial</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Write a To-Do List</title>
		<link>https://complete-concrete-concise.com/writing/how-to-write-a-to-do-list/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 20:09:44 +0000</pubDate>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[to-do list]]></category>
		<category><![CDATA[todo list]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/writing/how-to-write-a-to-do-list</guid>

					<description><![CDATA[<p>While this article is specifically for making a &#8220;writing to-do&#8221; list, the same techniques apply to any other type of to-do list. 1) Write it Down Write it down on a piece of paper and put it somewhere you can see it. If the list is in your head, it is not a to-do list [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/writing/how-to-write-a-to-do-list/">How to Write a To-Do List</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>While this article is specifically for making a &#8220;writing to-do&#8221; list, the same techniques apply to any other type of to-do list.</p>
</div>
<h1>1) Write it Down</h1>
<p>Write it down on a piece of paper and put it somewhere you can see it.</p>
<p>If the list is in your head, it is not a to-do list</p>
<div class="c2">
<p>I confess, this is my biggest problem. I tend to keep everything in my head and get less accomplished than when I actually write it down, can see it, and can check it off when I&#8217;m done.</p>
</div>
<h1>2) Be Specific</h1>
<p>Vague, nebulous, or open-ended things are not doable items.</p>
<p>Things like:</p>
<ol>
<li>Start writing book</li>
<li>Write some articles for website</li>
<li>Do research on castles</li>
</ol>
<p>are vague, open-ended tasks that either waste your time or cause you to procrastinate and avoid your to-do list.</p>
<p>A better list would be:</p>
<ol>
<li>Write two pages of book</li>
<li>Write article on removing wine stains from table clothes for website</li>
<li>Check Wikipedia for info on 13<sup>th</sup> century castles in Spain</li>
</ol>
<h1>3) Make it Doable</h1>
<p>We are often told to &#8220;stretch ourselves&#8221;, or &#8220;to get out of our comfort zone&#8221;. And these are good mantras, but &#8230; if you have never written a book, then having &#8220;Write book&#8221; on your to-do list is way beyond stretching yourself.</p>
<p><p>Even something like &#8220;write chapter&#8221; is probably too much of a stretch, but something like, &#8220;write 2 pages&#8221; is doable (or maybe even just one page).</p>
<p>Don&#8217;t put what you would <em>like</em> to do, put down what you <em>can</em> do.</p>
<p>Suppose you have a book report to write, break it down into tasks you <u>can do</u> not tasks you <u>hope to do</u>.</p>
<div class="c2">
<p>Completing items on your to-do list has a strong positive psychological effect &#8211; &#8220;Yeah, I wrote two pages!&#8221; &#8211; which is going to encourage you to completing more than if you are left with the feeling, &#8220;Ugh, I still gotta write that book report.&#8221;</p>
</div>

<p>The post <a href="https://complete-concrete-concise.com/writing/how-to-write-a-to-do-list/">How to Write a To-Do List</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Writing Quickly</title>
		<link>https://complete-concrete-concise.com/writing/writing-quickly/</link>
					<comments>https://complete-concrete-concise.com/writing/writing-quickly/#comments</comments>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Mon, 27 Jun 2011 16:38:15 +0000</pubDate>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[hard]]></category>
		<category><![CDATA[writing]]></category>
		<category><![CDATA[writing quickly]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/writing/writing-quickly</guid>

					<description><![CDATA[<p>In a previous post, I discussed how writing is hard because we get frustrated that the process of writing is so much slower than our process of ideation. However, we often make the process even harder by writing at a slower pace than we are capable. As a writer, it&#8217;s easy to become overwhelmed by [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/writing/writing-quickly/">Writing Quickly</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<div class="c1">
<p>In a <a href="//complete-concrete-concise.com/writing/why-writing-is-hard">previous post</a>, I discussed how writing is hard because we get frustrated that the process of writing is so much slower than our process of ideation. However, we often make the process even harder by writing at a slower pace than we are capable.</p>
</div>



<p>As a writer, it&#8217;s easy to become overwhelmed by the blank page. We often focus on crafting the perfect first sentence, spending hours agonizing over every word and phrase. However, this approach can be counterproductive, as it places too much emphasis on the final product without considering the importance of the raw material: words.</p>



<p>In truth, the medium that a writer works with is not ideas or even pen and paper, but words themselves. Without words, a blank sheet of paper is just that: blank. To create something meaningful, we must first supply the words, filling the page with our thoughts, emotions, and ideas.</p>



<p>Of course, this is easier said than done. It&#8217;s tempting to get caught up in the minutiae of writing, focusing on perfecting every sentence and phrase before moving on to the next. However, this approach can quickly become overwhelming and hinder the creative process.</p>



<p>Instead, I recommend adopting a more fluid and organic approach to writing. Write quickly and without judgment, allowing your thoughts to flow freely onto the page. Don&#8217;t worry about repetition, inconsistencies, or uneven flow &#8211; just get the words out.</p>



<p>Once you&#8217;ve written for as long as you can, set your work aside for a day or two. When you return to it, you&#8217;ll likely find that it&#8217;s far from perfect. But that&#8217;s okay. You now have raw material to work with &#8211; words that you can shape, rearrange, and refine until they become something greater than the sum of their parts.</p>



<p>Remember, writing is a two-step process: first, you create the raw material; second, you revise and refine it. Don&#8217;t worry about crafting the perfect first draft &#8211; just get the words out. The process of revision will be much easier and more effective once you have a solid foundation to build on.</p>



<figure class="wp-block-image"><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/06/writing-quickly.jpg" alt=""/></figure>



<div class="c1">
<p>Image is used under terms of the <a href="http://creativecommons.org/licenses/by/2.0/deed.en">Creative Commons Attribution License</a>.</p>
<p>Original image is by <a href="http://www.flickr.com/photos/izzyplante/">izzyplante </a>and can be found <a href="http://www.flickr.com/photos/izzyplante/40464446/">here</a>.</p>
<p>The image has been modified from the original to: (1) extract the foreground person, (2) blur the paper and writing, (3) add copyright mark, and (4) resized.</p>
</div>


<p>The post <a href="https://complete-concrete-concise.com/writing/writing-quickly/">Writing Quickly</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://complete-concrete-concise.com/writing/writing-quickly/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Why Writing is Hard</title>
		<link>https://complete-concrete-concise.com/writing/why-writing-is-hard/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Tue, 31 May 2011 02:27:49 +0000</pubDate>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[difficult]]></category>
		<category><![CDATA[frustrating]]></category>
		<category><![CDATA[hard]]></category>
		<category><![CDATA[why writing is hard]]></category>
		<category><![CDATA[writing]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/writing/why-writing-is-hard</guid>

					<description><![CDATA[<p>&#8220;There&#8217;s nothing to writing. All you do is sit down at a typewriter and open a vein.&#8221; ~Walter Wellesley &#8220;Red&#8221; Smith &#8220;Writing is easy: All you do is sit staring at a blank sheet of paper until drops of blood form on your forehead.&#8221; ~Gene Fowler Writing can be a source of frustration for anyone [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/writing/why-writing-is-hard/">Why Writing is Hard</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<blockquote><p>&#8220;There&#8217;s nothing to writing. All you do is sit down at a typewriter and open a vein.&#8221; ~Walter Wellesley &#8220;Red&#8221; Smith</p></blockquote>
<blockquote><p>&#8220;Writing is easy: All you do is sit staring at a blank sheet of paper until drops of blood form on your forehead.&#8221; ~Gene Fowler</p></blockquote>
</div>
<p>Writing can be a source of frustration for anyone who has ever tried it. The ideas that seemed so clear in our minds often come out all wrong on paper. But why is this so?</p>
<h1>Writing is not Talking</h1>
<p>Writing is not the same as talking. It is similar, but not the same. Writing is more precise; it omits word whispers (uhm, err, and awkward pauses), it omits filler words (like, you know, see, and other more colourful words people pepper their speech with).</p>
<p>You would never write (unless, maybe, you&#8217;re <a href="http://en.wikipedia.org/wiki/Shaggy_Rogers">Shaggy</a>):</p>
<blockquote><p>Like, man, it was some dark and stormy night, you know.</p></blockquote>
<p>Instead you would write:</p>
<blockquote><p>It was a dark and stormy night.</p></blockquote>
<h1>Writing is not Thinking</h1>
<p>We don&#8217;t think in words. There might be words, phrases that appear in our thoughts, but so do images and emotions and memories.</p>
<h1>Writing is Slow</h1>
<p>The main reason writing is so difficult is because it is slow. And this slowness makes writing frustrating. It makes getting your ideas on paper a struggle as your ideas race ahead of your written words.</p>
<p>We speak (in English) at a rate of 120 words per minute or faster. Audio books are read at a speed of around 150 words per minute. Newscasters speak at 200 words per minute or faster.</p>
<p>When composing we type around 19 words per minute or write by hand about 31 words per minute.</p>
<p>What you can say in a minute takes at least 6 minutes to type or 4 minutes to write out by hand (longer if you are a fast talker).</p>
<p>What we were able to say so effortlessly, has slowed to a crawl when we try to write it down. We get frustrated.</p>
<p>Even more disheartening, the average person reads around 250 words per minute, so that minute of speech, that 6 minutes of typing can be read in 30 seconds. Six minutes of work reviewed in a few seconds. Is it any wonder writing seems so difficult? Several minutes of work for a few seconds of consumption &#8211; it hardly seems fair.</p>
<p>I have no idea how fast we think (to the best of my knowledge no one has tried measuring that). Thinking consists of not just words, but images and emotions and memories which are all worth hundreds, if not thousands, of words.</p>
<p>When you think of Annabella emerging from the house onto the porch in her white dress, it comes with images of the porch, the house, the garden, the sky, the clouds, the trees, the birds singing, the breeze, the smells and, maybe, in your mind is the word &#8220;radiant&#8221; to describe her. All of that comes to you in a fraction of a second or maybe a few seconds.</p>
<p>To describe all that, to convey the sights and sounds and smells and emotions to the reader might take several hundred words. That image, which came in a flash of inspiration to you, now takes 30 minutes or longer to write down.</p>
<p>Consider another scene where you see the epic sword battle between Count Voltorb and Lord Raichu. You see the climax where Lord Raichu loses his sword and Count Voltorb is coming in for the kill, but in a daring move Lord Raichu dives, rolls, and grabs his sword with a fluid motion and kicks at Count Voltorb knocking him off balance. How long many words to share this battle scene with someone so they feel that they are there? A lot more than the 19 words you will type, or 31 you will write, in a minute.</p>
<div class="c1">
<p>Writing is hard because we are frustrated by how slow it is to put our ideas to paper.</p>
</div>
<div class="c2">
<p>Information on Words Per Minute was taken from the Wikipedia <a href="http://en.wikipedia.org/wiki/Words_per_minute">article </a>of the same name on 31-May-2011 (the information may have changed since I referenced it).</p>
<p>Needless to say, individual results may vary &#8211; you may be a faster writer (or slower), you may be a faster talker (or slower), you may be a faster reader (or slower).</p>
</div>
<p>The post <a href="https://complete-concrete-concise.com/writing/why-writing-is-hard/">Why Writing is Hard</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Are you a Writer?</title>
		<link>https://complete-concrete-concise.com/writing/are-you-a-writer/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Wed, 23 Mar 2011 16:26:02 +0000</pubDate>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[writer]]></category>
		<category><![CDATA[writing]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/writing/are-you-a-writer</guid>

					<description><![CDATA[<p>Many people talk about writing, dream about writing, fantasize about writing, wish they were writers. There is nothing wrong with all that – it shows great passion for writing, but … If you want to be a writer, then you must write. Imagine you want to be a gardener: talking about it is good, dreaming [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/writing/are-you-a-writer/">Are you a Writer?</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Many people talk about writing, dream about writing, fantasize about writing, wish they were writers.</p>
<p>There is nothing wrong with all that – it shows great passion for writing, but …</p>
<p class="c1">If you want to be a writer, then you must write.</p>
<p>Imagine you want to be a gardener: talking about it is good, dreaming about it is good, so is buying packets of seeds, tools, going to gardening shows and workshops, but if you never put seed into soil, if you never try to grow something, then you aren’t a gardener. It doesn’t matter if you have a large plot of land or a window sill with barely enough room for a small flowerpot &#8211; to be a gardener you must plant and grow things.</p>
<p>Of course, when people think about being a writer, they think about being a <em>published</em> writer. Being published is a great achievement, but if you haven’t written anything then you can’t be published.</p>
<p>Isaac Asimov, one of the most prolific writers, probably said it best:</p>
<blockquote><p>I write for the same reason I breathe — because if I didn&#8217;t, I would die.</p></blockquote>
<p><img fetchpriority="high" decoding="async" style="display: block; margin-left: auto; margin-right: auto; border-width: 0px;" title="scriv" src="//complete-concrete-concise.com/wp-content/uploads/2011/03/scriv6.png" border="0" alt="scriv" width="484" height="422" /></p>
<p></p>
<hr />
<p class="c3">I don’t know the original source of this image, so I am unable to credit it. If you know the original source (not just someone else using it), let me know and I will gladly credit the original artist (or remove and replace it if it is in violation of copyright and I can’t secure the right to it)..</p>
<p>The post <a href="https://complete-concrete-concise.com/writing/are-you-a-writer/">Are you a Writer?</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Proofreading Tricks and Tips</title>
		<link>https://complete-concrete-concise.com/writing/proofreading-tricks-and-tips/</link>
					<comments>https://complete-concrete-concise.com/writing/proofreading-tricks-and-tips/#comments</comments>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Thu, 21 Jan 2010 16:41:00 +0000</pubDate>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[proofreading]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/?p=9</guid>

					<description><![CDATA[<p>The best way to proofread your work is to get someone else to do it. Unfortunately, this is not always possible. The following proofreading techniques are easy and help minimize errors in your documents. Use a spell checker and grammar checker, but DON’T trust them. Spell checkers catch obviously misspelled words (like byt instead of [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/writing/proofreading-tricks-and-tips/">Proofreading Tricks and Tips</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>The best way to proofread your work is to get someone else to do it. Unfortunately, this is not always possible.</p>
</p></div>
<p>The following proofreading techniques are easy and help minimize errors in your documents.</p>
<ol>
<li><strong>Use</strong> a spell checker and grammar checker, but DON’T trust them. Spell checkers catch obviously misspelled words (like <em>byt</em> instead of <em>but</em>, but will miss <em>bit</em> if you meant <em>but</em>). Grammar checkers detect simple grammatical mistakes (like repeated words), but give a lot of spurious warnings. </li>
<li><strong>Look </strong>at the document differently. Change the font or go from single column to two columns. Changing the way the document appears makes it easier to notice errors. </li>
<li><strong>Print</strong> out the document. Reading hard copy is very different from reading on screen. </li>
<li><strong>Read</strong> it out loud. Preferably pointing at the words with a finger as you read. This is also a good way to ensure your content flows well. </li>
<li><strong>Put</strong> it aside and come back to it later. A break can help you see things in a fresh way. </li>
</ol>
<p></p>
<p>The post <a href="https://complete-concrete-concise.com/writing/proofreading-tricks-and-tips/">Proofreading Tricks and Tips</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://complete-concrete-concise.com/writing/proofreading-tricks-and-tips/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
