<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Tosbourn – Belfast based Ruby developers</title>
    <description>Tosbourn are a Belfast based Ruby development team who care deeply about the web.</description>
    <link>https://tosbourn.com</link>
    <atom:link href="https://tosbourn.com/feed.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Mon, 08 Jun 2026 08:47:06 +0000</pubDate>
    <lastBuildDate>Mon, 08 Jun 2026 08:47:06 +0000</lastBuildDate>
    <generator>Jekyll v4.4.1</generator>
    <language>en-gb</language>
    <copyright>©2026 Tosbourn Ltd.</copyright>
    <managingEditor>toby@tosbourn.com (Toby Osbourn)</managingEditor>
    <webMaster>toby@tosbourn.com (Toby Osbourn)</webMaster>
    <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
    <image>
      <url>https://tosbourn.com/img/tosbourn-logo.webp</url>
      <title>Tosbourn – Belfast based Ruby developers</title>
      <link>https://tosbourn.com</link>
      <height>140</height>
      <width>140</width>
    </image>
    <category>Writing</category>

    
      <item>
        <title>Decoupling Git and my Jekyll work</title>
        <description>&lt;p&gt;I’m experimenting with a new way of using version control on this Jekyll-powered website, I thought I’d share in case it was useful for someone.&lt;/p&gt;

&lt;p&gt;I will state the problems, what I used to do, and what I’m going to try out.&lt;/p&gt;

&lt;h2 id=&quot;the-problems&quot;&gt;The problems&lt;/h2&gt;

&lt;p&gt;I have one article I want to write at any given time, but sometimes that article can take days to write and in the interim I might have small tweaks, or different articles I want to get out.&lt;/p&gt;

&lt;p&gt;I also want to have articles scheduled to be posted at a date in the future.&lt;/p&gt;

&lt;p&gt;Finally, I have several articles that I want to have in a draft state. These aren’t the main thing I’m focused on, but something I’d like to have ticking away in the background.&lt;/p&gt;

&lt;p&gt;Jekyll has the ability to handle both drafts and posting in the future, and git has the ability to use branching to mean I can easily come back to an in-progress article. The issue is combining these three needs together can feel a bit clunky, I don’t want to have to merge a PR with a completely work in progress draft in it, but I also want access to it across all my branches.&lt;/p&gt;

&lt;h2 id=&quot;how-i-was-solving-this&quot;&gt;How I was solving this&lt;/h2&gt;

&lt;p&gt;The way I approached this before was branching based on the main article. We store our article ideas in Github issues, so the branch might be called something like &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;1431-rails-migration-guide&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;If an article was going to take longer than a session to write, I would commit it as a draft and if I needed to take a break from it I would branch again from &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;main&lt;/code&gt; on my new topic.&lt;/p&gt;

&lt;p&gt;Once an article was ready, I would move it from the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_drafts&lt;/code&gt; folder, rename it to suit the date I wanted it to go live onm and create a PR.&lt;/p&gt;

&lt;p&gt;This works fine, but often when I’m writing one article I have an idea for improving or drafting an unrelated article. I could add my thoughts to the issue, but sometimes that felt like more effort than it was worth.&lt;/p&gt;

&lt;h2 id=&quot;what-im-moving-to&quot;&gt;What I’m moving to&lt;/h2&gt;

&lt;p&gt;What I’ve started experimenting with is a branch name of today’s date, e.g. &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;2024-08-04&lt;/code&gt;, which is always branched off of main and always showing the next state of the website that I want to deploy.&lt;/p&gt;

&lt;p&gt;This should help me be a little more fluid with what I’m writing, whilst still maintaining a decent Git history by staging commits with appropriate mentions of the issue numbers I’m addressing.&lt;/p&gt;

&lt;p&gt;At the end of my work, I will send the branch up for pull request, and get it merged in.&lt;/p&gt;

&lt;p&gt;If there are issues, I won’t start working on another branch until those have been resolved.&lt;/p&gt;

&lt;p&gt;This feels like less process, but still an appropriate amount of rigor. Let’s see how it goes!&lt;/p&gt;
</description>
        <pubDate>Tue, 06 Aug 2024 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/experimenting-with-git-jekyll/</link>
        <guid isPermaLink="true">https://tosbourn.com/experimenting-with-git-jekyll/</guid>
        
        <category>Writing</category>
        
        <category>Git</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
      <item>
        <title>We&apos;ve deleted an article&apos;s worth of unhelpful words</title>
        <description>&lt;p&gt;We have removed around 600 words from across our articles that served no purpose. Indeed they detracted from the point of the articles they were removed from.&lt;/p&gt;

&lt;p&gt;600 words could easily be a solid article, especially if the writing is kept tight!&lt;/p&gt;

&lt;p&gt;In no particular order, here are some of the words we removed;&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;basically&lt;/li&gt;
  &lt;li&gt;essentially&lt;/li&gt;
  &lt;li&gt;probably&lt;/li&gt;
  &lt;li&gt;possibly&lt;/li&gt;
  &lt;li&gt;hacks&lt;/li&gt;
  &lt;li&gt;you need to&lt;/li&gt;
  &lt;li&gt;trivial&lt;/li&gt;
  &lt;li&gt;obviously&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In almost all cases the rest of the sentence didn’t need to change at all, and whilst it isn’t fair to say all instances of these words have been removed from the site, a fair few have and will continue to over the coming weeks.&lt;/p&gt;

&lt;h2 id=&quot;why-we-removed-these-words&quot;&gt;Why we removed these words&lt;/h2&gt;

&lt;p&gt;Words like ‘basically’ and ‘obviously’ are problematic, they infer that the reader gets something that they may not. It is up to me, the writer, to help them understand what I’m writing, not assume a level of knowledge.&lt;/p&gt;

&lt;p&gt;Most of the other words are filler. We write a lot of technical tutorials that have step-by-step parts of them. Changing “You need to click this button” to “Click this button” halves the word count of that sentence without changing anything about it.&lt;/p&gt;

&lt;h2 id=&quot;why-we-edit-old-articles&quot;&gt;Why we edit old articles&lt;/h2&gt;

&lt;p&gt;Almost all of our over 600 articles are visited at least once every two months, some articles get thousands of visits a month. We can’t predict when an old article is going to get linked and suddenly get viewed by a lot of people.&lt;/p&gt;

&lt;p&gt;With all that in mind, it isn’t good enough to just apply improvements to new articles, we always take care to update wording and links across all of our articles when we can.&lt;/p&gt;

&lt;p&gt;I love the idea that a 15-year-old article has been providing value to &lt;em&gt;someone&lt;/em&gt; all this time, and to think it has had a small improvement to mean for the next 15 years someone will get to the value that little bit quicker. Great stuff!&lt;/p&gt;

