<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Jonathan Camp</title>
    <link>https://jonathancamp.co.uk/</link>
    <description>Maybe there&#39;s something here that you will find interesting...</description>
    <pubDate>Sat, 04 Apr 2026 03:49:54 +0000</pubDate>
    <image>
      <url>https://i.snap.as/yuf6EsUA.png</url>
      <title>Jonathan Camp</title>
      <link>https://jonathancamp.co.uk/</link>
    </image>
    <item>
      <title>Best Gutenberg plugins for Wordpress</title>
      <link>https://jonathancamp.co.uk/best-gutenberg-plugins-for-wordpress?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[]]&gt;</description>
      <guid>https://jonathancamp.co.uk/best-gutenberg-plugins-for-wordpress</guid>
      <pubDate>Wed, 03 Aug 2022 19:26:10 +0000</pubDate>
    </item>
    <item>
      <title>Markdown: Basics</title>
      <link>https://jonathancamp.co.uk/markdown-basics?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Getting the Gist of Markdown&#39;s Formatting Syntax&#xA;&#xA;This page offers a brief overview of what it&#39;s like to use Markdown.&#xA;The \syntax page\] [s provides complete, detailed documentation for&#xA;every feature, but Markdown should be very easy to pick up simply by&#xA;looking at a few examples of it in action. The examples on this page&#xA;are written in a before/after style, showing example syntax and the&#xA;HTML output produced by Markdown.&#xA;&#xA;!--more--&#xA;&#xA;It&#39;s also helpful to simply try Markdown out; the \Dingus\] [d is a&#xA;web application that allows you type your own Markdown-formatted text&#xA;and translate it to XHTML.&#xA;&#xA;Note: This document is itself written using Markdown; you&#xA;can see the source for it by editing this tiddler.&#xA;&#xA;Paragraphs, Headers, Blockquotes&#xA;&#xA;A paragraph is simply one or more consecutive lines of text, separated&#xA;by one or more blank lines. (A blank line is any line that looks like&#xA;a blank line -- a line containing nothing but spaces or tabs is&#xA;considered blank.) Normal paragraphs should not be indented with&#xA;spaces or tabs.&#xA;&#xA;Markdown offers two styles of headers: Setext and atx.&#xA;Setext-style headers for h1 and h2 are created by&#xA;&#34;underlining&#34; with equal signs (=) and hyphens (-), respectively.&#xA;To create an atx-style header, you put 1-6 hash marks (#) at the&#xA;beginning of the line -- the number of hashes equals the resulting&#xA;HTML header level.&#xA;&#xA;Blockquotes are indicated using email-style &#39;  &#39; angle brackets.&#xA;&#xA;Markdown:&#xA;&#xA;A First Level Header&#xA;&#xA;A Second Level Header&#xA;---------------------&#xA;&#xA;Now is the time for all good men to come to&#xA;the aid of their country. This is just a&#xA;regular paragraph.&#xA;&#xA;The quick brown fox jumped over the lazy&#xA;dog&#39;s back.&#xA;&#xA;Header 3&#xA;&#xA;  This is a blockquote.&#xA;    This is the second paragraph in the blockquote.&#xA;    ## This is an H2 in a blockquote&#xA;&#xA;Output:&#xA;&#xA;h1A First Level Header/h1&#xA;&#xA;h2A Second Level Header/h2&#xA;&#xA;pNow is the time for all good men to come to&#xA;the aid of their country. This is just a&#xA;regular paragraph./p&#xA;&#xA;pThe quick brown fox jumped over the lazy&#xA;dog&#39;s back./p&#xA;&#xA;h3Header 3/h3&#xA;&#xA;blockquote&#xA;    pThis is a blockquote./p&#xA;&#xA;    pThis is the second paragraph in the blockquote./p&#xA;&#xA;    h2This is an H2 in a blockquote/h2&#xA;/blockquote&#xA;&#xA;Phrase Emphasis&#xA;&#xA;Markdown uses asterisks and underscores to indicate spans of emphasis.&#xA;&#xA;Markdown:&#xA;&#xA;Some of these words are emphasized.&#xA;Some of these words are emphasized also.&#xA;&#xA;Use two asterisks for strong emphasis.&#xA;Or, if you prefer, use two underscores instead.&#xA;&#xA;Output:&#xA;&#xA;pSome of these words emare emphasized/em.&#xA;Some of these words emare emphasized also/em./p&#xA;&#xA;pUse two asterisks for strongstrong emphasis/strong.&#xA;Or, if you prefer, stronguse two underscores instead/strong./p&#xA;&#xA;Lists&#xA;&#xA;Unordered (bulleted) lists use asterisks, pluses, and hyphens (*,&#xA;+, and -) as list markers. These three markers are&#xA;interchangable; this:&#xA;&#xA;Candy.&#xA;Gum.&#xA;Booze.&#xA;&#xA;this:&#xA;&#xA;Candy.&#xA;Gum.&#xA;Booze.&#xA;&#xA;and this:&#xA;&#xA;Candy.&#xA;Gum.&#xA;Booze.&#xA;&#xA;all produce the same output:&#xA;&#xA;ul&#xA;liCandy./li&#xA;liGum./li&#xA;liBooze./li&#xA;/ul&#xA;&#xA;Ordered (numbered) lists use regular numbers, followed by periods, as&#xA;list markers:&#xA;&#xA;Red&#xA;Green&#xA;Blue&#xA;&#xA;Output:&#xA;&#xA;ol&#xA;liRed/li&#xA;liGreen/li&#xA;liBlue/li&#xA;/ol&#xA;&#xA;If you put blank lines between items, you&#39;ll get p tags for the&#xA;list item text. You can create multi-paragraph list items by indenting&#xA;the paragraphs by 4 spaces or 1 tab:&#xA;&#xA;A list item.&#xA;&#xA;    With multiple paragraphs.&#xA;&#xA;Another item in the list.&#xA;&#xA;Output:&#xA;&#xA;ul&#xA;lipA list item./p&#xA;pWith multiple paragraphs./p/li&#xA;lipAnother item in the list./p/li&#xA;/ul&#xA;&#xA;Links&#xA;&#xA;Markdown supports two styles for creating links: inline and&#xA;reference. With both styles, you use square brackets to delimit the&#xA;text you want to turn into a link.&#xA;&#xA;Inline-style links use parentheses immediately after the link text.&#xA;For example:&#xA;&#xA;This is an example link.&#xA;&#xA;Output:&#xA;&#xA;pThis is an a href=&#34;http://example.com/&#34;&#xA;example link/a./p&#xA;&#xA;Optionally, you may include a title attribute in the parentheses:&#xA;&#xA;This is an example link.&#xA;&#xA;Output:&#xA;&#xA;pThis is an a href=&#34;http://example.com/&#34; title=&#34;With a Title&#34;&#xA;example link/a./p&#xA;&#xA;Reference-style links allow you to refer to your links by names, which&#xA;you define elsewhere in your document:&#xA;&#xA;I get 10 times more traffic from Google than from&#xA;Yahoo or MSN.&#xA;&#xA;[1]: http://google.com/        &#34;Google&#34;&#xA;[2]: http://search.yahoo.com/  &#34;Yahoo Search&#34;&#xA;[3]: http://search.msn.com/    &#34;MSN Search&#34;&#xA;&#xA;Output:&#xA;&#xA;pI get 10 times more traffic from &lt;a href=&#34;http://google.com/&#34;&#xA;title=&#34;Google&#34;  Google/a than from &lt;a href=&#34;http://search.yahoo.com/&#34;&#xA;title=&#34;Yahoo Search&#34;  Yahoo/a or &lt;a href=&#34;http://search.msn.com/&#34;&#xA;title=&#34;MSN Search&#34;  MSN/a./p&#xA;&#xA;The title attribute is optional. Link names may contain letters,&#xA;numbers and spaces, but are not case sensitive:&#xA;&#xA;I start my morning with a cup of coffee and&#xA;The New York Times.&#xA;&#xA;[ny times]: http://www.nytimes.com/&#xA;&#xA;Output:&#xA;&#xA;pI start my morning with a cup of coffee and&#xA;a href=&#34;http://www.nytimes.com/&#34;The New York Times/a./p&#xA;&#xA;Images&#xA;&#xA;Image syntax is very much like link syntax.&#xA;&#xA;Inline (titles are optional):&#xA;&#xA;alt text&#xA;&#xA;Reference-style:&#xA;&#xA;alt text&#xA;&#xA;[id]: /path/to/img.jpg &#34;Title&#34;&#xA;&#xA;Both of the above examples produce the same output:&#xA;&#xA;img src=&#34;/path/to/img.jpg&#34; alt=&#34;alt text&#34; title=&#34;Title&#34; /&#xA;&#xA;Code&#xA;&#xA;In a regular paragraph, you can create code span by wrapping text in&#xA;backtick quotes. Any ampersands (&amp;) and angle brackets (&lt; or&#xA;  ) will automatically be translated into HTML entities. This makes&#xA;it easy to use Markdown to write about HTML example code:&#xA;&#xA;I strongly recommend against using any blink tags.&#xA;&#xA;I wish SmartyPants used named entities like &amp;mdash;&#xA;instead of decimal-encoded entites like &amp;#8212;.&#xA;&#xA;Output:&#xA;&#xA;pI strongly recommend against using any&#xA;code&amp;lt;blink&amp;gt;/code tags./p&#xA;&#xA;pI wish SmartyPants used named entities like&#xA;code&amp;amp;mdash;/code instead of decimal-encoded&#xA;entites like code&amp;amp;#8212;/code./p&#xA;&#xA;To specify an entire block of pre-formatted code, indent every line of&#xA;the block by 4 spaces or 1 tab. Just like with code spans, &amp;, &lt;,&#xA;and    characters will be escaped automatically.&#xA;&#xA;Markdown:&#xA;&#xA;If you want your page to validate under XHTML 1.0 Strict,&#xA;you&#39;ve got to put paragraph tags in your blockquotes:&#xA;&#xA;    blockquote&#xA;        pFor example./p&#xA;    /blockquote&#xA;&#xA;Output:&#xA;&#xA;pIf you want your page to validate under XHTML 1.0 Strict,&#xA;you&#39;ve got to put paragraph tags in your blockquotes:/p&#xA;&#xA;precode&amp;lt;blockquote&amp;gt;&#xA;    &amp;lt;p&amp;gt;For example.&amp;lt;/p&amp;gt;&#xA;&amp;lt;/blockquote&amp;gt;&#xA;/code/pre&#xA;`]]&gt;</description>
      <content:encoded><![CDATA[<h2 id="getting-the-gist-of-markdown-s-formatting-syntax" id="getting-the-gist-of-markdown-s-formatting-syntax">Getting the Gist of Markdown&#39;s Formatting Syntax</h2>

<p>This page offers a brief overview of what it&#39;s like to use Markdown.
The [syntax page] <a href="https://daringfireball.net/projects/markdown/syntax" title="Markdown Syntax" rel="nofollow">s</a> provides complete, detailed documentation for
every feature, but Markdown should be very easy to pick up simply by
looking at a few examples of it in action. The examples on this page
are written in a before/after style, showing example syntax and the
HTML output produced by Markdown.</p>



<p>It&#39;s also helpful to simply try Markdown out; the [Dingus] <a href="https://daringfireball.net/projects/markdown/dingus" title="Markdown Dingus" rel="nofollow">d</a> is a
web application that allows you type your own Markdown-formatted text
and translate it to XHTML.</p>

<p><strong>Note:</strong> This document is itself written using Markdown; you
can see the source for it by editing this tiddler.</p>

<h2 id="paragraphs-headers-blockquotes" id="paragraphs-headers-blockquotes">Paragraphs, Headers, Blockquotes</h2>

<p>A paragraph is simply one or more consecutive lines of text, separated
by one or more blank lines. (A blank line is any line that looks like
a blank line — a line containing nothing but spaces or tabs is
considered blank.) Normal paragraphs should not be indented with
spaces or tabs.</p>

<p>Markdown offers two styles of headers: <em>Setext</em> and <em>atx</em>.
Setext-style headers for <code>&lt;h1&gt;</code> and <code>&lt;h2&gt;</code> are created by
“underlining” with equal signs (<code>=</code>) and hyphens (<code>-</code>), respectively.
To create an atx-style header, you put 1-6 hash marks (<code>#</code>) at the
beginning of the line — the number of hashes equals the resulting
HTML header level.</p>

<p>Blockquotes are indicated using email-style &#39;<code>&gt;</code>&#39; angle brackets.</p>

<p>Markdown:</p>

<pre><code>A First Level Header
====================

A Second Level Header
---------------------

Now is the time for all good men to come to
the aid of their country. This is just a
regular paragraph.

The quick brown fox jumped over the lazy
dog&#39;s back.

### Header 3

&gt; This is a blockquote.
&gt;
&gt; This is the second paragraph in the blockquote.
&gt;
&gt; ## This is an H2 in a blockquote
</code></pre>

<p>Output:</p>

<pre><code>&lt;h1&gt;A First Level Header&lt;/h1&gt;

&lt;h2&gt;A Second Level Header&lt;/h2&gt;

&lt;p&gt;Now is the time for all good men to come to
the aid of their country. This is just a
regular paragraph.&lt;/p&gt;

&lt;p&gt;The quick brown fox jumped over the lazy
dog&#39;s back.&lt;/p&gt;

&lt;h3&gt;Header 3&lt;/h3&gt;

&lt;blockquote&gt;
    &lt;p&gt;This is a blockquote.&lt;/p&gt;

    &lt;p&gt;This is the second paragraph in the blockquote.&lt;/p&gt;

    &lt;h2&gt;This is an H2 in a blockquote&lt;/h2&gt;
&lt;/blockquote&gt;
</code></pre>

<h3 id="phrase-emphasis" id="phrase-emphasis">Phrase Emphasis</h3>

<p>Markdown uses asterisks and underscores to indicate spans of emphasis.</p>

<p>Markdown:</p>

<pre><code>Some of these words *are emphasized*.
Some of these words _are emphasized also_.

Use two asterisks for **strong emphasis**.
Or, if you prefer, __use two underscores instead__.
</code></pre>

<p>Output:</p>

<pre><code>&lt;p&gt;Some of these words &lt;em&gt;are emphasized&lt;/em&gt;.
Some of these words &lt;em&gt;are emphasized also&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Use two asterisks for &lt;strong&gt;strong emphasis&lt;/strong&gt;.
Or, if you prefer, &lt;strong&gt;use two underscores instead&lt;/strong&gt;.&lt;/p&gt;
</code></pre>

<h2 id="lists" id="lists">Lists</h2>

<p>Unordered (bulleted) lists use asterisks, pluses, and hyphens (<code>*</code>,
<code>+</code>, and <code>-</code>) as list markers. These three markers are
interchangable; this:</p>

<pre><code>*   Candy.
*   Gum.
*   Booze.
</code></pre>

<p>this:</p>

<pre><code>+   Candy.
+   Gum.
+   Booze.
</code></pre>

<p>and this:</p>

<pre><code>-   Candy.
-   Gum.
-   Booze.
</code></pre>

<p>all produce the same output:</p>

<pre><code>&lt;ul&gt;
&lt;li&gt;Candy.&lt;/li&gt;
&lt;li&gt;Gum.&lt;/li&gt;
&lt;li&gt;Booze.&lt;/li&gt;
&lt;/ul&gt;
</code></pre>

<p>Ordered (numbered) lists use regular numbers, followed by periods, as
list markers:</p>

<pre><code>1.  Red
2.  Green
3.  Blue
</code></pre>

<p>Output:</p>

<pre><code>&lt;ol&gt;
&lt;li&gt;Red&lt;/li&gt;
&lt;li&gt;Green&lt;/li&gt;
&lt;li&gt;Blue&lt;/li&gt;
&lt;/ol&gt;
</code></pre>

<p>If you put blank lines between items, you&#39;ll get <code>&lt;p&gt;</code> tags for the
list item text. You can create multi-paragraph list items by indenting
the paragraphs by 4 spaces or 1 tab:</p>

<pre><code>*   A list item.

    With multiple paragraphs.

*   Another item in the list.
</code></pre>

<p>Output:</p>

<pre><code>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;A list item.&lt;/p&gt;
&lt;p&gt;With multiple paragraphs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Another item in the list.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
</code></pre>

<h3 id="links" id="links">Links</h3>

<p>Markdown supports two styles for creating links: <em>inline</em> and
<em>reference</em>. With both styles, you use square brackets to delimit the
text you want to turn into a link.</p>

<p>Inline-style links use parentheses immediately after the link text.
For example:</p>

<pre><code>This is an [example link](http://example.com/).
</code></pre>

<p>Output:</p>

<pre><code>&lt;p&gt;This is an &lt;a href=&#34;http://example.com/&#34;&gt;
example link&lt;/a&gt;.&lt;/p&gt;
</code></pre>

<p>Optionally, you may include a title attribute in the parentheses:</p>

<pre><code>This is an [example link](http://example.com/ &#34;With a Title&#34;).
</code></pre>

<p>Output:</p>

<pre><code>&lt;p&gt;This is an &lt;a href=&#34;http://example.com/&#34; title=&#34;With a Title&#34;&gt;
example link&lt;/a&gt;.&lt;/p&gt;
</code></pre>

<p>Reference-style links allow you to refer to your links by names, which
you define elsewhere in your document:</p>

<pre><code>I get 10 times more traffic from [Google][1] than from
[Yahoo][2] or [MSN][3].

[1]: http://google.com/        &#34;Google&#34;
[2]: http://search.yahoo.com/  &#34;Yahoo Search&#34;
[3]: http://search.msn.com/    &#34;MSN Search&#34;
</code></pre>

<p>Output:</p>

<pre><code>&lt;p&gt;I get 10 times more traffic from &lt;a href=&#34;http://google.com/&#34;
title=&#34;Google&#34;&gt;Google&lt;/a&gt; than from &lt;a href=&#34;http://search.yahoo.com/&#34;
title=&#34;Yahoo Search&#34;&gt;Yahoo&lt;/a&gt; or &lt;a href=&#34;http://search.msn.com/&#34;
title=&#34;MSN Search&#34;&gt;MSN&lt;/a&gt;.&lt;/p&gt;
</code></pre>

<p>The title attribute is optional. Link names may contain letters,
numbers and spaces, but are <em>not</em> case sensitive:</p>

<pre><code>I start my morning with a cup of coffee and
[The New York Times][NY Times].

[ny times]: http://www.nytimes.com/
</code></pre>

<p>Output:</p>

<pre><code>&lt;p&gt;I start my morning with a cup of coffee and
&lt;a href=&#34;http://www.nytimes.com/&#34;&gt;The New York Times&lt;/a&gt;.&lt;/p&gt;
</code></pre>

<h3 id="images" id="images">Images</h3>

<p>Image syntax is very much like link syntax.</p>

<p>Inline (titles are optional):</p>

<pre><code>![alt text](/path/to/img.jpg &#34;Title&#34;)
</code></pre>

<p>Reference-style:</p>

<pre><code>![alt text][id]

[id]: /path/to/img.jpg &#34;Title&#34;
</code></pre>

<p>Both of the above examples produce the same output:</p>

<pre><code>&lt;img src=&#34;/path/to/img.jpg&#34; alt=&#34;alt text&#34; title=&#34;Title&#34; /&gt;
</code></pre>

<h3 id="code" id="code">Code</h3>

<p>In a regular paragraph, you can create code span by wrapping text in
backtick quotes. Any ampersands (<code>&amp;</code>) and angle brackets (<code>&lt;</code> or
<code>&gt;</code>) will automatically be translated into HTML entities. This makes
it easy to use Markdown to write about HTML example code:</p>

<pre><code>I strongly recommend against using any `&lt;blink&gt;` tags.

I wish SmartyPants used named entities like `&amp;mdash;`
instead of decimal-encoded entites like `&amp;#8212;`.
</code></pre>

<p>Output:</p>

<pre><code>&lt;p&gt;I strongly recommend against using any
&lt;code&gt;&amp;lt;blink&amp;gt;&lt;/code&gt; tags.&lt;/p&gt;

&lt;p&gt;I wish SmartyPants used named entities like
&lt;code&gt;&amp;amp;mdash;&lt;/code&gt; instead of decimal-encoded
entites like &lt;code&gt;&amp;amp;#8212;&lt;/code&gt;.&lt;/p&gt;
</code></pre>

<p>To specify an entire block of pre-formatted code, indent every line of
the block by 4 spaces or 1 tab. Just like with code spans, <code>&amp;</code>, <code>&lt;</code>,
and <code>&gt;</code> characters will be escaped automatically.</p>

<p>Markdown:</p>

<pre><code>If you want your page to validate under XHTML 1.0 Strict,
you&#39;ve got to put paragraph tags in your blockquotes:

    &lt;blockquote&gt;
        &lt;p&gt;For example.&lt;/p&gt;
    &lt;/blockquote&gt;
</code></pre>

<p>Output:</p>

<pre><code>&lt;p&gt;If you want your page to validate under XHTML 1.0 Strict,
you&#39;ve got to put paragraph tags in your blockquotes:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;blockquote&amp;gt;
    &amp;lt;p&amp;gt;For example.&amp;lt;/p&amp;gt;
&amp;lt;/blockquote&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
</code></pre>
]]></content:encoded>
      <guid>https://jonathancamp.co.uk/markdown-basics</guid>
      <pubDate>Thu, 10 Feb 2022 13:21:37 +0000</pubDate>
    </item>
    <item>
      <title>Top Youtube Wetplate Collodion Glass Photography</title>
      <link>https://jonathancamp.co.uk/top-youtube-wetplate-collodion-glass-photography?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Top Youtube Wetplate Collodion Glass Photography&#xA;&#xA;Something I am passionate about - Wet Plate Collodion Glass and Tintype photography.&#xA;&#xA;!--more--&#xA;&#xA;https://www.youtube.com/c/NorthLightPress1&#xA;Bill Schwab is a great guy and I have his books. He runs workshops (in Canada!), but his videos are great.&#xA;&#xA;https://www.youtube.com/channel/UCkgsiPxixghd8xluKSs9eQ&#xA;Lost Light Art. This guy is brilliant. A young lad who does everything himself. He produces dark slides and &#39;dry plates&#39; that he sells on Etsy. He also shows how to make dry plates and just about everything else. He&#39;s from Slovenia and very pragmatic. I&#39;ve emailed him several times and he always gets back with great info. He does not have that many videos (around 50) so easy to binge them all! Well worth it...&#xA;&#xA;https://www.youtube.com/channel/UCRev1DEDHyzhW8voY0Zg&#xA;Shoot film like a boss. Great general B&amp;W photography (with a slant on darkroom stuff). Roger is a great guy and does a lot of stuff in his darkroom shed. Very down to earth and easy to watch (no wet plate stuff though!)&#xA;&#xA;https://www.youtube.com/channel/UCta-8f4Qj-jzPb61Ua8D6Q&#xA;Mat Marrash. This guy does mostly large format stuff. Not much Glass but a lot of other large format techniques and is totally passionate about large format photography.&#xA;&#xA;https://www.youtube.com/channel/UCQ1GkPjYYCUZlrN9ErWVxXQ&#xA;Pictorial Planet. John Finch is a brilliant guy when it comes to creating your own developer and other chemicals. Again UK based in Scotland. I have bought his book purely because he knows so so much about the art of photography and explains how to manipulate film, push / pull, which developers work best with which films, how to create your own developers, fixes, etc. His technical knowledge has helped me so much to understand the theories behind films and developers.&#xA;&#xA;https://www.youtube.com/channel/UCSdp7piOb-t9AnfHKY_Qwg&#xA;Martin Henson - yet another UK guy, this time &#39;up North&#39;. He&#39;s a great photographer with a great knack of explaining stuff (just like john @Pictorial Planet above). He uses a lot of old equipment and explains in a very easy to understand way &#39;how&#39; to use film properly. Very relaxed videos at a great pace...&#xA;&#xA;https://www.youtube.com/channel/UC54g9MyqUxjeeIgAnxHtzrw&#xA;Markus Hofstatter. Great down to earth guy that does a LOT of wet plate stuff. Not so much on the tutorial side of things but is very passionate about his wet plate photography and very good at showing the process.&#xA;&#xA;https://www.youtube.com/channel/UCCjjZ-Qc43dF7xHBC92MAuA&#xA;Borut Peterlin. Ok, now for the narcissist! Borut produces some really &#39;organic&#39; videos on all things &#39;wet plate&#39;. Again based in Slovenia. He has some wonderful, watchable videos of the process and &#39;feeling&#39; of producing large format work, including Ambrotype, Tintypes, Albumen printing, Carbon printing and everything 1800&#39;s! His earlier videos were brilliant, then success hit him and being a person who, shall we say, fancies himself, started doing woodland photography around his cabin. With him as the star in various guises, doing wet plate, mostly naked. However, his videos are inspiring, passionate and full of interest to us wet plate people.&#xA;&#xA;https://www.youtube.com/user/brendanbarryphoto/featured&#xA;Brendan Barry (of course!). He&#39;s one of the leads behind the Exeter studio and Exeter Uni. I&#39;ve spoken to him a few times and would love to go out for a day with him and his &#39;camera caravan&#39; over dartmoor. Just that concept of a ultra large lens, a darkroom camera obscura (building, caravan, etc.) and just crude gaffer tape to make wonderful images is mind blowing and worth watching. &#xA;&#xA;Some of note: &#xA;https://www.youtube.com/watch?v=RwGoyDEgnzg,&#xA;https://www.youtube.com/watch?v=w9HsnZ0-V8w,&#xA;https://www.youtube.com/watch?v=lby69H2PJzE.&#xA;&#xA;#collodion #tintype #ambrotype #video #wetplate #photography]]&gt;</description>
      <content:encoded><![CDATA[<h2 id="top-youtube-wetplate-collodion-glass-photography" id="top-youtube-wetplate-collodion-glass-photography">Top Youtube Wetplate Collodion Glass Photography</h2>

<p>Something I am passionate about – Wet Plate Collodion Glass and Tintype photography.</p>


<ul><li><p><a href="https://www.youtube.com/c/NorthLightPress1" rel="nofollow">https://www.youtube.com/c/NorthLightPress1</a>
Bill Schwab is a great guy and I have his books. He runs workshops (in Canada!), but his videos are great.</p></li>

<li><p><a href="https://www.youtube.com/channel/UCkgsi_Pxixghd8xluKSs9eQ" rel="nofollow">https://www.youtube.com/channel/UCkgsi_Pxixghd8xluKSs9eQ</a>
Lost Light Art. This guy is brilliant. A young lad who does everything himself. He produces dark slides and &#39;dry plates&#39; that he sells on Etsy. He also shows how to make dry plates and just about everything else. He&#39;s from Slovenia and very pragmatic. I&#39;ve emailed him several times and he always gets back with great info. He does not have that many videos (around 50) so easy to binge them all! Well worth it...</p></li>

<li><p><a href="https://www.youtube.com/channel/UCRev1D_EDHyzhW8_voY0Z_g" rel="nofollow">https://www.youtube.com/channel/UCRev1D_EDHyzhW8_voY0Z_g</a>
Shoot film like a boss. Great general B&amp;W photography (with a slant on darkroom stuff). Roger is a great guy and does a lot of stuff in his darkroom shed. Very down to earth and easy to watch (no wet plate stuff though!)</p></li>

<li><p><a href="https://www.youtube.com/channel/UCta-8f4Qj-jzPb61Ua8D_6Q" rel="nofollow">https://www.youtube.com/channel/UCta-8f4Qj-jzPb61Ua8D_6Q</a>
Mat Marrash. This guy does mostly large format stuff. Not much Glass but a lot of other large format techniques and is totally passionate about large format photography.</p></li>

<li><p><a href="https://www.youtube.com/channel/UCQ1GkPjYYCUZlrN9ErWVxXQ" rel="nofollow">https://www.youtube.com/channel/UCQ1GkPjYYCUZlrN9ErWVxXQ</a>
Pictorial Planet. John Finch is a brilliant guy when it comes to creating your own developer and other chemicals. Again UK based in Scotland. I have bought his book purely because he knows so so much about the art of photography and explains how to manipulate film, push / pull, which developers work best with which films, how to create your own developers, fixes, etc. His technical knowledge has helped me so much to understand the theories behind films and developers.</p></li>

<li><p><a href="https://www.youtube.com/channel/UCSdp7piOb-t9AnfHK_Y_Qwg" rel="nofollow">https://www.youtube.com/channel/UCSdp7piOb-t9AnfHK_Y_Qwg</a>
Martin Henson – yet another UK guy, this time &#39;up North&#39;. He&#39;s a great photographer with a great knack of explaining stuff (just like john @Pictorial Planet above). He uses a lot of old equipment and explains in a very easy to understand way &#39;how&#39; to use film properly. Very relaxed videos at a great pace...</p></li>

<li><p><a href="https://www.youtube.com/channel/UC54g9MyqUxjeeIgAnxHtzrw" rel="nofollow">https://www.youtube.com/channel/UC54g9MyqUxjeeIgAnxHtzrw</a>
Markus Hofstatter. Great down to earth guy that does a LOT of wet plate stuff. Not so much on the tutorial side of things but is very passionate about his wet plate photography and very good at showing the process.</p></li>

<li><p><a href="https://www.youtube.com/channel/UCCjjZ-Qc43dF7xHBC92MAuA" rel="nofollow">https://www.youtube.com/channel/UCCjjZ-Qc43dF7xHBC92MAuA</a>
Borut Peterlin. Ok, now for the narcissist! Borut produces some really &#39;organic&#39; videos on all things &#39;wet plate&#39;. Again based in Slovenia. He has some wonderful, watchable videos of the process and &#39;feeling&#39; of producing large format work, including Ambrotype, Tintypes, Albumen printing, Carbon printing and everything 1800&#39;s! His earlier videos were brilliant, then success hit him and being a person who, shall we say, fancies himself, started doing woodland photography around his cabin. With him as the star in various guises, doing wet plate, mostly naked. However, his videos are inspiring, passionate and full of interest to us wet plate people.</p></li>

<li><p><a href="https://www.youtube.com/user/brendanbarryphoto/featured" rel="nofollow">https://www.youtube.com/user/brendanbarryphoto/featured</a>
Brendan Barry (of course!). He&#39;s one of the leads behind the Exeter studio and Exeter Uni. I&#39;ve spoken to him a few times and would love to go out for a day with him and his &#39;camera caravan&#39; over dartmoor. Just that concept of a ultra large lens, a darkroom camera obscura (building, caravan, etc.) and just crude gaffer tape to make wonderful images is mind blowing and worth watching.</p></li></ul>

<p>Some of note:
* <a href="https://www.youtube.com/watch?v=RwGoyDEgnzg" rel="nofollow">https://www.youtube.com/watch?v=RwGoyDEgnzg</a>,
* <a href="https://www.youtube.com/watch?v=w9HsnZ0-V8w" rel="nofollow">https://www.youtube.com/watch?v=w9HsnZ0-V8w</a>,
* <a href="https://www.youtube.com/watch?v=lby69H2PJzE" rel="nofollow">https://www.youtube.com/watch?v=lby69H2PJzE</a>.</p>

<p><a href="https://jonathancamp.co.uk/tag:collodion" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">collodion</span></a> <a href="https://jonathancamp.co.uk/tag:tintype" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">tintype</span></a> <a href="https://jonathancamp.co.uk/tag:ambrotype" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">ambrotype</span></a> <a href="https://jonathancamp.co.uk/tag:video" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">video</span></a> <a href="https://jonathancamp.co.uk/tag:wetplate" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">wetplate</span></a> <a href="https://jonathancamp.co.uk/tag:photography" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">photography</span></a></p>
]]></content:encoded>
      <guid>https://jonathancamp.co.uk/top-youtube-wetplate-collodion-glass-photography</guid>
      <pubDate>Tue, 01 Feb 2022 12:19:33 +0000</pubDate>
    </item>
    <item>
      <title>Using Screen casting tools to capture video</title>
      <link>https://jonathancamp.co.uk/using-screencasting-tools-to-capture-video?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[What are the best tools to capture your screen for tutorials?&#xA;&#xA;In this article I look at the best tools I have used to capture the screen and edit / publish.&#xA;&#xA;!--more--&#xA;&#xA;So, this is a work-in-progress post as there are literally so many out there. I use a mixture of free tools and paid for tools. I do not use &#39;premier pro&#39; (or even the rip off version), mainly because I know there are lots of very good tools out there that are either free or from small independent authors.&#xA;&#xA;Here&#39;s the &#34;top level&#34; list of my video tools:&#xA;&#xA;Some of these tools both &#39;capture&#39; screen video and allow you to edit the recorded video. Some better than others at editing.&#xA;&#xA;Record screen video&#xA;&#xA;WeVideo&#xA;MovAvi Video Suite 22&#xA;Screencast-O-Matic&#xA;IceCream Screen Recorder&#xA;FREE/PAID Loom Recorder&#xA;FREE ScreenToGif&#xA;&#xA;Edit video&#xA;&#xA;MovAvi Video Suite 22&#xA;FREE VLC Player&#xA;Screencast-O-Matic&#xA;IceCream Video Editor&#xA;FREE VSDC Free Video Editor&#xA;FREE OpenShot Video Editor&#xA;FREE ShotCut Video Editor&#xA;FREE ScreenToGif&#xA;&#xA;Web Cam for Pic in Pic&#xA;&#xA;FREE Webcam Viewer&#xA;FREE HTML5 WebCam Recorder&#xA;&#xA;#videoeditor #editvideo #video #editors #screencasting #webcam&#xA;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<h2 id="what-are-the-best-tools-to-capture-your-screen-for-tutorials" id="what-are-the-best-tools-to-capture-your-screen-for-tutorials">What are the best tools to capture your screen for tutorials?</h2>

<p>In this article I look at the best tools I have used to capture the screen and edit / publish.</p>



<p>So, this is a work-in-progress post as there are literally so many out there. I use a mixture of free tools and paid for tools. I do not use &#39;premier pro&#39; (or even the rip off version), mainly because I know there are lots of very good tools out there that are either free or from small independent authors.</p>

<h3 id="here-s-the-top-level-list-of-my-video-tools" id="here-s-the-top-level-list-of-my-video-tools">Here&#39;s the “top level” list of my video tools:</h3>

<p>Some of these tools both &#39;capture&#39; screen video and allow you to edit the recorded video. Some better than others at editing.</p>

<h4 id="record-screen-video" id="record-screen-video">Record screen video</h4>
<ul><li>WeVideo</li>
<li>MovAvi Video Suite 22</li>
<li>Screencast-O-Matic</li>
<li>IceCream Screen Recorder</li>
<li>FREE/PAID Loom Recorder</li>
<li>FREE <a href="https://www.screentogif.com/" rel="nofollow">ScreenToGif</a></li></ul>

<h4 id="edit-video" id="edit-video">Edit video</h4>
<ul><li>MovAvi Video Suite 22</li>
<li>FREE VLC Player</li>
<li>Screencast-O-Matic</li>
<li>IceCream Video Editor</li>
<li>FREE <a href="https://www.videosoftdev.com/" rel="nofollow">VSDC Free Video Editor</a></li>
<li>FREE <a href="https://www.openshot.org/" rel="nofollow">OpenShot Video Editor</a></li>
<li>FREE <a href="https://shotcut.org/" rel="nofollow">ShotCut Video Editor</a></li>
<li>FREE <a href="https://www.screentogif.com/" rel="nofollow">ScreenToGif</a></li></ul>

<h4 id="web-cam-for-pic-in-pic" id="web-cam-for-pic-in-pic">Web Cam for Pic in Pic</h4>
<ul><li>FREE Webcam Viewer</li>
<li>FREE HTML5 WebCam Recorder</li></ul>

<p><a href="https://jonathancamp.co.uk/tag:videoeditor" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">videoeditor</span></a> <a href="https://jonathancamp.co.uk/tag:editvideo" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">editvideo</span></a> <a href="https://jonathancamp.co.uk/tag:video" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">video</span></a> <a href="https://jonathancamp.co.uk/tag:editors" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">editors</span></a> <a href="https://jonathancamp.co.uk/tag:screencasting" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">screencasting</span></a> <a href="https://jonathancamp.co.uk/tag:webcam" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">webcam</span></a></p>
]]></content:encoded>
      <guid>https://jonathancamp.co.uk/using-screencasting-tools-to-capture-video</guid>
      <pubDate>Fri, 07 Jan 2022 11:41:44 +0000</pubDate>
    </item>
    <item>
      <title>Wordpress File and Folder permissions - what should they be?</title>
      <link>https://jonathancamp.co.uk/wordpress-file-and-folder-permissions-what-should-they-be?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[It’s important to ensure that WordPress files and folders have the correct ownership and permissions. Not only does this allow WordPress to keep itself updated, it also prevents attackers from exploiting poor file security and taking control of your site.&#xA;&#xA;!--more--&#xA;&#xA;WordPress folders should always have 0755 permissions, and WordPress files should always have 0644 permissions – although this can vary from host to host.&#xA;&#xA;If you’re getting errors when attempting to install plugins, or upload new media, don’t be tempted to set any folder permissions to 0777. Instead, work with your web host to ensure that PHP is run with the correct user, and that the folders are owned by the same user.&#xA;&#xA;If you’ve got shell access, you can run a few commands to ensure WordPress is secure:&#xA;&#xA;find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \;&#xA;find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \;&#xA;&#xA;If you know the user and group that should have ownership of the WordPress files and folders, use:&#xA;&#xA;#wordpress #security]]&gt;</description>
      <content:encoded><![CDATA[<p>It’s important to ensure that WordPress files and folders have the correct ownership and permissions. Not only does this allow WordPress to keep itself updated, it also prevents attackers from exploiting poor file security and taking control of your site.</p>



<p>WordPress folders should always have 0755 permissions, and WordPress files should always have 0644 permissions – although this can vary from host to host.</p>

<p>If you’re getting errors when attempting to install plugins, or upload new media, don’t be tempted to set any folder permissions to 0777. Instead, work with your web host to ensure that PHP is run with the correct user, and that the folders are owned by the same user.</p>

<p>If you’ve got shell access, you can run a few commands to ensure WordPress is secure:</p>

<pre><code>find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \;
find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \;
</code></pre>

<p>If you know the user and group that should have ownership of the WordPress files and folders, use:</p>

<p><code>sudo chown -R username:group /path/to/your/wordpress/install</code></p>

<p><a href="https://jonathancamp.co.uk/tag:wordpress" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">wordpress</span></a> <a href="https://jonathancamp.co.uk/tag:security" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">security</span></a></p>
]]></content:encoded>
      <guid>https://jonathancamp.co.uk/wordpress-file-and-folder-permissions-what-should-they-be</guid>
      <pubDate>Fri, 07 Jan 2022 10:24:27 +0000</pubDate>
    </item>
    <item>
      <title>Framework7 - the lightweight, full featured iOS, Android, Desktop app framework</title>
      <link>https://jonathancamp.co.uk/framework7-the-lightweight-full-featured-ios-android-desktop-app-framework?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Uses only using HTML, CSS and Javascript&#xA;&#xA;Framework7 is a mature development framework that includes components to create mobile applications. If you like; mobile first web development.&#xA;&#xA;The framework7 framework is FREE and Open Source, but none the less allows you to develop mobile, desktop or web apps with a look and feel of the native apps on the various app stores.&#xA;&#xA;!--more--&#xA;&#xA;If you know HTML, CSS and a bit of javascript you can be up and running in no time, creating mobile first apps. The beauty of this framework is your app looks the same on the desktop, or mobile device and is always up to date.&#xA;&#xA;Take a look at the mobile emulator on the framework7.io home page or view it directly on your desktop - it will give you a good idea of the native components available, plus a good overview.&#xA;&#xA;What can you use Framework7 for&#xA;&#xA;Prototyping apps&#xA;Developing web based apps (Progressive Web Apps - PWA&#39;s)&#xA;Paired with other tools such as Electron allows you build native desktop apps&#xA;In addition to the vanilla JS library included, framework7 comes with Vue.js, React and Svelte components.&#xA;Ready to use ICONS for dialogues, actions, popups, lists, tabs, panels, etc.&#xA;Examples are provided (I use the FEEDS Plugin to create a Mobile RSS reader easily) and templates&#xA;&#xA;Pop over to their Github and download the core framework7 framework and give it a go :)&#xA;&#xA;You can do a manual install as simply as:&#xA;&#xA;Looking for more?&#xA;&#xA;What about components for building Tailwind with Konsta UI, Mobile touch sliders with slider.js and much more.&#xA;&#xA;There are plenty of framework7 video and online tutorials on the site plus a very active framework7 community&#xA;&#xA;#development #mobileapps #pwa #frameworks]]&gt;</description>
      <content:encoded><![CDATA[<p><strong>Uses only using HTML, CSS and Javascript</strong></p>

<p>Framework7 is a mature development framework that includes components to create mobile applications. If you like; mobile first web development.</p>

<p>The <a href="https://framework7.io/" rel="nofollow">framework7 framework</a> is FREE and Open Source, but none the less allows you to develop mobile, desktop or web apps with a look and feel of the native apps on the various app stores.</p>



<p><img src="https://i.snap.as/qbP2AyKs.png" alt=""/></p>

<p>If you know HTML, CSS and a bit of javascript you can be up and running in no time, creating mobile first apps. The beauty of this framework is your app looks the same on the desktop, or mobile device and is always up to date.</p>

<p>Take a look at the mobile emulator on <a href="https://framework7.io/" rel="nofollow">the framework7.io home page</a> or view it directly on <a href="https://framework7.io/kitchen-sink/core/?theme=ios" rel="nofollow">your desktop</a> – it will give you a good idea of the native components available, plus a good overview.</p>

<h2 id="what-can-you-use-framework7-for" id="what-can-you-use-framework7-for">What can you use Framework7 for</h2>
<ul><li>Prototyping apps</li>
<li>Developing web based apps (Progressive Web Apps – PWA&#39;s)</li>
<li>Paired with other tools such as Electron allows you build native desktop apps</li>
<li>In addition to the vanilla JS library included, framework7 comes with Vue.js, React and Svelte components.</li>
<li>Ready to use ICONS for dialogues, actions, popups, lists, tabs, panels, etc.</li>
<li>Examples are provided (I use the FEEDS Plugin to create a Mobile RSS reader easily) and templates</li></ul>

<p>Pop over to their Github and <a href="https://github.com/framework7io/framework7/releases" rel="nofollow">download the core framework7 framework</a> and give it a go :)</p>

<p>You can do a <a href="https://framework7.io/docs/installation" rel="nofollow">manual install</a> as simply as:</p>

<p><code>$ npm install framework7</code></p>

<h2 id="looking-for-more" id="looking-for-more">Looking for more?</h2>

<p>What about components for building <a href="https://konstaui.com/" rel="nofollow">Tailwind with Konsta UI</a>, <a href="https://swiperjs.com/" rel="nofollow">Mobile touch sliders with slider.js</a> and much more.</p>

<p>There are plenty of <a href="https://framework7.io/tutorials/" rel="nofollow">framework7 video and online tutorials</a> on the site plus a very active <a href="https://forum.framework7.io/" rel="nofollow">framework7 community</a></p>

<p><a href="https://jonathancamp.co.uk/tag:development" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">development</span></a> <a href="https://jonathancamp.co.uk/tag:mobileapps" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">mobileapps</span></a> <a href="https://jonathancamp.co.uk/tag:pwa" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">pwa</span></a> <a href="https://jonathancamp.co.uk/tag:frameworks" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">frameworks</span></a></p>
]]></content:encoded>
      <guid>https://jonathancamp.co.uk/framework7-the-lightweight-full-featured-ios-android-desktop-app-framework</guid>
      <pubDate>Thu, 06 Jan 2022 15:32:41 +0000</pubDate>
    </item>
    <item>
      <title>Extensions for write.as (in Chrome store)</title>
      <link>https://jonathancamp.co.uk/extensions-for-write-as-in-chrome?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[A couple of useful Chrome extensions for write.as&#xA;&#xA;!--more--&#xA;&#xA;Write.as for Chrome&#xA;Upload to Snap.as (needs a pro account)&#xA;&#xA;Snap.as extension&#xA;&#xA;The snap.as extension looks useful. Instead of going into snap.as, uploading an image and then getting the url and adding to your post to show an image, you can just drag and drop onto the extension popup and it will upload to snap.as and return the url for write.as.&#xA;&#xA;&#34;A quick way to upload your photos to Snap.as — a simple photo sharing service — made especially for writers publishing on Write.as. Just open the extension, drag a photo in, and the Markdown will be copied to your clipboard. Then, simply paste it in any Markdown-enabled editor.&#34;&#xA;&#xA;Write.as extension&#xA;&#xA;This extension is also on Github, but has not been updated for several years (6 at last look...).&#xA;&#xA;Github&#xA;&#xA;I&#39;d check out the other write.as repo&#39;s for write.as as Matt is pretty busy supporting these great platforms. A lot of stuff is written in the language &#34;GO&#34; so if you are not familiar with GO - look into it!&#xA;&#xA;#write.as #extensions]]&gt;</description>
      <content:encoded><![CDATA[<p>A couple of useful Chrome extensions for write.as</p>


<ol><li><a href="https://chrome.google.com/webstore/detail/writeas-for-chrome/olcmhdfggljfdmcamiicibfkjgdmpllf" rel="nofollow">Write.as for Chrome</a></li>
<li><a href="https://chrome.google.com/webstore/detail/snapas/oihcgppfiigcffpedggckjaobjhdenei" rel="nofollow">Upload to Snap.as</a> (needs a pro account)</li></ol>

<h2 id="snap-as-extension" id="snap-as-extension">Snap.as extension</h2>

<p>The snap.as extension looks useful. Instead of going into snap.as, uploading an image and then getting the url and adding to your post to show an image, you can just drag and drop onto the extension popup and it will upload to snap.as and return the url for write.as.</p>

<p>“A quick way to upload your photos to Snap.as — a simple photo sharing service — made especially for writers publishing on Write.as. Just open the extension, drag a photo in, and the Markdown will be copied to your clipboard. Then, simply paste it in any Markdown-enabled editor.”</p>

<h2 id="write-as-extension" id="write-as-extension">Write.as extension</h2>

<p><a href="https://github.com/writeas/paste-chrome" rel="nofollow">This extension is also on Github</a>, but has not been updated for several years (6 at last look...).</p>

<h2 id="github" id="github">Github</h2>

<p>I&#39;d check out the <a href="https://github.com/orgs/writeas/repositories" rel="nofollow">other write.as repo&#39;s</a> for write.as as Matt is pretty busy supporting these great platforms. A lot of stuff is written in the language “GO” so <a href="https://go.dev/" rel="nofollow">if you are not familiar with GO</a> – look into it!</p>

<p><a href="https://jonathancamp.co.uk/tag:write" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">write</span></a>.as <a href="https://jonathancamp.co.uk/tag:extensions" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">extensions</span></a></p>
]]></content:encoded>
      <guid>https://jonathancamp.co.uk/extensions-for-write-as-in-chrome</guid>
      <pubDate>Tue, 04 Jan 2022 15:36:38 +0000</pubDate>
    </item>
    <item>
      <title>Backing up phone images using Google Photos</title>
      <link>https://jonathancamp.co.uk/backing-up-phone-images-using-google-photos?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Backing up phone images using Google Photos&#xA;&#xA;So, I&#39;m using Google Photos to backup my phone. Have done for a long time.&#xA;&#xA;!--more--&#xA;&#xA;Why Google Photos&#xA;&#xA;Well it&#39;s easy and quick. Works in the back ground and means I can access all my photos in one place, online on any device.&#xA;&#xA;Google Photos - Great right?&#xA;&#xA;Sort of... the thing is Google stores photo&#39;s in a format called HEIC which is fine but of course not perfect. HEIC format images and video are very effecient - which is great; just not very common.&#xA;&#xA;Generally this means that when I want to download some images to my local PC and then either use on the web or anything else I have to go through another process to convert the images to .jpg or other format.&#xA;&#xA;What about HEIC format files?&#xA;&#xA;You can convert HEIC to JPG by importing into your favourite image editor (perhaps Photoshop) and then exporting in whichever format you want. On the PC (or MAC) there are plenty of programs to do this in bulk, by selecting files, right clicking and then converting.&#xA;&#xA;One thing to remember with Google Photos, is to go into your Google Settings and make sure you select: Upload Size: Original Quality. This will stop Google down sampling your images to save space (as the itunes backup does!).&#xA;&#xA;Speaking of iTunes... Why do I use Google Photos rather than iTunes? &#xA;&#xA;Reasons I like using Google Photos:&#xA;&#xA;Easier to use and setup&#xA;Does not down sample images (see above re: settings)&#xA;Very easy to share with friends and family&#xA;Very easy to edit online&#xA;Works &#39;out of the box&#39; with all phones&#xA;Easy to backup if you need ALL your photos&#xA;Auto albums and memories&#xA;Photos are easy to print and created printed albums&#xA;Storage with Google is CHEAP!&#xA;&#xA;I guess iTunes does the albums and sorting &#39;thing&#39; - just not as good a Google.]]&gt;</description>
      <content:encoded><![CDATA[<h3 id="backing-up-phone-images-using-google-photos" id="backing-up-phone-images-using-google-photos">Backing up phone images using Google Photos</h3>

<p>So, I&#39;m using <a href="https://photos.google.com/" rel="nofollow">Google Photos</a> to backup my phone. Have done for a long time.</p>



<p><img src="https://www.dpreview.com/files/p/articles/8157870358/Google-Photos.jpeg" alt=""/></p>

<h4 id="why-google-photos" id="why-google-photos">Why Google Photos</h4>

<p>Well it&#39;s easy and quick. Works in the back ground and means I can access all my photos in one place, online on any device.</p>

<h4 id="google-photos-great-right" id="google-photos-great-right">Google Photos – Great right?</h4>

<p>Sort of... the thing is Google stores photo&#39;s in a format called <a href="https://www.adobe.com/creativecloud/file-types/image/raster/heic-file.html" rel="nofollow">HEIC</a> which is fine but of course not perfect. HEIC format images and video are very effecient – which is great; just not very common.</p>

<p>Generally this means that when I want to download some images to my local PC and then either use on the web or anything else I have to go through another process to convert the images to .jpg or other format.</p>

<h4 id="what-about-heic-format-files" id="what-about-heic-format-files">What about HEIC format files?</h4>

<p>You can convert HEIC to JPG by importing into your favourite image editor (perhaps Photoshop) and then exporting in whichever format you want. On the PC (or MAC) there are plenty of programs to do this in bulk, by selecting files, right clicking and then converting.</p>

<p>One thing to remember with Google Photos, is to go into your <a href="https://photos.google.com/settings" rel="nofollow">Google Settings</a> and make sure you select: Upload Size: Original Quality. This will stop Google down sampling your images to save space (as the itunes backup does!).</p>

<p>Speaking of iTunes... Why do I use Google Photos rather than iTunes?</p>

<h4 id="reasons-i-like-using-google-photos" id="reasons-i-like-using-google-photos">Reasons I like using Google Photos:</h4>
<ol><li>Easier to use and setup</li>
<li>Does not down sample images (see above re: settings)</li>
<li>Very easy to share with friends and family</li>
<li>Very easy to edit online</li>
<li>Works &#39;out of the box&#39; with all phones</li>
<li>Easy to backup if you need ALL your photos</li>
<li>Auto albums and memories</li>
<li>Photos are easy to print and created printed albums</li>
<li><a href="https://photos.google.com/quotamanagement" rel="nofollow">Storage with Google</a> is CHEAP!</li></ol>

<p>I guess iTunes does the albums and sorting &#39;thing&#39; – just not as good a Google.</p>
]]></content:encoded>
      <guid>https://jonathancamp.co.uk/backing-up-phone-images-using-google-photos</guid>
      <pubDate>Tue, 04 Jan 2022 15:04:07 +0000</pubDate>
    </item>
    <item>
      <title>Google - Local SEO top tips</title>
      <link>https://jonathancamp.co.uk/google-local-seo-top-tips?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Google - Local SEO top tips&#xA;&#xA;Here&#39;s quick list of factors that will help your business rank as a &#34;Local Business&#34; with Google. These are all important points that will help you rank at the top with Google local searches.&#xA;&#xA;!--more--&#xA;&#xA;Click here to read more Local SEO articles&#xA;&#xA;General&#xA;&#xA;What are customers looking for?&#xA;Use Long tail keyword expressions along with Keyphrases&#xA;Avoid Jargon&#xA;Create posts for questions asked locally&#xA;Check what your competition are doing&#xA;What is your users&#39; intent? What is the purpose of their search term?&#xA;  Informational Intent - just more information&#xA;  Navigational Intent - user wants to get to your site quickly (e.g. contact page)&#xA;  Purchase Intent - Looking for pricing and comparisons&#xA;  Transactional Intent - Ready to Buy! Make sure you page offers purchase&#xA;&#xA;Website&#xA;&#xA;Check your &#34;user experience&#34; scores with Google&#xA;Put your name, address and telephone on your footer (every page)&#xA;Hyperlink logo to home page&#xA;Create easy navigation - what are people looking for?&#xA;Other links in the footer&#xA;Sliders are &#39;old school&#39; and no longer useful - AVOID them!&#xA;Contact information is easy to find in multiple places&#xA;Put contact link in main navigation&#xA;Include google map&#xA;Add visual elements (images, videos, etc.) - optimise for mobile devices&#xA;Make sure your &#34;Meta Description&#34; (describe the page) and &#34;Title Tag&#34; are optimised on every page for relevance to the content on the page&#xA;Keep title tag to under 60 characters and no keyword stuffing&#xA;Do not use company name in title tag (waste of space!)&#xA;Break up posts and pages with Headings (H1 - H4)&#xA;Break up posts and pages into small paragraphs&#xA;Add Call to Actions&#xA;Add meta data to images and videos (titles, alt tag, etc.) - describe the image and do not keyword stuff&#xA;&#xA;Link Building&#xA;&#xA;Get backlinks from quality websites (Quality is better than quantity)&#xA;Focus on related content websites&#xA;Get backlinks from suppliers, contractors, etc. &#xA;Offer to write an online testimonial for a backlink&#xA;Check backlinks that go to competitors&#xA;Build relationships with other businesses that rank with Google on page 1&#xA;Setup &#34;Google Alerts&#34; for your company mention&#xA;Write press articles / releases&#xA;Search &#34;Your full business name&#34; -site:yourwebsite.com - see which other businesses are linking to you and reach out to them for backlinks&#xA;&#xA;User Experience&#xA;&#xA;Make sure your website is &#34;mobile first&#34; and responsive - check with google tools - https://search.google.com/test/mobile-friendly&#xA;Make sure you have an SSL certificate&#xA;Make sure you website loads quickly - Chrome Browser Lighthouse test and report&#xA;Add &#39;Schema&#39; markup to your website (or get your web developer to ensure that your site is optimised for Schema).&#xA;&#xA;GMB Google my business&#xA;&#xA;Google My Business profile&#xA;Make sure you have your business name, address, telephone number correct&#xA;Get Reviews from customers - ASK!&#xA;Reply to ALL reviews&#xA;Add review link to your email signature&#xA;Setup your GMB &#34;shortname&#34; (@ name)&#xA;Make sure reviews are created away from your address&#xA;Make sure profile is up to date with GMB&#xA;Find local search expressions for your services&#xA;Use some &#34;Long tail&#34; search terms&#xA;&#xA;Directories / Citations&#xA;&#xA;Find best directory services for your business&#xA;What directories are your competition using&#xA;Claim your business and setup key accouns&#xA;Make sure your address / Tel is consistent&#xA;Apple maps&#xA;Facebook profile&#xA;Linkedin business profile&#xA;BrightLocal&#xA;&#xA;Build Authority&#xA;&#xA;Try guest blogging for non competitive websites&#xA;Link back to your website&#xA;Be a &#34;guest&#34; on top ranking podcasts - make sure your BIO is up to date&#xA;  Make sure they issue show notes&#xA;  Follow and build relationship&#xA;  Find a topic you want a back link for&#xA;  Mention keyword phrases and your location in the podcast&#xA;  Talk about posts on your website and links&#xA;  Promote when the podcast is broadcast&#xA;  Tag podcast and the hosts&#xA;Expert roundup post - get answers to questions from experts in your area&#xA;Curation - related content from experts and add snippets - make sure you have their permission and give them credit&#xA;Expert Q&amp;A - reach out with questions in your area and publish - add their backlinks&#xA;&#xA;Tools&#xA;&#xA;LSIGraph: https://lsigraph.com/ – affordable and easy-to-use keyword research tool&#xA;keywordtool.io (free tool - https://keywordtool.io/)&#xA;Link Assistant Backlink Checker: https://www.link-assistant.com/seo-spyglass/free-backlinkchecker-&#xA;tool.html&#xA;AnswerThePublic: https://answerthepublic.com/ – Find keywords and questions people are asking about a particular topic&#xA;Google!&#xA;  Google Ads Keyword Planner: https://ads.google.com/&#xA;  Google Guide to Using Google Ads Keyword Planner:&#xA;https://ads.google.com/home/resources/using-google-ads-keyword-planner/&#xA;  Google My Business Signup/Dashboard: https://business.google.com&#xA;  Guidelines for Representing Your Business on Google:&#xA;https://support.google.com/business/answer/3038177?hl=en&#xA;  Google My Business Help Forum: https://support.google.com/business/community?hl=en&#xA;  Google Maps: https://www.google.com/maps&#xA;  Google Marketing kit: https://marketingkit.withgoogle.com/intl/en-GB/r/GB&#xA;  PageSpeed Insights: https://developers.google.com/speed/pagespeed/insights/&#xA;  Google Alerts: https://www. google.com/alerts&#xA;  Google SEO Starter Guide:&#xA;https://developers.google.com/search/docs/beginner/seo-starter-guide.com&#xA;&#xA;#seo #tipstricks]]&gt;</description>
      <content:encoded><![CDATA[<h3 id="google-local-seo-top-tips" id="google-local-seo-top-tips">Google – Local SEO top tips</h3>

<p>Here&#39;s quick list of factors that will help your business rank as a “Local Business” with Google. These are all important points that will help you rank at the top with Google local searches.</p>



<p><a href="http://microupdate.co.uk/" rel="nofollow">Click here to read more Local SEO articles</a></p>

<h4 id="general" id="general">General</h4>
<ul><li>What are customers looking for?</li>
<li>Use Long tail keyword expressions along with Keyphrases</li>
<li>Avoid Jargon</li>
<li>Create posts for questions asked locally</li>
<li>Check what your competition are doing</li>
<li>What is your <strong>users&#39; intent</strong>? What is the purpose of their search term?
<ul><li>Informational Intent – just more information</li>
<li>Navigational Intent – user wants to get to your site quickly (e.g. contact page)</li>
<li>Purchase Intent – Looking for pricing and comparisons</li>
<li>Transactional Intent – Ready to Buy! Make sure you page offers purchase</li></ul></li></ul>

<h4 id="website" id="website">Website</h4>
<ul><li>Check your “user experience” scores with Google</li>
<li>Put your name, address and telephone on your footer (every page)</li>
<li>Hyperlink logo to home page</li>
<li>Create easy navigation – what are people looking for?</li>
<li>Other links in the footer</li>
<li>Sliders are &#39;old school&#39; and no longer useful – AVOID them!</li>
<li>Contact information is easy to find in multiple places</li>
<li>Put contact link in main navigation</li>
<li>Include google map</li>
<li>Add visual elements (images, videos, etc.) – optimise for mobile devices</li>
<li>Make sure your “Meta Description” (describe the page) and “Title Tag” are optimised on every page for relevance to the content on the page</li>
<li>Keep title tag to under 60 characters and no keyword stuffing</li>
<li>Do not use company name in title tag (waste of space!)</li>
<li>Break up posts and pages with Headings (H1 – H4)</li>
<li>Break up posts and pages into small paragraphs</li>
<li>Add Call to Actions</li>
<li>Add meta data to images and videos (titles, alt tag, etc.) – describe the image and do not keyword stuff</li></ul>

<h4 id="link-building" id="link-building">Link Building</h4>
<ul><li>Get backlinks from quality websites (Quality is better than quantity)</li>
<li>Focus on related content websites</li>
<li>Get backlinks from suppliers, contractors, etc.</li>
<li>Offer to write an online testimonial for a backlink</li>
<li>Check backlinks that go to competitors</li>
<li>Build relationships with other businesses that rank with Google on page 1</li>
<li>Setup “Google Alerts” for your company mention</li>
<li>Write press articles / releases</li>
<li>Search “Your full business name” -site:yourwebsite.com – see which other businesses are linking to you and reach out to them for backlinks</li></ul>

<h4 id="user-experience" id="user-experience">User Experience</h4>
<ul><li>Make sure your website is “mobile first” and responsive – check with google tools – <a href="https://search.google.com/test/mobile-friendly" rel="nofollow">https://search.google.com/test/mobile-friendly</a></li>
<li>Make sure you have an SSL certificate</li>
<li>Make sure you website loads quickly – Chrome Browser Lighthouse test and report</li>
<li>Add &#39;Schema&#39; markup to your website (or get your web developer to ensure that your site is optimised for Schema).</li></ul>

<h4 id="gmb-google-my-business" id="gmb-google-my-business">GMB Google my business</h4>
<ul><li>Google My Business profile</li>
<li>Make sure you have your business name, address, telephone number correct</li>
<li>Get Reviews from customers – ASK!</li>
<li>Reply to ALL reviews</li>
<li>Add review link to your email signature</li>
<li>Setup your GMB “shortname” (@ name)</li>
<li>Make sure reviews are created away from your address</li>
<li>Make sure profile is up to date with GMB</li>
<li>Find local search expressions for your services</li>
<li>Use some “Long tail” search terms</li></ul>

<h4 id="directories-citations" id="directories-citations">Directories / Citations</h4>
<ul><li>Find best directory services for your business</li>
<li>What directories are your competition using</li>
<li>Claim your business and setup key accouns</li>
<li>Make sure your address / Tel is consistent</li>
<li>Apple maps</li>
<li>Facebook profile</li>
<li>Linkedin business profile</li>
<li>BrightLocal</li></ul>

<h4 id="build-authority" id="build-authority">Build Authority</h4>
<ul><li>Try guest blogging for non competitive websites</li>
<li>Link back to your website</li>
<li>Be a “guest” on top ranking podcasts – make sure your BIO is up to date
<ul><li>Make sure they issue show notes</li>
<li>Follow and build relationship</li>
<li>Find a topic you want a back link for</li>
<li>Mention keyword phrases and your location in the podcast</li>
<li>Talk about posts on your website and links</li>
<li>Promote when the podcast is broadcast</li>
<li>Tag podcast and the hosts</li></ul></li>
<li>Expert roundup post – get answers to questions from experts in your area</li>
<li>Curation – related content from experts and add snippets – make sure you have their permission and give them credit</li>
<li>Expert Q&amp;A – reach out with questions in your area and publish – add their backlinks</li></ul>

<h4 id="tools" id="tools">Tools</h4>
<ul><li>LSIGraph: <a href="https://lsigraph.com/" rel="nofollow">https://lsigraph.com/</a> – affordable and easy-to-use keyword research tool</li>
<li>keywordtool.io (free tool – <a href="https://keywordtool.io/" rel="nofollow">https://keywordtool.io/</a>)</li>
<li>Link Assistant Backlink Checker: <a href="https://www.link-assistant.com/seo-spyglass/free-backlinkchecker-" rel="nofollow">https://www.link-assistant.com/seo-spyglass/free-backlinkchecker-</a>
tool.html</li>
<li>AnswerThePublic: <a href="https://answerthepublic.com/" rel="nofollow">https://answerthepublic.com/</a> – Find keywords and questions people are asking about a particular topic</li>
<li>Google!
<ul><li>Google Ads Keyword Planner: <a href="https://ads.google.com/" rel="nofollow">https://ads.google.com/</a></li>
<li>Google Guide to Using Google Ads Keyword Planner:
<a href="https://ads.google.com/home/resources/using-google-ads-keyword-planner/" rel="nofollow">https://ads.google.com/home/resources/using-google-ads-keyword-planner/</a></li>
<li>Google My Business Signup/Dashboard: <a href="https://business.google.com" rel="nofollow">https://business.google.com</a></li>
<li>Guidelines for Representing Your Business on Google:
<a href="https://support.google.com/business/answer/3038177?hl=en" rel="nofollow">https://support.google.com/business/answer/3038177?hl=en</a></li>
<li>Google My Business Help Forum: <a href="https://support.google.com/business/community?hl=en" rel="nofollow">https://support.google.com/business/community?hl=en</a></li>
<li>Google Maps: <a href="https://www.google.com/maps" rel="nofollow">https://www.google.com/maps</a></li>
<li>Google Marketing kit: <a href="https://marketingkit.withgoogle.com/intl/en-GB/r/GB" rel="nofollow">https://marketingkit.withgoogle.com/intl/en-GB/r/GB</a></li>
<li>PageSpeed Insights: <a href="https://developers.google.com/speed/pagespeed/insights/" rel="nofollow">https://developers.google.com/speed/pagespeed/insights/</a></li>
<li>Google Alerts: <a href="https://www" rel="nofollow">https://www</a>. google.com/alerts</li>
<li>Google SEO Starter Guide:
<a href="https://developers.google.com/search/docs/beginner/seo-starter-guide.com" rel="nofollow">https://developers.google.com/search/docs/beginner/seo-starter-guide.com</a></li></ul></li></ul>

<p><a href="https://jonathancamp.co.uk/tag:seo" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">seo</span></a> <a href="https://jonathancamp.co.uk/tag:tipstricks" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">tipstricks</span></a></p>
]]></content:encoded>
      <guid>https://jonathancamp.co.uk/google-local-seo-top-tips</guid>
      <pubDate>Fri, 31 Dec 2021 16:39:53 +0000</pubDate>
    </item>
    <item>
      <title>Checking HTTP headers returned from website</title>
      <link>https://jonathancamp.co.uk/checking-http-headers-returned-from-website?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Checking HTTP headers returned from website&#xA;&#xA;If you want to check your headers returned on your website (perhaps if you are optimising your site using Google Lighthouse) - use CURL&#xA;&#xA;Run this from the cmd prompt. It will return the whole website page - so redirect the output to a file to just see the header:&#xA;&#xA;This will output your website page to a file but show the header info on the screen. Check the headers for things like &#39;cache-control&#39;, HTTP/x version, Compression, etc.]]&gt;</description>
      <content:encoded><![CDATA[<h3 id="checking-http-headers-returned-from-website" id="checking-http-headers-returned-from-website">Checking HTTP headers returned from website</h3>

<p>If you want to check your headers returned on your website (perhaps if you are optimising your site using Google Lighthouse) – use CURL</p>

<p><code>CURL -v https://yourwebsite.com</code></p>

<p>Run this from the cmd prompt. It will return the whole website page – so redirect the output to a file to just see the header:</p>

<p><code>CURL -v https://yourwebsite.com &gt;mywebsite.info.txt</code></p>

<p>This will output your website page to a file but show the header info on the screen. Check the headers for things like &#39;cache-control&#39;, HTTP/x version, Compression, etc.</p>
]]></content:encoded>
      <guid>https://jonathancamp.co.uk/checking-http-headers-returned-from-website</guid>
      <pubDate>Thu, 30 Dec 2021 11:28:23 +0000</pubDate>
    </item>
  </channel>
</rss>