<?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>Brett Hutley&#039;s Blog &#187; blogging</title>
	<atom:link href="http://bretthutley.com/tag/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://bretthutley.com</link>
	<description>Home on the Digital Range</description>
	<lastBuildDate>Mon, 23 Jan 2012 21:21:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Blogging Process</title>
		<link>http://bretthutley.com/2011/11/05/blogging-process/</link>
		<comments>http://bretthutley.com/2011/11/05/blogging-process/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 16:40:12 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[evernote]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">https://bretthutley.com/?p=363</guid>
		<description><![CDATA[I have been meaning to blog more for ages. I have had a blog on the internet since early 1990 in one form or other, but I just tend to do sporadic blogging. Every so often I get fired up with communicating and write some blog posts, and then my enthusiam wanes for a while, [...]


Related posts:<ol><li><a href='http://bretthutley.com/programming/emacs/integrating-emacs-and-xcode/' rel='bookmark' title='Integrating Emacs and XCode'>Integrating Emacs and XCode</a></li>
<li><a href='http://bretthutley.com/programming/emacs/opening-a-cobjective-cc-header-file-in-emacs/' rel='bookmark' title='Opening a header file in Emacs'>Opening a header file in Emacs</a></li>
<li><a href='http://bretthutley.com/2011/11/21/emacs-and-kanban/' rel='bookmark' title='Emacs and Kanban'>Emacs and Kanban</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have been meaning to blog more for ages. I have had a blog on the internet since early 1990 in one form or other, but I just tend to do sporadic blogging. Every so often I get fired up with communicating and write some blog posts, and then my enthusiam wanes for a while, and my writing tails off.</p>
<p><span id="more-363"></span></p>
<p>Throughout 2011 though, I have written a paragraph each and every day in my iPhone. Kind of a mini-diary. It's been the longest period of regular writing that I have ever had. The factor that's made me write regularly for so long is that I put a repeating reminder in my iPhone. At 4:45pm each day my phone rings a bell, which reminds me that I need to write down my <a href="http://www.momentoapp.com/">Momento</a> for the day.</p>
<p>Now I'm trying to apply this same technique to my blogging - setting aside a time to write, and writing a blog post each day.</p>
<h2>Capturing Information</h2>
<p>I use <a href="http://www.evernote.com/">Evernote</a> to capture information throughout the day, especially interesting articles I read online. Within Safari, I can highlight the text I want to capture, press Cmd-C to copy it, and then press Ctrl-Cmd-V to paste it to a new note in Evernote. It's fast, and it also saves the URL for attribution</p>
<h2>Emacs - org-mode and markdown</h2>
<p>When I'm ready to write, I start off by creating a directory to write in. In fact, I have an Emacs function that creates the directory for me, along with an <a href="http://orgmode.org/">org-mode</a> file, and a <a href="http://jblevins.org/projects/markdown-mode/">markdown</a> file. The org-mode file is where I write the skeleton of the post, and the markdown file is where I write the prose. Here is the emacs lisp code that sets me up for blogging:</p>
<pre class="lisp">&nbsp;
<span style="color: #66cc66;">&#40;</span>defvar bh-blog-article-dir <span style="color: #66cc66;">&#40;</span>expand-file-<span style="color: #b1b100;">name</span> <span style="color: #ff0000;">&quot;~/Dropbox/docs/blog-posts&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
&nbsp;
<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> bh-blog-article-start <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
  <span style="color: #66cc66;">&#40;</span>interactive<span style="color: #66cc66;">&#41;</span>
  <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">let</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>topic-<span style="color: #b1b100;">name</span> <span style="color: #66cc66;">&#40;</span>read-string <span style="color: #ff0000;">&quot;Topic: &quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
        <span style="color: #66cc66;">&#40;</span>post-dir <span style="color: #b1b100;">nil</span><span style="color: #66cc66;">&#41;</span>
        <span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">setq</span> base-post-topic <span style="color: #66cc66;">&#40;</span>mapconcat <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">function</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">lambda</span> <span style="color: #66cc66;">&#40;</span>x<span style="color: #66cc66;">&#41;</span> x<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>  <span style="color: #66cc66;">&#40;</span>split-string topic-<span style="color: #b1b100;">name</span><span style="color: #66cc66;">&#41;</span> <span style="color: #ff0000;">&quot;-&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">setq</span> post-dir  <span style="color: #66cc66;">&#40;</span>concat bh-blog-article-dir <span style="color: #ff0000;">&quot;/&quot;</span> <span style="color: #66cc66;">&#40;</span>format-time-string <span style="color: #ff0000;">&quot;%Y%m%d&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #ff0000;">&quot;-&quot;</span> base-post-topic<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>make-directory post-dir<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>find-file <span style="color: #66cc66;">&#40;</span>concat post-dir <span style="color: #ff0000;">&quot;/&quot;</span> base-post-topic <span style="color: #ff0000;">&quot;.org&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>find-file-other-window <span style="color: #66cc66;">&#40;</span>concat post-dir <span style="color: #ff0000;">&quot;/&quot;</span> base-post-topic <span style="color: #ff0000;">&quot;.md&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#41;</span>
  <span style="color: #66cc66;">&#41;</span>
&nbsp;</pre>
<h2>Uploading</h2>
<p>When a post is ready to be uploaded, I have a Python script that converts the markdown file to HTML format, extracts the first H1 heading in the HTML to use as the post title, and then uploads the post to my blog.</p>


<p>Related posts:<ol><li><a href='http://bretthutley.com/programming/emacs/integrating-emacs-and-xcode/' rel='bookmark' title='Integrating Emacs and XCode'>Integrating Emacs and XCode</a></li>
<li><a href='http://bretthutley.com/programming/emacs/opening-a-cobjective-cc-header-file-in-emacs/' rel='bookmark' title='Opening a header file in Emacs'>Opening a header file in Emacs</a></li>
<li><a href='http://bretthutley.com/2011/11/21/emacs-and-kanban/' rel='bookmark' title='Emacs and Kanban'>Emacs and Kanban</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2011/11/05/blogging-process/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blogging as Gardening</title>
		<link>http://bretthutley.com/2010/07/18/blogging-as-gardening/</link>
		<comments>http://bretthutley.com/2010/07/18/blogging-as-gardening/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 17:11:21 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.bretthutley.com/?p=256</guid>
		<description><![CDATA[You know; blogging is a lot like gardening. Some peoples' blogs have been completely neglected - untended and overgrown with weeds. Mine has become a lot like that. An out-of-date WordPress environment, stale posts overcome with comment spam weeds. I want to start treating my blog as though I was a gardner tending his garden. [...]


Related posts:<ol><li><a href='http://bretthutley.com/2011/11/05/blogging-process/' rel='bookmark' title='Blogging Process'>Blogging Process</a></li>
<li><a href='http://bretthutley.com/2009/08/21/blogging-seo-talk-matt-cutts/' rel='bookmark' title='Blogging and SEO talk by Matt Cutts'>Blogging and SEO talk by Matt Cutts</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>You know; blogging is a lot like gardening. Some peoples' blogs have been completely neglected - untended and overgrown with weeds. Mine has become a lot like that. An out-of-date WordPress environment, stale posts overcome with comment spam weeds.</p>
<p><span id="more-256"></span>I want to start treating my blog as though I was a gardner tending his garden. Regularly adding new posts. Replying quickly to any comments. Upgrading and improving my blogging environment as I can. I would like to minister to a site that will encourage people to stroll around and smell the flowers.</p>


<p>Related posts:<ol><li><a href='http://bretthutley.com/2011/11/05/blogging-process/' rel='bookmark' title='Blogging Process'>Blogging Process</a></li>
<li><a href='http://bretthutley.com/2009/08/21/blogging-seo-talk-matt-cutts/' rel='bookmark' title='Blogging and SEO talk by Matt Cutts'>Blogging and SEO talk by Matt Cutts</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2010/07/18/blogging-as-gardening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Citizen Journalism, social networking and reputation</title>
		<link>http://bretthutley.com/2009/11/11/citizen-journalism-social-networking-and-reputation/</link>
		<comments>http://bretthutley.com/2009/11/11/citizen-journalism-social-networking-and-reputation/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 13:07:22 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[trends]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://www.bretthutley.com/?p=219</guid>
		<description><![CDATA[Bill Thompson has posted a thoughtful article over at the BBC about the changes that social networking is making to our standards of social interaction. He discusses his own tweeting and live-blogging at conferences, and then talks about the news updates that were tweeted by Tearah Moore during the Fort Hood incident. Obviously these are [...]


Related posts:<ol><li><a href='http://bretthutley.com/2009/02/20/social-collapse-best-practices/' rel='bookmark' title='Social Collapse &#8211; Best Practices'>Social Collapse &#8211; Best Practices</a></li>
<li><a href='http://bretthutley.com/2010/06/28/the-death-of-blogging/' rel='bookmark' title='The Death of Blogging'>The Death of Blogging</a></li>
<li><a href='http://bretthutley.com/2011/11/14/rewiring-the-brain/' rel='bookmark' title='Rewiring the Brain'>Rewiring the Brain</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Bill Thompson has posted <a href="http://news.bbc.co.uk/1/hi/technology/8352295.stm"> a thoughtful article over at the BBC</a> about the changes that social networking is making to our standards of social interaction. He discusses his own tweeting and live-blogging at conferences, and then talks about the news updates that were tweeted by Tearah Moore during the Fort Hood incident.</p>
<p><span id="more-219"></span></p>
<p>Obviously these are two examples that illustrate both the good and bad sides of citizen journalism. The good being closer interaction with the audience, potentially closer exposure to events as they are unfolding and the speed at which events are reported. The bad being that there is no controls over the quality of the information being reported - it may be true, it may not. Also, citizen journalists may unwittingly or deliberately trample over the rights of the people being reported on.</p>
<p>I think that <b>reputation</b> is the panacea for the problems described above. Journalists have a reputation to consider when they are reporting. This keeps them focused on reporting the facts and ethically constrained (obviously something has gone horribly wrong at Fox News). As <i>online</i> reputation becomes more of a consideration for Joe or Jill Plumber, hopefully it will mean they too will be more concerned with "getting it right", as far as their tweets, blog posts, and Facebook updates go.</p>


<p>Related posts:<ol><li><a href='http://bretthutley.com/2009/02/20/social-collapse-best-practices/' rel='bookmark' title='Social Collapse &#8211; Best Practices'>Social Collapse &#8211; Best Practices</a></li>
<li><a href='http://bretthutley.com/2010/06/28/the-death-of-blogging/' rel='bookmark' title='The Death of Blogging'>The Death of Blogging</a></li>
<li><a href='http://bretthutley.com/2011/11/14/rewiring-the-brain/' rel='bookmark' title='Rewiring the Brain'>Rewiring the Brain</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2009/11/11/citizen-journalism-social-networking-and-reputation/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Blogging and SEO talk by Matt Cutts</title>
		<link>http://bretthutley.com/2009/08/21/blogging-seo-talk-matt-cutts/</link>
		<comments>http://bretthutley.com/2009/08/21/blogging-seo-talk-matt-cutts/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 11:03:14 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.bretthutley.com/?p=181</guid>
		<description><![CDATA[Matt Cutts gave an extremely interesting and dynamic talk at WordCamp about blogging and Search Engine Optimization. Not only was it extremely entertaining, but it contained lots of interesting tidbits about how to increase the PageRank of your site. Related posts:Blogging as Gardening Blogging Process Dr Jill Bolte Taylor&#8217;s stroke experience


Related posts:<ol><li><a href='http://bretthutley.com/2010/07/18/blogging-as-gardening/' rel='bookmark' title='Blogging as Gardening'>Blogging as Gardening</a></li>
<li><a href='http://bretthutley.com/2011/11/05/blogging-process/' rel='bookmark' title='Blogging Process'>Blogging Process</a></li>
<li><a href='http://bretthutley.com/2008/04/17/dr-jill-bolte-taylors-stroke-experience/' rel='bookmark' title='Dr Jill Bolte Taylor&#8217;s stroke experience'>Dr Jill Bolte Taylor&#8217;s stroke experience</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Matt Cutts gave an extremely interesting and dynamic talk at WordCamp about blogging and Search Engine Optimization. Not only was it extremely entertaining, but it contained lots of interesting tidbits about how to increase the PageRank of your site.</p>
<p><embed src="http://v.wordpress.com/lAZUouJF" type="application/x-shockwave-flash" width="400" height="220" allowscriptaccess="always" allowfullscreen="true"></embed></p>


<p>Related posts:<ol><li><a href='http://bretthutley.com/2010/07/18/blogging-as-gardening/' rel='bookmark' title='Blogging as Gardening'>Blogging as Gardening</a></li>
<li><a href='http://bretthutley.com/2011/11/05/blogging-process/' rel='bookmark' title='Blogging Process'>Blogging Process</a></li>
<li><a href='http://bretthutley.com/2008/04/17/dr-jill-bolte-taylors-stroke-experience/' rel='bookmark' title='Dr Jill Bolte Taylor&#8217;s stroke experience'>Dr Jill Bolte Taylor&#8217;s stroke experience</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2009/08/21/blogging-seo-talk-matt-cutts/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
	</channel>
</rss>