&lt;h2 id=&quot;want-to-get-in-on-this&quot;&gt;Want to get in on this?&lt;/h2&gt;

&lt;p&gt;Do a quick search of your articles for some of these terms, have a think about how the sentence would read without that term, and if you agree it is better, delete.&lt;/p&gt;

&lt;p&gt;When I started this process, I had two words on my list, but as I was visiting articles I was noticing more and more phrases that served little purpose. I’m sure you will find the same.&lt;/p&gt;
</description>
        <pubDate>Tue, 09 Apr 2024 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/we-have-deleted-an-articles-worth-of-unhelpful-words/</link>
        <guid isPermaLink="true">https://tosbourn.com/we-have-deleted-an-articles-worth-of-unhelpful-words/</guid>
        
        <category>Writing</category>
        
        <category>Marketing</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
      <item>
        <title>Getting Obsidian word count on iOS</title>
        <description>&lt;p&gt;Sometimes you need to know the word count for whatever you’re working on.&lt;/p&gt;

&lt;p&gt;If you’re using Obsidian’s iOS client the word count isn’t permanently on screen; however it is just a tap away!&lt;/p&gt;

&lt;p&gt;By clicking on the three-dotted kebab looking icon, a menu bar will appear, with both the word and character count at the top.&lt;/p&gt;

&lt;figure&gt;
  &lt;img src=&quot;/img/obsidian-word-count.webp&quot; alt=&quot;Screenshot showing the kebab icon on the top right of the screen&quot; loading=&quot;lazy&quot; /&gt;
  &lt;figcaption&gt;Screenshot showing the kebab icon on the top right of the screen&lt;/figcaption&gt;
&lt;/figure&gt;

&lt;p&gt;Happy counting!&lt;/p&gt;
</description>
        <pubDate>Sun, 01 May 2022 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/word-count-ios-obsidian/</link>
        <guid isPermaLink="true">https://tosbourn.com/word-count-ios-obsidian/</guid>
        
        <category>Writing</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
      <item>
        <title>The main reasons why we shouldn&apos;t use click here as link text</title>
        <description>&lt;p&gt;A typical pattern on the web is for links to hide behind text that says “click here”, “read more”, or similar. I’m going to share the reasons why this is bad and suggest some better patterns to use.&lt;/p&gt;

&lt;p&gt;If you trust that I know what I’m talking about then the short version of this article is:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Using “click here” is bad for accessibility, it adds cognitive load and will hurt screen reader usage&lt;/li&gt;
  &lt;li&gt;Your SEO efforts will suffer with “click here” text. Internal links don’t have the context search engines need to score your website&lt;/li&gt;
  &lt;li&gt;Copy punctuated with “read more” is harder to read than when link text is more natural&lt;/li&gt;
  &lt;li&gt;“Click” is mouse-centric and “read” is screen-centric. People consume content in more ways that by a screen connected to a mouse&lt;/li&gt;
  &lt;li&gt;If this list has convinced you, &lt;a href=&quot;#what-to-do-instead&quot;&gt;follow my “what to do instead” guidance&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For more detail, please read on.&lt;/p&gt;

&lt;h2 id=&quot;accessibility&quot;&gt;Accessibility&lt;/h2&gt;

&lt;p&gt;When it comes to web pages, most assistive technologies will grab the page and parse it. Instead of rendering the page, it will showcase the content in a way that is useful for that particular assistive technology.&lt;/p&gt;

&lt;p&gt;Screen readers, for example, would be a terrible experience if they didn’t allow for skimming. One way they allow skimming is to collate a list of all the links on the page and read them out.&lt;/p&gt;

&lt;p&gt;Links on a page saying “click here” or “read more” have no context when reading in a list.&lt;/p&gt;

&lt;p&gt;You’ve made it hard for someone who can’t see the link in situ, decreasing how accessible your website is.&lt;/p&gt;

&lt;p&gt;There are other accessibility reasons why “click here” is a bad idea.&lt;/p&gt;

&lt;p&gt;Generally speaking a “click here” link will appear close to some explanatory text. The presumption is that your reader can keep the context in their head as they go through your website.&lt;/p&gt;

&lt;p&gt;Assistive technologies are binary, someone is either using one or they aren’t.&lt;/p&gt;

&lt;p&gt;Cognitive ability is anything but binary and can be entirely situational. When I’m in a noisy room it’s hard to think but when it’s quiet it’s easier.&lt;/p&gt;

&lt;p&gt;The chances are when you are writing your copy you’re in your office environment. This will not be the same environment someone will read your content in.&lt;/p&gt;

&lt;p&gt;In short; “click here”, or “read more” style links are bad for accessibility, don’t use them.&lt;/p&gt;

&lt;h2 id=&quot;seo&quot;&gt;SEO&lt;/h2&gt;

&lt;p&gt;I’ve worked in plenty of teams and companies where accessibility is a nice-to-have. I could rant for hours on the reasons why that makes zero business sense, but it is a common position for a company to hold.&lt;/p&gt;

&lt;p&gt;One of the beautiful things about accessible writing is you almost always end up making your content do better in search engines.&lt;/p&gt;

&lt;p&gt;There are two simple reasons for this:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;If assistive technologies can understand your content, so can search engine bots. If a search engine can understand your content better, it will rank it better&lt;/li&gt;
  &lt;li&gt;Content that is available to more people will allow more people to complete their task. Search engines want to send people to places where they can achieve their task&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I could turn this post into a rationale for using marketing budget to make your website more accessible. I will refrain.&lt;/p&gt;

&lt;p&gt;Search engines have many ranking factors. Ranking factors are criteria for what makes one page rank above another page. One of the most significant ranking factors is how many links point to a page.&lt;/p&gt;

&lt;p&gt;If we have two pages answering the question “&lt;a href=&quot;https://tosbourn.com/what-is-the-gemfile/&quot;&gt;what is a gemfile?&lt;/a&gt;”, the one with more links will likely rank higher. There is good reason to assume the one with all the links is more authoritative, why else would people link to it?&lt;/p&gt;

&lt;p&gt;But links are more than the value of the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;href&lt;/code&gt; attribute, they are also the link text, which is the stuff between the opening &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;a&amp;gt;&lt;/code&gt; and closing &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;/a&amp;gt;&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Search engines use the link text to understand why someone would link to a page. This extra context is essential.&lt;/p&gt;

&lt;p&gt;If we have a website that everyone links to with the word “cat”, we would not expect it to rank well for the word “dog”. Everything the search engine knows about this site is that “when people link to this site, they are talking about cats”.&lt;/p&gt;

&lt;p&gt;Search engines don’t only look at links from other sites to yours. They look at how your pages link together. These internal links send a signal of “this is what this website thinks is the best page about this link text”.&lt;/p&gt;

&lt;p&gt;To sum up. Using “click here” links won’t pass relevant context to search engines, which means they can’t score the page you linked to appropriately.&lt;/p&gt;

&lt;h2 id=&quot;readability&quot;&gt;Readability&lt;/h2&gt;

&lt;p&gt;Accessibility and SEO are two excellent reasons why you would want to avoid “click here” links. I can see a counter-argument if the content you’re writing is personal and you don’t care if others can read or find it.&lt;/p&gt;

&lt;p&gt;I counter this by suggesting that you want your writing to come across as well as it can, even if the only audience is you.&lt;/p&gt;

&lt;p&gt;“Click here” or “read more” has become a weird kind of punctuation on the web. Like any punctuation, when overused, it becomes annoying and gets in the way of the content.&lt;/p&gt;

&lt;p&gt;You presumably want your ideas to flow well on the page. You can do this by not punctuating your writing with meaningless words.&lt;/p&gt;

&lt;h2 id=&quot;the-text-is-semantically-incorrect&quot;&gt;The Text is Semantically Incorrect&lt;/h2&gt;

&lt;p&gt;My final point is a semantic one. Clicking is something you do with a mouse or trackpad. The chances are most of your writing isn’t read by someone using a mouse. The notion of clicking is the equal of using a picture of a floppy disk to mean save. It is an archaism that rarely makes sense to use in the current context.&lt;/p&gt;

&lt;p&gt;Likewise, to suggest someone should “read more” sounds silly if they are listening to your content either via a screenreader, or a speech-only device like Alexa.&lt;/p&gt;

&lt;p&gt;There is an argument that web users know that a click means a press or that reading means consuming. In the same way, someone knows the save icon without having had the joy of using floppy disks. Why take the risk that someone doesn’t? What happens when someone translates your content and the word “click” gets turned into something far more literal.&lt;/p&gt;

&lt;p&gt;You presumably want to present yourself well in your writing, so you should make an effort to use the right words.&lt;/p&gt;

&lt;p&gt;“Click here” or “read more” don’t make sense now and will make even less sense in the future.&lt;/p&gt;

&lt;h2 id=&quot;what-to-do-instead&quot;&gt;What To Do Instead&lt;/h2&gt;

&lt;p&gt;By now I bet you’re on board with the idea that we should do away with “click here” text. What next?&lt;/p&gt;

&lt;p&gt;Each case is different. I have a few general tips for improving your link text.&lt;/p&gt;

&lt;h3 id=&quot;replace-mechanical-words-with-actions&quot;&gt;Replace mechanical words with actions&lt;/h3&gt;

&lt;p&gt;We’ve already talked about how “click” is a weird choice of word. As well as not being accurate in all cases, it is focused on how you interact with the link, and not what the link will do.&lt;/p&gt;

&lt;p&gt;For example “click to view screencast” is telling you to use a mouse to interact with this link. If we used “view screencast” then this link text is telling us the action.&lt;/p&gt;

&lt;h3 id=&quot;assume-no-extra-context&quot;&gt;Assume no extra context&lt;/h3&gt;

&lt;p&gt;Assume someone has removed all other text from the page and only your link text remained.&lt;/p&gt;

&lt;p&gt;You should replace “You can &lt;a href=&quot;&quot;&gt;click here&lt;/a&gt; to buy a Nintendo Switch” with “you can &lt;a href=&quot;&quot;&gt;buy a Nintendo Switch&lt;/a&gt;”.&lt;/p&gt;

&lt;p&gt;In the first example, you would see &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;click here&lt;/code&gt;, and you would have to guess at the point of the link. In the second you would have &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;buy a Nintendo Switch&lt;/code&gt; which is clear.&lt;/p&gt;

&lt;h3 id=&quot;name-many-links&quot;&gt;Name many links&lt;/h3&gt;

&lt;p&gt;A common pattern people follow when they want to share many links is to make an in-line list:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;“You can read more &lt;a href=&quot;&quot;&gt;here&lt;/a&gt;, &lt;a href=&quot;&quot;&gt;here&lt;/a&gt;, and &lt;a href=&quot;&quot;&gt;here&lt;/a&gt;”.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Within the context of the sentence, the reader might know the type of content they should expect. They could not infer what is different between the three links. It makes it impossible for them to know which one they should prioritise.&lt;/p&gt;

&lt;p&gt;You can still use in-line lists, but you need to add some context. For example, “You can read &lt;a href=&quot;&quot;&gt;The Guardian’s write-up&lt;/a&gt;, &lt;a href=&quot;&quot;&gt;@tosbourn’s thoughts&lt;/a&gt;, and &lt;a href=&quot;&quot;&gt;a LinkedIn thread&lt;/a&gt; talking about this.”. The same three links now convey more information about what might be different between them.&lt;/p&gt;

&lt;h3 id=&quot;move-action-links-to-the-end-of-a-sentence&quot;&gt;Move action links to the end of a sentence&lt;/h3&gt;

&lt;p&gt;If you were citing an article, you might link to it, but you wouldn’t expect your reader to follow the link, read everything, and come back.&lt;/p&gt;

&lt;p&gt;Sometimes you add a link because you want someone to do something. When this is the case, you should consider putting the link at the end of the sentence.&lt;/p&gt;

&lt;p&gt;Giving it after the context means they can decide at the point of seeing the link. “&lt;a href=&quot;https://www.linkedin.com/company/19658308/&quot;&gt;Tosbourn&lt;/a&gt; has a LinkedIn account, you should follow them” means the reader has to scan back to find the link. “You should &lt;a href=&quot;https://www.linkedin.com/company/19658308/&quot;&gt;follow Tosbourn on LinkedIn&lt;/a&gt;” gives the reader less work.&lt;/p&gt;

&lt;h2 id=&quot;improve-your-website-by-improving-your-links&quot;&gt;Improve your website by improving your links&lt;/h2&gt;

&lt;p&gt;When I first started writing this article, I thought there was only enough content for a few paragraphs, so thank you for making it this far!&lt;/p&gt;

&lt;p&gt;Putting thought into how you name your links will improve the accessibility of your site, increase your rankings in search engines, and will engage your readers more. This will result in more people reading and getting value from your content.&lt;/p&gt;

&lt;p&gt;If you have any other reasons that “click here” is wrong, or if you have any fantastic tips to share on writing great link copy, I’m all ears! Please share in the comments below.&lt;/p&gt;

&lt;p&gt;If you want advice on generally improving your website, I’ve shared an article all about &lt;a href=&quot;/free-web-check-tools/&quot;&gt;free tools I use to improve my websites&lt;/a&gt;.&lt;/p&gt;
</description>
        <pubDate>Sat, 09 May 2020 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/click-here/</link>
        <guid isPermaLink="true">https://tosbourn.com/click-here/</guid>
        
        <category>Accessibility</category>
        
        <category>SEO</category>
        
        <category>Writing</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
      <item>
        <title>Blog posts are projects not action items</title>
        <description>&lt;p&gt;Have you ever wondered why you have so many great ideas for blog posts, but so few actual articles? It might be because you’re treating a blog post as a single action and not an entire project.&lt;/p&gt;

&lt;p&gt;I’ve found when I treat blog posts more like projects and less like singular to-do items, I can move through them more quickly. In this post I want to detail why that is and share what I mean by treating a post like a project.&lt;/p&gt;

&lt;p&gt;Here is a non-exhaustive list of what might go into a blog post:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;brainstorm ideas&lt;/li&gt;
  &lt;li&gt;coming up with titles&lt;/li&gt;
  &lt;li&gt;researching similar articles&lt;/li&gt;
  &lt;li&gt;designing graphics&lt;/li&gt;
  &lt;li&gt;bounce ideas off someone&lt;/li&gt;
  &lt;li&gt;editing the copy&lt;/li&gt;
  &lt;li&gt;publishing the article&lt;/li&gt;
  &lt;li&gt;cross-promoting it to other places&lt;/li&gt;
  &lt;li&gt;sharing the article on social media&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is a lot of stuff, and each of those points has several actions.&lt;/p&gt;

&lt;h2 id=&quot;dont-try-and-trick-your-brain&quot;&gt;Don’t try and trick your brain&lt;/h2&gt;

&lt;p&gt;If you have a to-do list that says “write a blog post about blah” your brain will freak out every time you cast your eye over it. It knows that isn’t one item, it is about 30 items.&lt;/p&gt;

&lt;p&gt;Your brain will try and land on anything else that has a more concrete outcome.&lt;/p&gt;

&lt;p&gt;If you treat the blog post with the reverence it deserves and place proper actions next to it, you are far more likely to make progress.&lt;/p&gt;

&lt;h2 id=&quot;not-all-posts-are-equal&quot;&gt;Not all posts are equal&lt;/h2&gt;

&lt;p&gt;While there are certain tasks you might need to do on every article you write, not everything you write needs each step, and some will need a heck of a lot more.&lt;/p&gt;

&lt;p&gt;If you’re sharing a recipe to a personal site that you know then you don’t need to do half the things listed above.&lt;/p&gt;

&lt;p&gt;This is why the first and only action should be something like:&lt;/p&gt;

&lt;p&gt;“Draw out steps needed for blog post on blah”.&lt;/p&gt;

&lt;p&gt;This is a 5-minute task which has a clear output. By the end of this you should have several action items to work through.&lt;/p&gt;

&lt;p&gt;Each of these actions should go into your to-do list. I love &lt;a href=&quot;/using-omnifocus/&quot;&gt;Omnifocus&lt;/a&gt;, but the important thing is having all parts of the project listed, not just the headline.&lt;/p&gt;

&lt;h2 id=&quot;how-i-break-this-task-down&quot;&gt;How I break this task down&lt;/h2&gt;

&lt;p&gt;I often have my initial task set to “Brainstorm blah” and time-box it to five minutes.&lt;/p&gt;

&lt;p&gt;Time-boxing helps me to set aside excuses, I can find five minutes. You will surprise yourself at how much can get done in five minutes.&lt;/p&gt;

&lt;p&gt;To make the most out of the five minutes I will often refer to more complete versions of the list I shared at the start of this article.&lt;/p&gt;

&lt;h2 id=&quot;concrete-items-lead-to-action&quot;&gt;Concrete items lead to action&lt;/h2&gt;

&lt;p&gt;Now when you skim your task list your brain will be calm. The action will be more like “find an image to represent blah” which is much more concrete.&lt;/p&gt;

&lt;h2 id=&quot;getting-things-done&quot;&gt;Getting Things Done&lt;/h2&gt;

&lt;p&gt;The notion of treating a blog post like a project instead of an individual action comes straight out of the getting things done playbook. If you haven’t read it, I’d suggest &lt;a href=&quot;https://www.amazon.co.uk/Getting-Things-Done-Stress-Free-Productivity/dp/B01B6WSGGA/&quot;&gt;picking up a copy&lt;/a&gt;.&lt;/p&gt;
</description>
        <pubDate>Mon, 13 Apr 2020 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/blog-posts-are-projects/</link>
        <guid isPermaLink="true">https://tosbourn.com/blog-posts-are-projects/</guid>
        
        <category>Productivity</category>
        
        <category>Writing</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
      <item>
        <title>Tools I Use When Blogging</title>
        <description>&lt;p&gt;There are a handful of tools that I regularly use when I blog; some of them are massively well known; some of them maybe not so much. I wanted to write about them here for two reasons.&lt;/p&gt;

&lt;p&gt;The first is to help people who are maybe looking at tooling for their blogs.&lt;/p&gt;

&lt;p&gt;The second is to get feedback from people who know much more than me to see where my tooling can be improved.&lt;/p&gt;

&lt;p&gt;There are three main stages to most of my blog posts:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;#research&quot;&gt;Research&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#writing&quot;&gt;Writing&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#publishing&quot;&gt;Publishing&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;research&quot;&gt;Research&lt;/h2&gt;

&lt;p&gt;The research I do varies depending on the post, but the tooling remains consistent.&lt;/p&gt;

&lt;h3 id=&quot;plausible&quot;&gt;Plausible&lt;/h3&gt;

&lt;p&gt;&lt;a href=&quot;https://plausible.io&quot;&gt;Plausible&lt;/a&gt; is a web traffic analytics tool; it lets you know about the types of people coming to your site and what they do once they get there.&lt;/p&gt;

&lt;p&gt;It is beneficial for several reasons but specifically for blogging, I use it to see what posts have historically done well for two criteria;&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Did the topic bring lots of traffic and attention to the site&lt;/li&gt;
  &lt;li&gt;Did the subject convert well against the site’s goals&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If I spot a few topics that have been doing particularly well, I can use this to research other topics which could complement or build on them.&lt;/p&gt;

&lt;p&gt;It is similar to Google Analytics only much more performant, privacy focused, better designed.&lt;/p&gt;

&lt;h3 id=&quot;google-webmaster-tools&quot;&gt;Google Webmaster Tools&lt;/h3&gt;

&lt;p&gt;&lt;a href=&quot;https://developers.google.com/search&quot;&gt;Google Webmaster Tools&lt;/a&gt; is a set of pages that Google has made to allow you to understand better how Google views your site.&lt;/p&gt;

&lt;p&gt;Much like Google Analytics, the use goes way beyond what I am about to describe; I use this tool to find what people have been searching for to find my website.&lt;/p&gt;

&lt;p&gt;You might ask why I don’t do this within Plausible, you certainly can, but this is straight from the horses mouth, and you can also easily see where you rank for that given search term. Handy stuff when trying to work out what to write.&lt;/p&gt;

&lt;h2 id=&quot;writing&quot;&gt;Writing&lt;/h2&gt;

&lt;p&gt;Once I finish my research, it is onto the writing and editing stage.&lt;/p&gt;

&lt;h3 id=&quot;textmate&quot;&gt;TextMate&lt;/h3&gt;

&lt;p&gt;I almost always try and write offline these days; it keeps distractions down to a complete minimum. I use &lt;a href=&quot;https://macromates.com&quot;&gt;TextMate&lt;/a&gt; for the majority of my writing.&lt;/p&gt;

&lt;p&gt;TextMate is also my text editor of choice which means I’m in it most of the day writing code anyway, so it feels very natural to me.&lt;/p&gt;

&lt;h3 id=&quot;grammarly&quot;&gt;Grammarly&lt;/h3&gt;

&lt;p&gt;After I’ve created my first draft, I copy and past it into &lt;a href=&quot;https://grammarly.com&quot;&gt;Grammarly&lt;/a&gt;. Grammarly is a tool that will do advanced grammar checks on your work. It goes above and beyond what grammar checks are usually performed by writing tools.&lt;/p&gt;

&lt;p&gt;One of the things I love about Grammarly is it can run in your browser and help correct typos and grammar errors that you make when filling in text boxes online, say when making tweets!&lt;/p&gt;

&lt;h3 id=&quot;textexpander&quot;&gt;&lt;a href=&quot;/clients/textexpander/&quot;&gt;TextExpander&lt;/a&gt;&lt;/h3&gt;

&lt;p&gt;&lt;a href=&quot;https://textexpander.com/&quot;&gt;TextExpander&lt;/a&gt; is text expansion software available on pretty much all platforms at this point.&lt;/p&gt;

&lt;p&gt;I’ve written an entire &lt;a href=&quot;/textexpander-review/&quot;&gt;review of TextExpander&lt;/a&gt;, this is a tool I use a lot to help reduce the number of characters I need to type.&lt;/p&gt;

&lt;p&gt;With &lt;a href=&quot;/text-expander-snippets/&quot;&gt;TextExpander&lt;/a&gt;, you can type a short code, and it will expand into a larger block of text. For example, when I type &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;llorem&lt;/code&gt; anywhere on my computer, it will add:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sollicitudin laoreet felis, tincidunt ultricies odio laoreet ac. Vestibulum porta euismod sapien, a blandit nisi congue id. Pellentesque feugiat orci nec tellus consequat consequat. Nullam sit amet quam cursus leo vulputate mollis feugiat nec elit. Integer neque eros, sagittis euismod malesuada eu, congue eu sapien. Quisque pharetra pharetra dolor eget tempus. Vivamus fermentum, enim eget lacinia hendrerit, est quam aliquam mi, sit amet convallis metus metus sit amet leo. Curabitur sed metus massa.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I’ve written up some of my &lt;a href=&quot;/text-expander-snippets/&quot;&gt;favourite TextExpander snippets&lt;/a&gt;.&lt;/p&gt;

&lt;h3 id=&quot;macbook-pro&quot;&gt;MacBook Pro&lt;/h3&gt;

&lt;p&gt;The MacBook Pro is one of the high-end laptop computers created by Apple.&lt;/p&gt;

&lt;p&gt;The MacBook Pro is my workhorse; it is where I do my coding and my writing.&lt;/p&gt;

&lt;p&gt;You might wonder why I bother to mention that here. Having an excellent machine to write on can make all the difference.&lt;/p&gt;

&lt;p&gt;Naturally, you don’t need the majority of the spec that my MacBook Pro has, but a lot of thought has gone into how comfortable it is to use.&lt;/p&gt;

&lt;p&gt;One thing I have experimented with recently is using the inbuilt screen reader to read my posts aloud to me; this can help find odd phrasing.&lt;/p&gt;

&lt;p&gt;If your machine isn’t a joy to use, you will find reasons not to use it.&lt;/p&gt;

&lt;p&gt;If you’re interested in reading more of our setup, we have a post all about it. &lt;a href=&quot;/our-setup/&quot;&gt;Read about our setup&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&quot;publishing&quot;&gt;Publishing&lt;/h2&gt;

&lt;p&gt;Once I have written my post, edited it and put it up onto the website I’m writing for it is time to Publish. In literal terms, I just hit the Publish button, and the content is there for everyone to see, but that isn’t when my workflow ends.&lt;/p&gt;

&lt;h3 id=&quot;link-aggregators&quot;&gt;Link Aggregators&lt;/h3&gt;

&lt;p&gt;&lt;a href=&quot;https://www.reddit.com/&quot;&gt;Reddit&lt;/a&gt; and &lt;a href=&quot;https://news.ycombinator.com/&quot;&gt;HackerNews&lt;/a&gt; are link aggregation websites, people share links they think the communities would find interesting, and people can vote on them.&lt;/p&gt;

&lt;p&gt;Voted up links get more visibility, voted down links tend to get hidden and forgotten about pretty quickly.&lt;/p&gt;

&lt;p&gt;Depending on the content I will share on one or both of these sites because I find it is an excellent way to get an initial burst of traffic and get immediate feedback from folk.&lt;/p&gt;

&lt;p&gt;Very few people on my social media networks are going to tell me my point of view sucks or my writing is terrible. People on the internet at large, however, will go out of their way to tell you something sucks.&lt;/p&gt;

&lt;p&gt;This type of criticism (when constructive) is hugely useful and can inform edits or new posts that you make.&lt;/p&gt;

&lt;h2 id=&quot;wrapping-up&quot;&gt;Wrapping Up&lt;/h2&gt;

&lt;p&gt;If this has helped you, I am delighted. Please consider sharing this post with others as it might help them also!&lt;/p&gt;

&lt;p&gt;If you have different ideas for what works and what doesn’t, please let me know in the comments. Better yet, post your list and share the link with me :-)&lt;/p&gt;

&lt;h2 id=&quot;2019-update&quot;&gt;2019 Update&lt;/h2&gt;

&lt;p&gt;This post was updated in 2019 to add my current tooling. Here are the tools that I have stopped using since this was first published:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Evernote – I used to love Evernote but found it just wasn’t justifying the cost to me and seemed to get worse with newer releases.&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;/hit-tail/&quot;&gt;HitTail&lt;/a&gt; – This was a fantastic tool that would show you content ideas based on Google searches. Unfortunately, it relied on data Google provided which Google turned off some time ago. RIP.&lt;/li&gt;
  &lt;li&gt;Google Keyword Planner – I replaced this with Moz.&lt;/li&gt;
  &lt;li&gt;Writer Pro – I’ve replaced this with Bear.&lt;/li&gt;
  &lt;li&gt;Buffer – I’ve replaced this with Social Pilot. My &lt;a href=&quot;/time-buffer-wasnt-great/&quot;&gt;time at Buffer wasn’t great&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;2021-update&quot;&gt;2021 Update&lt;/h2&gt;

&lt;p&gt;This post was further updated in 2021 with current tooling, I have removed and replaced some tools:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Bear was removed as my note taking tool, I’ve reverted to use Apple notes for everything, I don’t love it but it works for the type of notes I generally take&lt;/li&gt;
  &lt;li&gt;Google Analytics was replaced by Plausible&lt;/li&gt;
  &lt;li&gt;Moz was removed, I don’t do much keyword research these days&lt;/li&gt;
  &lt;li&gt;I don’t use any social media posting tools any more, so Social Pilot has been removed&lt;/li&gt;
&lt;/ul&gt;
</description>
        <pubDate>Fri, 12 Jul 2019 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/tools-use-blogging/</link>
        <guid isPermaLink="true">https://tosbourn.com/tools-use-blogging/</guid>
        
        <category>Writing</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
      <item>
        <title>What I’ve learned from looking through my old posts</title>
        <description>&lt;p&gt;One of the first non-urgent tasks that I knew I would have to do when I &lt;a href=&quot;/going-freelance/&quot;&gt;started freelancing&lt;/a&gt; was to look through all the content on my site to make sure it was a fair reflection of the work I am doing now.&lt;/p&gt;

&lt;p&gt;I wanted to get a good grasp on what content would be worth keeping up-to-date and properly promoting, versus content that is useful but doesn’t really need to be promoted, verses content I should remove because either my opinions have changed or best practice as moved on.&lt;/p&gt;

&lt;p&gt;I’ve written over 500 &lt;a href=&quot;/articles/&quot;&gt;articles on tosbourn.com&lt;/a&gt;. Going through them all took some time.&lt;/p&gt;

&lt;p&gt;Here are some things I’ve learned from doing it.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;There are articles I honestly have no recollection of writing, about technologies I would almost have sworn I’ve never used.&lt;/li&gt;
  &lt;li&gt;A lot of my opinions have veered towards the centre as I’ve aged. I used to dislike a lot more things than I do now!&lt;/li&gt;
  &lt;li&gt;My writing style has largely stayed the same, in that it is fairly conversational.&lt;/li&gt;
  &lt;li&gt;I used to have a hard-on for getting points on Hacker News. (fairly cringe worthy I have to say!)&lt;/li&gt;
  &lt;li&gt;Only about 10% of the articles I’ve written have what it takes to be decent evergreen content.*&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One of my big takeaways was that is well worth doing and something I would recommend everyone with a website that has been generating content for years do. Apart from noticing odd little things like the above, there was a practical component to it.&lt;/p&gt;

&lt;h2 id=&quot;why-i-went-through-all-my-old-posts&quot;&gt;Why I went through all my old posts&lt;/h2&gt;

&lt;p&gt;Here are some of the practical things I was able to do.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Delete old posts that were of zero value to anyone (I verified by seeing there was zero traffic hitting some very low quality posts)&lt;/li&gt;
  &lt;li&gt;Fix typos / broken links in older posts&lt;/li&gt;
  &lt;li&gt;Highlight posts that I believe have potential, which I shall be re-working in the future and re-sharing&lt;/li&gt;
  &lt;li&gt;Update posts to have decent Schema and other meta information associated with them.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;redirect-everything&quot;&gt;Redirect everything&lt;/h2&gt;

&lt;p&gt;Make sure if you do decide to kill content (which as an act, should never be taken lightly) that you redirect the user somewhere useful.&lt;/p&gt;

&lt;h2 id=&quot;notes&quot;&gt;Notes&lt;/h2&gt;

&lt;p&gt;* I’ve written about &lt;a href=&quot;/problems-with-evergreen-content/&quot;&gt;problems with Evergreen content&lt;/a&gt; before, ironically (or not), that post didn’t make my list of things that would be useful as examples of evergreen content.&lt;/p&gt;

</description>
        <pubDate>Mon, 19 Dec 2016 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/what-ive-learned-from-looking-through-old-posts/</link>
        <guid isPermaLink="true">https://tosbourn.com/what-ive-learned-from-looking-through-old-posts/</guid>
        
        <category>Writing</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
      <item>
        <title>How to overcome thinking that no one will find your posts useful</title>
        <description>&lt;p&gt;This evening I received some tweets from an online buddy @punkeel&lt;/p&gt;

&lt;blockquote&gt;
  @tosbourn or a very &quot;personal&quot; use case ... :(
  &lt;br /&gt;&lt;cite&gt;PunKeel (@punkeel) December 3, 2015&lt;/cite&gt;
&lt;/blockquote&gt;

&lt;p&gt;In case that doesn’t always work (you can’t trust the internet) the question is.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;How do you overcome the idea that “Nobody will find my posts useful” Every subject I wanna blog about is either covered up or a very “personal” use case&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is a great question. I have some thoughts on it which were too long for Twitter and I think that may be useful to others.&lt;/p&gt;

&lt;p&gt;Let me break my thinking down into three sections as I feel there are three things to address here.&lt;/p&gt;

&lt;p&gt;I will wrap up with some other random thoughts.&lt;/p&gt;

&lt;h2 id=&quot;nobody-will-find-my-posts-useful&quot;&gt;Nobody will find my posts useful&lt;/h2&gt;

&lt;p&gt;This is complete rubbish but let’s assume that you have zero audience. If you are writing a technical blog post there is always going to be one person to find it useful. You.&lt;/p&gt;

&lt;h3 id=&quot;knowledge&quot;&gt;Knowledge&lt;/h3&gt;

&lt;p&gt;Even when just re-writing the steps I took to un-break something I broke I come out of the blog post with a much better understanding of the problem and solution than before I began.&lt;/p&gt;

&lt;h3 id=&quot;growth&quot;&gt;Growth&lt;/h3&gt;

&lt;p&gt;You need to write a lot before you even start to get in any way decent at it. I still think I am a terrible writer but I can see I have come on leaps and bounds since starting this blog. Not every post needs to be ground breaking.&lt;/p&gt;

&lt;h3 id=&quot;problems-come-back&quot;&gt;Problems come back&lt;/h3&gt;

&lt;p&gt;How many times have you encountered an issue that you remember fixing 6 months ago and you kind of half remember the steps but you need to start stringing back together the various things you did before. It would have been great to have a record of that somewhere.&lt;/p&gt;

&lt;p&gt;I have lost count of the times I have searched something and my solution from 1+ years ago is the first result. Past Toby had my back.&lt;/p&gt;

&lt;h3 id=&quot;every-day-there-are-new-developers&quot;&gt;Every day there are new developers&lt;/h3&gt;

&lt;p&gt;Every day there is a new person coming along who has just started on their journey and is completely lost. There is always a need for fresh and current new posts to be made to help these people.&lt;/p&gt;

&lt;h2 id=&quot;every-subject-is-covered&quot;&gt;Every Subject is covered&lt;/h2&gt;

&lt;p&gt;It does seem like the web has every subject covered. I often stop an idea in its tracks once I realise it has been covered by a “real expert” in the industry. This is a bad.&lt;/p&gt;

&lt;h3 id=&quot;your-own-voice&quot;&gt;Your own voice&lt;/h3&gt;

&lt;p&gt;Everyone has their own voice, their own way of putting something across and sharing ideas.&lt;/p&gt;

&lt;p&gt;People have a wide range of preferences when it comes to what words make something stick for them.&lt;/p&gt;

&lt;p&gt;This means there is a high chance there are people out there that find what others have said too hard to understand, or too dry to read.&lt;/p&gt;

&lt;p&gt;Your explanation (even if it is just a re-write of what someone else had said) might be the thing to make something click with someone.&lt;/p&gt;

&lt;h3 id=&quot;people-dont-all-search-the-same&quot;&gt;People don’t all search the same&lt;/h3&gt;

&lt;p&gt;This is related to you having your own voice, but I have found that people use different phrases when looking for the solution to something. There could be 10,000 articles detailing the solution to a problem but if the person doesn’t know what to search for they are never going to find it.&lt;/p&gt;

&lt;p&gt;Your choice of words and how you present the problem will widen the pool of solutions and some people will find it and thank you for it.&lt;/p&gt;

&lt;h3 id=&quot;best-practice-changes&quot;&gt;Best practice changes&lt;/h3&gt;

&lt;p&gt;Best practice in our field changes a lot, as does the tech we use. This means people are always looking for up-to-date guides on ways of doing things.&lt;/p&gt;

&lt;h2 id=&quot;my-ideas-are-too-personal&quot;&gt;My ideas are too personal&lt;/h2&gt;

&lt;p&gt;I hate to break it to you, but you are not a special and unique snowflake. I am reminded of an old bash.org listing&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The internet is a beautiful place….&lt;/p&gt;

  &lt;p&gt;Because no matter what kind of twisted freak you are, you’ve got a friend out there :D&lt;/p&gt;

  &lt;p&gt;You could ask the internet “Find people who have sex with goats on fire.”&lt;/p&gt;

  &lt;p&gt;And internet will ask you, “What kind of goats?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;There is no situation that is too personal that someone isn’t going to find it useful. I have a specific example to illustrate.&lt;/p&gt;

&lt;p&gt;I wrote &lt;a href=&quot;/using-bootstraps-typeahead-from-inside-a-modal-window/&quot;&gt;this blog post&lt;/a&gt; because I managed to break the standard CSS that would have enabled this to work out of the box.&lt;/p&gt;

&lt;p&gt;Someone researching potential authors to write about &lt;a href=&quot;/typeahead-js-the-book/&quot;&gt;Typeahead.js&lt;/a&gt; noticed it – some emails later I am a published author.&lt;/p&gt;

&lt;h3 id=&quot;stack-overflow&quot;&gt;Stack Overflow&lt;/h3&gt;

&lt;p&gt;The entire Stack Overflow community is based around people having questions they think are too specific to be answered by a blog post.&lt;/p&gt;

&lt;h3 id=&quot;personal-is-niche&quot;&gt;Personal is Niche&lt;/h3&gt;

&lt;p&gt;Problems that are localised to things you are working on or your particular setup are niche, and niche is great on the web!&lt;/p&gt;

&lt;p&gt;In content marketing you find that the more niche the thing you write about the fewer the people that will read it but the ones that do will be engaged with the content.&lt;/p&gt;

&lt;p&gt;These people are more engaged because they can really relate to what you are writing about. They are more likely to want to speak to you and come back to your site.&lt;/p&gt;

&lt;h2 id=&quot;ok-now-to-actually-answer-the-question&quot;&gt;OK Now to actually answer the question&lt;/h2&gt;

&lt;p&gt;I have just spent around 800 words saying I don’t agree with the premise of Punkeel’s question. I think people will find their posts interesting.).&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Write in your mother tongue – Everyone wants to write in English because that is the language of the internet, but not everyone knows English – posts in your native language will be valuable to folk who don’t speak English.&lt;/li&gt;
  &lt;li&gt;Don’t worry about other people – Write for you, or for one other person that you know is having a specific problem. Treat the post as if it is something you might want to read at a later date, but you could take or leave if other people do.&lt;/li&gt;
  &lt;li&gt;Answer emails as blog posts – if you ever get asked your opinion on something or the answer to something in an email or on social media, consider it an idea for a blog post.&lt;/li&gt;
  &lt;li&gt;If you are stuck for ideas, I &lt;a href=&quot;/useful-resources-generating-content-ideas/&quot;&gt;compiled a list of resources on how to generate ideas&lt;/a&gt; or you could look at these &lt;a href=&quot;https://www.socialpilot.co/content-curation-tools&quot;&gt;content curation services&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I hope this helps.&lt;/p&gt;
</description>
        <pubDate>Thu, 03 Dec 2015 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/overcoming-nobody-finding-your-posts-useful-feeling/</link>
        <guid isPermaLink="true">https://tosbourn.com/overcoming-nobody-finding-your-posts-useful-feeling/</guid>
        
        <category>Writing</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
      <item>
        <title>6 Months in and bowing out</title>
        <description>&lt;p&gt;I have been thinking about the project lately and I have decided that this is going to be my last blog post that has been “forced” by the 365 project.&lt;/p&gt;

&lt;p&gt;I started doing the project under very different circumstances and with goals in mind that I feel I have reached. Let me elaborate.&lt;/p&gt;

&lt;h2 id=&quot;goals&quot;&gt;Goals&lt;/h2&gt;

&lt;p&gt;One of the main goals I had for this project was to systematise how I write blog posts, I wanted to get better at generating ideas, collecting information and writing.&lt;/p&gt;

&lt;p&gt;I feel I have accomplished this. My methods for doing all of those things have matured and I have developed what I believe to be sustainable habits for ongoing writing.&lt;/p&gt;

&lt;h2 id=&quot;not-that-sustainable&quot;&gt;Not that sustainable&lt;/h2&gt;

&lt;p&gt;The one thing that hasn’t been sustainable is the output. I knew going into the project that the equivalent of one post a day was going to be tough going, but at the time of planning this project I thought it would be doable.&lt;/p&gt;

&lt;p&gt;Life of course has other plans. A change in jobs and some other projects starting/stopping that I couldn’t have planned for has meant that the time I can dedicate to writing isn’t as long as I thought it was going to be.&lt;/p&gt;

&lt;h2 id=&quot;proud-of-some-of-the-output&quot;&gt;Proud of &lt;em&gt;some&lt;/em&gt; of the output&lt;/h2&gt;

&lt;p&gt;Whilst I am very happy with the processes put in place, the output I have been giving people hasn’t been completely up to snuff. I worried this would be the case when I took on the project.&lt;/p&gt;

&lt;p&gt;When speaking to a friend about it he initially said (and I am paraphrasing here) “Why not make the task to write 10 really great blog posts this year”.&lt;/p&gt;

&lt;p&gt;That would have have been a noble goal, but I don’t think it would have achieved what I wanted, which was to develop processes to help me write, not just put a lot of effort into a handful of one off posts.&lt;/p&gt;

&lt;p&gt;In retrospect I should have went somewhere in the middle. 100 posts could have been the sweet spot between enough to need systems and allowing enough time for quality.&lt;/p&gt;

&lt;h2 id=&quot;i-am-still-going-to-write&quot;&gt;I am still going to write&lt;/h2&gt;

&lt;p&gt;I still love writing, and indeed for the next while you might not even notice a change in the frequency of my output because I have a lot of ideas I still want to write about and a lot of half complete posts in the pipeline.&lt;/p&gt;

&lt;p&gt;If you would like me to write for your website or publication please &lt;a href=&quot;/contact/&quot;&gt;let me know&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&quot;some-stats-to-finish-everything-off&quot;&gt;Some stats to finish everything off&lt;/h2&gt;

&lt;p&gt;Since I am calling time on this project I figure I should share some of the stats I have gathered during this time.&lt;/p&gt;

&lt;h3 id=&quot;posts-written&quot;&gt;Posts Written&lt;/h3&gt;

&lt;p&gt;This is the 125th post written during the project. I was 68 posts behind schedule.&lt;/p&gt;

&lt;p&gt;Being behind never worried me, like I say I have plenty of ideas and things in draft.&lt;/p&gt;

&lt;p&gt;I have written around 50,000 words in this time. Which is quite a nice feeling.&lt;/p&gt;

&lt;h3 id=&quot;traffic&quot;&gt;Traffic&lt;/h3&gt;

&lt;p&gt;The majority of my posts were written on my &lt;a href=&quot;https://tosbourn.com&quot;&gt;personal website&lt;/a&gt; so this is where I was checking for traffic. I have pulled these stats from Google Analytics.&lt;/p&gt;

&lt;p&gt;Interestingly traffic has decreased on my site between the first six months of 2015 compared to the first six months of 2014.&lt;/p&gt;

&lt;p&gt;Users on the site has decreased by 13.45% (83,525 this year vs 96,506 last year).&lt;/p&gt;

&lt;p&gt;The bounce rate as increased as well, by 2.72% (it has been 90.65% so far this year vs 88.25% last year).&lt;/p&gt;

&lt;p&gt;Both could be symptoms of lower quality content being put out, something I am not happy with.&lt;/p&gt;

&lt;h2 id=&quot;favourite-posts-and-highlights&quot;&gt;Favourite Posts and Highlights&lt;/h2&gt;

&lt;p&gt;There are three posts that come to mind (3 out of 125 is pretty depressing) when I think of highlights.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://tosbourn.com/set-intersection-in-ruby/&quot;&gt;Set Intersection in Ruby&lt;/a&gt; was picked up by Ruby Weekly, which is huge!&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://tosbourn.com/http-status-codes-for-seo/&quot;&gt;HTTP Status codes for SEO&lt;/a&gt; I learned a load writing this article and it has been getting positive feedback.&lt;/li&gt;
&lt;/ul&gt;
</description>
        <pubDate>Sun, 12 Jul 2015 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/6-month-review-and-the-end-of-the-project/</link>
        <guid isPermaLink="true">https://tosbourn.com/6-month-review-and-the-end-of-the-project/</guid>
        
        <category>Writing</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
      <item>
        <title>Quality of your Input and Output</title>
        <description>&lt;p&gt;I find it interesting that the common advice when communicating orally is to listen more than you speak but the same advice is reversed when creating content. People often say you should consume less and produce more.&lt;/p&gt;

&lt;p&gt;I think in both cases it is the quality of the input and the output that matters. This is why I try and prune my inputs as much as possible to keep the quality high. I find that when I plan to read several things in my day I am less worried about the quality. If I set things aside and say “I am going to read one article this evening” I am much more likely to be critical of the source of the article.&lt;/p&gt;

&lt;p&gt;I am trying to cut back on the majority of curated content and visit places like Reddit and HackerNews far less. The problem I find with curated content isn’t that the quality is low, it can be very high. The issue is that the curation is for the industry or group writ large, which doesn’t help me get my work done or get my juices flowing.&lt;/p&gt;

&lt;p&gt;My Twitter feed is a much better source (for me) of content, this is curated by people I care about and they are sharing stuff because they think it is cool, not because they will get some internet points.&lt;/p&gt;

&lt;p&gt;I thought Rob Walling made a great point in a &lt;a href=&quot;https://www.startupsfortherestofus.com/episodes/episode-240-podcasts-for-startup-founders&quot;&gt;recent episode&lt;/a&gt; of Startups for the Rest of Us when he said that even with podcasts podcasts he is a big fan of he would skip episodes that aren’t relevant to his current interests. This is something I want to try and do more of, just because I like one person’s blog doesn’t mean I need to read absolutely everything they write.&lt;/p&gt;

&lt;p&gt;With regards to outputs, I still struggle with keeping my output quality high. Bear with me in that one :-)&lt;/p&gt;
</description>
        <pubDate>Tue, 16 Jun 2015 00:00:00 +0000</pubDate>
        
          
          <author>toby@tosbourn.com</author>
        
        <link>https://tosbourn.com/quality-of-input-output/</link>
        <guid isPermaLink="true">https://tosbourn.com/quality-of-input-output/</guid>
        
        <category>Writing</category>
        
        <source url="https://tosbourn.com/feed.xml">Tosbourn Ltd.</source>
      </item>
    
  </channel>
</rss>
